View previous topic :: View next topic |
Author |
Message |
chaos012 n00b
Joined: 23 Sep 2007 Posts: 3
|
Posted: Sun Sep 23, 2007 3:22 pm Post subject: gentoo ps3 install issues |
|
|
i downloaded all of the files listed and followed all instructions found here http://ps3wiki.qj.net/index.php/Gentoo_Howto but i hit a roadblock
when i get here
livecd / # cd /mnt/gentoo
livecd gentoo / # wget http://gentoo.osuosl.org/experimental/ppc64/stages/stage4-970-ps3_32ul.tar.bz2 (If already downloaded in advance, copy the file to /mnt/gentoo now)
livecd gentoo / # tar -xjpf stage4-970-ps3_32ul.tar.bz2
livecd gentoo / # mount -t proc none /mnt/gentoo/proc
livecd gentoo / # mount -o bind /dev /mnt/gentoo/dev
livecd gentoo / # cp /etc/resolv.conf /mnt/gentoo/etc
i cant seem to get the file copied off the usb drive, any help would be appreciated
i have no experience with gentoo or linux for that matter, every tutorial i have read says copy the files from a usb drive to /mnt/gentoo but i dont know how |
|
Back to top |
|
|
oliver Apprentice
Joined: 25 Jun 2003 Posts: 170
|
Posted: Sun Sep 23, 2007 3:27 pm Post subject: |
|
|
whats the error message? |
|
Back to top |
|
|
chaos012 n00b
Joined: 23 Sep 2007 Posts: 3
|
Posted: Sun Sep 23, 2007 3:29 pm Post subject: |
|
|
whenever i try to copy the usb drive i input
cp /dev/sdd1/stage4... /mnt/gentoo
and it says
cp cannot stat /dev/sdd1/stage4... "no such file or directory" |
|
Back to top |
|
|
chaos012 n00b
Joined: 23 Sep 2007 Posts: 3
|
Posted: Sun Sep 23, 2007 4:45 pm Post subject: |
|
|
now when i type fdisk -l
it says "this doesnt look like a partition table
probably you selected the wrong device"
device boot
/dev/sdc1 ?
and then it has a lot of stuff about partition 1, partition 2, and so on... |
|
Back to top |
|
|
corsair Retired Dev
Joined: 06 Oct 2003 Posts: 451 Location: Aachen, Germany
|
Posted: Mon Sep 24, 2007 8:36 pm Post subject: |
|
|
chaos012 wrote: | whenever i try to copy the usb drive i input
cp /dev/sdd1/stage4... /mnt/gentoo
and it says
cp cannot stat /dev/sdd1/stage4... "no such file or directory" |
/dev/sdd1 is the first partition on your device represented as a "device node". You have to mount the device, before you can copy the file to your disk. try this:
Code: |
$ mkdir /mnt/usbstick
$ mount /dev/sdd1 /mnt/usbstick
$ cp /mnt/usbstick/stage4... /mnt/gentoo/
|
|
|
Back to top |
|
|
|