Official Gitbrew Forums
These forums cover all aspects of the Gitbrew biosphere. If you would like your development project to be based here, ask an admin.

Home » PS3 » OtherOS++ » Linux » [Petitboot] system going down (Petitboot hanging after system going down)
[Petitboot] system going down [message #153] Sun, 08 January 2012 16:55 Go to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
I have followed the guide on http://www.ps3devwiki.com/index.php?title=OtherOS%2B%2B#Othe rOS.2B.2B_How-To , used the CFW355-OTHEROS++-22GB firmware on a PS3 slim CHECH-2004B.

Im trying to put Ubuntu on.
I did everything according to the guide. tried the auto way of using an iso on disk to install, but hangs on system going down....
I then thought let me compile the kernel from the guide Smile

It took me awhile but i got it done.
went reboot from petitboot, then in XMB ran reboot, and selected the first option to run the OS
And then it goes Booting. then system going down. and then system just hangs on there Sad
(left it overnight so that it could load, no luck)

I am unsure what i have done wrong here

How can i mount the system that i complied in petitboot, or run it "manually" from the shell.
maybe a debug to see whats "hanging"
Re: [Petitboot] system going down [message #154 is a reply to message #153] Sun, 08 January 2012 17:02 Go to previous messageGo to next message
glevand is currently offline  glevand
Messages: 955
Registered: July 2011
Location: SONY
Gitbrew God
Did you try my precompiled kernel ?
Re: [Petitboot] system going down [message #155 is a reply to message #154] Sun, 08 January 2012 17:10 Go to previous messageGo to next message
glevand is currently offline  glevand
Messages: 955
Registered: July 2011
Location: SONY
Gitbrew God
I also uploaded some new kernels here:

http://gitbrew.org/~glevand/ps3/linux/linux-3/

You could test it too.
Re: [Petitboot] system going down [message #156 is a reply to message #155] Sun, 08 January 2012 17:46 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
sorry im a big noob... Sad

1. How can i load the system again in shell, so as to download the kernel?
basically allowing me to skip directly to the installing kernel step Smile

Or must redo from start?

Re: [Petitboot] system going down [message #157 is a reply to message #156] Sun, 08 January 2012 18:05 Go to previous messageGo to next message
glevand is currently offline  glevand
Messages: 955
Registered: July 2011
Location: SONY
Gitbrew God
Put the kernel on USB drive e.g., start petitboot, mount your Linux partition, extract there the kernel, modify kboot.conf and try to boot it.
Re: [Petitboot] system going down [message #158 is a reply to message #157] Sun, 08 January 2012 18:09 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
using these commands

umount /dev/ps3dd2
mount /dev/ps3dd2 /mnt/ubuntu?

but wouldnt it be from a different dir?

sorry need baby steps please Sad
Re: [Petitboot] system going down [message #159 is a reply to message #158] Sun, 08 January 2012 18:54 Go to previous messageGo to next message
glevand is currently offline  glevand
Messages: 955
Registered: July 2011
Location: SONY
Gitbrew God
petitboot mounts it automatically but read-only.
you have to remount it with write mode enabled so you could write there.

type mount and you will see where ps3dd2 is mounted.
Re: [Petitboot] system going down [message #160 is a reply to message #159] Sun, 08 January 2012 19:19 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
- Unmount ps3dd2:
umount /dev/ps3dd2

- Make ubuntu dir:
mkdir /mnt/ubuntu

- Mount ps3dd2 to ubuntu dir
mount /dev/ps3dd2 /mnt/ubuntu

- cd to usb device (e.g. sda1) where kernel is:
cd /tmp/petitboot/mnt/sda1

- Extract kernel (e.g. linux-2.6.39.4-build.tar.bz2) to ubuntu dir:
tar jxvf linux-2.6.39.4-build.tar.bz2 -C /mnt/ubuntu

- list /boot, take note of new vmlinux file:
ls /mnt/ubuntu/boot

- Edit kboot.conf:
nano /mnt/ubuntu/etc/kboot.conf

- adding (or edit) something like this:
Ubuntu=/boot/vmlinux-XXXXXXXX root=/dev/ps3dd2

- then save kboot.conf with CTRL+O, and exit with CRTL+X

[Updated on: Sun, 08 January 2012 23:04]

Report message to a moderator

Re: [Petitboot] system going down [message #162 is a reply to message #160] Sun, 08 January 2012 22:07 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
I think there something so simple i am missing...

Firstly i downloaded gitbrew.org/~glevand/ps3/linux/linux-3/linux-3.1.7-build.tar .bz2

Then i did the following:
>- Unmount ps3dd2:
>umount /dev/ps3dd2
>
>- Make ubuntu dir:
>mkdir /mnt/ubuntu
>
>- Mount ps3dd2 to ubuntu dir
>mount /dev/ps3dd2 /mnt/ubuntu
>
>- cd to usb device (e.g. sda1) where kernel is:
>cd /tmp/petitboot/mnt/sda1
>

I had to use the command tar xvjf linux-3.1.7.tar.bz2 to copy to ubuntu root folder.

Am I surpose to do something before I list /boot, because all I get is the previous kernel that I built from the wiki tut
ls /mnt/ubuntu/boot, shows the following:
System.map-2.6.39-gd49d156 config-2.6.39-gd49d156 vmlinux-2.6.39-gd49d156

My understanding is that I have now copied the new kernel to ubuntu root, how do i get the vm image in /boot?
Re: [Petitboot] system going down [message #163 is a reply to message #162] Sun, 08 January 2012 23:10 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
'cause it was extracted in /mnt/ubuntu/linux-2.6.39.4-build
...so now do:

mv /mnt/ubuntu/linux-2.6.39.4-build/* /mnt/ubuntu

[Updated on: Mon, 09 January 2012 00:58]

Report message to a moderator

Re: [Petitboot] system going down [message #164 is a reply to message #163] Mon, 09 January 2012 08:41 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
Embarrassed I realised were I made a mistake now

I downloaded from
http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.1.7.tar. bz2

Instead of the build in
gitbrew.org/~glevand/ps3/linux/linux-3/linux-3.1.7-build.tar .bz2

I was reading the how to in http://gitbrew.org/~glevand/ps3/linux/linux-3/
and then downloaded from the link in there

:palmhead

downloading the actaul build now Smile

I let know of the outcome Very Happy
Re: [Petitboot] system going down [message #165 is a reply to message #164] Mon, 09 January 2012 10:05 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
ok so i tried the 3 build first, gets past the system going down step... but then screen just says no signal.

so i skim k, lets try the 2.6

I had to rename the existing boot to boot.old
and the existing lib to lib.old

I was then able to mv the dir from linux-2.6

changed the kboot entry

and YAY I could see penguins!

but then it just stays here.....
./fa/1/0/
Re: [Petitboot] system going down [message #166 is a reply to message #165] Mon, 09 January 2012 11:38 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
Try with this.
Re: [Petitboot] system going down [message #167 is a reply to message #166] Mon, 09 January 2012 16:50 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
done

get this...

looks same as the other one Crying or Very Sad

./fa/2/0/
Re: [Petitboot] system going down [message #168 is a reply to message #167] Mon, 09 January 2012 17:10 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
Can you please go to petitiboot and do this:

ls /tmp/petitboot/mnt/ps3dd2/boot


and this:

cat /tmp/petitboot/mnt/ps3dd2/kboot.conf


and post the output here.
Re: [Petitboot] system going down [message #169 is a reply to message #168] Mon, 09 January 2012 17:24 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
root@ps3-linux:/# ls /tmp/petitboot/mnt/ps3dd2/boot
System.map-2.6.39-00061-gdea6f7d freebsd_loader_hdd.ps3
config-2.6.39-00061-gdea6f7d vmlinux-2.6.39-00061-gdea6f7d

root@ps3-linux:/# cat /tmp/petitboot/mnt/ps3dd2/kboot.conf
cat: can't open '/tmp/petitboot/mnt/ps3dd2/kboot.conf': No such file or directory

There is a kboot.conf file in etc. should there be one in the root as well?
root@ps3-linux:/# cat tmp/petitboot/mnt/ps3dd2/etc/kboot.conf
Ubuntu=/boot/vmlinux-2.6.39-00061-gdea6f7d root=/dev/ps3dd2
Re: [Petitboot] system going down [message #170 is a reply to message #169] Mon, 09 January 2012 17:51 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
It seems to be ok. kboot.conf in root or in /etc is the same thing.
Re: [Petitboot] system going down [message #171 is a reply to message #170] Mon, 09 January 2012 17:58 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
hmm, can you post output of:

ls /tmp/petitboot/mnt/ps3dd2
Re: [Petitboot] system going down [message #172 is a reply to message #171] Mon, 09 January 2012 18:09 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
root@ps3-linux:/# ls /tmp/petitboot/mnt/ps3dd2
bin home mnt sbin tmp
boot lib opt selinux usr
boot.old lib.old proc spu var
dev linux-2.6.39.4-build ps3linux_kernel_latest srv
etc media root sys

would keeping the "old" folders be causing an issue?
Re: [Petitboot] system going down [message #173 is a reply to message #172] Mon, 09 January 2012 18:35 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
No way old dir can cause problems.

Show me the output of:
cat /tmp/petitboot/mnt/ps3dd2/etc/fstab

ls -l /dev/ps3d*

df -h

mount
Re: [Petitboot] system going down [message #174 is a reply to message #173] Mon, 09 January 2012 18:41 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
root@ps3-linux:/# cat /tmp/petitboot/mnt/ps3dd2/etc/fstab
/dev/ps3dd2 / ext3 defaults 0 1
/dev/ps3vram none swap sw 0 0
/dev/ps3dd1 none swap sw 0 0
/dev/sr0 /mnt/cdrom auto noauto,ro 0 0
proc /proc proc defaults 0 0
shm /dev/shm tmpfs nodev,nosuid,noexec 0 0

root@ps3-linux:/# ls -l /dev/ps3d*
brw-rw---- 1 root root 254, 0 Jan 9 2012 /dev/ps3da
brw-rw---- 1 root root 254, 16 Jan 9 2012 /dev/ps3db
brw-rw---- 1 root root 254, 32 Jan 9 2012 /dev/ps3dc
brw-rw---- 1 root root 254, 48 Jan 9 2012 /dev/ps3dd
brw-rw---- 1 root root 254, 49 Jan 9 2012 /dev/ps3dd1
brw-rw---- 1 root root 254, 50 Jan 9 2012 /dev/ps3dd2

root@ps3-linux:/# df -h
Filesystem Size Used Available Use% Mounted on
tmpfs 111.9M 44.0K 111.9M 0% /tmp
udev 111.9M 188.0K 111.7M 0% /dev
/dev/ps3dc 2.0G 32.0K 2.0G 0% /tmp/petitboot/mnt/ps3dc
/dev/ps3vflashe 472.0K 0 472.0K 0% /tmp/petitboot/mnt/ps3vflashe
/dev/ps3vflashd 15.9M 520.0K 15.4M 3% /tmp/petitboot/mnt/ps3vflashd
/dev/ps3vflashc 199.6M 178.0M 21.6M 89% /tmp/petitboot/mnt/ps3vflashc
/dev/ps3dd2 16.5G 3.5G 12.2G 22% /tmp/petitboot/mnt/ps3dd2
/dev/sda1 474.0M 41.3M 432.7M 9% /tmp/petitboot/mnt/sda1

root@ps3-linux:/# mount
rootfs on / type rootfs (rw)
proc on /proc type proc (rw,noatime)
sysfs on /sys type sysfs (rw,noatime)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noatime,size=114620k)
udev on /dev type tmpfs (rw,noatime,mode=755)
devpts on /dev/pts type devpts (rw,noatime,mode=600)
/dev/ps3dc on /tmp/petitboot/mnt/ps3dc type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
/dev/ps3vflashe on /tmp/petitboot/mnt/ps3vflashe type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
/dev/ps3vflashd on /tmp/petitboot/mnt/ps3vflashd type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
/dev/ps3vflashc on /tmp/petitboot/mnt/ps3vflashc type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
/dev/ps3dd2 on /tmp/petitboot/mnt/ps3dd2 type ext3 (ro,relatime,errors=continue,data=writeback)
/dev/sda1 on /tmp/petitboot/mnt/sda1 type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
root@ps3-linux:/# mount
rootfs on / type rootfs (rw)
proc on /proc type proc (rw,noatime)
sysfs on /sys type sysfs (rw,noatime)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noatime,size=114620k)
udev on /dev type tmpfs (rw,noatime,mode=755)
devpts on /dev/pts type devpts (rw,noatime,mode=600)
/dev/ps3dc on /tmp/petitboot/mnt/ps3dc type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
/dev/ps3vflashe on /tmp/petitboot/mnt/ps3vflashe type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
/dev/ps3vflashd on /tmp/petitboot/mnt/ps3vflashd type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
/dev/ps3vflashc on /tmp/petitboot/mnt/ps3vflashc type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
/dev/ps3dd2 on /tmp/petitboot/mnt/ps3dd2 type ext3 (ro,relatime,errors=continue,data=writeback)
/dev/sda1 on /tmp/petitboot/mnt/sda1 type vfat (ro,relatime,fmask=0022,dmask=0000,allow_utime=0022,codepage =cp437,iocharset=iso8859-1)
Re: [Petitboot] system going down [message #175 is a reply to message #174] Mon, 09 January 2012 18:52 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
try to add this line to /tmp/petitboot/mnt/ps3dd2/etc/fstab:

dev	/dev	tmpfs	rw	0 0
Re: [Petitboot] system going down [message #176 is a reply to message #175] Mon, 09 January 2012 19:05 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
No luck Sad

exact same boot up screen
Re: [Petitboot] system going down [message #177 is a reply to message #176] Mon, 09 January 2012 19:19 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
Well, I don't know where the problem could be, it seems to be all right.
Maybe it's ubuntu installation itself.
Re: [Petitboot] system going down [message #178 is a reply to message #177] Mon, 09 January 2012 19:33 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
Maybe I found a problem. You said you had renamed lib in lib.old, but that dir contain system files other than kernel modules. So now do:

umount /dev/ps3dd2
mkdir /mnt/ubuntu
mount /dev/ps3dd2 /mnt/ubuntu
rm -rf /mnt/ubuntu/lib.old/modules
mv /mnt/ubuntu/lib.old/* /mnt/ubuntu/lib

[Updated on: Mon, 09 January 2012 20:48]

Report message to a moderator

Re: [Petitboot] system going down [message #179 is a reply to message #178] Mon, 09 January 2012 21:20 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
ok now i get this...
./fa/3/0/
Re: [Petitboot] system going down [message #180 is a reply to message #179] Mon, 09 January 2012 21:26 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
add:

noplymouth nosplash


to kboot.conf, e.g.:

Ubuntu=/boot/vmlinux-2.6.39-00061-gdea6f7d root=/dev/ps3dd2 noplymouth nosplash




Re: [Petitboot] system going down [message #181 is a reply to message #180] Mon, 09 January 2012 22:24 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
I added that

get this...

./fa/4/0/
Re: [Petitboot] system going down [message #182 is a reply to message #181] Mon, 09 January 2012 22:47 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
Are you sure you added this in fstab?

dev	/dev	tmpfs	rw	0 0


because this should be the trick
http://jonmccune.wordpress.com/2010/07/27/plymouth-main-proc ess-341-killed-by-segv-signal/
http://ubuntuforums.org/showthread.php?t=1787669


Anyway, this is an ubuntu problem.

try to update the system from petitboot:

umount /dev/ps3dd2
mkdir /mnt/ubuntu
mount /dev/ps3dd2 /mnt/ubuntu
mount -t proc none /mnt/ubuntu/proc
mount --rbind /dev /mnt/ubuntu/dev
LANG=C chroot /mnt/ubuntu /bin/bash
export TERM=xterm-color
apt-get update
apt-get upgrade
dpkg-reconfigure plymouth
exit
reboot

[Updated on: Mon, 09 January 2012 22:56]

Report message to a moderator

Re: [Petitboot] system going down [message #183 is a reply to message #182] Tue, 10 January 2012 12:34 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
I did
> umount /dev/ps3dd2
> mkdir /mnt/ubuntu
> mount /dev/ps3dd2 /mnt/ubuntu
> mount -t proc none /mnt/ubuntu/proc
> mount --rbind /dev /mnt/ubuntu/dev
> LANG=C chroot /mnt/ubuntu /bin/bash
> export TERM=xterm-color
> apt-get update
> apt-get upgrade

I get this

root@ps3-linux:/# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up rsyslog (4.6.4-2ubuntu4.1) ...
start: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused
invoke-rc.d: initscript rsyslog, action "restart" failed.
dpkg: error processing rsyslog (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
rsyslog
E: Sub-process /usr/bin/dpkg returned an error code (1)

I thought maybe there was an issue with sources.list, so changed the deb-src's to FTP

Should I redo the Disro from start? format and install? what distro would you recommend, used natty for this one, maybe thats the issue?
Re: [Petitboot] system going down [message #184 is a reply to message #183] Tue, 10 January 2012 14:18 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
See if we can make this ubuntu work first.

As I see, there are no updates, but this is strange. Is your ps3 connected to the internet? Have you done "apt-get update" before "apt-get upgrade"?

Redo the above steps, and to avoid upstart error do this just before "apt-get upgrade":

dpkg-divert --local --rename --add /sbin/initctl
ln -s /bin/true /sbin/initctl
Re: [Petitboot] system going down [message #185 is a reply to message #184] Tue, 10 January 2012 17:49 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
It did the "update"

root@ps3-linux:/# dpkg-divert --local --rename --add /sbin/initctl
Adding 'local diversion of /sbin/initctl to /sbin/initctl.distrib'
root@ps3-linux:/# ln -s /bin/true /sbin/initctl
root@ps3-linux:/# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up rsyslog (4.6.4-2ubuntu4.1) ...
root@ps3-linux:/# dpkg-reconfigure plymouth
root@ps3-linux:/# exit

rebooted started up again, looks the "same"

How can I do "debug" or log start up, so as to get all info. might help to see what else could be the problem?

I have 4 lines extra now,

init : network-interface (lo) pre-start process (2982) terminated with status 1
init : network-interface (lo) post-stop process (3037) terminated with status 1
init : plymouth-log main process (3082) terminated with status 1
init : networking main process (3103) terminated with status 1
Re: [Petitboot] system going down [message #186 is a reply to message #185] Tue, 10 January 2012 22:06 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
post the output of

ifconfig
ping -c1 www.google.com



and your sources.list
Re: [Petitboot] system going down [message #187 is a reply to message #186] Tue, 10 January 2012 22:22 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
root@ps3-linux:/# ifconfig
eth0 Link encap:Ethernet HWaddr 00:24:8D:71:19:5F
inet addr:10.0.0.70 Bcast:10.0.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:69 errors:0 dropped:0 overruns:0 frame:0
TX packets:36 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:11237 (10.9 KiB) TX bytes:3323 (3.2 KiB)
Interrupt:31

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:60 errors:0 dropped:0 overruns:0 frame:0
TX packets:60 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:4476 (4.3 KiB) TX bytes:4476 (4.3 KiB)

root@ps3-linux:/# ping -c1 google.com
PING google.com (209.85.229.99): 56 data bytes
64 bytes from 209.85.229.99: seq=0 ttl=48 time=272.070 ms

--- google.com ping statistics ---
1 packets transmitted, 1 packets received, 0% packet loss
round-trip min/avg/max = 272.070/272.070/272.070 ms

root@ps3-linux:/# cat /tmp/petitboot/mnt/ps3dd2/etc/apt/sources.list
deb http://ports.ubuntu.com natty main
deb http://ports.ubuntu.com/ubuntu-ports/ natty main restricted
deb-src http://ftp.usf.edu/pub/ubuntu/ natty main restricted
deb http://ports.ubuntu.com/ubuntu-ports/ natty-updates main restricted
deb-src http://ftp.usf.edu/pub/ubuntu/ natty-updates main restricted
deb http://ports.ubuntu.com/ubuntu-ports/ natty universe
deb-src http://ftp.usf.edu/pub/ubuntu/ natty universe
deb http://ports.ubuntu.com/ubuntu-ports/ natty-updates universe
deb-src http://ftp.usf.edu/pub/ubuntu/ natty-updates universe
deb http://ports.ubuntu.com/ubuntu-ports/ natty multiverse
deb-src http://ftp.usf.edu/pub/ubuntu/ natty multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ natty-updates multiverse
deb-src http://ftp.usf.edu/pub/ubuntu/ natty-updates multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ natty-backports main restricted universe multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ natty-security main restricted
deb-src http://ports.ubuntu.com/ubuntu-ports/ natty-security main restricted
deb http://ports.ubuntu.com/ubuntu-ports/ natty-security universe
deb-src http://ports.ubuntu.com/ubuntu-ports/ natty-security universe
deb http://ports.ubuntu.com/ubuntu-ports/ natty-security multiverse
deb-src http://ports.ubuntu.com/ubuntu-ports/ natty-security multiverse
deb http://ports.ubuntu.com/ubuntu-ports/ natty-proposed restricted main multiverse universe
Re: [Petitboot] system going down [message #188 is a reply to message #187] Tue, 10 January 2012 22:49 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
It's all ok even here... I don't know what else to check.
Re: [Petitboot] system going down [message #189 is a reply to message #188] Wed, 11 January 2012 09:00 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
How can I do a log bootup, so we can see what exatcly is starting or not?

Re: [Petitboot] system going down [message #190 is a reply to message #189] Wed, 11 January 2012 15:41 Go to previous messageGo to next message
KeyofBlueS is currently offline  KeyofBlueS
Messages: 50
Registered: December 2011
Gitbrew Member
plymouth should save a boot log in /var/log/boot.log
Re: [Petitboot] system going down [message #192 is a reply to message #190] Sun, 22 January 2012 10:55 Go to previous messageGo to next message
Spawn is currently offline  Spawn
Messages: 18
Registered: January 2012
Location: South Africa
Gitbrew Noob
root@ps3-linux:/# cat /tmp/petitboot/mnt/ps3dd2/var/log/boot
(Nothing has been logged yet.)

Re: [Petitboot] system going down [message #598 is a reply to message #192] Mon, 06 February 2012 10:07 Go to previous messageGo to next message
Sasà is currently offline  Sasà
Messages: 2
Registered: February 2012
Location: Italia
Gitbrew Noob
Hi guys ... i have a problem too !
when i reboot (step 9 - 10) in petitboot, i can't select the shell option.
no resposne from any keyboard keys (usb or wireless ps3 keyboard), nothing from joypad...
i try to reboot in safemode but i'm still in petitboot choice screen.

p.s. sorry for my english , i'm italian ( not noob)
Re: [Petitboot] system going down [message #601 is a reply to message #598] Mon, 06 February 2012 18:23 Go to previous messageGo to previous message
glevand is currently offline  glevand
Messages: 955
Registered: July 2011
Location: SONY
Gitbrew God
hmm, it seems your keyboard is not supported. what keyboard do you have ?
Did you try to login with telnet ?
Previous Topic: Linux kernel 3.2.2 and PHAT WLAN
Next Topic: Debian LiveCD
Goto Forum:
  


Current Time: Wed Jun 19 07:49:43 CEST 2013

Total time taken to generate the page: 0.02927 seconds