The following instructions install YDL (Yellow Dog Linux) on a PS3. More detailed instructions are available from Terra Soft Solutions.
Settings -> System -> Format disk
[10 G to PS3 System]
reboot
Settings -> System -> Install OtherOS
[click through]
Settings -> System -> Default OS
[Set OtherOS as default]
10 GB /
1 GB swap
* GB /home
# fix timezone && start ntpd (these instruction are specific to the Eastern time zone)
rm -f /etc/localtime
cp /usr/share/zoneinfo/America/New_York /etc/localtime
chkconfig ntpd on
/etc/init.d/ntpd start
# if you prefer to make text booting default
perl -i -pe 's{default=ydl}{default=ydltext}g' /etc/kboot.conf
# do some updates
yum -y update
# create user accounts ala
useradd --uid 12345 --comment "My Name" myUserID
echo blahblah | passwd --stdin myUserID
Troubleshooting
usermod -Gwheel myUserIdand editing /etc/sudoers to enable wheel group priveleges. The sudoers file is edited by running the following on the command line
/usr/sbin/visudothen edit the file to uncomment this line
%wheel ALL=(ALL) ALLand now the user has root priveleges.
hostname newNamethen edit the configuration file /etc/sysconfig/network and change the field
HOSTNAME=localhost.localdomainto
HOSTNAME=newNameand finally restart services that depends on the hostname
/etc/init.d/network restartor you can simply reboot the system.