If I set up an additional standard user on my Mac, can I restrict all or part of an external drive (backup drive) so they can't browse it from their login?
open the Get Info window for the folder on your external hard drive that you want to restrict and under Sharing and Permissions give "No Access" to the standard user.
Why not create an encrypted image on it using Disk Utility?
That was the first thing I tried, and what I wanted. "No Access" is only available as an option for "everyone", which apparently does not include the standard user. For the standard user, as well as "staff", the only options available are "Read & Write", "Read only" and "Write only (Drop Box)".
my ibook will see and connect to my xp pc and the segate external drive connected to it... my pc will see and connect to my ibook(desktop,documents,library,music,pictures) but the external drive connected to it(ibook) does not show up on xp pc... both external drives are fat32... do i need to create an "alias" or something like it?
If I set up an additional standard user on my Mac, can I restrict all or part of an external drive (backup drive) so they can't browse it from their login?
Assuming your user account is the owner of all the files on the external you can restrict access using the chmod terminal command.
The permission mask (mode) you would desire is 700 - again, assuming your user account is the owner of all the files.
chmod 700 "/Ext 200/backup" ???
I'm not sure how to deal with the spaces in the drive name in Terminal.
chmod -r 700 /Volumes/Ext\ 200/Backup
ls /Volumes/Ext\ 200/Backup
... If any of those files are owned by a different user, you run the risk of not being able to change permissions back without using root...
I assume you mean a different user on the Mac. All files on the external drive were created by my user before I even set up another user on the Mac. And if something didn't work as planned, I could always log in as root and correct it, right?
I'm not sure why the chmod changed mine, too, but at least I got the result I eventually wanted. Thank you so much for your help!