Apple Event: May 7th at 7 am PT

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Need to change permissions on a DVD I burnt

I have a DVD of my own material - songs I've written that I burnt some years ago to a DVD. I went to put it back into my system so I could re-work something and I cannot copy anything off of this DVD. I looked at the read/write permissions and it says I only can read off of this disc. This is MY material - I'm a composer - I backed this up to make sure it was safe - now I cannot restore it. Any ideas on how to force my DVD to give me back my music?

2 x 3.2 GHz Quad-Core Intel Xeon, Mac OS X (10.5.5), 8 GB 800 MHz DDR2 FB-DIMM

Posted on Feb 14, 2009 2:33 PM

Reply
32 replies

Feb 16, 2009 2:00 PM in response to Kurt Lang

I cannot seem to get the Terminal command to work correctly. It keeps saying "No such file or directory"
Maybe it is because the DVD has such a long name?: Classclown/sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf

There are no spaces but I've tried it with both quotes and no quotes - same result. If you have a moment, can you please walk me through the exact process one more time, including all the enter prompts, spaces, anything else that I might be doing wrong? I'm not a computer novice but I don't often work inside the Terminal and I'm not always sure when to hit return, add a space, or hit enter. Thanks.

Feb 16, 2009 2:28 PM in response to rosindabow

Those slashes are part of the DVD's name on the desktop?

If so, that's likely the whole reason you can't copy anything from the DVD. A slash in the Terminal means that you are separating one folder from the next in a path. It's trying to find the folder Classclown with a subfolder named sep2002, and so on.

Is that right, or is this a path of folders on the disk?

Actually, if that is the name of the disk, you should still be able to use quotes to turn the slashes into characters instead of path separators. You also left out the leading slash and final slash. Without the last slash, "surf" is assumed to be the name of a file, not a folder. If what you posted is the name of the disk, then you would type this in the Terminal:

cd "/volumes/Classclown/sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf/"

If that works, that should then display as part of your prompt in Terminal. Do the list command ( ls ) to see if you can indeed list the contents of the disk. If you can, continue on as above.

Else try:

cd /volumes/"Classclown/sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf/"

Note that I moved the first quote so it encloses only the name of the disk. At the beginning (before /volumes/), the Terminal would likely treat all of those slashes as folder separators.

Feb 16, 2009 4:10 PM in response to rosindabow

Sorry, I was over thinking those slashes. Since there is no slash at the end of the name of the disk, there shouldn't be one on the cd command. It should be:

cd /volumes/"Classclown/sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf"

If after you press Enter the next prompt in the Terminal shows that lengthy path, you'll know you're there.

Feb 16, 2009 4:20 PM in response to rosindabow

I have come DVD-RAM disks I made on a standalone DVD recorder which I cannot access normally. However, as root, I can access them and copy their contents. It's a permissions thing, which is what I expect you are seeing. An administrator is not all-powerful, as is root.

Try this:
Activate the root on your machine if you have not already done so. You will then see "Other" in the login window or if you use fast switching, when you switch to another user.
In the "Other" account, enter
root
and the password you assigned to root
You should be able to copy the files on any CD or DVD, irrespective of any permissions. If you still cannot do so, then there is another issue.

Feb 18, 2009 7:46 AM in response to nerowolfe

nerowolfe wrote:
Try this:
Activate the root on your machine if you have not already done so. You will then see "Other" in the login window or if you use fast switching, when you switch to another user.
In the "Other" account, enter
root
and the password you assigned to root
You should be able to copy the files on any CD or DVD, irrespective of any permissions. If you still cannot do so, then there is another issue.


Tried it - no different - still cannot access the info. But thanks for the idea.

Feb 18, 2009 9:04 AM in response to Kurt Lang

Kurt Lang wrote:
Sorry, I was over thinking those slashes. Since there is no slash at the end of the name of the disk, there shouldn't be one on the cd command. It should be:

