Link to home
Start Free TrialLog in
Avatar of klsphotos
klsphotos

asked on

Mac Permissions USB drive

Hello experts,

I have a fat32 usb drive that says I only have read only permissions to it.  It has all my music on it which was backed up from my pc.  Is there any way, either from terminal or any other way I can adjust the permissions without wiping it?

Thank you, Karen
Avatar of awed1
awed1
Flag of United States of America image

If the music was backed-up from your PC, can't you just plug it back into the PC and change your permissions there?

If you place it back into the PC, you might try this:

Place the usb drive back into the PC
Look at the computer in My Computer or This PC and see what the name of the USB drive is.
For instance it may be F: or G: etc.
For now, pretend that it is G:, but in the directions below substitute whatever its designation is.

Open a command prompt.
To do this, you can type cmd into a search bar.
You would then see a little command icon and cmd.exe would be written next to it.
Right click on the icon and choose Run as Administrator
Accept the request.
When the command prompt opens paste in these instructions:

icacls "G:" /grant Everyone:(OI)(CI)F

Safely remove the drive and try using it again.
Avatar of Gerwin Jansen
@awed1 - icacls on a FAT32 file system?
If you only have read permissions on a fat partition, there is something wrong with the disk.

Use the disk's manufacturer's diagnostic utility to find out the disk's status.
sorry - my bad
ASKER CERTIFIED SOLUTION
Avatar of Eoin OSullivan
Eoin OSullivan
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of klsphotos
klsphotos

ASKER

ok. My mistake, it is NTFS file system and it shows that I have read only on the mac.  I plugged it into my pc here at work and can access all files without issue.  The permissions are already set to everyone full control but I realize this does not apply to mac.

I need access to these files on mac....

I am looking into copying them somewhere but is there an easier way to add permissions from the mac?  I'm guessing not
I resolved this:  I plugged the drive back into the pc and browsed the network from my mac and logged in with my windows credentials.  I am currently copying the files from my pc to my mac here at works local hard drive.  Once that is done and I have confirmed that I can access the files I will take the drive and format it on the mac using disk utility and copy the files back to the drive.

Once I am done all of this I will recreate my iTunes library and all my playlist and hopefully have my music back so I can go work out...geez.

Thanks for your help everyone!  I am going to award eoinsullivan since he did state some obvious things that I didn't know and I had no idea it was NTFS until I looked where he told me, thank you.
You can copy FROM the NTFS formatted drive in OSX with no issues .. you should not have any issues copying the music FROM the USB drive onto the Mac OSX system.  This is what you wanted to do so should be OK.

Now you cannot WRITE to the USB Drive from OSX by default.  That is NOT a permissions issue but related to the file-system NTFS which is not fully supported in OSX.

There are several ways around it ..
The best and most reliable is a 3rd party software called Paragon NTFS - http://www.paragon-software.com/home/ntfs-mac/index.html
Install and you can read/write same as on Windows PC
If you're comfortable in OSX Terminal you can also modify the core OSX system to allow the NTFS write feature in the native OSX drivers for NTFS (they are disabled by default) - for FREE
http://macdrug.com/free-ntfs-read-and-write-solutions-in-mac-os-x-el-capitan-or-older/
What OSX version are you using on the MAC?

First with finder check what label your disk has within "Volumes". Then open the terminal and then enter the following command:

diskutil info /Volumes/DRIVENAME | grep UUID

(replace "Drivename" with the label you found above).

Then you can add write support for that device in the fstab file using the following command:

sudo echo "UUID=ENTER_UUID_HERE none ntfs rw,auto,nobrowse" >> /etc/fstab

(replace "ENTER_UUID_HERE" with the UUID you got with your previous command).

After that remount the external disk and you should be able to write to it.
Newer OS X just disables write access in the default automount as Rindi has pointed out.  It does support writing to NTFS, but Apple does not support you doing that.  I write to my NTFS drives frequently from my Mac.