 |
|
|
|
 |
Sorry, you must have Javascript enabled to view the PS3News.com Forums. Please visit www.PS3News.com, or enable Javascript.
function showelement(element) {
if (document.getElementById) {
document.getElementById(element).style.display = 'block';
}
else {
if (document.layers) {
document.element.display = 'block';
}
else {
document.all.element.style.display = 'block';
}
}
}
function hideelement(element) {
if (document.getElementById) {
document.getElementById(element).style.display = 'none';
}
else {
if (document.layers) {
document.element.display = 'none';
}
else {
document.all.element.style.display = 'none';
}
}
}
function redirecturl()
{
eval("window" + "." + "location" + "= 'http://www.ps3news.com/'");
}
var host = eval("locat"+"ion.ho"+"st.toUpperCase()");
hideelement('nojscript');
if((host=="WWW.PS3NEWS.COM")||(host=="PS3NEWS.COM")||(host=="ps3news.com")||(host=="74.52.36.42")||(host=="www.ps3news.com"))
{
showelement('hiddenbody');
}
else
{
setTimeout('redirecturl()', 1000)
showelement('noproxy');
hideelement('hiddenbody');
}
| Notices |
Hey, YOU browsing these forums. You know you're not Registered, right? Registering at PS3 News you can:
• Post questions for the resident Sony experts and exchange cheats, tips and secrets
• View LESS ADS while browsing this site (upon Registration mail confirmation)
• Access the PS3 News Chatbox to get help and mingle with the community in realtime!
• Submit News right to our main page, for all to see and discuss
• And have some FUN!
Registration is FAST, simple and absolutely FREE! Sign up quickly HERE right now! |
PS3 Linux News Use this section to talk about PS3 Linux topics!
 |
|

01-27-2007
|
 |
Registered User
|
|
Join Date: Jan 2007
Posts: 16
Rep Power: 2
|
|
|
problems mounting ps3 volume
Hey guys, sorry- this is a noob question, but i'm still a linux noob, so hopefully you guys can help. This may be a very simple and stupid question, but here goes.
Running Yellow Dog 5. PS3 with the latest updates.
I can mount an external usb hard drive fine. Also, I can mount a data cd fine. however, when there is a ps3 game that I insert into the drive, and in the file browser, it comes up with an error box stating error Cannot mount Volume. Unable to mount the volume 'PS3VOLUME'.
any ideas? I tried going thru the gnome terminal and typing in "mount /dev/cdrom" but it returns "can't find /dev/scd0 in e/etc/fstab or /etc/mtab" , and if i type in cd /dev/cdrom it returns "not a directory".
Did they patch this up in the latest update? (never tried before this update) or am not understanding or missing something and doing it all wrong? thanks!
|

01-27-2007
|
 |
Right Hand Man
|
|
Join Date: Apr 2005
Posts: 1,356
Rep Power: 50
|
|
It can not mount PS3VOLUME (which is the Blu-Ray drive) as Blu-Ray disks use UDF2.5!
You can either recompile the kernel with UDF 2.5 support, OR, try this
type -> su (hit enter)
(it may ask you for your root password)
type -> mount -tiso9660 /dev/cdrom /mnt/cdrom (hit enter)
(where /dev/cdrom is the CDROM, and /mnt/cdrom exists as a folder to be mounted to)
Then you should be able to explore it (somewhat) by navigating to /mnt/cdrom
It works on SOME PS3 Games and movies (due to an ISO/UDF bridge!)
|

01-28-2007
|
 |
Registered User
|
|
Join Date: Jan 2007
Posts: 16
Rep Power: 2
|
|
thanks for your help. that ud/isobridge did work, however i would like to recompile the kernel with the udf 2.5 support. Being EXTREMELY new to linux (about 5 days experience, TOTAL!) im not sure that it is the best thing to do right now, but i am very competent with other o/s', just none with linux, and would like to change that.
are these the correct files to use to recompile it with udf 2.5 support?
Post them here- no external links allowed! -Staff
most google searches resulted in discussions of the subject, so i just want to make sure im using the right stuff before i wander off into this adventure!
thanks!
-a
|

01-30-2007
|
 |
Registered User
|
|
Join Date: Jan 2007
Posts: 16
Rep Power: 2
|
|
Thanks for the help so far. I'm still running into a couple of problems and am hoping that you can help me...
I have successfully mounted the bluray drive as /dev/cdrom and the destination drive (ipod) is mounted as /media/WILLIAM SHU' - in which a subdir of PS3 Games exists...
attempting to backup up the game using the dd command:
dd if=/mnt/cdrom of='/media/WILLIAM SHU/PS3 Games/NBA'
results in the response:
dd: reading 'mnt/cdrom': Is a directory
0+0 records in
0+0 records out
0 bytes copied
adding a "/" at the end of cdrom (if=/mnt/cdrom/) results in the same response. I tried running man dd, to learn the switches, and it looks like the if switch is used for single files, not directory. I tried adding the *.* to the /mnt/cdrom/ but it didn't work. If I click on the mounted directory (blu ray disc), it shows 2 directories, and 1 file. This seems like I am using the wrong switch. I don't believe that it is a mounting issue any longer, but I am posting this in this thread because it started with a mounting issue, and am not versed enough with linux to know that it isn't for sure. If this thread needs to be renamed, let me know and I will do so.
Thanks!
|