cd /volumes/"Classclown/sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf"

If after you press Enter the next prompt in the Terminal shows that lengthy path, you'll know you're there.


I tried every permutation I could even imagine - nothing. It might be the slashes. I tried copying the name directly from the CD itself and it showed up in Terminal as Classclown:sep2002:shoop:shtuck:simpleLife:Spin:start:sum41:surf
Not sure why it put colons in?
I'm about to throw the towel in on this, any final thoughts? Thanks for all your help.

Feb 18, 2009 9:51 AM in response to rosindabow

it showed up in Terminal as Classclown:sep2002:shoop:shtuck:simpleLife:Spin:start:sum41:surf


You may remember from OS 9 and earlier that the colon was the only character you couldn't use. That's because it's the one the OS used to denote as path separators.

While some apps will let you use a / or \ in OS X, you really never should since the underlying UNIX OS considers both of them separators. So when you dragged the disk name into the Terminal, the OS basically told you that by turning the slashes into colons.

So my original thought on this was correct. The OS thinks you have a disk named "Classclown". Everything else is seen as a string of subfolders that don't exist.

Can't hurt to try this, assuming the OS believes the name of the disk is Classclown.

cd /volumes/Classclown/"sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf"

Or this slight variation to account for the first slash in the name.

cd /volumes/Classclown/"/sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf"

Feb 18, 2009 10:20 AM in response to Kurt Lang

So I could actually try a few things instead of just suggesting, I burned a CD with Toast 9, giving it the exact same name as your disk. I was surprised Toast let me put in all of those slashes, but it did.

The resulting disk duplicated your problem. It will mount on the desktop, but in an immediate result of the bad name, I can't drag it to any other position on the desktop. It stays locked below the last drive of those I have mounted. Also like yours, the OS will let me open the disk by double clicking on it, but I can't drag any of the files off the disk, giving me the same "no" symbol.

I've tried all sorts of naming strategies in the Terminal, but it simply returns "No such file or directory" each time. Your only hope may be to put the disk in a Mac with a DVD drive that can boot to OS 9. Then you can get past the problem with the slashes and copy things off.

Feb 18, 2009 10:40 AM in response to Kurt Lang

Kurt Lang wrote:


Can't hurt to try this, assuming the OS believes the name of the disk is Classclown.
cd /volumes/Classclown/"sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf"
Or this slight variation to account for the first slash in the name.
cd /volumes/Classclown/"/sep2002/shoop/shtuck/simpleLife/Spin/start/sum41/surf"


Gave it a try - still no luck. I even tried
cd /volumes/"Classclown"
thinking that since the slashes were being ignored, maybe just the first name might be enough. Nothing ... I thought this would be an easy fix ...

Feb 18, 2009 11:04 AM in response to Kurt Lang

Sorry, I just read your last post after I posted my response to your previous post. Very interesting ... thanks for trying it. Glad to hear it works in a similar fashion. Toast should not let you burn something that it won't let you retrieve - I think I will forward this post to them.

As far as OS 9, I wrote in an earlier post about how the files were copied but when transferred to the OS X, they came up as Unix exec files and I could not find a way to change them back.

Feb 18, 2009 11:22 AM in response to rosindabow

As far as OS 9, I wrote in an earlier post about how the files were copied but when transferred to the OS X, they came up as Unix exec files and I could not find a way to change them back.


That may just be because they lost their Type and Creator codes along the way. The files themselves should still be intact, you just need to assign the correct codes to them, or file extension.

Feb 18, 2009 12:47 PM in response to rosindabow

white circle with a line through it....

The only time I've seen that is when I tried to work with OS9 files on a Mac that cannot run OS9, or the data file requires and OS9 program to run.

that may explain why you can access the files on an OS9 machine, but not your current one.

generic unix icons - files with no resource forks, or Windows executables.

Need to change permissions on a DVD I burnt

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.