What if I have 2 or more squashfs files (filesystem.squashfs) in my system, how can I assign clonezilla live to boot ? |
This normally happens when you put a clonezilla live or Debian live in your harddisk, and use clonezilla live CD/USB to boot the system. You can add boot parameter (Ex. bootfrom=/dev/sdc or live-media=/dev/sdc) when booting your clonezilla live. i.e.,
1. Boot clonezilla live,
2. In isolinux/syslinux boot menu (for legacy BIOS), when you see "press [TAB] to edit options", press Tab key. If it's grub boot menu (for uEFI BIOS), when you see "Press enter to boot the selected OS, 'e' to edit the commands before booting", press "e" key.
3. Append the boot parameter, for example, your Clonezilla live USB stick is /dev/sdc, then you can force live-boot to use the file system in /dev/sdc by appending "bootfrom=/dev/sdc" or "live-media=/dev/sdc", make it like (this is for syslinux):
/live/vmlinuz /live/initrd.img boot=live union=overlay username=user config components quiet noswap edd=on nomodeset enforcing=0 noeject locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch="no" vga=788 ip= net.ifnames=0 splash i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.enable_fbdev=1 bootfrom=/dev/sdc
|
|