# Installation guide ## Supported platforms - **i.MX8** - CCPilot V510 - CCPilot V700 - CCPilot V705 - CCPilot V710 - CCPilot V1000 - CCPilot V1200 - CCPilot V1090 - CCPilot V1290 - **Core i7** - CCPilot X1200 ## Prerequisites ### v1.0.0 - CCLinux 4.+ - Qt-6.8.+ ## Installing Window Manager on i.MX8 & Core i7 Window Manager can be installed on the target in two different ways. ### RAUC bundle For production use the Window Manager should be installed on the target using a RAUC bundle. Reference the `CC Linux - Using RAUC` documentation on the support web site for more information about how to generate a RAUC bundle. ### Installing Window Manger manually for development/testing During development or testing of the Window Manager it can be installed on the target by unlocking `appfs` and manually installing it by unpacking the tarball, tar.gz, under `appfs`. #### Unlock /appfs for development/testing 1. Open an ssh session to the target: ssh ccs\ 2. Change write permissions of /appfs: sudo mount -o remount,rw /appfs 3. Check which version partition /appfs is mounted to: rauc status 4. Unmount /appfs: sudo umount /appfs 5. Format the partition: sudo mkfs.ext4 /dev/\ 6. Remount /appfs: sudo mount /dev/\ /appfs #### Unpacking tarball 1. Download the tarball, window-manager-ccl4x_1.0.0_\.tar.gz, from the support site under: `Software & Solution -> Window Manager -> Downloads -> Device module -> ` 2. Transfer the tar.gz package to device: scp window-manager-ccl4x_1.0.0_\.tar.gz ccs@\:/tmp 3. Open an ssh session to the target: ssh ccs@\ 4. Change directory to `/tmp`: cd /tmp 3. Run the following code to unpack it: sudo tar xzf window-manager-ccl4x_1.0.0_\.tar.gz -C /appfs 4. Window Manager will not automatically start at boot. See [Getting Started Guide](#getting-started-guide). ## Getting Started Guide Please refer to our **Knowledge Base** [Window Manager article](https://crosscontrol.com/support/knowledge-base/solution-recipes/window-manager-example/) regarding Window Manager for a guide on how to deploy multiple Qt applications in Window Manager module on CCpilot target displays.