Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'How to rip .VRO files from DVD video recorders' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
How to rip .VRO files from DVD video recorders
Authored by: zs on Dec 03, '06 03:05:39PM
I see a few problems with what you are doing there:
1) The path has a space in it, which the command line uses to separate arguments. Spaces in paths need to either be escaped by a backslash or surrounded by quotes, as shown below:

% cd /Volumes/Some\ Directory
or
% cd "/Volumes/Some Directory"

Your error message was probably "-bash: cd: /volumes/DVD-VR: No such file or directory" (notice, no "disc" in the error message?)

2) "sudo cd /some/directory" may get you into a directory that your user doesn't have permission to, but you'll have to preface every command in there with "sudo" (eg. "sudo ls" to list the directory). Hopefully you have permissions- to find out, try (with "% " denoting the prompt):

% cd /Volumes
% ls -l

If it shows up in there, look at the permissions. Which leads me to my favorite command line tutorial at OSXFAQ
The "ls" link explains users and groups with a link to permissions. Also, the "autocompletion" link should save you a lot of time.

If you don't have permission, things get more complicated.

Hope this helps! Problems like this are a great way to get into the command line...

---
zs

[ Reply to This | # ]