How do I copy files from a DVD to my hard drive?

Joined
Jan 17, 2006
Messages
11
Reaction score
0
Points
1
Location
Atlanta, GA
Your Mac's Specs
2Ghz Macbook
For some odd reason, I'm having a very difficult time moving my files from my old PC to my new MacBook. I burned everything to a DVD and was able to copy some smaller files, but larger directories don't seem to work.

I currently have two finder windows open and when I try to drag a directory of files from the DVD into my "Sites" directory on the MacBook, I get a small grey circle with a line through it. Why am I not allowed to copy files here? The directory I'm trying to copy has a bunch of subdirectories that contain all the files for the various websites that I work on. This is EXTREMELY frustrating...

Your help is greatly appreciated!
 
Joined
Oct 10, 2004
Messages
10,345
Reaction score
597
Points
113
Location
Margaritaville
Your Mac's Specs
3.4 Ghz i7 MacBook Pro (2015), iPad Pro (2014), iPhone Xs Max. Apple TV 4K
Try copying them to the desktop and see what happens.
 
Joined
Apr 29, 2006
Messages
4,576
Reaction score
378
Points
83
Location
St. Somewhere
Your Mac's Specs
Mac Studio, M1 Max, 32 GB RAM, 2 TB SSD
Was your older PC running Linux or a unix variant perchance? This sounds like you don't have read permission to the folders in question, even on the DVD.

Lets apply the strongest technology available on the Mac to solve this problem... Terminal.app! Go to your Utilities folder (use the SHFT+CMD+U keystroke to bring it up) and select Terminal.app from the resulting window.

From there, and assuming that your DVD is available as /Volumes/dvd_name (where "dvd_name" is the name the DVD icon shows on your desktop), type the following magic into Terminal:

mkdir dvd_contents
sudo cp -rf /Volumes/dvd_name/* ~/Documents/dvd_contents

Enter the admin password when challenged and it will take off. This will give you admin rights and then, using those rights, recursively copy the entire contents of the DVD to your Documents/dvd_contents directory.

Now enter:

sudo chown +R your_userid: /Users/your_userid/Documents/dvd_contents

This will reassign ownership of all files in the dvd_contents folder hierarchy to your userid (replace "your_userid" in the above with your actual Mac userid).

Hopefully, all should be well now. You can exit Terminal.app and use whatever means you are most comfortable with to move the files out of the dvd_contents dir and place them wherever you like.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top