› Foros › PlayStation 3 › Scene
Download URL: http://ftp.dateleco.es/ubuntu-releases/edgy/ubuntu-6.10-desktop-i386.iso
Ubuntu Edition: Ubuntu 6.10 desktop
Computer Platform: i386
Download Location: http://ftp.dateleco.es/ubuntu-releases/
Select an image
Ubuntu is distributed on three types of images described below.
Desktop CD
The desktop CD allows you to try Ubuntu without changing your computer at all, and at your option to install it permanently later. This type of CD is what most people will want to use. You will need at least 192MB of RAM to install from this CD.
There are two images available, each for a different type of computer:
PC (Intel x86) desktop CD
For almost all PCs. This includes most machines with Intel/AMD/etc type processors and almost all computers that run Microsoft Windows. Choose this if you are at all unsure.
PC (AMD64) desktop CD
Choose this to take full advantage of computers based on the AMD64 or EM64T architecture (e.g., Athlon64, Opteron, EM64T Xeon). If you have a non-64-bit processor made by AMD, or if you need full support for 32-bit code, use the Intel x86 images instead.
Instructions
These instructions are based on Ciego’s HowTo at ubuntuforums, but has some simplifications (the psubuntu.zip file for your USB-pen). They show how to install Ubuntu Edgy Eft (6.10) on a 60GB PS3 using a 10GB portion of a partitioned PS3 hard drive.
$ Anything that looks like this is to be typed at the command line
What you need
* A computer with internet access
* A PS3 with hard wired internet connection (wireless will not work)
* A USB keyboard (and mouse)
* A USB thumb drive or external disk
* The psubuntu.zip file
* Gentoo Live CD BETA for PPC iso
Prepare your media
1. Burn the Gentoo ISO onto a blank CD. How?
2. Extract the contents of the psubuntu.zip archive to the root of your USB storage device. How?
3. Open the file USB:\doc\PlatformSpecificUtilities.html and note the resolution that you will be using.
4. Remove the USB storage drive from your computer and plug it into your PS3.
5. Insert the Gento Live CD into the PS3
Install kboot on the PLAYSTATION 3
You might want to backup your data saved on the PS3 hard drive before you format and partition the drive.
* On the XMB go into Settings Menu > System Settings > Format Drive
* Choose 10GB for the “other OS”
* After the drive is formatted, go into Settings Menu > System Settings > Install Other OS
* Click “OK” and it will install the kboot image onto your PS3.
* Once finished, go back into Settings Menu > System Settings > Default System > Choose “Other OS”
* Restart your PS3 and you should be on the kboot prompt with a minimal Linux environment
Partition and format the “Other OS” portion of the hard drive
We will partition the 10GB portion of the hard drive as follows using fdisk.
LABEL PARTITION SIZE SYSTEM
1. boot /dev/sda1 256MB ext2
2. SWAP /dev/sda2 512MB swap
3. / /dev/sda3 the remaining space ext3
We need to boot into Gentoo to do this since the Kboot environment does not support the creation of swap partitions. (If you have some experience with Linux, you may want to take care of the root and boot partitions now and worry about the swap partition after you can chroot into Ubuntu. If so, you can do this from the kboot prompt rather than booting the Live CD)
Use the TAB key to select your screen resolution and press ENTER. Gentoo will boot up. This takes a while since the entire operating system is booting from the CD. You should be looking at the Gentoo desktop. (Note that you may boot into the command line by adding a space and “nox” after the resolution command).
Open a terminal (Click Applications > Terminal)
$ sudo -s
$ /etc/init.d/xdm stop
You should now be looking at the command line.
$ cd
$ fdisk /dev/sda
At the fdisk prompt:
* Create partition 1
o N (new)
o P (primary)
o 1
o (default)
o 256
* Create Partition 2
o N (new)
o P (primary)
o 2
o (default)
o 769
* Create Partition 3
o N (new)
o P (primary)
o 3
o (default)
o (default)
* Mark partition 1 with the boot flag
o A
o 1
* Label Partition 2 as a swap file system
o T
o 2
o 82
* Write the Partition Table
o W
* Reboot the PS3
$ reboot
This will shutdown Gentoo and reboot the PS3. It should automatically boot into Kboot.
TAB to select your resolution and press ENTER to boot the Live CD again. (Remember we can type “nox” at the end to boot straight to the command line.)
Open a terminal
$ sudo -s
$ /etc/init.d/xdm stop
You should now be looking at the command line again. Now we will need to create a filesystem on our partitions and then mount them. The “-L” option adds a label to the partitions.
$ mkfs.ext2 -L "/boot" /dev/sda1
$ mkfs.ext3 -L "/" /dev/sda3
$ mkswap -L "SWAP" /dev/sda2
$ sync; sync; sync
$ swapon /dev/sda2
$ mkdir /mnt/ubuntu
$ mount /dev/sda3 /mnt/ubuntu
$ mkdir /mnt/ubuntu/boot
$ mount /dev/sda1 /mnt/ubuntu/boot
Install Ubuntu on the PLAYSTATION 3
$ cd /tmp
$ wget http://archive.ubuntulinux.org/ubuntu/pool/main/d/debootstrap/debootstrap_0.3.3.0ubuntu7_all.deb
$ ar -xf debootstrap_0.3.3.0ubuntu7_all.deb
$ zcat < data.tar.gz | tar xv
We need to edit debootstrap since we are running it off of a Live CD
$ cd usr/sbin
$ vim debootstrap
Now you will be inside the vim text editor. Go down to line 11 and over to the “/” in that line. Hit the [INSERT] key to go into edit mode. Add “/tmp” to the beginning of the path. Hit the [ESC] key to exit editing mode. That line should look like this now.
DEBOOTSTRAP_DIR=/tmp/usr/lib/debootstrap
Type “:wq” to save and return to the command line.
Run debootstrap
$ /tmp/usr/sbin/debootstrap --arch powerpc edgy /mnt/ubuntu http://archive.ubuntulinux.org/ubuntu
This will install your base Ubuntu system. We still need to copy a few things from the CD onto the PS3 hard drive.
$ cp /boot/* /mnt/ubuntu/boot
$ cd /mnt/ubuntu/boot
$ cp kernel-genkernel-ppc-2.6.16-ps3 /mnt/ubuntu/boot/vmlinux
$ cp initramfs-genkernel-ppc-2.6.16-ps3 /mnt/ubuntu/boot/initrd.img
$ cp -R /lib/modules/* /mnt/ubuntu/lib/modules/
Now we can reboot the PS3 and take out the Live CD since we no longer need it.
$ reboot
Configuring Minimal Install of Ubuntu Base System
We will have to mount the partitions manually for now.
$ umount /mnt/root
$ mkdir /mnt/ubuntu
$ mount /dev/sda3 /mnt/ubuntu
$ mount /dev/sda1 /mnt/ubuntu/boot
Copy the “fstab” file from your USB drive. We have to mount the USB drive first. You can find the location of your USB drive by typing
$ fdisk -l
Try to locate which one your USB drive is by the size. If it says “sdd” then your drive will be recognized as “sdd1”
$ mkdir /mnt/usbdrive
$ mount /dev/sdd1 /mnt/usbdrive
$ cp /mnt/usbdrive/config/fstab /mnt/ubuntu/etc/fstab
CHROOT into ubuntu and install the text editor nano. (You can use nano to create your config files or you can create them on your computer to save some typing and then transfer them via the usb drive)
$ chroot /mnt/ubuntu /bin/bash
$ source /etc/profile
$ apt-get install nano
The above command has you in your new Ubuntu system in its infant state.
You can manually mount each filesystem once you are chrooted into your Ubuntu System, or you can automatically mount them with
$ mount -a
The above game some errors, so make sure that both /proc and /sys were mounted. Check to see if they are mounted by seeing if there is anything in them:
$ ls /proc /sys
If /proc and /sys are not mounted then you will manually mount them like this:
$ cd /
$ mount -t proc proc proc
$ mount -t sysfs sysfs sys
Installing The Ubuntu desktop
At this stage you have a choice of installing whatever desktop you like. You can either install the Ubuntu, Xubuntu or the Kubuntu desktop. You will want to issue one of the following commands depending on what desktop you want. (The Ubuntu desktop install had too many dependencies to resolve and eventually stopped after running out of system memory in my case. You may try it, but it would not work for me. Don’t worry though … we can install the Ubuntu desktop later. Install Kubuntu for now)
$ aptitude -y install '~txubuntu-desktop'
$ aptitude -y install '~tubuntu-desktop'
$ aptitude -y install '~tkubuntu-desktop'
Once the above is done you are finished. You have installed Ubuntu on your PS3!
More Configuration and Adding Users
We need to create a username and give the user the ability to use sudo.
$ passwd root
$ adduser YOUR_USER_NAME
$ addgroup --system admin
$ adduser YOUR_USER_NAME admin
$ adduser YOUR_USER_NAME audio
$ adduser YOUR_USER_NAME users
$ visudo -f /etc/sudoers
add this to the end of the file so that users in the admin group can use sudo
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
Configure the Keyboard
$ dpkg-reconfigure console-setup
Configure /etc/network/interfaces
$ nano /etc/network/interfaces
Make it look like this
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
Configure /etc/resolv.conf
$ nano /etc/resolv.conf
Make it look like this (just an example … you will have to configure it for your internet connection) If you are running linux on another computer in your house, just look at the /etc/resolv.conf on that computer.
search hsd1.ma.comcast.net.
nameserver 192.168.1.1
nameserver 192.168.1.2
domain YOUR_WORKGROUP
Edit your hostname (this can be whatever you want)
$ echo playstation > /etc/hostname
Edit /etc/hosts
$ nano /etc/hosts
Make it look like this
127.0.0.1 localhost
127.0.1.1 YOUR_HOSTNAME.YOUR_WORKGROUP
Don’t leave that command line because we will be using it in the next section.
Configuring /etc/X11/xorg.conf and ps3videomode.
We need to copy a few more files from our USB drive. We will also have to install alien to tranform our rmp packages into deb packages.
$ exit
$ cp /mnt/usbdrive/target/ps3pf_utils-1.0.9-2.ppc.rpm /mnt/ubuntu/tmp/
$ cp /mnt/usbdrive/target/vsync-sample-1.0.1-4.ppc.rpm /mnt/ubuntu/tmp/
$ cp /mnt/usbdrive/config/xorg.conf /mnt/ubuntu/etc/X11/xorg.conf
$ chroot /mnt/ubuntu /bin/bash
$ cd /tmp
$ apt-get install alien
$ alien ps3pf_utils-1.0.9-2.ppc.rpm
$ alien vsync-sample-1.0.1-4.ppc.rpm
$ dpkg -i ps3pf-utils_1.0.9-3_powerpc.deb
$ dpkg -i vsync-sample_1.0.1-5_powerpc.deb
$ sudo nano /etc/kboot.conf
We need to create a kboot.conf file. It should look like this
default=ubuntu
timeout=10
root=/dev/sda3
ubuntu="/boot/vmlinux initrd=/boot/initrd.img video=ps3fb:mode:5"
Make sure you edit the video mode to match what you found on the chart earlier. Here is the chart for reference:
Video mode ID:
0:automode
YUV 60Hz 1:480i 2:480p 3:720p 4:1080i 5:1080p
YUV 50Hz 6:576i 7:576p 8:720p 9:1080i 10:1080p
RGB 60Hz 33:480i 34:480p 35:720p 36:1080i 37:1080p
RGB 50Hz 38:576i 39:576p 40:720p 41:1080i 42:1080p
VESA 11:WXGA 12:SXGA 13:WUXGA
full screen mode:
Instrucciones
Estas instrucciones se basan en Ciego’s HowTo en los ubuntuforums, pero tienen algunas simplificaciones (el archivo de psubuntu.zip para su USB-pluma). Demuestran cómo instalar Ubuntu Eft afilado (6.10) en un 60GB PS3 usando una porción 10GB de una impulsión dura repartida PS3.
$ Anything that looks like this is to be typed at the command line
Qué usted necesita
* Una computadora con el acceso del Internet
* Un PS3 con la conexión atada con alambre dura del Internet (la radio no trabajo)
* Un teclado del USB (y ratón)
* Una impulsión del pulgar del USB o un disco externo
* * El archivo de psubuntu.zip
* CD vivo de Gentoo BETA para la ISO de PPC
Prepare sus medios
1. Quémese la ISO de Gentoo sobre un CD en blanco. ¿Cómo?
2. Extraiga el contenido del archivo de psubuntu.zip a la raíz de su dispositivo de almacenaje del USB. ¿Cómo?
3. Abra el archivo USB:\doc\PlatformSpecificUtilities.html y observe la resolución que usted utilizará.
4. Quite la impulsión del almacenaje del USB de su computadora y tápela en su PS3.
5. Inserte el CD vivo de Gento en el PS3
Instale el kboot en el PLAYSTATION 3
Usted puede ser que desee a la reserva que sus datos ahorraron en la impulsión dura PS3 antes de usted formato y que repartieron la impulsión.
* En el XMB entre ajustes del menú > del sistema de los ajustes > la impulsión del formato
* Elija 10GB para el "otro OS"
* Después de que se ajuste a formato la impulsión, entre ajustes del menú > del sistema de los ajustes > instalan el otro OS
* Chasque “OK” e instalará la imagen del kboot sobre su PS3.
* Una vez que esté acabado, vaya nuevamente dentro de ajustes del menú > del sistema de los ajustes > de sistema del defecto > elijan “Other OS”
* Recomience su PS3 y usted debe estar en el aviso del kboot con un ambiente mínimo de Linux
La partición y ajustó a formato la porción del "otro OS" de la impulsión dura
Repartiremos la porción 10GB de la impulsión dura como sigue que usa el fdisk.
SISTEMA DEL TAMAÑO DE LA PARTICIÓN DE LA ETIQUETA
1. cargador /dev/sda1 256MB ext2
2. Intercambio del INTERCAMBIO /dev/sda2 512MB
3. / /dev/sda3 el espacio restante ext3
Necesitamos patear en Gentoo para hacer esto puesto que el ambiente de Kboot no apoya la creación de las particiones del intercambio. (si usted tiene cierta experiencia con Linux, usted puede desear ahora tomar el cuidado de las particiones de la raíz y del cargador y preocuparse de la partición del intercambio después de que usted pueda chroot en Ubuntu. Si es así usted puede hacer esto del aviso más bien que de patear del kboot el CD vivo)
Utilice el tabulador para seleccionar su resolución de la pantalla y la prensa ENTRA. Gentoo pateará para arriba. Esto toma un rato puesto que el sistema operativo entero es booting del CD. Usted debe mirar el tablero del escritorio de Gentoo. (nota que usted puede patear en la línea de comando agregando un espacio y un "nox" después del comando de la resolución).
Abra un terminal (usos > terminal del tecleo)
$ sudo -s
$ /etc/init.d/xdm stop
Usted debe ahora mirar la línea de comando.
$ cd
$ fdisk /dev/sda
En el aviso del fdisk:
* Cree la partición 1
o N (nueva)
o P (primario)
o 1
o (defecto)
o 256
* Cree La Partición 2
o N (nueva)
o P (primario)
o 2
o (defecto)
o 769
* Cree La Partición 3
o N (nueva)
o P (primario)
o 3
o (defecto)
o (defecto)
* Marque la partición 1 con la bandera del cargador
o A
o 1
* Etiquete la partición 2 como un sistema de ficheros del intercambio
o T
o 2
o 82
* Escriba la tabla de la partición
o W
* Reanude el PS3
$ reboot
Esto parada Gentoo de la voluntad y reanuda el PS3. Debe patear automáticamente en Kboot.
La LENGÜETA para seleccionar su resolución y la prensa ENTRAN para patear el CD vivo otra vez. (recuerde que podemos mecanografiar el "nox" en el extremo al cargador derecho a la línea de comando.)
Abra un terminal
$ sudo -s
$ /etc/init.d/xdm stop
Usted debe ahora mirar la línea de comando otra vez. Ahora necesitaremos crear un filesystem en nuestras particiones y después montarlas. "- L" opción agrega una etiqueta a las particiones.
$ mkfs.ext2 -L "/boot" /dev/sda1
$ mkfs.ext3 -L "/" /dev/sda3
$ mkswap -L "SWAP" /dev/sda2
$ sync; sync; sync
$ swapon /dev/sda2
$ mkdir /mnt/ubuntu
$ mount /dev/sda3 /mnt/ubuntu
$ mkdir /mnt/ubuntu/boot
$ mount /dev/sda1 /mnt/ubuntu/boot
Instale Ubuntu en el PLAYSTATION 3
$ cd /tmp
$ wget http://archive.ubuntulinux.org/ubuntu/pool/main/d/debootstrap/debootstrap_0.3.3.0ubuntu7_all.deb
$ ar -xf debootstrap_0.3.3.0ubuntu7_all.deb
$ zcat < data.tar.gz | tar xv
Necesitamos corregir el debootstrap puesto que lo estamos funcionando apagado de un CD vivo
$ cd usr/sbin
$ vim debootstrap
Ahora usted estará dentro del editor de textos vim. Vaya abajo a alinear 11 y el excedente al "/" en esa línea. Golpee [ RELLENO ] la llave a entrar corrige modo. Agregue "/tmp" al principio de la trayectoria. Golpee [ salida ] llave a la salida que corrige modo. Esa línea debe ahora parecer esto.
DEBOOTSTRAP_DIR=/tmp/usr/lib/debootstrap
Mecanografíe ":wq" a excepto y vuelva a la línea de comando.
Funcione el debootstrap
$ /tmp/usr/sbin/debootstrap --arch powerpc edgy /mnt/ubuntu http://archive.ubuntulinux.org/ubuntu
Esto instalará su sistema bajo de Ubuntu. Todavía necesitamos copiar algunas cosas del CD sobre la impulsión dura PS3.
$ cp /boot/* /mnt/ubuntu/boot
$ cd /mnt/ubuntu/boot
$ cp kernel-genkernel-ppc-2.6.16-ps3 /mnt/ubuntu/boot/vmlinux
$ cp initramfs-genkernel-ppc-2.6.16-ps3 /mnt/ubuntu/boot/initrd.img
$ cp -R /lib/modules/* /mnt/ubuntu/lib/modules/
Ahora podemos reanudar el PS3 y tomar hacia fuera el CD vivo puesto que nosotros ninguna necesidad más larga él.
$ reboot
El configuración mínimo instala del sistema bajo de Ubuntu
Tendremos que montar las particiones manualmente para ahora.
$ umount /mnt/root
$ mkdir /mnt/ubuntu
$ mount /dev/sda3 /mnt/ubuntu
$ mount /dev/sda1 /mnt/ubuntu/boot
Copy el archivo del "fstab" de su impulsión del USB. Tenemos que montar la impulsión del USB primero. Usted puede encontrar la localización de su impulsión del USB mecanografiando
$ fdisk -l
Intente localizar qué es su impulsión del USB por el tamaño. Si dice el "sdd" entonces su impulsión será reconocida como "sdd1"
$ mkdir /mnt/usbdrive
$ mount /dev/sdd1 /mnt/usbdrive
$ cp /mnt/usbdrive/config/fstab /mnt/ubuntu/etc/fstab
CHROOT en ubuntu e instalan el nano del editor de textos. (usted puede utilizar nano para crear sus archivos de los config o usted puede crearlos en su computadora para ahorrar alguno que mecanografían y después para transferirlo vía la impulsión del usb)
$ chroot /mnt/ubuntu /bin/bash
$ source /etc/profile
$ apt-get install nano
El comando antedicho le tiene en su nuevo sistema de Ubuntu en su estado infantil.
Usted puede montar manualmente cada filesystem una vez que usted sea chrooted en su sistema de Ubuntu, o usted puede montarlos automáticamente con
$ mount -a
El juego antedicho algunos errores, así que se cerciora de que /proc y /sys fueran montados. Compruebe para ver si son montados viendo si hay cualquier cosa en ellos:
$ ls /proc /sys
Si /proc y /sys entonces no se montan usted los montará manualmente como esto:
$ cd /
$ mount -t proc proc proc
$ mount -t sysfs sysfs sys
Instalación del tablero del escritorio de Ubuntu
Usted tiene en esta etapa una opción de instalar cualquier tablero del escritorio usted tiene gusto. Usted puede instalar el Ubuntu, Xubuntu o el tablero del escritorio de Kubuntu. Usted deseará publicar uno de los comandos siguientes dependiendo de qué tablero del escritorio usted desea. (el tablero del escritorio de Ubuntu instala hizo también muchas dependencias resolver y ser parado eventual después de funcionar de memoria de sistema en mi caso. Usted puede intentarlo, pero no trabajaría para mí. Preocupación sin embargo … de Don’t; podemos instalar el tablero del escritorio de Ubuntu más adelante. Instale Kubuntu para ahora)
$ aptitude -y install '~txubuntu-desktop'
$ aptitude -y install '~tubuntu-desktop'
$ aptitude -y install '~tkubuntu-desktop'
Una vez se acaba el antedicho se hace le. ¡Usted ha instalado Ubuntu en su PS3!
Más configuración y usuarios de la adición
Necesitamos crear un username y dar al usuario la capacidad de utilizar sudo.
$ passwd root
$ adduser YOUR_USER_NAME
$ addgroup --system admin
$ adduser YOUR_USER_NAME admin
$ adduser YOUR_USER_NAME audio
$ adduser YOUR_USER_NAME users
$ visudo -f /etc/sudoers
agregue esto al extremo del archivo de modo que los usuarios en el grupo del admin puedan utilizar sudo
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
Configure el teclado
$ dpkg-reconfigure console-setup
Configure /etc/network/interfaces
$ nano /etc/network/interfaces
Hágale el parecer esto
auto lo
iface lo inet loopback
automóvil eth0
dhcp del inet del iface eth0
Configure /etc/resolv.conf
$ nano /etc/resolv.conf
Hágale el parecer esto (apenas un ejemplo … usted tendrá que configurarlo para su conexión del Internet) si usted está funcionando el linux en otra computadora en su casa, mirada justa en el /etc/resolv.conf en esa computadora.
search hsd1.ma.comcast.net.
nameserver 192.168.1.1
nameserver 192.168.1.2
domain YOUR_WORKGROUP
Corrija su hostname (éste puede ser lo que usted desea)
$ echo playstation > /etc/hostname
Corrija /etc/hosts
$ nano /etc/hosts
Hágale el parecer esto
127.0.0.1 localhost
127.0.1.1 YOUR_HOSTNAME.YOUR_WORKGROUP
Licencia de Don’t que línea de comando porque la utilizaremos en la sección siguiente.
/etc/X11/xorg.conf y ps3videomode de configuración.
Necesitamos copiar algunos más archivos de nuestra impulsión del USB. También tendremos que instalar a extranjero al tranform nuestros paquetes del rmp en los paquetes del DEB.
$ exit
$ cp /mnt/usbdrive/target/ps3pf_utils-1.0.9-2.ppc.rpm /mnt/ubuntu/tmp/
$ cp /mnt/usbdrive/target/vsync-sample-1.0.1-4.ppc.rpm /mnt/ubuntu/tmp/
$ cp /mnt/usbdrive/config/xorg.conf /mnt/ubuntu/etc/X11/xorg.conf
$ chroot /mnt/ubuntu /bin/bash
$ cd /tmp
$ apt-get install alien
$ alien ps3pf_utils-1.0.9-2.ppc.rpm
$ alien vsync-sample-1.0.1-4.ppc.rpm
$ dpkg -i ps3pf-utils_1.0.9-3_powerpc.deb
$ dpkg -i vsync-sample_1.0.1-5_powerpc.deb
$ sudo nano /etc/kboot.conf
Necesitamos crear un archivo de kboot.conf. Debe parecer esto
default=ubuntu
timeout=10
root=/dev/sda3
ubuntu="/boot/vmlinux initrd=/boot/initrd.img video=ps3fb:mode:5"
Se cerciora de usted corregir el modo video para emparejar lo que usted encontró en la carta anterior. Aquí está la carta para la referencia:
Identificación video del modo:
0:automode
YUV 60Hz 1:480i 2:480p 3:720p 4:1080i 5:1080p
YUV 50Hz 6:576i 7:576p 8:720p 9:1080i 10:1080p
Rgb 60Hz 33:480i 34:480p 35:720p 36:1080i 37:1080p
Rgb 50Hz 38:576i 39:576p 40:720p 41:1080i 42:1080p
VESA 11:WXGA 12:SXGA 13:WUXGA
modo de la pantalla completa: < identificación video > + 128 del modo
estremecimiento EN modo: < identificación video > + 2048 del modo
Ahora usted debe estar en buena forma.
Éste es el comando para Ubuntu que comienza del kboot
$ mnt/ubuntu/boot/vmlinux initrd=mnt/ubuntu/boot/initrd.img root=/dev/sda3
Debemos ir a continuación y reanudar primero apenas para cerciorarse de que Ubuntu ahora pateará automáticamente.
$ reboot
Usted debe después ser booting Ubuntu y terminar para arriba en la pantalla de la conexión. No presione ninguna llaves cuando viene el aviso del kboot para arriba. Tomará 10 segundos para que el comando golpee con el pie adentro.
Si fueron todos bien usted debe estar en la pantalla de la conexión. Utilice el nombre del usuario que usted acaba de crear y conexión. Le entonces incitarán setup sus configuraciones de KDE.
Instale el tablero del escritorio de Ubuntu
(esta sección es opcional y debe ser utilizada si usted deseó el Ubuntu de escritorio y lo trabajo de wouldn’t durante la instalación normal)
Si usted quisiera utilizar el tablero del escritorio de Ubuntu más bien que el Kubuntu o el Xubuntu que usted instaló. Abra un terminal y publique los comandos
$ sudo apt-get install ubuntu-desktop
Elija “gdm” como su tablero del escritorio cuando la pantalla de la instalación hace estallar para arriba en el extremo.
Cuando eso se acaba que instala todo, usted debe reanudar (usted puede hacer esto que usa el interfaz gráfico o publicando el comando en el terminal).
Después de que los reboots del sistema, usted deban mirar la pantalla de la conexión de Ubuntu. Va a continuación y la conexión. Abra un terminal chascando Applications>Accessories>Terminal y publique el comando siguiente al uninstall los componentes de KDE del tablero del escritorio (si usted los instaló anterior).
$ sudo apt-get remove adept kaddressbook kaffeine kamera kappfinder karm katapult kate kaudiocreator kcron kde-guidance kde-systemsettings kdeadmin-kfile-plugins kdebluetooth kdegraphics-kfile-plugins kdemultimedia-kappfinder-data kdemultimedia-kfile-plugins kdemultimedia-kio-plugins kdenetwork-filesharing kdenetwork-kfile-plugins kdepasswd kdepim-kio-plugins kdepim-wizards kdeprint kdm kghostview khelpcenter kicker kio-apt kio-locate klipper kmail kmenuedit kmilo kmix knetworkconf knotes konq-plugins konqueror-nsplugins konsole kontact konversation kooka kopete korganizer kpdf kpf kppp krdc krfb krita kscd kscreensaver ksmserver ksnapshot ksplash ksvg ksysguardd ksystemlog kubuntu-artwork-usplash kubuntu-default-settings kubuntu-desktop kubuntu-docs kubuntu-konqueror-shortcuts kwalletmanager kwin
Si usted desea siempre conseguir de nuevo al PS3 XMB del aviso del kboot o desde adentro de Ubuntu, abra un teminal y mecanografíe
$ sudo boot-game-os
Si you’re nuevo a Ubuntu que usted puede ser que desee para consultar el Web site de la guía del arrancador de Ubuntu. Usted puede ser que desee conseguir algunos formatos restrictos al juego (MP3s, DVDs, los etc.) Usted puede también desear agregar algunos depósitos adicionales. Usted puede conseguir siempre ayuda de los ubuntuforums.
Créditos/Referencias
Toda la información fue compuesta por Louis Candell y adaptada originalmente por Ciego para Ubuntu de instalación sin la instalación de Fedora antes de la instalación de Ubuntu. Para más información sobre la lista de proceso y completa de créditos, las referencias y las actualizaciones - lea el poste original en ubuntuforums.org.
Instructions
Updated may 3, 2007
These instructions show you how to install Ubuntu 7.04 Feisty Fawn on a Playstation 3 with the latest firmware.
Preparation
Download one of these Ubuntu versions:
* Ubuntu - The standard version using Gnome Desktop Manager.
* Xubuntu - Using the lightweight XFCE desktop environment
* Kubuntu - Ubuntu with KDE
* Edubuntu - Designed for use in school classrooms
Burn the iso-file onto a CD.
Partitioning the PS3
In this step we will format the PlayStation 3 and create two partitions, one for the XMB and one for Ubuntu. Before formatting the PS3, you might want to backup your saved data.
* In the XMB go to Settings > System Settings > Format Utility > Format Hard Disk. Choose Yes.
* Choose Custom partition setting and Allot 10GB to the Other OS. Perform a Quick Format.
* Reboot the PS3 by pressing X on your controller.
Preparing to run the LiveCD
* Insert the Ubuntu CD you burned into your Playstation 3.
* Go to Settings > System Settings > Install Other OS.
* The system will detect a file called otheros.bld on your disk. Hit X to start the installer.
* Go to Settings > System Settings > Default System. Set it to Other OS. Restart your PS3 by clicking X.
* At the kboot: prompt, hit Enter. Ubuntu will boot, slowly, from the CD.
Once the system is up and running from the disc, you may choose to install Ubuntu permanently. There is a bug which halts the installation at 15%. To avoid this you need to terminate some running services and processes.
* open System > Administration > Services.
* Uncheck everything except the CPU frequency manager (powernowd), Graphical login manager (gdm) and System communication bus (dbus).
* Open System > Administration > System Monitor. Select the Processes tab.
* Kill all processes on the list (right click > Kill Process). The ones that are necessary for the system to install will automatically restart or refuse to be terminated.
You may now double click the install icon on the desktop to install Ubuntu permanently on your Playstation 3. Select Manual partitioning, and choose the 10.7GB drive.
Post-installation tweaks
To boot back to the XMB environment, type boot-game-os at the kboot: prompt.
If you have any questions or comments, consult our psubuntu forum.
ReKoN escribió:Gran post. A mi ubuntu me encanta, lo tenia instalado en mi ordenador junto con windows. El problema es que tenia dos particiones, bueno tres (linux, windows, y datos). El caso es que windows me iba mal y queria formatear esa particion para volver a instalar en ella windows, el caso es que con el grub no era capaz de hacer que el disco de windows me reconociera el disco duro por culpa del gestor de arranque. Asi que con un programa especial de mi disco duro tube que formatear TODO (perdi mis datos) y al final instale windows solo ya que en mi casa coge el ordenador mas gente.
Si supiera como puedo formatear la particion de windows e instalar windows mientras tengo linux pues volveria a instalarlo pero como no es asi me tendre que aguantar hasta que me vaya de casa y tenga el ordenador para mi solito para meterle solo linux.
A ver si me pillo la ps3 y le instalo ubuntu, asi no habria pegas de ningun tipo
elotro99 escribió:el 19 de Abrill sale la Feisty Fawn.. con kernel 2.20 y soporte para ps3, ahora mismo hauna una iso para la ps3
trilitri escribió:Ahora solo falta que arreglen el audio para la final de feisty y que alguien saque driver para el wifi.
ReKoN escribió:Hoddix ese howto que me has puesto fue de los primeros que lei, pero este no era mi problema.
El problema era que tenia las tres particiones y cuando quise reinstalar windows hice lo siguiente:
1-Meto el cd de windows xp en el so de m$ pero no me detectaba el disco duro a la hora de formatear.
2-Me meto en ms-dos y tampoco me deja formatear.
3-Meter el cd de windows de xp y poner en las bios que me arranque desde el cd
4-Una vez arrancado no puedo iniciar el proceso de instalación porque no me detecta el disco duro (creo que por el grub).
No problemo digo yo, me meto en ubuntu y con el gestor de particiones formateo en ntfs la particion de windows xp y lo intento de nuevo. Otra vez el mismo fallo. Asi que al final para volver a instalar windows formatee tambien linux "y lo hago todo de nuevo"-me dije yo. Primero instalo windows y despues de nuevo ubuntu.
Asi que ahora solo tenia dos particiones, el de datos y los otros dos de windows y linux los uni en uno en formato ntfs.
Vuelvo a meter el cd del xp y arranco desde el cd nada mas encender el ordenador y seguia sin detectarme el disco duro. Asi que ya harto llamé a una tienda de un amigo mio de informatica y llamando a Maxtor (la marca de mi disco duro) me consiguio un cd para poder "reiniciar" el disco duro, lo que hizo que se pusiera como si estuviera de fabrica y me borró TODO el disco duro.
Ya despues me pude instalar windows y hasta ahora no he querido meterle ubuntu por esta razón.
Espero haber explicado mejor mi antiguo problema. Se que no tiene nada que ver con la ps3 asi que perdon por el off-topic.
EDIT: lo de utilizar la recuperacion del cd de windows para hacer el fixmbr tampoco me funcionaba ya que como no me detectaba el disco duro no me dejaba recpuerar nada.
Editado por ReKoN el 28-03-2007 a las 15:20
elotro99 escribió:Ya sabía lo del audio, pero te comento. Si instalo este Feisty ahora (sin audio), ¿podré actualizarlo el 19 de abril cuando salga la nueva release, o por el contrario tendré que reinstalarlo entero?
Lo digo porque esta noche iba a instalar el Yellow, pero ya puestos me apetece más el Feisty para dejarlo a posteriori, para ir haciendo pruebas con el Freevo.
Grache.
elotro99 escribió:Este Ubuntu me coge la resolúción a 720p mejor que el fedora 6, eso si, no hace full, aún no lo he probado, pero lo más probable es que me corte tanto los bordes superiores (perdiendo menús) como inferiores amén de los laterales.
trilitri escribió:Ésto lo configuras con el comando ps3videomode, no?
elotro99 escribió:Con el Feisty Fawn no tuve que tocar el ps3videomode -v 3 -f, el sólo buscó la mejor y tachán, Genial!. Ahora toca colocar el Freevo.
Gaditanor escribió:Se sabe ya algo de la version que salia el dia 19 de este mes....
novedades?
Un saludo
jorgifumi escribió:Aquí tenéis el torrent de la nueva versión: http://cdimage.ubuntu.com/ports/releases/7.04/release/ubuntu-7.04-desktop-powerpc+ps3.iso.torrent
Salu2
Merc escribió:Yo me he bajado e instalado en el pc kubuntu 7.04. Mi pregunta es si esta version vale para ps3 o me tengo que bajar otra iso.
gracias!
danielius escribió:y si tenemos la beta instalada como actualizamos? hay que formatear?
duelsevilla escribió:¿sabe alguien si por fin funcionara el wifi o habra q seguir esperando?
Salu2.
Merc escribió:jorgifumi o el que lo tenga rulando esta version. Tiene soporte para baja resolucion, para mi television de tubo?
y esta version es de ubuntu sin kde. no hay version kubuntu para ps3 o simplemente luego instalamos el kde el que lo quiera?
graciass
Muchísimas gracias por el enlace compañero.jorgifumi escribió:Aquí tenéis el torrent de la nueva versión: http://cdimage.ubuntu.com/ports/releases/7.04/release/ubuntu-7.04-desktop-powerpc+ps3.iso.torrent
Salu2
Hidalgo escribió:Muchísimas gracias por el enlace compañero.
Para mí que soy novatísimo en Linux, pero que se podría decir que soy avanzado en WXP, qué me recomiendas para empezar: ¿Ubuntu o Gentoo?
Tengo entendido que Gentoo se considera más pro. También creo que Gentoo se compila expresamente para el hardware de la máquina donde se va a instalar. Ubuntu también debería hacerlo, ¿no?
El caso es que por lo poco que sé, entiendo que Ubuntu es la distro más "fácil" y Gentoo la más potente. ¿Qué me recomiendas? Iba a ponerle gentoo de cabeza a la PS3, pero es que me atraen mucho los comentarios de la gente...
En fin, gracias y saludos!!!
gme4 escribió:¿Que version es la que se cuelga?
Yo me estoy descargando:
http://cdimage.ubuntu.com/ports/releases/feisty/release/ubuntu-7.04-desktop-powerpc+ps3.iso
trilitri escribió:La del día 14 creo haber entendido que le tiró a uno:
http://cdimage.ubuntu.com/ports/daily-live/20070414/
La última, que es la 15, esa es la final, es la que no tira. Pero tampoco aseguro que la del 14, tíre... Así que si alguien va a bajar una que baje la del 14.
gme4 escribió:trilitri, ¿te descargaste la del 15 por torrent o por web?
Cobra77, debes mirar la ruta de enlace de la descarga ya que se llaman igual. Si la ruta incluye "daily-live/20070414/" es la del 14, sino es la 15. Si te la traes por torrent, la verdad es que no se cual sería...