Ownership & Permission for the Library-folder look weird

Sorry for strange subject-name for the thread, but it's the best I could do . Anyway, I'm having a strange issue with my Mac. I was showing my wife how convenient Spotlight could be. She was logged in with her username, and I asked her to search for my name and... It found and displayed bunch of email residing in my inbox. Now, I managed to track that problem down to her having access to the Library-folder in my Users-folder (I guess that was due to us sharing a single iPhoto-library between us, but I'm not sure).
Anyway, as I was looking at the "Ownershi & Permissions"-area of Get Info, I noticed that it looks... strange. Normally it has those drop-down menus where you can change the ownership and rights of users to that folder. But not in my Library-folder. There it simply tells me that I can read & write to the folder, but it does not tell that I'm the owner. There are no drop-down menu's to be seen. If I open the "Details", it does not show the drop-down menus that are visible elsewhere. Instead, it shows two columns, first one labeled "Name", and the second one is labeled "Privilege". My wife used to be listed there, and she had bunch of privileges assigned to her.
Now, I think that this is due to ACLs. But every other folder displays permissions normally, why doesn't this one folder do? How could I make this folder behave like every other folder does, with drop-down menu's and all?
1.25Ghz G4 Mac Mini   Mac OS X (10.4.9)  

However, if you note the output of the 'ls -lde
~/Library' command in the post from "11-May-2007
12:21 PM", it can be seen that there are no longer
any ACLs listed for that folder, yet the "+" sign
persists -ie. there doesn't seem to be a way to make
the command relevant to this situation since there is
no index to refer to, so I didn't want to belabour
the point of the syntax error.
That's interesting... the only post from May 11 2007 I see is the one by Király suggesting the use of chmod -R -a ~/Library and the time stamp on that is 3:55pm.
The very next post I see is the May 19 2007 post from Janne showing the syntax error. And in that post the italicized section shows the exact same info (down to the time/date stamp) from ls that was originally posted by Janne. Because of the time stamp, I assumed that was a quote.
So is something missing from the thread I see compared to the thread you see?

Similar Messages

  • Remove KM permissions for childs folders and not for the father folder.

    Hi Forum
       I am removing a "some_group" permisssion of a subfolder in a repository, but how can i remove only this subfolder permission and not the father permission ?
      For example:
         I want the next the repository with the "some_gruup"  permission for the father folder:
          /Folder
         But i want to remove the "sub_folder1" and "sub_folder2" permissions for "some_group", i haven´t do it because this is like an inherited permission of the father folder.
          /Folder/sub_folder1
          /Folder/sub_folder2
         But when i

    I found the solution in the post The specified item was not found.  by Avishai Zamir
    The code is:
    IAclSecurityManager asm = (IAclSecurityManager)sm;
    IResourceAclManager ram = asm.getAclManager();
    IResourceAcl ra = ram.getAcl(newResource);
    /******************* BEGIN if the most important code ********************/
    if(ra == null) {
         ram.removeAcl(newResource);
         ra = ram.createAcl(newResource);
    /*******************     END of the most important code ******************/
    IResourceAclEntryList rel = ra.getEntries();
    IResourceAclEntryListIterator it = rel.iterator();
    while (it.hasNext()) {
         ra.removeEntry(it.next());
    Edited by: Josue Cruz on Jun 25, 2008 9:48 PM
    Edited by: Josue Cruz on Jun 25, 2008 9:50 PM
    Edited by: Josue Cruz on Jun 25, 2008 9:51 PM
    Edited by: Josue Cruz on Jun 25, 2008 9:53 PM

  • Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Time Machine on my iMac won't open iPhoto. It goes to desktop screen automatically. When I select User/Picture/Iphoto library it only brings up the preview page with the size of the folder. I can't get into the library to look for lost photos.

    Thank You. This helps me alot to get into the masters and to see events and photos in a utilitarian way, but it is not as easy as viewing the normal iphoto format to find photos.  Can I do something else or did I not do something right to not see normal iphoto in Time Machine ?

  • How to check for the sub folder in the document library Is already Exist using CSOM?

    Hi,
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder
    IsFolder alredy Exist.
    private
    string IsFolderExist(string InputFolderName)
    string retStatus = false.ToString();
    try
    ClientContext context =
    new ClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
                context.Credentials =
    CredentialCache.DefaultCredentials;
    List list = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
    FieldCollection fields = list.Fields;
    CamlQuery camlQueryForItem =
    new CamlQuery();
                camlQueryForItem.ViewXml =
    string.Format(@"<View  Scope='RecursiveAll'>
    <Query>
                                            <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                                                </Eq>
    </Where>
    </Query>
                                </View>",
    @"/sites/test/hcl/"
    + InputFolderName);
                Microsoft.SharePoint.Client.ListItemCollection listItems = list.GetItems(camlQueryForItem);
                context.Load(listItems);
                context.ExecuteQuery();
    if (listItems.Count > 0)
                    retStatus =
    true.ToString();
    else
                    retStatus =
    false.ToString();
    catch (Exception ex)
                retStatus =
    "X02";
    return retStatus;
    thanks
    Sundhar 

    Hi Sundhar,
    According to your description, you might want to check the existence of sub folder in a folder of a library using Client Object Model.
    Please take the code demo below for a try, it will check whether there is sub folder in a given folder:
    public static void createSubFolder(string siteUrl, string libName, string folderServerRelativeUrl)
    ClientContext clientContext = new ClientContext(siteUrl);
    List list = clientContext.Web.Lists.GetByTitle(libName);
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>1</Value>
    </Eq>
    </Where>
    </Query>
    </View>";
    //camlQuery.FolderServerRelativeUrl = "/Lib1/folder1";
    camlQuery.FolderServerRelativeUrl = folderServerRelativeUrl;
    ListItemCollection items = list.GetItems(camlQuery);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    Console.WriteLine(items.Count);
    if (0 == items.Count)
    //create sub folder here
    Best regards
    Patrick Liang
    TechNet Community Support

  • Photos in iPhoto cannot be found in the Library Folder on the desktop

    I have a perplexing problem with iPhoto 6. A couple of months ago, I started a new Library and renamed it Current iPhoto Library placing it on the Desktop (rather than in the Pictures Folder).
    I did this because my laptop became too full and I ran out of hard disk space. The original Library resides on an external hard disk.
    I added many new photos to the new Library, inside of new albums.
    My problem is that all the new photos seem detached from the Library Folder on the desktop.
    They do take up memory, and now my laptop hard disk is full again.
    But I cannot free up space because the Library folder does not recognize the existence of the new photos—even though while in iPhoto, with the program is running, I have no trouble accessing all the photos.
    I tried DiskWarrior, assuming that there was a Directory malfunction. That did not help.
    I tried rebuilding the Library using iPhoto's built-in capability, by starting the program while pressing the Command and Option keys. No help.
    How can I make the Library Folder recognize all the photos that iPhoto can see fine within the program?

    First, thank you for keeping up with me.
    Second, where do look for Folder? On the desktop? iPhoto?
    Third, in replaying what must have happened, I think I have an idea of what went wrong. Originally, I moved my first Library to an external HD to free up space on my laptop, and I started a new Library. Some time ago, iPhoto must have spontaneously created a new third Library. It left what I am calling the second Library as the only visible folder containing an iPhoto Library. I was able to mount the small second Library when I restarted iPhoto by pressing Option and selecting the only Library that was visible to me. When I did that, unfortunately iPhoto disengaged from the huge third Library it had created. All along the third Library was invisible on the desktop as a folder--which is why I got into trouble. I ran out of space again and wanted to move the contents of what I now realize was a third Library to another external HD. But I couln't find that Library anywhere. Strangely, for the last three months, I did not know there were three Libraries, only two. The one iPhoto created as the third one worked perfectly when I would start up iPhoto. But now it is gone. Not even DiskWarrior can find it.

  • No warning before moving the ~/Library folder...

    OSX 10.7.3 on Macbook Air 13.3' i5 1.7Ghz 128GB.
    Yesterday I was working on a Finder window opened on my ~/Library.
    As I accidentally dragged the icon displayed in the Title area, the OS lost my user settings...
    I quickly realized that my action caused my ~/Library folder to be moved to my ~/Desktop.
    Since the ~/Library is a hidded folder in Lion, it may not be so trivial to figure out what happens whn you move it.
    I had a CCC backup from the day before, so I restored the system with no damage.
    (I didn't try to move the Library back, and opted for the safest way)
    I wish that moving of critical system folders were signaled with a warning message, at least.

    My own Lion system did not allow this.
    I just created a new admin test account, opened a Finder window to its library, and tried to drag the library "proxy icon" at the top of that window onto the Desktop. Dragging produced only the "green plus" copy pointer, and so I could copy the Library folder but not move it, which is as it should be.
    Looking in Terminal, I found that the home Library carried a protective "everyone deny delete" ACL, as do the other default  subfolders of a new user account:
    2010-Computer:~ t1$ ls -ldeO@ ~/Library
    drwx------@ 29 t1  staff  hidden 986 Feb 27 14:01 /Users/t1/Library
        com.apple.FinderInfo     32
    0: group:everyone deny delete
    I then removed that protective ACL:
    2010-Computer:~ t1$ chmod -N ~/Library
    2010-Computer:~ t1$ ls -ldeO@ ~/Library
    drwx------@ 29 t1  staff  hidden 986 Feb 27 14:01 /Users/t1/Library
        com.apple.FinderInfo     32
    Now I could move the Library folder onto the Desktop by dragging its proxy icon (as mentioned, this was a temporary disposable test account!).
    Had you previously altered any permissions on the Library folder or on your home folder?

  • What are the correct permissions for the Home folder?

    Since buying my first mac (G4 iMac) I've since bought 2 other macs & transferred my home folder from the older computer each time. Since then I've messed around with the permissions of the Home folder a few times to try share files & folders between my Windows PCs. So the permissions of the Home folder on all computers could be messed up a little.
    I want to set up permissions how they should be set up as default.
    I created another user account with admin priveliges & it looks like the Home folder should be set up as follows:
    Owner: 'my name'
    Access: Read & Write
    Group: admin or 'my name'
    Access: Read only
    Others: Read only
    And the sub folders (Documents, Pictures etc.) should be set up as follows:
    Owner: 'my name'
    Access: Read & Write
    Group: admin or 'my name'
    Access: No access
    Others: No accesss
    Is this correct, & if so shall I just set permissions on my Home folder exactly the same as the new account I set up?
    Or is there some way of resetting permissions for the Home folder?
    (I know repairing permissions with Disk Utility doesn't do this).
    Power Mac G5 Dual 2.3, 2.5 GB RAM, 20 Cinema Display | MacBook Pro 2.0 15"   Mac OS X (10.4.6)  

    Mac OS X does not have a built-in way of doing this, but you can make one yourself. Open the Script Editor in the /Applications/AppleScript/ folder and enter the following:
    do shell script "chmod 755 ~"
    try
    do shell script "chmod 700 ~/Desktop"
    end try
    try
    do shell script "chmod 700 ~/Documents"
    end try
    try
    do shell script "chmod 700 ~/Library"
    end try
    try
    do shell script "chmod 700 ~/Music"
    end try
    try
    do shell script "chmod 700 ~/Pictures"
    end try
    try
    do shell script "chmod 755 ~/Public"
    end try
    try
    do shell script "chmod 755 ~/Sites"
    end try
    This script can be saved as an application, which makes it possible to fix the permissions on a home folder with two clicks. The try statements are included so that the script will run if a folder doesn't exist. If the ~ object is a symbolic link, the permissions on it may not be changed; you can use the code block
    tell application "Finder"
    set the_home to POSIX path of (home as alias)
    end tell
    do shell script ("chmod 755 " & the_home)
    in this case. The rest of the script works as before.
    (12450)

  • HT3945 I get an "error opening the database for the library"/Pictures/Aperture Library.aplibrary". What do I do Now?

    I have updated my Aperture 3 and when I try to open it I get an error message; error opening the databese for the library"Pictures/Aperture Library.aplibrary". I have tried the Command/Option keys to get past the error but I can't. Does anyone have a recommendation or document to help me get Aperture working again? Thanks.

    I have tried the Command/Option keys to get past the error but I can't.
    Did you try the "Command/Option keys" when you were launching Aperture? Then try again, by holding down "Command/Option" while double clicking your library in the Pictures folder.
    If this does not succeed, have a look at the permissions of your library package in the "Get Info" panel: select the Aperture Library package in the Finder and press cmd-I. If you see that you do not have read/write permissions, correct that and select the option to apply these permissions to the enclosed items.
    If you still cannot open the library, launch Aperture with the "options-key" hold down and select to create a new Aperture Library from the pop-up menu. Hopefully this will enable you to launch Aperture again. Then try to import your old library into the new, empty library by using the "File -> Import -> Library/Project" menu command.  If your library is large, this could take a long time, however.
    Post back, if you this does not solve the problem.
    Regards
    Léonie

  • How to reinstate the library folder in my user file

    I am trying to look up my templates for powerpoint but I can not find the library folder in my user portion.
    I can not find it anywhere on my mac.
    Did it become invisible?

    you can test by showing all hidden files, run the following commands in terminal to show hidden files:
    defaults write com.apple.finder AppleShowAllFiles TRUE
    killall Finder
    the following commands will hide them again:
    defaults write com.apple.finder AppleShowAllFiles FALSE
    killall Finder
    if you still cannot locate the folder, Id recommend restoring from a TimeMachine backup.
    cheers
    L

  • HT1229 The library folder recent imported duplicate photos, how do you removed duplicate imported photos?

    I have had photos , photos albums, or folders deleted in the past, and I have somehow recaptured them by a way that is unknown or clear to me.  Anyway I imported them to the library and it is now in the the library folder recent last 12 months imported.  There are thousands photos are shown duplicate, how do I removed or organized the duplicate photos in a shortcut  without going through all of them ( 23, 000 of photos imported), and secure them in a folder/location/area without loosing them again .

    If you're seeing these duplicates in the iPhoto window (and not the Finder) you can use these applications to identify and help remove duplicate photos from an iPhoto Library:
    iPhoto Library Manager - $29.95
    Duplicate Annihilator - $7.95 - only app able to detect duplicate thumbnail files or faces files when an iPhoto 8 or earlier library has been imported the library.
    PhotoSweeper - $9.95 - This app can search by comparing the image's bitmaps or histograms thus finding duplicates with different file names and dates.
    DeCloner - $19.95 - can find duplicates in iPhoto Libraries or in folders on the HD.
    DupliFinder - $7 - shows which events the photos are in.
    iPhoto AppleScript to Remove Duplicates - Free
    PhotoDedupo - $4.99 (App Store) -  this app has a "similar" search feature which is like PhotoSweeper's bitmap comparison.  It found all duplicates
    Duplicate Cleaner for iPhoto - free - was able to recognize the duplicated HDR and normal files from an iPhone shooting in HDR
    Some users have reported that PhotoSweeper did the best in finding all of the dups in their library: iphoto has duplicated many photos, how...: Apple Support Communities.
    If you have an iPhone and have it set to keep the normal photo when shooting HDR photos the two image files that are created will be duplicates in a manner of speaking (same image) but there are only twp apps that detected the iPhone HDR and normal photos as being duplicates:  PhotoSweeper and Duplicate Cleaner for iPhoto.  None of the other apps detected those two files as being duplicates as they look for file name as well as other attributes and the two files from the iPhone have different file names.
    iPLM, however, is the best all around iPhoto utility as it can do so much more than just find duplicates.  IMO it's a must have tool if using iPhoto.

  • "There was an error opening the database for the library "~/Pictures/Apert"

    Hey everyone,
    There's already another discussion thread about this at the link below, but the problem was never actually resolved. http://discussions.apple.com/thread.jspa?threadID=2343014&tstart=0&messageID=116 67261#11667261
    So I stumbled across this problem where Aperture 3 will display the following error when opening the image library.
    There was an error opening the database for the library “~[path]/Aperture Library.aplibrary”.
    One user suggested navigating to the actual library, and ⌘⌥-clicking the library to open it with the Aperture Library First Aid dialog. This however, did not work for me. I still received the error messages upon ⌘⌥-clicking the library.
    Here's a little hack I discovered for those of you still struggling. It doesn't fix the problem (leaves quite a large dent remaining actually), but hopefully someone can cultivate what little I discovered.
    ⌥-click Aperture (not the library)
    You should get to the library selection dialog box. Create a new library (bottom right corner) and remember the location of the new library. Put a few random pictures in the new one.
    Close Aperture
    ⌃-click both the old and new libraries and "Show Package Contents."
    Open the folder "Database" in both libraries.
    Cross check the folders to see if the old library is missing files that are in the new library. If your old library is missing some files (mine was), drag the missing files from the new library to the old one.
    Close both folders.
    ⌘⌥-click the old library.
    NOW, I got the Aperture Library First Aid dialog.
    Rebuild the library (3rd option)
    Wait a while.
    Aperture should open up with a folder named "Recovered Folder." Within this folder will be a SINGLE project named "Recovered Project" with ALL the images from your old library. There may be a few albums there too, but mine were all empty so it didn't matter in my case. To my knowledge, I lost all the adjustments I performed too.
    This is as far as I got. I have much of my library backed up, so I only needed to copy the most recent photos into the backup. I am NOT reorganizing and re-editing pictures in this one!
    As Aperture is a photo-organizing and photo-editing software, I understand that this by no means fixes the problem, since you lose all organization and editing. But it enables one to at least view the images lost. Hopefully a more knowledgable hacker else can figure out how to fix this completely. Unfortunately, I simply don't have the time to continue messing with this.
    Good luck to anyone else having issues! I understand the frustration you must be facing, its freaky having years worth of images simply disappear! After this incident, I'm definitely going to configure Time Machine to perform more frequent backups, since my latest backup was already a couple weeks old.

    Hey All,
    To my horror I have a similar problem and your solution didn't seem to help. To be specific, I get the error:
    "There was an error opening the database for the library “~/Pictures/Aperture Library_2.aplibrary" Everytime I try to run Aperture. This happened because my Apple computer shut off completely (due to bad battery) while importing photos from a memory card.
    I've tried "option + command" while clicking the aperture application and that gave me the same error message without any other option except to quit the program. I tried "option + command" and clicked the library package but that didn't work either. I tried creating a new aperture library, opening it which I did successfully, and then switching to my main one but that didn't work.
    Does anyone know away to get it to work again and have the edits still there?
    I'm a professional photographer and have thousands of photos or so in the library so this is distressing. The master files for the photos are located on an external hard drive, but I'm not sure how to access them in aperture. Are all the edits on the photographs are in the external hard drive or the aperture library. Is there any other way to resolve this issue without losing the edits?
    Does apple have a support number I can call? Any help would be greatly appreciated!!

  • Unable to open document. Please check to see if you have read permission for the above file.

    System:
    Adobe Acrobat X Pro, 10.1.2
    Windows 7 Enterprise, 32-bit
    Quad Core badass CPU
    4GB RAM
    MS Word 2010 (Office 2010)
    I installed the latest version as Administrator and am running as Administrator. I have all rights to all files on the PC.
    When I attempt to create a PDF from any Word document, whether .DOC or .DOCX, I get an error window every time:
    "Unable to open document:"
    "[document location]"
    "Please check to see if you have read permission for the above file."
    This happens after the little notice pops up "Starting the application which created the document...."
    If I open Word and create PDF from the ribbon, it works. It still won't allow me to create from Acrobat.
    It creates PDFs from Excel files but not DOC files. I've searched for solutions but found none. I did find this from July of 2011:
    "I have found out from Adobe technical support that this is a known issue with Office 2010 SP1 installed. This is an FYI for anyone else experiencing this issue, remove SP1 and it will work ok. They said an update to correct this issue will be coming within the next quarter."
    I have updated to the latest version 10.1.2 and still have this problem.
    This is a major issue, because it also fails on batch conversions, which is what I really need for the 100 or so documents that need to be PDFed. I'm not going to open each individual file and save each one from within Word.
    This is a KNOWN ISSUE at Adobe, and if you look through the forums you'll find many people having this problem, and so far, I have not seen any solution.
    If anyone has found the solution, please post it here.
    Thanks!
    B

    I think I found a solution. It seems to be relatet to normal.dotm.
    In our environment we have upgraded from XP & Office 2003 to Win7 and Office 2010. Normal.dot is stored on the users home share. When Office 2010 is started for the first time (for a user) it takes some of the old stuff from normal.dot and puts it in the new normal.dotm. When this happens, we get this error in Acrobat X.
    The solution is to rename both normal.dot and notmal.dot to e.g. normal.dot.old and normal.dotm.old. Office/Word 2010 will then create a new, "clean" normal.dotm.
    (By the way, if you are in a corporate environment, you might have changed the default path to normal.dot in Office group policies. You can see it here: HKEY_CURRENT_USER\Software\Policies\Microsoft\office\14.0\common\general\usertemplates)
    I would be interested in knowing exactly why/what in normal.dotm caused this error. I can provide you (Adobe) with a faulty normal.dot(m), if you're interested.

  • I have three aperture libraries. But just recently two of them (old from 2011) will not open. I get the following error: There was an error opening the database for the library "~/Pictures/Family IIi.aplibrary". Please help, thanks

    I have three aperture libraries. But just recently two of them (old from 2011) will not open. I get the following error: There was an error opening the database for the library “~/Pictures/Family IIi.aplibrary”. Please help, thanks

    Are all three libraries under your account or are they in different accounts? Any other errros on the system?
    Start by doing the permission repair and library repair steps in Aperture 3: Troubleshooting Basics

  • How do I find the Library folder on time machine back up disk

    I had to rebuild my iMac and wanted to start fresh.  I'm useing mountain lion and had everything backed up with time machine.  The problem that i'm having is that I can't get the aplication support floder to show up in the library folder that you find under user menu.  I know if you hold down the option key while youpull down the go window it will show up on your Mac, but how do I get to the one that is on your time machine backup, useing Moutian Lion?  Thanks for any help.

    Once you have the folder open in the Finder, enter Time Machine and you'll see the snapshots of the folder.

  • I lost an xcel doc. Tried to find the Library folder in Users not there when use Finder. But when trying to upload a photo, iphoto found the library folder I can see my doc in Office 2011 Autorecov, but can't access it! How do I get User to show Library

    I lost an xcel doc a couple of days ago. Tried to find the Library folder in Users but not there when I use Finder (even when I do shift-command-G). But when trying to upload a photo in iphoto I found the library folder in Users. I can see my doc in Office 2011 Autorecovery, but can't access it! How do I get User to show Library then I can get to my long lost document?

    The auto recovery dat should be in the Microsoft User Data folder in your documents folder, not in the Library. However, I Haven't had to look recently.

Maybe you are looking for

  • Excise invoice capture process

    Hi,   I want to know about excise invoice capture process for depot plant  which t. cod eis use for depot plant how to do the part1 and part2  and also reversal process for the same. also what is diff. between excis einvoice capture process for depot

  • Call transformation XSLT and long note string in XML

    Hi Using call transformation (XSLT scheme) to convert XML file to html the problem is that line breaks in xml are ignored when passing the call tranformation. <b>Note in xml look like:</b> <com:Note><![CDATA[ Serie 87% 0,000000 Amount in this period

  • IPOD locked up with appleskull on screen

    iPOD is locked up with a applekull in the center of screen. What to do?

  • Creative Inspire A200 Bass/Subwoofer to loud! Help please!

    I can't lower my bass in any way, there is no adjust thingy on my subwoofer i keep it under desk with sock in and sweater on top of it. I cant lower in my sound and volume settings anywhere, i didnt get a CD when i bought it and i dont know where to

  • Photoshop cannot download

    Just purchased Creative cloud photography membership 1 year contract, Photoshop cannot download, says "Download error. please retry again or contact customer support (49)"