ps2 linux help
ps2 linux help
alright im using the guide from http://mitglied.lycos.de/ps2dev/tutoria ... linux.html
i have every file download and on my usb i named them right and everything
get stuck on step 7 i type in fdisk /dev/ide/host0/bus0/target0/lun0/disc and i get no such file or directory, i tryed everything. since im a linux noob maybe im not typing it in right or something.
this is what my usb stick looks like
i have every file download and on my usb i named them right and everything
get stuck on step 7 i type in fdisk /dev/ide/host0/bus0/target0/lun0/disc and i get no such file or directory, i tryed everything. since im a linux noob maybe im not typing it in right or something.
this is what my usb stick looks like
Either you don't have internally connected a hard disc or you have the same problem as described here:
http://forums.ps2dev.org/viewtopic.php?t=10452
You can enter the command:
to see if hard disc was detected while Linux startup. There is a maximum size supported. I am not sure, but I think it is 160 GB (factor 1000 instead of 1024).
http://forums.ps2dev.org/viewtopic.php?t=10452
You can enter the command:
Code: Select all
dmesg | less
Yes.max4242 wrote: does my usb drive look right?
Normally you would use a partition manager, but I don't want to describe how to do this under windows.max4242 wrote: hmmm i recognizes my hdd i dont know what to do...
So the easiest way to rewrite the partition table is to install Windows 95, 98 or Millenium on it. WARNING: Disconnect your existing (Windows) hard disc before or everything can be deleted. Short time after it begins to copy files, you can switch it off. Then reconnect it to the PS2 and try again.
finnaly works after formating so i type in step seven
fdisk /dev/ide/host0/bus0/target0/lun0/ disc
it comes up as
usage: fdisk [-b SS2] [-u[ DISK change partition table
fdisk -1 [-b SS2] [-u] DISK List partition table(s)
Fdisk -s PARTITION Give partition size(s) in blocks
fdisk -v give fdisk version
here DISk is something like /dev/hdb or /dev/sda
and partition is something like /dev/hda?
-u: give start and end in sector (instead of cylider) units
-b:2048: (for centain NO disks) use 2048-byte sectors
so what do i do now
(btw im using hdd)
fdisk /dev/ide/host0/bus0/target0/lun0/ disc
it comes up as
usage: fdisk [-b SS2] [-u[ DISK change partition table
fdisk -1 [-b SS2] [-u] DISK List partition table(s)
Fdisk -s PARTITION Give partition size(s) in blocks
fdisk -v give fdisk version
here DISk is something like /dev/hdb or /dev/sda
and partition is something like /dev/hda?
-u: give start and end in sector (instead of cylider) units
-b:2048: (for centain NO disks) use 2048-byte sectors
so what do i do now
(btw im using hdd)
Seems like you entered a space before "disc". Don't enter spaces in path names.max4242 wrote: fdisk /dev/ide/host0/bus0/target0/lun0/ disc
The first is correct, but the second is not.max4242 wrote: here DISk is something like /dev/hdb or /dev/sda
and partition is something like /dev/hda?
Internal hard disc:
/dev/ide/host0/bus0/target0/lun0/disc <=> /dev/hda
/dev/ide/host0/bus0/target0/lun0/part1 <=> /dev/hda1
/dev/ide/host0/bus0/target0/lun0/part2 <=> /dev/hda2
/dev/ide/host0/bus0/target0/lun0/part3 <=> /dev/hda3
USB Memory stick:
/dev/scsi/host0/bus0/target0/lun0/disc <=> /dev/sda
/dev/scsi/host0/bus0/target0/lun0/part1 <=> /dev/sda1
/dev/scsi/host0/bus0/target0/lun0/part2 <=> /dev/sda2
/dev/scsi/host0/bus0/target0/lun0/part3 <=> /dev/sda3
Don't use these parameters. You will never find the correct values. Autodetection should work.max4242 wrote: -u: give start and end in sector (instead of cylider) units
-b:2048: (for centain NO disks) use 2048-byte sectors