Post: Video: PS3 Linux on Kmeaw CFW 3.55 Custom Firmware Read more: http://www.ps3news.com
02-05-2011, 08:47 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); While graf_chokolo is busy working on returning PS3 OtherOS to the PlayStation 3 entertainment system and posting updates of his progress along the way, kmeaw shared a video of PS3 Linux on PlayStation 3 CFW 3.55 Custom Firmware today alongside AsbestOS Installer v0 and LV2 Patcher v9.

Download: AsbestOS Installer v0 for PS3 / Kmeaw PS3 LV2 Patcher v9 (required) / Gentoo PS3 rootfs (Marcan) / Gentoo PS3 rootfs (Marcan) (Mirror #1) / Gentoo PS3 rootfs (Marcan) (Mirror #2) / Gentoo PS3 rootfs (Marcan) (Mirror #3) / Gentoo PS3 rootfs (Marcan) (Mirror #4) / Gentoo PS3 rootfs (Marcan) (Mirror #5) / Gentoo PS3 rootfs (Marcan) (Mirror #6) / PS3 Linux Kernel Image and Modules

This tool installs AsbestOS, which can be used to boot Linux kernel from lv2patcher v9. Thanks to marcan for AsbestOS, Mathieulh and graf_chokolo for default.spp trick, geohot for dev_flash mount code. Thanks to jbc for testing and KingDong for the icon You would need to set up a DHCP, TFTP and NFS servers on your LAN to make it work. Wireless connection is not supported by AsbestOS yet. Have fun.

Here is what kmeaw had to say about it via IRC:

kmeaw:

kmeaw: it is gentoo
kmeaw: marcan's rootfs
stuntcock: does your linux install have access to gameos from within linux and also to all spus?
kmeaw: no
kmeaw: it doesn't need usb stick
kmeaw: linux has access to all spus
kmeaw: gentoo is running from my laptop's hdd
kmeaw: but if you change your kernel parameters then you can install it on ps3's hdd like marcan did
Lush: is this a different approach than graf_chokolo?
kmeaw: i don't change VFLASH
GraFfiX: kmeaw:does X launch?
kmeaw: haven't tried yet but I think of a reason why it shouldn't
kmeaw: Xfbdev will definitely work
kmeaw: in this video ps3 boots gentoo from the network via nfs
kmeaw: laptop's harddrive partition is exported using nfs kernel server
GraFfiX: is nfs efficient?
GraFfiX: like speed-wise
kmeaw: yes, i have a home NAS exported via nfs
kmeaw: works faster for me than samba
kmeaw: there are no full support for rsx yet
kmeaw: s/are/is/
GraFfiX: kmeaw:do you see any reason why xbmc would not run when we have full rsx?
stuntcock: someone has to code a driver for the video
stuntcock: right
kmeaw: no
kmeaw: when we have full rsx support in linux drivers, then everything should work
kmeaw: i have released asbestos installer
kmeaw: however, it will need some network services configured (DHCP, TFTP and NFS) to make it work
kmeaw: see marcan42's posts for more information
kmeaw: note that asbestos requires lv2 patcher v9
kmeaw: it won't work with v8

Marcan Guide to Running Gentoo Linux on PS3

ubuntu-desktop% sudo apt-get install dhcp3-server tftpd-hpa nfs-kernel-server

You must login or register to view this content. = rootfs
You must login or register to view this content. = kernel image and modules

extract rootfs into /mnt/experimental:
% sudo mkdir -p /mnt/experimental
% sudo tar -C /mnt/experimental -xvpf /path/to/gentoo-ps3-20101020.tar.bz2

then copy 2.6.36-rc7-01073-g47a9595-dirty from ps3linux.tar.gz into /mnt/experimental/lib/modules.

Set up the DHCP server. Put this in /etc/dhcp3/dhcpd.conf:

option domain-name "example.org";
option domain-name-servers 8.8.8.8, 8.8.4.4;
default-lease-time 600;
max-lease-time 7200;
ddns-update-style none;
authoritative;
log-facility local7;
subnet 192.168.2.0 netmask 255.255.255.0 {
range 192.168.2.128 192.168.2.250;
}
next-server 192.168.2.1;
filename "kboot.conf";
option routers 192.168.2.1;

Set up your wired network interface (eth0) to have a static IP address "192.168.2.1".

Copy vmlinux file into /var/lib/tftpboot.

add this line to /etc/exports (requires root privs):

/mnt/experimental 192.168.0.0/16(rw,async,no_root_squash,no_subtree_check,anonui d=0,anongid=0)

Then everything is done. Let's start up the services:

% sudo service tftpd-hpa restart
% sudo service dhcp3-server restart
% sudo service nfs-kernel-server restart

Create a kboot.conf file in /var/lib/tftpboot with this line inside:

linux='vmlinux video=ps3fb:mode:2 root=/dev/nfs rw ip=dhcp nfsroot=192.168.2.1:/mnt/experimental panic=5'

That's all. Run Linux from lv2patcher v9 and see if it boots.

Read more: You must login or register to view this content.
(adsbygoogle = window.adsbygoogle || []).push({});
02-05-2011, 08:49 PM #2
Originally posted by arab707 View Post
While graf_chokolo is busy working on returning PS3 OtherOS to the PlayStation 3 entertainment system and posting updates of his progress along the way, kmeaw shared a video of PS3 Linux on PlayStation 3 CFW 3.55 Custom Firmware today alongside AsbestOS Installer v0 and LV2 Patcher v9.

Download: AsbestOS Installer v0 for PS3 / Kmeaw PS3 LV2 Patcher v9 (required) / Gentoo PS3 rootfs (Marcan) / Gentoo PS3 rootfs (Marcan) (Mirror #1) / Gentoo PS3 rootfs (Marcan) (Mirror #2) / Gentoo PS3 rootfs (Marcan) (Mirror #3) / Gentoo PS3 rootfs (Marcan) (Mirror #4) / Gentoo PS3 rootfs (Marcan) (Mirror #5) / Gentoo PS3 rootfs (Marcan) (Mirror #6) / PS3 Linux Kernel Image and Modules

This tool installs AsbestOS, which can be used to boot Linux kernel from lv2patcher v9. Thanks to marcan for AsbestOS, Mathieulh and graf_chokolo for default.spp trick, geohot for dev_flash mount code. Thanks to jbc for testing and KingDong for the icon You would need to set up a DHCP, TFTP and NFS servers on your LAN to make it work. Wireless connection is not supported by AsbestOS yet. Have fun.

Here is what kmeaw had to say about it via IRC:

kmeaw: You must login or register to view this content.
kmeaw: it is gentoo
kmeaw: marcan's rootfs
stuntcock: does your linux install have access to gameos from within linux and also to all spus?
kmeaw: no
kmeaw: it doesn't need usb stick
kmeaw: linux has access to all spus
kmeaw: gentoo is running from my laptop's hdd
kmeaw: but if you change your kernel parameters then you can install it on ps3's hdd like marcan did
Lush: is this a different approach than graf_chokolo?
kmeaw: i don't change VFLASH
GraFfiX: kmeaw:does X launch?
kmeaw: haven't tried yet but I think of a reason why it shouldn't
kmeaw: Xfbdev will definitely work
kmeaw: in this video ps3 boots gentoo from the network via nfs
kmeaw: laptop's harddrive partition is exported using nfs kernel server
GraFfiX: is nfs efficient?
GraFfiX: like speed-wise
kmeaw: yes, i have a home NAS exported via nfs
kmeaw: works faster for me than samba
kmeaw: there are no full support for rsx yet
kmeaw: s/are/is/
GraFfiX: kmeaw:do you see any reason why xbmc would not run when we have full rsx?
stuntcock: someone has to code a driver for the video
stuntcock: right
kmeaw: no
kmeaw: when we have full rsx support in linux drivers, then everything should work
kmeaw: i have released asbestos installer
kmeaw: however, it will need some network services configured (DHCP, TFTP and NFS) to make it work
kmeaw: see marcan42's posts for more information
kmeaw: note that asbestos requires lv2 patcher v9
kmeaw: it won't work with v8

Marcan Guide to Running Gentoo Linux on PS3

ubuntu-desktop% sudo apt-get install dhcp3-server tftpd-hpa nfs-kernel-server

You must login or register to view this content. = rootfs
You must login or register to view this content. = kernel image and modules

extract rootfs into /mnt/experimental:
% sudo mkdir -p /mnt/experimental
% sudo tar -C /mnt/experimental -xvpf /path/to/gentoo-ps3-20101020.tar.bz2

then copy 2.6.36-rc7-01073-g47a9595-dirty from ps3linux.tar.gz into /mnt/experimental/lib/modules.

Set up the DHCP server. Put this in /etc/dhcp3/dhcpd.conf:

option domain-name "example.org";
option domain-name-servers 8.8.8.8, 8.8.4.4;
default-lease-time 600;
max-lease-time 7200;
ddns-update-style none;
authoritative;
log-facility local7;
subnet 192.168.2.0 netmask 255.255.255.0 {
range 192.168.2.128 192.168.2.250;
}
next-server 192.168.2.1;
filename "kboot.conf";
option routers 192.168.2.1;

Set up your wired network interface (eth0) to have a static IP address "192.168.2.1".

Copy vmlinux file into /var/lib/tftpboot.

add this line to /etc/exports (requires root privs):

/mnt/experimental 192.168.0.0/16(rw,async,no_root_squash,no_subtree_check,anonuid=0,anongid=0)

Then everything is done. Let's start up the services:

% sudo service tftpd-hpa restart
% sudo service dhcp3-server restart
% sudo service nfs-kernel-server restart

Create a kboot.conf file in /var/lib/tftpboot with this line inside:

linux='vmlinux video=ps3fb:mode:2 root=/dev/nfs rw ip=dhcp nfsroot=192.168.2.1:/mnt/experimental panic=5'

That's all. Run Linux from lv2patcher v9 and see if it boots.

Read more: You must login or register to view this content.


I've already posted this, in You must login or register to view this content.

PS. Edit your post next time
02-05-2011, 08:50 PM #3
Midnight.eGo
from El Paso, Texas (915)
Already Posted .. Please close
02-05-2011, 08:51 PM #4
dunczzzz
Climbing up the ladder
Looks Promising
02-05-2011, 08:52 PM #5
TryCatchMe
Like A Boss
Posted before by ropponen Smile
02-05-2011, 09:15 PM #6
wow my brother posted it sorry close mod thanks and sorry guys
02-05-2011, 09:16 PM #7
Well you have a cool bro bro Happy

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo