Sabayon officially supports dd for creating liveUSB sticks.
1) download the Sabayon ISO image and open a console.
2) become root using su:
- Code: Select all
su
3) use dd to create a live USB stick, I assume you have your sabayon ISO under the name of
sabayon.iso in your current directory, and your USB stick is
/dev/sdb. I assume
you have no valuable file in your USB stick, since running this command will wipe out your USB volume contents.
- Code: Select all
dd if=./sabayon.iso of=/dev/sdb
Change the ISO path to reflect your path to the ISO and
/dev/sdb to the actual device path of your USB stick.