|
|
How can I protect private folders on my Mac?My sister and I share a Mac computer and I'm tired of her looking at my files. Is there some way I can protect or hide my folders without downloading any software she'd notice? Seems to me that the very best possible solution is for you and your sister to set up different accounts on your Mac, actually. That's one of the real benefits of Mac OS X (and, for that matter, Windows too). You can do that by simply going to Apple --> System Preferences... --> Accounts and setting up an account for her. Then simply ensure that you log out when you're done with the computer each time and she won't be able to get to any of your files and you'll be safe from having her mess with your preferences, settings, etc. No? That's not what you want to do? Okay, I'll give you a couple of neat Terminal tricks that can help you out, one that lets you make a folder closed to everyone and another that makes it disappear completely until you make it reappear. In both cases, you'll need to launch Applications --> Utilities --> Terminal.app. It'll start out in your account "home" directory, which you can check by typing pwd. Move to the directory where your folder or files lives by typing in cd followed by the name of the directory. For example, if I wanted to protect a folder on the Desktop, then I'd type in cd Desktop and move there. Now, to make a folder completely locked and unreadable, simply type in: $ chmod 000 my-protected-folder
You won't get any feedback but you'll end up with something like this (pay particular attention to the "testing123" folder and how it's portrayed): ![]() To get back in when you want to, simply go back to the same place with the "cd" command and type in: $ chmod 775 my-protected-folder
To hide a folder or file completely, simply preface its name with a ".". For example, to hide "testing123" I'd rename it ".testing123": $ mv testing123 ".testing123"
Wanna get that one back to normal? Go back to the same directory and type in the reverse: mv .testing123 testing123 So there you go, three possible solutions to your problem. Hope one of them works out for you!
More Useful Mac OS X Help Articles:
✔ Audacity can't find LAME library, I can't save Mp3?
Hey Dave. I read your article Audacity can't save mp3 audio files and am still puzzled because I downloaded the LAME Mp3 converter...
✔ How to remove Dashboard as a "space" in Mac OS X Spaces?I'm a big fan of the Spaces utility in Mac OS X that lets me have multiple virtual screens [see Set Up Mac...
✔ Best place to buy a cheap MacBook laptop?Hi Dave. I am looking for two gently used MacBook laptops for my teen daughters. Personal computers would greatly facilitate their studies as...
✔ File too big error copying to USB flash drive on my Mac?I'm baffled. I have a 16GB Kingston USB flash drive that I use on my Mac system and I'm trying to copy a...
✔ Stealth image capture photo from webcam on my Mac?Someone sneaks into my cubicle while I'm at lunch and takes candy out of my desk. Petty, but stupid too. I want to...
Let's stay in touch!
Sign up for my weekly AskDaveTaylor Newsletter and you'll receive even more tech and gadget help
right to your inbox, along with exclusive news and industry updates. It's good stuff. I promise!
Categorized:
Mac OS X Help
(Article 7874,
Written by Dave Taylor)
Tagged: confidentiality, hidden folders, mac os x, privacy, security Previous: How can I add a custom Google search engine to my site? Next: Did MySpace introduce a new type of friend invitation? Reader Comments To Date: 6Hilda Oquendo said, on August 18, 2008 12:56 AM:
I didn't understand Natalie said, on October 4, 2008 7:11 PM:
Hi, I now have something that has appeared "On My Mac" that contains all the folders I've created to store information. Unfortunately I do no have the ability to add any additional "Folders" as I was able to do prior. Can you explain what has happened and if I can fix this? Thank you, kurt cobain said, on November 26, 2008 4:00 AM:
how can i protect my video cd(.dat) from burn/copy? i wanna lock it kurt cobain said, on November 26, 2008 4:06 AM:
how can i protect my video cd(.dat) from burn/copy? i wanna lock it Ray said, on December 3, 2009 7:22 PM:
On my MacBook I have Administrator Account, 2 other normal accounts and guest account. I have just discovered that in Finder for any of the accounts, including guest, I can Search for images, movies and documents and I can see and open the images, movies and documents from other accounts. I thought you cannot have access to the other accounts unless you have the password or use the public folder. I can also delete these files.
I do have a comment, now that you mention it!Check This Out Too... |
Recent Entries
Look for Answers
Recommended
All Our Categories
Apple iPad Help
Articles and Reviews Auctions and Online Shopping Blogs and Blogging Building Web Site Traffic Business and Management Computer and Internet Basics d) None of the Above Facebook Help Google Gmail Help Google Plus Help HTML, JavaScript and Web Site Programming Industry News and Trade Shows iPhone and Cell Phone Help iPod, Sony PSP and MP3 Player Help Kindle Fire Help Mac OS X Help Pay Per Click (PPC) Advertising Pinterest Help Search Engine Optimization (SEO) Shell Script Programming Tech Support Video Help The Writing Business Twitter, LinkedIn and Social Network Help Unix and Linux Help Video Game Tips and Help Windows PC Help Find Me on Google+ ADT on G+ |
I have a suggestion: what about using Disk Utility to make an encrypted disk image (just make the initial image with enough head room to accommodate the folder growing to a big size later) and password protect it.
Opening (mounting) the image would require a password each time you want to open (read from or write files to the folder). Remember to eject the image once you're done using it.
While this seems simpler for the novice user than using the terminal it would be pretty obvious to other users, or your sister in this case. But if you put the image in a place that was a little out of the way she might just mistake it for something that belongs to the system.
Just an idea..