Changing file access permissions?!

I have a MacBook Pro retina running os x mountain lion, if that helps any of you guys answer this question. I recently took a screenshot of an area of the screen using the command-shift-4 combination. When i was trying to open it, though, an  error came up saying that i didnt have the permission to open the file. It told me to got to get info and change file permissions.
How do I change file permissions and why does it say this in the first place??
Thanks,
RZ

Doing a screen shot creates a file on the users desktop which they should already have permission to use.
So if it's saying you don't means there is something else wrong with your machine.
Do these to things first.
1: #6 Repair Users Permissions (this will fix the in user folder permissions)
2: #12 OnyX (free) cache cleaning and will repair OS X permissions.
..Step by Step to fix your Mac
What is basically going to happen is your going to reset the permissions of all files on the machine back to what they should be and not what something caused it to become off.
Doing all the OnyX steps in Maintainence and Cleaning is going to reset everything else in the system like caches etc., so it's like it just came from the factory which will cause those caches to rebuild anew and free of corruption that might have occured.
OnyX also has flags as it checks the drive for other issues, thus gives you a warning of other potential problems.
Make sure you have backups of your users files off the machine to a storage drive (not only TimeMachine) before you atempt any repairs as all the remaining software can be replaced except your files in case it turns out your problem is much larger than anticipated.
Most commonly used backup methods

Similar Messages

  • File access Permissions in Java

    when the user select the file chooser button and browse through the directory in the local file system. If the user chooses any folder and that folder has readOnly access permission then the user can't copy the file into that folder as it has only Read access. So Please tell me how to give file and drive permissions in java on windows.

    File.setReadable() and friends, but "The operation will fail if the user does not have permission to change the access permissions of this abstract pathname." Check the return code.

  • FTP file adapter: file access permissions do not allow the specified action

    Hi,
    I have the File to JDBC scenario. The file is extracted in AL11 folder of the Sending (BW) system.
    The folder is FTP enabled and the Unix admin says he has given full authorization to both the folder and ftp user.
    But in the File CC I get the following error "Could not process due to error: com.sap.aii.adapter.file.ftp.FTPEx: 550 TSMSACAIX5350.tar.gz: The file access permissions do not allow the specified action."
    Can some one advice what is wrong. Im pretty much sure it has to be a problem with the UNIX permission. But the unix admin person says he has given a full permission.
    I need to know what permissions needs to be given??  Is there different permissions for application level and OS level??
    Pls advice
    Thanks
    Prasanna

    >
    Prasanna Shanmugasundaram wrote:
    > Hi,
    > I have the File to JDBC scenario. The file is extracted in AL11 folder of the Sending (BW) system.
    > The folder is FTP enabled and the Unix admin says he has given full authorization to both the folder and ftp user.
    > But in the File CC I get the following error "Could not process due to error: com.sap.aii.adapter.file.ftp.FTPEx: 550 TSMSACAIX5350.tar.gz: The file access permissions do not allow the specified action."
    >
    > Can some one advice what is wrong. Im pretty much sure it has to be a problem with the UNIX permission. But the unix admin person says he has given a full permission.
    > I need to know what permissions needs to be given??  Is there different permissions for application level and OS level??
    >
    > Pls advice
    >
    > Thanks
    > Prasanna
    In CC you set ON the delete mode, after processing file? Maybe, the file have read only permission....

  • The file access permissions do not allow the specified action

    I had an issue while transferring file from source to target..i am able successfully transfer the file to target and later i should move the file to another folder using IO operations.
    it failed at invoke.following are the error
    <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'SynchRead' failed due to: The IO operation failed. The IO operation failed. The "OPER[NOOP][S->R,T->R]" IO operation for "xxxxxxxxxxxxxxxxxx/  xxxxxx.txt" failed. Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    </summary> 
    </part>
    -<part name="detail">
    <detail>550 xxxxxxxxxxxxxxxxxxxxxxxxx: The file access permissions do not allow the specified action.
    </detail> 
    </part>
    -<part name="code">
    <code>550
    </code> 

    >
    Prasanna Shanmugasundaram wrote:
    > Hi,
    > I have the File to JDBC scenario. The file is extracted in AL11 folder of the Sending (BW) system.
    > The folder is FTP enabled and the Unix admin says he has given full authorization to both the folder and ftp user.
    > But in the File CC I get the following error "Could not process due to error: com.sap.aii.adapter.file.ftp.FTPEx: 550 TSMSACAIX5350.tar.gz: The file access permissions do not allow the specified action."
    >
    > Can some one advice what is wrong. Im pretty much sure it has to be a problem with the UNIX permission. But the unix admin person says he has given a full permission.
    > I need to know what permissions needs to be given??  Is there different permissions for application level and OS level??
    >
    > Pls advice
    >
    > Thanks
    > Prasanna
    In CC you set ON the delete mode, after processing file? Maybe, the file have read only permission....

  • Changing file access

    hi ,
    how to change read only access file to writable file ?????

    Permission objects (e.g. FilePermission) are
    immutable. I don't know of any way within the 5.0
    JVM/core classes to change file permissions.So I guess the only way I can think of is by using Runtime.exec() and run the command for the specific platform you're on (e.g. chmod on unix/linux) to change the rights. Not a nice solution though.

  • Change file access in FTP

    Hi, i'm new in java and i'm trying to make a program that moves a file to a FTP server, I already made that part of the program.
    but i'm having problems finding the way of change the access of the file, when was already moved it.
    This is an example of the code that i'm using to do the first part.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class FTPConnection {
    public boolean connect(String host)
    throws UnknownHostException, IOException
    return connect(host, 21);
    public boolean login(String username, String password)
    throws IOException
    int response = executeCommand("user " + username);
    if (!isPositiveIntermediateResponse(response)) return false;
    response = executeCommand("pass " + password);
    loggedIn = isPositiveCompleteResponse(response);
    return loggedIn;
    public boolean uploadFile(String serverPath, String localPath)
    throws IOException
    return writeDataFromFile("stor " + serverPath, localPath);
    public boolean changeDirectory(String directory)
    throws IOException
    int response = executeCommand("cwd " + directory);
    return isPositiveCompleteResponse(response);
    I already have the code to take the file and move it to the server but i can't find the way to change the access.
    I hope someone can help me with this thanks.

    I already tried to use chmod but it doesn't work this is the example that i made
    public boolean changePermissions(String Path)
    throws IOException
    int response = executeCommand("chmod 777 " + Path);
    return isPositiveCompleteResponse(response);
    but the file continue with the same permission. So i was wondering if i'm doing something wrong or is other way to do it.
    Thanks for your help

  • Change file access

    Hello, how can I set access for /dev/console if I want to work with it as regular user.
    I tried different arguments for chmod (a+rw in main), but after reloading it resets.
    $ ls -l /dev/console
    crw------- 1 root root 5, 1 Jan 14 20:44 /dev/console
    What is the right way to change acces for that file?
    $ groups
    wheel network video audio optical floppy storage camera users
    Last edited by Ockonal (2011-01-14 19:09:00)

    Ockonal wrote:moetunes, okay, but anyway I can't edit it with regular user even before reloding computer.
    I did
    sudo chmod -v a+rw /dev/console
    and now permissions are
    crw-rw-rw- 1 root root 5, 1 Jan 14 15:45 /dev/console
    do your permissions change but you still can't write to it or do they not change at all?

  • Changing File Ownership & Permissions

    Is there a way via AppleScript to change the ownership and permissions for all files (docs & folders)en masse? Can I do so regardless of original owner or permissions for files that are not password protected?

    Yes, by invoking the do shell script command and the Unix commands chown and chmod. You might get better answers in the OS X Technologies fourm: http://discussions.apple.com/category.jspa?categoryID=162.

  • Change file access date

    Anyone know how to change a file's access date? There is setLastModified() in the File class but I don't see anything for access date.

    a\Access date is just the date you last opened it. To set it, you can open it, and it will set it to todays date.

  • Tomcat and network file access permissions

    Hi there,
    We have a servlet running in Tomcat 4.1 environment in one windows 2003 server (DOMAINONE) , and we write the logs in another machine (different domain DOMAINTWO). We have a USER1 who has access to both domains and has access to map the drive to DOMAINTWO. We have mapped G drive to \\DOMAINTWO\SHAREDDRIVE. The servlet needs to write information to g:\logs and what we are having problem with is that Tomcat is throwing an exception when writing to G: Is there any settings we need to do at the Tomcat configuration file (security settings).
    Tomcat is started by USER1 as well.
    ANy help would be greatly appreciated.
    Thanks
    John

    Are you using a Logging package or just trying to create a File object and writing text to it?
    If the later, you may want to look at URLConnection.getOutputStream() and wrapping that with a BufferedOutputStream and writing to that.
    Even though you're mapped and all that, it may look like a "local drive" to you, but it's not. There's a whole bunch of negotiation and networking that needs to go on that a File class is just not designed to do, but a URL is.
    There are other options as well which would make something like this WAY more scalable. Do you ever have to move this thing?

  • Changed access permissions now machine won't boot. Utilising deep breathing techniques until help appears.

    Maybe a brain snap but I changed the access permissions on the hardrive to everyone-no access, what do I need to do. After  20 minutes of beachballing I pmowered down, and now it won't boot up, gets stuck on the apple boot up screen. There also exists in permissions another access setting  admin-readwrite. Would appreciate some heads up on what I can do (trying not to panic). 

    See this User Tip by Niel: I accidentally set a disk's permissions to No Access ...
    https://discussions.apple.com/docs/DOC-2240

  • Problem with default file access permission

    Hi,
    I am accessing a common area '/NFS_DATA' by both my java and oracle codes by the users 'javaUsr' and 'oraUsr' respectively.
    As per the requirement, the oracle code (oraUsr) needs to create some file in the specified location and then the java code (javaUsr) needs to update those files (created by oraUsr) with some new data.
    At present scenario the 'oraUsr' creates files with default access permission 644, which does not permit 'javaUsr' to update them.
    Constraints : I am not supposed to set umask at the .profile of 'oraUsr'.
         Execution of any shell script from oracle procedure is not permitted.
    Is it possible to specify file-system specific default file access permissions??
    Any idea to overcome this issue??

    Hi,
    I am accessing a common area '/NFS_DATA' by both my
    java and oracle codes by the users 'javaUsr'
    and 'oraUsr' respectively.
    As per the requirement, the oracle code
    (oraUsr) needs to create some file in the
    specified location and then the java code
    (javaUsr) needs to update those files (created
    by oraUsr) with some new data.
    At present scenario the 'oraUsr' creates files
    with default access permission 644, which does
    not permit 'javaUsr' to update them.
    Constraints : I am not supposed to set
    umask at the .profile of 'oraUsr'.
    Execution of any shell script from oracle
    oracle procedure is not permitted.
    Is it possible to specify file-system specific
    default file access permissions??
    Any idea to overcome this issue??You might like to try using File ACLs
    man setfacl(1)
    as oraUsr
    setfacl -s user:oraUsr:rw-,user:javaUsr:rwx,group::r--,other:---,mask:rwx file
    This way the oraUsr can not execute file
    but javausr can
    getfacl will show the ACL
    user::rw-
    user:javaUsr:rwx #effective:rwx
    group::rw- #effective:rw-
    mask:rwx
    other:---
    hope this helps a bit

  • File access Permission numeric value 640

    Hi,
       I am picking up the files from one ftp directory. The file has access permission with value 640. When I am connecting to FTP Server with user id & passwrd I can move the files from from the directory to Arch directory. But  when I am testing this with XI it is showing error in Adapter monitoring as "FTPEx: 11260001.bwh: The file access permissions do not allow the specified action".Any suggesting on this.
    Regards,
    Daniel.LA

    Check this and this should solve your problem
    https://www.sdn.sap.com/sdn/collaboration.sdn?node=linkFnode6-1&contenttype=url&content=https:///message/589420#589420 [original link is broken]

  • I am trying to import developed images from LightRoom 5 into Photoshop 6.  I am receiving this message and the images will not open.....'Could not open scratch file because the file is locked, you do not have necessary access permissions or another progra

    I am trying to import developed images from LightRoom 5 into Photoshop 6.  I am receiving this message and the images will not open.....'Could not open scratch file because the file is locked, you do not have necessary access permissions or another program is using the file.  Use the 'properties' command in the Windows Explorer to unlock the file'.  This has not happened before.  How do I change this?

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • When I close Photoshop CS6, the following message appears: "Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file.

    When I quit Photoshop CS6, the following message appears:
    " Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder."
    If I try to change the Workspace in PS6 from Essentials to any other Workspace, the following messsage appears:
    "Could not apply the workspace because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder."
    I have checked the Sharing and Permissions section of the "Get Info" panel accessed from the Finder and I have set Read and Write Privileges for my user account for Photoshop CS6. System and Admin are also set to Read and Write.
    I have a MacBook Pro with OS X Version 10.9.5 and have all available updates for Photoshop CS6, Lightroom 5 and Bridge CS6.
    I tried uninstalling the program and downloading it again and reinstalling, but nothing changed.
    Can you help?
    Thanks,
    cjpnm

    You may get better help in Photoshop General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll
    If FINDER means Mac, read below (and try to give more information when asking a question)
    Mac 10.9.3 workaround https://forums.adobe.com/thread/1489922
    Enable Mac Root User https://forums.adobe.com/thread/1156604
    -more Root User http://forums.adobe.com/thread/879931
    -and more root user http://forums.adobe.com/thread/940869?tstart=0

Maybe you are looking for

  • Creation of SNP planned order based on PDS

    Hi, I'm a APO developer and I have the following problem: I would like to create a SNP planned order based on a PDS (like e. g. in the planning book when you input a number into a cell in the "Production (Planned)" line). Up to now I've only managed

  • Duplicate Purchase order

    I created a purchase order draft documet with 2 items but when i added that draft, system generated 2 purchase orders. I hve checked on logistics tab, split PO is unchecked. I checked on document setting  and found that for purchase orders, split po

  • Launchd, Startup Item **** - -what am I doing wrong?

    So, I have a startup item which works when I type sudo SystemStarter start MayaFlexlm Works great. Spawns flexlm, a daemon that listens for incoming connections for licensing. Trouble is, it does not automatically start on reboot. I always have to ty

  • Number Range for Logistic Documents For Different Company Codes

    Hi all.. I need to numbered the logistic documents for diferent company codes (#60) but the number ranges for al those documents should be generated separately according to each CC. I've read in other thread that I could use the user exit MM06E003, b

  • Deleted or Cropped Content

    Hi, My friend sent me a pdf, but there are a couple of items listed as cropped or deleted content when the pdf is examined. How would I go about retrieving those items? Thanks