Project:RelEng/LiveDVD/12.0/FAQ

From Gentoo Wiki
Jump to:navigation Jump to:search

Introduction

The Gentoo hybrid LiveDVD is made by the community for the community. It was created with the help of Gentoo developers from around the world and users alike. Thank you all for your contributions and suggestions!

Your Gentoo LiveDVD Team

Please note that this is simply a list of common questions. Please read the Handbook and man pages to gain a greater understanding of how Gentoo works. For answers to questions which may not be answered here, please visit the forums, Bugzilla or #gentoo-ten (webchat) on Freenode.

Getting started

Download the correct ISO for your hardware

The livedvd-x86-x86_64 ISO will work on 32-bit x86 or 64-bit x86_64. If your architecture is x86, boot with the default. If your arch is amd64, boot with gentoo64.

The livedvd-amd64 ISO is only for x86_64. Boot with the default.

Root privileges

How do I become root?

user $sudo su -

You can use passwd to change the password for the user you are logged into. As root, you can change any user password by issuing the command passwd <username> For extra options and setting, please man passwd.

Can I copy the image to a USB stick?

Yes. To determine your device before you plug it in, open a terminal and read /var/log/messages. First determine the device:

root #tail -f /var/log/messages
Note
You will need at least a 4GB device!

Copy the image:

root #dd if=image.iso of=/dev/sdb
Important
Do not point to a partition number!
Warning
Not all BIOS support booting from USB devices. Consult your motherboard documentation first!

Can I resume the autologin?

To resume the KDM autologin, you need to press the ESC key and wait for the timeout to pass or press the Enter key to login.

Tips and tricks

Can I install firmware for my wireless card?

Yes. You just need to copy the firmware to /lib/firmware and reload your wireless card's kernel modules. The example below installs the firmware for a Ralink RT2501USB wireless LAN chipset. It requires non-free firmware, which cannot be included on the Live DVD because of license issues. The firmware is copied from a 2GB USB stick.

To install the firmware, first mount the USB stick:

root #mkdir /mnt/pin
root #mount /dev/sdb1 /mnt/pin

Copy the firmware:

root #cp /mnt/pin/firmware/rt73.bin /lib/firmware

Reload modules so that the firmware is included:

root #modprobe -r rt73usb rt2x00usb rt2x00lib

Time to insert modules amd load firmware

root #modprobe rt73usb

Restart wicd to pickup the interface:

root #rc-service wicd restart

How can I set up and enable persistence?

For USB Linux users, a persistent Linux install is one that allows it's user to save data changes back to the USB storage device instead of leaving the information in system RAM. This data can then be recovered and used again on subsequent boots, even when booting from different machines.

Booting with the 'persistence' boot option will allow you to retain your $HOME changes on a separate removable device or if you have space left on the USB that the image is booting from, you can then create a partition on there then:

Note
In my testing I ran out of space on a 4GB stick. I ended up using two 4GB sticks, one for the image and one for persistence. I booted with the option persistence persistence_mb=2G, and all was well.
  • Create a FS (extfs, reiserfs, xfs, etc.)
  • Create an empty file named persistence-mode

This partition will be used to create a loopback image that will allow persistent data on reboots.

There is an optional boot parameter which can set the image size you wish for $HOME which is persistence_mb=300 for example, will make a 300M size image for your persistent data. The minimum requirement is 256M for now which is the default setting.

Is there a list of packages on the DVD?

Yes:

More information

What if my question has not been answered?

Come join us on our IRC channel, #gentoo-ten. You can also help us fix some bugs!


This page is based on a document formerly found on our main website gentoo.org.
The following people contributed to the original document: David Abbott (author) and Fernando V. Orocu (reviewer) on April 10, 2012
They are listed here because wiki history does not allow for any external attribution. If you edit the wiki article, please do not add yourself here; your contributions are recorded on each article's associated history page.