SystemRescueCD
From Indie IT Wiki
SystemRescueCD home page.
BOOT PARAMETERS
http://clonezilla-sysresccd.hellug.gr/boot-params.html
INSTALL | USB FLASH DRIVE
Mount the ISO image:
sudo mkdir -p /tmp/cdrom sudo mount -o loop,exec /path/to/systemrescuecd-x86-x.y.z.iso /tmp/cdrom
Plug in the USB stick and check it is seen but not mounted:
lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 465.8G 0 disk ├─sda1 8:1 0 449.8G 0 part / ├─sda2 8:2 0 1K 0 part └─sda5 8:5 0 16G 0 part [SWAP] sdb 8:16 1 2G 0 disk <-- This is the USB in this example └─sdb1 8:17 1 2G 0 part sr0 11:0 1 1024M 0 rom loop0 7:0 0 437.9M 0 loop /tmp/cdrom <-- Here you can see the temporary CD-ROM drive
Run the installer:
sudo cd /tmp/cdrom sudo bash ./usb_inst.sh
Unmount the ISO image:
cd ~ sudo umount /tmp/cdrom