Users Accessing All Files - 2 Accounts

Hi everyone,
My wife and I share the same iMac for work. On occasion, when one of us tries to to open a file created by the other user we get a -5000 error, which is "access denied". I know about setting up a shared folder, but I would like the entire drive and its contents to be accessible by both user accounts, which are both admin. Can this be done? I have seen posts warning about changing permissions on the entire drive, so I'm being cautious since this machine is used for work.
TIA,
Mike

Here's what I recommend:
1) Go to System Preferences -> Accounts and create a new user with Admin privileges.
2) Log out of your other accounts and into the new Admin account.
3) Open up System Preferences -> Accounts, and uncheck "allow user to administer this computer" for both your and your wife's accounts. Read biovizier's testimonial below on why it is not a good idea to use an Admin account for everyday use.
3) While in the Admin account, go to /Users/Shared, and make a new folder inside called "sharefolder" or something similar.
4) Apply Access Control Lists (ACLs) on your new shared folder to give both you and your wife full read-write access to everything placed inside from this point forward. This can be done by launching Terminal from your new Admin account and entering:
sudo fsaclctl -p / -e (this turns ACLs on on your boot volume)
Paste in all three lines of this at once, replacing USERNAME with the short user name of your regular account:
sudo chmod +a "USERNAME allow delete,chown,list,search,add_file,\
addsubdirectory,delete_child,file_inherit,directoryinherit" \
/Users/Shared/sharefolder
Repeat that last step, replacing USERNAME with the short user name of your wife's account.
Now anything you save in /Users/Shared/sharefolder will be automatically readable and writable by both you and your wife. But do take care to COPY any PRE-EXISTING files to that folder; don't MOVE them there. The ACL settings are only applied if the files are newly created inside the folder; they won't stick if the files are previously existing elsewhere on the boot volume and moved in.
If you want to completely open up all of the contents of both your home folders to each other and make everything readable and writable (which I don't recommend), just enter this into Terminal as well, replacing USERNAME accordingly:
sudo chmod +a "USERNAME allow delete,chown,list,search,add_file,\
addsubdirectory,delete_child,file_inherit,directoryinherit" /Users/USERNAME
When done, log out of the Admin account. You'll find that you will hardly if ever need to use it again. Nearly all admin and even root tasks can be done inside your non-admin account just by authenticating with the admin username and password when prompted.
eMac   Mac OS X (10.4.7)  

Similar Messages

  • I like the idea of auto back-up for my new iMac, Ipad and PC Netbook, particularly if I can access all files and data stored on any device.  But I have a Conceptronic router.  Will Time Capsule work with this and how?

    I like the idea of auto back-up for my new iMac, Ipad and PC Netbook, particularly if I can access all files and data stored on any device.  But I have a Conceptronic router.
    1. Will Time Capsule work with this and how?
    2. Can my printer USB be plugged in and then shared between the devices?
    3. Can I create a network and how?
    4.  What happend when a visitor logs onto my existing wireless router?
    I'm new to Macs (well a returning user having started with Mac Plus!!) and not very technical.  Any help / advice will be much appreciated.
    Ray

    The key to what you seem to want to do is to be able to get Apple's Time Capsule router to "join" the network that your Conceptronic router.  I believe that works with some third-party routers, but I've never seen a list of those that work in such a configuration and I have no experience with Conceptronic equipment.
    You might be better off with a Network-Attached Storage (NAS) device instead of a Time Capsule.

  • When a win7 users accesses a file on the server the permissions on the file revert to read only.

    Hi there,
    Originally my enviroment was 100% Mac, but now we have merged with another company who are all PC users.
    The issue I'm having is when a Windows 7 client accesses a file on the Snow Leopard server the file becomes Read Only, and I have to manually propergate the permissions to fix it. This isn't an issue with XP users.
    So far this is only happening with Excel files.
    Is anyone else experiencing this issue?  Any help would be greatly appreciated.
    Cheers,
    J

    I'm having a similar issue as well.  Excel 2007 appears to be the culprit, but hard for me to say.  Running 10.6.8 here as well.

  • Why can't a user see all files in a network share?

    Windows Server 2008 R2 is sharing a folder. Advanced Sharing permissions give Everyone Full Control.
    NTFS Permissions give the OU "Operations" read/modify permissions.
    In the Operations OU, 1 user (let's call him John) cannot see all the files in this folder. For example, here is the real contents of the folder:
    File1
    File2
    File3
    File4
    File5
    Everyone in the Operations OU sees all the files, except John. When John opens the folder, he sees:
    File2
    File4
    File5
    Several files are simply missing from the list. I have no idea where to look for help on this one. The files are dynamically added to the folder each day, and each day are cleared out. So every day it is a new set of files being generated (they are coming
    from a PDF printer). There is no pattern to which files John can see, and which he cannot. Does anyone have any ideas?
    Jesse

    I had the same problem, and it was related to permissions. My PCs are now running Windows 8.1 and folder properties are set to display file name extensions of all files. The 2 invisible files are File1 and File3 in your example. I have copied them to
    both PCs. Computer A can see them on its own drive, and on computer B via UNC. Computer B can see them on its own drive, but not
    on computer A via UNC. The cause: computer B didn't have permissions on these 2 files on computer A. I was starting the UNC directly from File Explorer, and, in my case, this uses HomeUsers for permissions (over my home network). So, on computer A, I gave
    permissions on these 2 files to the user HomeUsers and that fixed the problem. I will also create a more general solution using inherited permissions.
    Specifically, I selected the file and chose properties/security/advanced/add/select a principal, then typed HomeUsers "Check Names", OK, and selected the desired permissions. This fits your situation: the files are being created automatically and
    don't have the correct permissions for the other PC to see them. Inherited permissions should fix it.
    Tom

  • Accessing ALL files in a Folder

    hello all...
    in my program, i need to access "ALL" the files in a specifc folder in my PC and process the same in the program.
    pls let me know how to access the same...
    regards..
    vishal

    To get the file list see if below code helps you -
    <b>DATA COUNT TYPE I.
    TYPES WA(200) .
    DATA ITAB TYPE STANDARD TABLE OF WA.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_LIST_FILES
      EXPORTING
        DIRECTORY                   = 'C:/'
        FILTER                      = '.'
        FILES_ONLY                  = 'X'
       DIRECTORIES_ONLY            =
      CHANGING
        FILE_TABLE                  = ITAB
        COUNT                       = COUNT
    EXCEPTIONS
       CNTL_ERROR                  = 1
       DIRECTORY_LIST_FILES_FAILED = 2
       WRONG_PARAMETER             = 3
       ERROR_NO_GUI                = 4
       NOT_SUPPORTED_BY_GUI        = 5
       others                      = 6
            .</b>
    After you get the list you can process them one by one by looping on ITAB.
    Cheers.
    Sanjay

  • Is it possible to restrict user access to files that need read/write permissions?

    I am in the process of implementing electronic payments for a company's AP department.  Dynamics GP (Great Plains) needs to create an EFT file that will get sent to the bank.  After it is created, a script is run that sends the TXT file to the
    bank and then renames the file extension to SNT.  Users are logged on to the Great Plains server and have their own permission group.
    Because the file is sending payment instructions, it is essential that users cannot modify or create a file with fraudulent payment instructions to the bank (incorrect bank account info).
    With testing, I was able to save the file from GP to a folder where users cannot read it's contents, however the script cannot send the file to the bank without "read access" (it says not files available).
    Any ideas for solutions?  For instance, is it possible to make Great Plains and/or the script file "system" so that it can override the user profile's permissions? 
    I was also looking into the ability to hide the folder/files, but it appears users can choose to view hidden files and folders.

    I dont think so you can do it that way..

  • How to set up multi-user access for an email account?

    Hi,
    In our business, we run 3 macs with Mountain Lion and use Mail to access our IMAP account. Each of us needs to be able to respond to and see incoming/outgoing messages on our respective computers. Unfortunately our mail provider doesn't like concurrent connections. What kind of application can we use to synchronize this account so everyone sees the same thing on each computer? Any suggestions appreciated.
    I should note that we actually have 10 e-mail accounts which all need to function this way, but in the interest of simplicity let's consider we have just the one. Because we have 10 accounts, we can't use iCloud sync, nor do I want to because I don't trust it. I'm looking for something bulletproof and ideally locally stored.

    I use Dreamhost and have been happy with them. There are probably a few hundred companies with similar services, although Dreamhost is one of the largest. It is pretty standard practice these days to have either Google or Microsoft transparently hold e-mail services. Exchange has definitely won the e-mail protocol wars. Basically just pick one that uses Google or Microsoft.

  • Why does one tag out of four not appear for users accessing a single Thunderbird account via multiple computers?

    Four users share a single Thunderbird email account (version 24.5.0) on their four respective computers. Each user is represented by a tag color to designate which emails they are responsible for. One user is having trouble seeing when their tag is used by the other three users, the email appears untagged. However, the other three users see it as tagged. Likewise, when that one person uses the tag, the other three cannot see the email as being tagged. This is not an issue when the other three tags are used between the four people.
    We have checked that we are all using the exact same color to represent the tag, and that we are all using the same IMAP settings. Does anyone know why this might be happening?

    Are you sure the odd one out is IMAP? sounds like it is pop to me.

  • Stacks - how to access ALL files? (those that don't show)

    I have my Application folder in my dock.
    I used to, under tiger, click on it.
    type 'v'... 'p'.... then apple-O to get my VPN client.
    type 'v'...'i'.. then apple-O to get visual hub.
    Or I could click then scroll around in the folder to find the apps I want, including sub-folders. Now I am limited to the first 100 apps!
    Agghh! How do I turn off stacks on my Apps folder?

    I am hoping and wishing and praying that the next Leopard revision will have the ability to return to the good old - actually efficient - Dock folder behavior. Stack is such a huge step away from efficiency. (And it's not even pretty.) But for now there is a sort of solution....
    On VersionTracker.com I found HierarchicalDock (freeware) and Quay (inexpensive shareware). I have not figured out quite what they're doing, but they're apps. That folder you want to dock - you drag it onto the app's floating window. It does some magic, then you drag that folder from the floating window into the Dock. You get your good old, icon-that-YOU-want on the docked item and it behaves the way you want it to - which is to see all of the contents and be able to access items within folders within that folder.
    I'm also not happy about the reflection. It makes icons smaller or the Dock larger. Items get stuck behind the Dock like in early OSX days. These apps don't address that. (Other apps do.) But at least we can once again actually tell what's in our Dock and USE the Dock again.
    Someone here asked whether we really need to access a bunch of things in our folders. I sure do! My Docked folders are always changing (which is why these 2 apps are still not a great solution for me).
    Apple, please hear your loyal users and do us the favor of bringing back Dock Classic. (It's the one thing not great about Leopard.)

  • Basic Server Config question: Restricting user access to files & folders

    I am in the process of locating a good Apple Server consultant in south florida, but in the meantime I want to educate myself on what we have.
    We now have an XServe in our office, running 10.6 Server. We intend to use it as a File Server, and we want to set it up in such a way that we can specify which individual users have access to each directory.
    As a 100% beginner, where would you suggest I start in understanding how do this? Or even, which Help resource I should look at to begin learning. I imagine that our senario is a very simple one. I'd appreciate any help or suggestions from anyone out there.

    Hi
    These for starters:
    http://manuals.info.apple.com/enUS/FileServerAdminv10.6.pdf
    http://manuals.info.apple.com/enUS/UserMgmtv10.6.pdf
    http://manuals.info.apple.com/enUS/NetworkSvcsv10.6.pdf
    For the rest:
    http://support.apple.com/manuals/#serversandenterprisesoftware
    Tony

  • Accessing All Files in a Folder and Deleting Old Files

    My problem is that I have an applet that communicates with a servlet and the servlet stores user designed objects on the server. These objects are piling up and the older ones are no longer useful. What I want to do is have a method in the servlet that periodically scans this folder and deletes files that are over two months old. Any advice on how I could do this is greatly appreciated.
    Thanks!

    I think it's Linux, but I'm not sure. This is for a job that was done a while ago and I'm just revisiting to touch up a few things.

  • PICS IN ALL SORTS OF FILES AND ACCOUNTS

    I am trying to get together all the pictures on my computer in one file, so I can sort them out.
    My mac has been used by different people over the time, and I myself have a business and a private account. Very confusing!
    I am 'the administrator' and have access to all files and accounts, but is there a simple way to just get them all together, put them in one I-Photo file and re-arrange them (and throw most out).
    Hopefully you can help. Many thanks!
    Marc

    Marc
    Welcome to the Apple user discussion forums
    I am trying to get together all the pictures on my computer in one file, so I can sort them oot?
    First - unless you want to lose all edits, albums and projects do not modify the iPhoto library in any way - do not delete, move or modify images within the iPhoto library or you will corrupt it and not be able to use it
    As to other photos - search for all files with .JPG in their name and import the ones you want into iPhoto - you may want to archive them and then (assuming that you are using a managed library) you can delete them from their location outside of the iPhoto library
    But you want to organize them before you import them to iPhoto - once they are in iPhoto you must use iPhoto for all organization - never the finder
    LN

  • Unable to access server files shares with Active Directory Users

    Quick breakdown of my issue.
    I have setup a Yosemite file server running the latest version of Yosemite and Server.
    File sharing in Server.app is enabled and shares have been created
    The server is bound to my company's Active Directory and you can directly login to the computer via AD credentials.
    The big issue is this, unless the user has directly walked up to my server and logged into it at least once, they cannot authenticate to the file shares via their AD credentials.
    For example: Administrator (me) I can login and access all file shares without issue.
    Jane Smith (SMITH) who has actually walked up to my server and logged in via her AD credentials, can also access all file shares. (That she has access to)
    John Doe (JDOE) who has not logged into the server in anyway, cannot authenticate to the server file shares  at all (even though I have granted him permission) He just gets an "Access Denied" message.
    I have gone into Directory Utility and changed the search order to give AD priority and this still doesn't resolve the problem.
    We have unbound the server from AD and added in back again and still not able to resolve.
    If you open Server.app and go to add someone from AD to a file share, it finds the AD user quickly and everything looks right. but still unable to authenticate to the server if they haven't directly logged into it before?
    All of the documentation and google articles I have found say my server is setup correctly, any help would be greatly appreciate it!
    Thanks in advance!

    I figured this out. In Mountain Lion Server, it doesn't matter if you give the user rights to a shared file or folder, if the user doesn't have access the File Sharing service, they can't get it. I had to find the specific users in the Server app under the AD in the Users tab, and give them rights to the File Sharing service. I think you can do this for a whole AD group as well, but I haven't tried.

  • Unable to restrict afp folder access using File Sharing in System Prefs

    If I share files using AFP, and authenticate using a standard account from another machine on the LAN, I can browse and access ALL files and folders on the machine, not just those specified under "Shared Folders" in System Preferences->Sharing->File Sharing. Machine is running OS 10.6.5.

    ...You shouldn't be able to authenticate as a user/account that is not on the local machine.
    Also for each item listed in Sharing Preferences, you have to specify POSIX permissions for specific users, check to make sure 'everyone' isn't set to read and write.

  • HTML  Parsers and reading all files in a directory

    Hello all,
    I was wondering if there was a html parser included in java. I am writing a program where I want to be able to search all the files in a directory tree for a particular string. I was able to read one file in a single directory but not in any other directory. How would I go about writing code to be able to access all files in directory that has multiple sub folders.
    Also, when I started to write my program I tried to use the DOM XML Parser to parse my html page. My logic behind this decision was that if you look at html code it is an xml document. But as I was trying to run my program I noticed that I had to convert my html document into xml format. I really don't want to have to build my own html parser. Is there a html parser that is included in Java. Oh my program is just your basic text program. No interfaces.
    Thanks for any help that you can provide
    Hockeyfan

    a particular string. I was able to read one file in
    a single directory but not in any other directory.
    How would I go about writing code to be able to
    access all files in directory that has multiple sub
    folders.
    You can do that several ways.
    Most likely you'll end up with some sort of recursive iteration over the directory tree.
    Not hard to write, somewhat harder to prevent memory problems if you end up with a lot of data.
    Also, when I started to write my program I tried to
    use the DOM XML Parser to parse my html page. My
    logic behind this decision was that if you look at
    html code it is an xml document. But as I was
    trying to run my program I noticed that I had to
    convert my html document into xml format. I really
    don't want to have to build my own html parser. Is
    there a html parser that is included in Java. Oh my
    program is just your basic text program. No
    interfaces.
    A VALID xhtml document is a valid XML document.
    Problem is that most HTML isn't xhtml.
    Another problem is that most HTML is fundamentally broken even to its own standards (which have always been based on SGML on which XML is also based).
    Browsers take that into account by being extremely lax on standards compliance and effectively making up tags as they go along to fill in the missing ones in the trees they parse.
    That's however not a standardised process and each browser handles it differently (and as a result most html will render differently in different browsers).
    Java contains a simple HTML parser in Swing, but it's primitive and will only parse a subset of HTML 2.0.
    There are almost certainly 3rd party libraries out there that can do better, both free and/or commercial.

Maybe you are looking for

  • Are there any remote desktop limitations?

    I understand the limits are two installs per subscription.  Say I have it installed on my desktop for home and my laptop for school.  Can I access my desktop at home with remote desktop and use the CC suite on multiple systems in my house?

  • Ugly issue with my Magic Mouse

    I have a Magic Mouse that has work essentially flawlessly for quite a while. I run VMware Fusion so I can run Windows XP and the Magic Mouse worked great there as well. Tonight I was trying something and I told VMware Fusion to connect the Apple Blue

  • Topics deleted by system

    I'm running into a problem from a RoboHelp project with topics being deleted. When I bring up a project most of my topics and folders have been deleted. Luckily, I backed up the project to another location, but when I copy the backup to the My RoboHe

  • How do I Blur my face in a video?

    Can someone tell me how to blur my face in a video?

  • Sound plays insanely fast

    I'm trying to play a wave file via the javax.sound packaged classes. The sound I'm trying to play is about 5 secs long. However the below code actually plays it at about five times the speed, as well as making the pitch much higher (sounds like a tap