Created by Alexander Schwinn - 17.01.2018 ##### Attention! Please read carefully before you decide to use this image ##### - For development on a SCU which is located outside of GSI currently there is no solution available which is supported by IN - Debian is not supported by IN ! It will react in a different way and is not binary compartible. So first do your development on asl cluster and only port it to Debian later. Be aware that the timing behavior will be different! - There is as well the possibility to use IN.DosPendrive in combination with a CentOS Laptop for external development. However due to a lack of manpower, as well Laptops cannot be supported by IN. You have to install and maintain the OS and all required tools on your own - In the past there was a proposal by IN to maintain an official SCU image with runs developer tools, however so far this proposal was not agreed on by staff. ################################################################ Further information about this image can be found here: https://www-acc.gsi.de/wiki/Frontend/CreateDebianUSBStick #unzip the image gunzip usb_stick.image.gz #check device address and size of usb flashdrive lsblk #Copy the image ($DEST is e.g. /dev/sdc and $SOURCE is usb_stick.image) sudo dd if=$SOURCE of=$DEST bs=8M status=progress # Note that the copy process can take up to 1h Depending on the write performance of your flashdrive. # Took me 10min with "Transcend JetFlash 780" (Did ~30MB/s .. can do 150MB/s according to transcend) Username: root PW: gsi17! #It is possible to mount this image on some host with sudo losetup --partscan --find --show disk.img sudo mount /dev/loop0p1 /mnt/scu_boot_stick #Unmount with sudo losetup -d /dev/loop0 sudo umount /dev/loop0p1 #Or you can boot the image on a host system, e.g. via qemu: qemu-system-x86_64 -drive format=raw,file=usb_stick.image Strg+Alt+G to free mouse /cursor focus in qemu !