We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
Difference between revisions of "OLA Live CD"
From wiki.openlighting.org
(Created page with "OLA also comes as a bootable image, which can be used with a CD or USB drive to run OLA on almost any machine without modifying the hard drive. This is useful if you just wan…") |
|||
Line 1: | Line 1: | ||
− | [[OLA]] also comes as a bootable image, which can be used with a CD or USB drive to run OLA on almost any machine without modifying the hard drive. This is useful if you just want to test out OLA. | + | [[OLA]] also comes as a bootable image, which can be used with a CD or USB drive to run OLA on almost any machine without modifying the hard drive. This is useful if you just want to test out OLA. |
+ | |||
+ | OLA Live CD is based on SliTaz - http://www.slitaz.org | ||
+ | |||
+ | documentation: http://doc.slitaz.org/en:guides:start | ||
+ | |||
+ | forum: http://forum.slitaz.org/ | ||
== Download == | == Download == | ||
Line 32: | Line 38: | ||
== Log in == | == Log in == | ||
− | OLA runs as user | + | OLA runs as user "tux". There is no password. |
+ | |||
+ | to get root use su after logging in as user "tux" - the root password is root | ||
+ | |||
+ | == Useful tips == | ||
+ | |||
+ | to change from dhcp to a fix IP | ||
+ | |||
+ | log in as root | ||
+ | <pre> | ||
+ | # mcedit /etc/network.conf | ||
+ | </pre> | ||
+ | change DHCP="no" STATIC="yes" - save and start network new with | ||
+ | <pre> | ||
+ | # /etc/init.d/network.sh restart | ||
+ | </pre> |
Revision as of 13:30, 21 November 2011
OLA also comes as a bootable image, which can be used with a CD or USB drive to run OLA on almost any machine without modifying the hard drive. This is useful if you just want to test out OLA.
OLA Live CD is based on SliTaz - http://www.slitaz.org
documentation: http://doc.slitaz.org/en:guides:start
forum: http://forum.slitaz.org/
Contents
Download
The .iso image can be found on the downloads page
Burn
You can either burn the .iso image on to a cd or use a USB drive. Instructions for creating bootable USB drivers are here: http://www.webupd8.org/2009/04/4-ways-to-create-bootable-live-usb.html
For Mac:
# Locate the usb drive $ diskutil list # umount and copy, change diskN to the number of your disk above. $ diskutil unmountDisk /dev/diskN $ dd if=/path/to/downloaded.img of=/dev/diskN bs=1m # eject $ diskutil eject /dev/diskN
Boot
You'll probably need to select the boot device when you restart. Follow the instructions for your computer's bios to see how to do this.
Networking
The current images use dhcp to configure networking. Wireless isn't supported yet.
Log in
OLA runs as user "tux". There is no password.
to get root use su after logging in as user "tux" - the root password is root
Useful tips
to change from dhcp to a fix IP
log in as root
# mcedit /etc/network.conf
change DHCP="no" STATIC="yes" - save and start network new with
# /etc/init.d/network.sh restart