Hi
Woodsman, welcome to the Sabayon Community.
I don't think it is possible to buy a DVD rather than downloading it.
What you download is an iso file, this kind of file can be burnt using any burning application available (
k3b,
brasero,
xfburn,
cdrecord, and so on...).
You can either burn the iso to a DVD (some minimal versions can also be burnt to a CD), or create a bootable USB stick with it.
The recommended way to create an USB stick is using
dd, which is available on every Linux distribution.
To create an USB stick using
dd you must:
1) Download a Sabayon edition, a user friendly listing of the available isos is available at:
http://best.sabayon.org/iso/main.htmlIn this example I assume you downloaded the iso to:
/home/user/sabayon.iso.
2) Check the MD5 for extra caution, to check the MD5 sum from a Linux system do the following:
- Code: Select all
md5sum /home/user/sabayon.iso
The output should match the MD5 number listed in the mirror.
3) Connect a large enough USB stick to your computer, in this example I assume the connected USB stick is
/dev/sdb which might not be the case for you.
You don't need to mount the device, it is actually better keeping it unmounted.
4) Create the bootable USB stick, notice that this will wipe out all the existing data from your USB stick, make sure to replace the iso file path and the device path with your own paths.
(as root)
- Code: Select all
dd if="/home/user/sabayon.iso" of="/dev/sdb"
This command might take a while to complete.