01-31-2007
|
 |
The Thinker
|
|
Join Date: Nov 2006
Posts: 372
Rep Power: 13
|
|
|
IDK what you're doing but dd if=/dev/cdrom of=/media/WILLIAM SHU/PS3 Games/NBA
might fix what you want to do
|

01-31-2007
|
 |
Right Hand Man
|
|
Join Date: Apr 2005
Posts: 1,356
Rep Power: 50
|
|
|
Agreed, and to be safe, try a umm:
dd if=/dev/cdrom of=/media/WILLIAM*SHU/PS3 Games/NBA.iso
(for completeness, and the * will replace the space, so it does not fail, as sometimes it will think the folder name is only WILLIAM, vs WILLIAM SHU)
|

01-31-2007
|
 |
Registered User
|
|
Join Date: Jan 2007
Posts: 16
Rep Power: 2
|
|
Quote:
Originally Posted by hacked2123
IDK what you're doing but dd if=/dev/cdrom of=/media/WILLIAM SHU/PS3 Games/NBA
might fix what you want to do
|
the dev switch wasn't working for me, where mnt does- the second line i perform a cd /dev/cdrom to show, and again to the dest directory just to make sure that it is all correct. below is everything that I've tried.
Code:
[root@localhost ~]# mount -tiso9660 /dev/cdrom /mnt/cdrom
mount: block device /dev/cdrom is write-protected, mounting read-only
[root@localhost ~]# cd /dev/cdrom
bash: cd: /dev/cdrom: Not a directory
[root@localhost ~]# dd if=/mnt/cdrom of=/media/WILLIAM*SHU/PS3*Games/NBA
dd: opening `/media/WILLIAM*SHU/PS3*Games/NBA': No such file or directory
[root@localhost ~]# cd /media/WILLIAM*SHU
[root@localhost WILLIAM SHU]# cd /media/WILLIAM*SHU/PS3*Games/
[root@localhost PS3 Games]# dd if=/mnt/cdrom of=/media/WILLIAM*SHU/PS3*Games/NBA.iso
dd: opening `/media/WILLIAM*SHU/PS3*Games/NBA.iso': No such file or directory
[root@localhost PS3 Games]#
Quote:
|
(for completeness, and the * will replace the space, so it does not fail, as sometimes it will think the folder name is only WILLIAM, vs WILLIAM SHU)
|
THANKS! I was trying to find out how to do that. It wasn't working with the space, and I tried the 8.3 format (WILLIA~1) and the quotes seemed to work. that makes things so much easier! and thanks for bearing with me here, still a super noob to linux!
|

02-01-2007
|
 |
Right Hand Man
|
|
Join Date: Apr 2005
Posts: 1,356
Rep Power: 50
|
|
|
Umm, do me a favor, type- > cat /proc/mounts
and paste the output here.
Namely, how is William SHU mounted? as in, what kind of filesystem etc?
Furthermore, if your already IN the PS3 Games directory, you can just specify 'of=nba.iso' (it will drop it in the current dir, since its the PS3 one, your set!)
|

02-04-2007
|
 |
Registered User
|
|
Join Date: Jan 2007
Posts: 16
Rep Power: 2
|
|
Quote:
Originally Posted by CJPC
Umm, do me a favor, type- > cat /proc/mounts
and paste the output here.
Namely, how is William SHU mounted? as in, what kind of filesystem etc?
Furthermore, if your already IN the PS3 Games directory, you can just specify 'of=nba.iso' (it will drop it in the current dir, since its the PS3 one, your set!)
|
k thanks, here's the output.
Quote:
[root@localhost ~]# cat /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / ext3 rw,data=ordered 0 0
/dev /dev tmpfs rw 0 0
/proc /proc proc rw 0 0
/sys /sys sysfs rw 0 0
/proc/bus/usb /proc/bus/usb usbfs rw 0 0
devpts /dev/pts devpts rw 0 0
/dev/sda1 /boot ext3 rw,data=ordered 0 0
tmpfs /dev/shm tmpfs rw 0 0
spufs /spu spufs rw 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0
sunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs rw 0 0
/dev/cdrom /mnt/cdrom iso9660 ro 0 0
|
this is the output w.o the mp3 player attached... I've decided to try to get the backup pushed onto the local hard drive first, just to eliminate one more thing from being the problem.
Quote:
[root@localhost PS3Games]# dd if=/mnt/cdrom of=nba.iso
dd: reading '/mnt/cdrom': Is a directory
0+0 records in
0+0 records out
0 bytes (0 B) copied, 0.000884 seconds, 0.0 kB/s
[root@localhost PS3Games]#
|
it seems like that helped a little, but still not successful .... - sorry this seemed to be a long drawn out issue, but if you have any more suggestions / ideas that would be great! tia
-a
|

02-05-2007
|
 |
Right Hand Man
|
|
Join Date: Apr 2005
Posts: 1,356
Rep Power: 50
|
|
Well, thats your problem!
Quote:
[root@localhost PS3Games]# dd if=/mnt/cdrom of=nba.iso
dd: reading '/mnt/cdrom': Is a directory
|
Try using -> dd if=/dev/cdrom of=nba.iso
That should do it!
|
| |