Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.18 KB | None | 0 0
  1. # Since no network setting in the squashfs image, therefore if ip=, the network is disabled.
  2.  
  3. menuentry "Clonezilla live (Default settings, VGA 800x600)"{
  4. search --set -f /live/vmlinuz
  5. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on nomodeset enforcing=0 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
  6. initrd /live/initrd.img
  7. }
  8.  
  9. menuentry --hotkey=l "Clonezilla live (Default settings, KMS with large font)"{
  10. search --set -f /live/vmlinuz
  11. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on enforcing=0 locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch="no" vga=791 ip= net.ifnames=0 splash live_console_font_size=16x32
  12. initrd /live/initrd.img
  13. }
  14.  
  15. menuentry --hotkey=s "Clonezilla live (Speech synthesis)"{
  16. search --set -f /live/vmlinuz
  17. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on nomodeset enforcing=0 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 speakup.synth=soft ---
  18. initrd /live/initrd.img
  19. }
  20. submenu 'Other modes of Clonezilla live' {
  21. menuentry "Clonezilla live (Default settings, VGA 1024x768)"{
  22. search --set -f /live/vmlinuz
  23. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on nomodeset enforcing=0 locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch="no" vga=791 ip= net.ifnames=0 splash i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.enable_fbdev=1
  24. initrd /live/initrd.img
  25. }
  26.  
  27. menuentry "Clonezilla live (Default settings, VGA 640x480)"{
  28. search --set -f /live/vmlinuz
  29. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on nomodeset enforcing=0 locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch="no" vga=785 ip= net.ifnames=0 splash i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.enable_fbdev=1
  30. initrd /live/initrd.img
  31. }
  32.  
  33. menuentry --hotkey=K "Clonezilla live (Default settings, KMS)"{
  34. search --set -f /live/vmlinuz
  35. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on enforcing=0 locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch="no" vga=791 ip= net.ifnames=0 splash
  36. initrd /live/initrd.img
  37. }
  38.  
  39. menuentry --hotkey=R "Clonezilla live (To RAM, boot media can be removed later)"{
  40. search --set -f /live/vmlinuz
  41. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on nomodeset enforcing=0 locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch="no" vga=788 toram=live,syslinux,EFI,boot,.disk,utils ip= net.ifnames=0 splash i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.enable_fbdev=1
  42. initrd /live/initrd.img
  43. }
  44.  
  45. menuentry "Clonezilla live Safe graphic settings (vga=normal)"{
  46. search --set -f /live/vmlinuz
  47. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on nomodeset enforcing=0 locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch="no" ip= net.ifnames=0 nomodeset vga=normal nosplash
  48. initrd /live/initrd.img
  49. }
  50.  
  51. menuentry "Clonezilla live (Failsafe mode)"{
  52. search --set -f /live/vmlinuz
  53. linux /live/vmlinuz boot=live union=overlay username=user config components quiet noswap edd=on nomodeset enforcing=0 locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch="no" acpi=off irqpoll noapic noapm nodma nomce nolapic nosmp ip= net.ifnames=0 nomodeset vga=normal nosplash
  54. initrd /live/initrd.img
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement