Cannot create file "/Applications/ " Permission denied.

When installing new software Iget the following error message: "Cannot create file "/Applications/ ". Permission denied. I have used disk utilities to try to repair my permissions with no sucsess. I have also tried reinstaling the software. Any advise is appreciated.
I am using Mac OS X Yosemite 10.10.2 and Safari 8.0.4

You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
Repair User Permissions

Similar Messages

  • ASM: cannot create asm disks - permission denied

    We cannot create ASM disks using the command:
    # /etc/init.d/oracleasm creatdisk ASMDISK1 /dev/mapper/mpathdp1
    Marking disk "ASMDISK1" as an ASM disk: [FAILED]
    The log (/var/log/oracleasm) has the following:
    Clearing disk header: done
    Disk "ASMDISK1" does not exist or is not instantiated
    Writing disk header: done
    Instantiating disk: oracleasm-instantiate-disk: Unable to create ASM disk "ASMDISK1": Permission denied
    failed
    Clearing disk header: done
    The command is being executed by the root user. Our environment is OEL6:
    [oracle@uxdbidbd1 mapper]$ uname -rm
    2.6.32-100.28.11.el6.x86_64 x86_64
    To install ASMLib we did the following:
    Installed the three packages:
    1.oracleasm-support-2.1.4-1.el5.x86_64.rpm
    2.oracleasmlib-2.0.4-1.el5.x86_64.rpm
    3.oracleasm-2.6.18-238.9.1.el5-debuginfo-2.0.5-1.el5.x86_64.rpm
    [root@uxdbidbd1 ~]# modprobe oracleasm
    [root@uxdbidbd1 ~]# /etc/init.d/oracleasm configure
    Configuring the Oracle ASM library driver.
    This will configure the on-boot properties of the Oracle ASM library
    driver. The following questions will determine whether the driver is
    loaded on boot and what permissions it will have. The current values
    will be shown in brackets ('[]'). Hitting <ENTER> without typing an
    answer will keep that current value. Ctrl-C will abort.
    Default user to own the driver interface []: oracle
    Default group to own the driver interface []: oinstall
    Start Oracle ASM library driver on boot (y/n) [n]: y
    Scan for Oracle ASM disks on boot (y/n) [y]: y
    Writing Oracle ASM library driver configuration: done
    Initializing the Oracle ASMLib driver: [  OK  ]
    Scanning the system for Oracle ASMLib disks: [  OK  ]
    [root@uxdbidbd1 ~]#
    [root@uxdbidbd1 ~]# /etc/init.d/oracleasm status
    Checking if ASM is loaded: yes
    Checking if /dev/oracleasm is mounted: yes
    Our SA partitioned the disk using fdisk:
    [root@uxdbidbd1 ~]# fdisk -l /dev/mapper/mpathd
    Disk /dev/mapper/mpathd: 52.4 GB, 52428800000 bytes
    255 heads, 63 sectors/track, 6374 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x4849251a
    Device Boot Start End Blocks Id System
    /dev/mapper/mpathdp1 1 6374 51199123+ 83 Linux
    Here are the owner/permissions:
    [oracle@uxdbidbd1 mapper]$ ls -al /dev/mapper/
    lrwxrwxrwx. 1 root root 7 Apr 22 14:58 mpathd -> ../dm-5
    brw-rw-r--. 1 oracle oinstall 253, 6 Apr 25 10:56 mpathdp1
    [oracle@uxdbidbd1 dev]$ ls -al /dev
    brw-rw----. 1 root disk 253, 5 Apr 22 15:45 dm-5
    drwxr-xr-x. 4 root root 0 Apr 22 14:58 oracleasm
    [oracle@uxdbidbd1 oracleasm]$ ls -al /dev/oracleasm
    total 0
    drwxr-xr-x. 4 root root 0 Apr 22 14:58 .
    drwxr-xr-x. 23 root root 7200 Apr 24 03:41 ..
    -rw-rw----. 1 oracle oinstall 0 Apr 22 14:58 .check_iid
    drwxr-xr-x. 1 root root 0 Apr 22 14:58 disks
    -rw-rw----. 1 oracle oinstall 0 Apr 22 14:58 .get_iid
    drwxrwx---. 1 oracle oinstall 0 Apr 22 14:58 iid
    -rw-rw----. 1 oracle oinstall 0 Apr 22 14:58 .query_disk
    -rw-rw----. 1 oracle oinstall 0 Apr 22 14:58 .query_version
    We ran an strace on the createdisk command that is failing and I noticed this in the output file:
    28830 mknod("/dev/oracleasm/disks/ASMDISK1", S_IFBLK|0600, makedev(253, 6)) = -1 EACCES (Permission denied)
    28830 write(2, "oracleasm-instantiate-disk: ", 28) = 28
    28830 write(2, "Unable to create ASM disk \"ASMDI"..., 56) = 56
    We changed /dev/oracleasm/disks to 777 in order to test but we got the same result. Do we need to adjust the permissions to all of the parent directories in the path (/dev/oracleasm/disks)? I've been looking around for anything related to permissions on /dev/oracleasm but the docs don't mention anything. Any help would be greatly appreciated.

    From what I understand, you should not set device permissions of /dev/oracleasm since oracleasm takes care of it according to /etc/init.d/oracleasm configure.
    The problem in your case seems to be that ASM refuses to initialize and write metadata to your device. Was the device previously used by ASM? ASM will fail to initialize a device that contains previous ASM metadata. To erase the device you will need to use the dd command, e.g. dd if=/dev/zero of=/dev/sdb. Both ASMLib and raw devices require the candidate disks to be partitioned before they can be accessed. To create a partition on /dev/sdb, for instance, type fdisk /dev/sdb and create a standard partition using the defaults. This will create /dev/sdb1 and you can try oracleasm createdisk again.
    You may try the above, but anyway, I was not sure how much you can trust your installation. The problem could also be that you installed the oracleasm kernel driver and asmlib software for OEL 5. Oracle Linux 6 includes an oracleasm kernel driver and as far as I remember you must not install another oracleasm kernel driver. Using modprob oracleasm and installing oracleasm support package using yum should do the trick. You may also need to download and install the asmlib package for the Oracle ASM grid install to see the ASM disks.

  • Cannot create file when trying to download

    Have an early 2006 iMac 17 inch with Intel chip running OSX 10-47 using Safari
    Quite suddenly, when I try to download anything (widgets, any applications etc) I now get the error message "Cannot create file" and am unable to download.
    Safari used to work fine but now won't let me download anything!
    Help!
    Chris
    Intel chip iMac 17 inch   Mac OS X (10.4.7)   Early 2006 iMac

    It still sounds like you are trying to download to a
    folder with insufficient permissions to allow you to
    create files.
    Try creating a new folder on your Desktop, say
    Downloads for example, and change the Safari
    preferences so that this is the download location.
    Now when you try to download, does it still fail?
    If it does fail, try using Safari in another user
    account.
    This will help us to know whether your problem is
    local to your account or system wide. If you don't
    have another account you can use System Preferences
    -> Accounts -> [+] to create a test one (and [-] to
    remove it if needed)
    OK I followed the suggestion and created a new folder for downloads in my own home directory as suggested and lo and behold, I can now download again!
    Thanks!
    However, how did I suddenly lose permission to download to my desktop?

  • Why do I get "Cannot create file" message in my download manager when I attempt to install Firefox?

    I'm running Mac OS 10.4.11 on a 1.6 GHz PowerPC G5 Mac. I uninstalled Firefox 3.6 from my according to directions on the Mozilla website. And I deleted my Firefox profile folder contained in the Home> Library> Application Support folder. Every time I attempt a clean install of Firefox 3.6.13.dmg, I get the following message: "Cannot create file."

    This issue can be caused by corrupted cookies.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    See also:
    * http://kb.mozillazine.org/Cookies#Removing_cookies

  • LV 8.2.1 reinstallation error 1301: Cannot create file

    Hi,
    I was forced to uninstall LV 8.2.1 and reinstall it. When I'm reinstalling LV 8.2.1 I get an error message
    Error 1301. Cannot create file ". A directory with the same name already exists. Cancel the install and try installing to a different location.
    (Abort, Retry, Ignore).
    This error is somehow related to the fact that after uninstalling LV 8.2.1 LabVIEW 8.2 installation directory still remains with some stuff in the user.lib and other folders. I'm always using OpenG packages and I didn't uninstall them so that may be the reason. I also used DataAct class browser with LabVIEW.
    The problem is that I cannot uninstall my OpenG packages before I can get my LabVIEW installed again as VI Package Manager reposinsible for installing OpenG packages doesn't work without installed version of LabVIEW. And I cannot get my LabVIEW correctly installed because of this error. I can press ignore and the installation procedes but I don't know whet it didn't do because of the error.
    I guess this error is a bug in LV 8.2.1 isntaller so would some of NI application engineers help, please.
    For now I press Ignore.
    Tomi Maila
    Tomi Maila

    You will get this error if the installer is trying to install a file that has the same name as a folder at that location. For example lets say the installer has a file called "sample" that should go in LabVIEW\examples folder. Now lets say there was a folder called "LabVIEW\examples\sample". Windows wont let you copy that "sample" file in the same location that contains a "sample" folder. The failure is not an error in the installer.
    The problem with the 8.2.1 installer is that it is not telling you what file this failure occurred on. It is trying to, but the string is not formatted correctly and it just says "cannot create file ." The actual file name should be where the "." is.
    You can usually tell what file it failed on from the text above the progress bar where it says what file is being copied. The best way to see what failed was to get an installation log file.
    Naren Salem
    LabVIEW R&D

  • IMovie error - cannot create file when I attempt to share

    I am using MAC OS X 10.9.5, iMovie 10.0.5.  I have successfully create many movies by using Share to file - of long and short sizes. This particular time I made couple of minor edits to my movie which had previous shared to file with no problem, and when I went to Share to File I get an error message. The Share fails with the error "cannot create file".
    I have plenty of disk space.
    All other applications are closed, just imovie running.
    The destination is the mac internal hard drive.
    I deleted imovie and re-installed it.
    I deleted the Render Files.
    No luck.
    Any clues would be greatly appreciated.
    Super frustrated.
    Thanks.

    docjob2001 wrote:>
    Is there a way to go back download 9.02 again?
    you can download it from here: http://www.versiontracker.com/dyn/moreinfo/macosx/10057115&vid=11116557&mode=inf o
    My only backup is version 8.2 and will not open my itunes library - is there a workaround for this?
    maybe. you could try this:
    to downgrade to a previous iTunes version, you could try this user tip that seemed to have worked for some:
    +1) Quit iTunes.+
    +2) Delete iTunes from your Applications folder.+
    +3) Go to your ~/Music/iTunes folder. Delete or rename the "iTunes Library" file.+
    +4) Open the "Previous iTunes Libraries" folder and look for the backup of your old pre-9 library; it should be dated at about the time you first ran iTunes 9. Copy it back out to the ~/Music/iTunes folder, and rename it to "iTunes Library".+
    +6) click here to download iTunes 8.2.1. The page says it's for G3, but the Read Me file says it'll run on G4, G5, and Intel too. Open the disk image and run the installer.+
    +You should now be able to run iTunes 8.2.1 again.+
    +And your iTunes will restore to before you upgraded and you won't lose anything+.
    good luck !

  • I am having problems installing creative cloud due to cookies dir(?)it says cannot make folder/cookies: permission denied(error 13)

    I am having problems installing creative cloud: It says "cannot make folder/Cookies:permission denied (error13)

    Try below steps
    Click on Finder and then hold Command + Shift + G keys on your keypad
    It will open Go to folder window, type  exactly ~/Library and click on Go  ( make sure to opeb ~/Library not /Library, there will two library )
    Then open Application Support
    Right click on Adobe folder
    Click on get info
    Under sharing and permission click on lock icon and unlock it
    Click on symbol and Add Administrator and your current user name ( if not added )
    Then give read and write permission to user name, admin, system and every one
    Then click on Gear icon and select 'Apply to Enclosed
    Click on lock icon
    Try to install Creative Cloud App.

  • Cannot make folder /cookies: Permission denied (error 13)

    I can not successfully install the Creative Cloud Installer. I continually get
    Error Starting Creative Cloud
    cookies dir: cannot make folder /cookies: Permission denied (error 13)
    I have tried verifying disk permissions using the disk utility on my macpro retina. This is a brand new computer (less than a week). I've also tried changing cookies permissions to allow for third party cookies.
    I don't know what the problem is.

    I had this same irritating problem. Thanks to this forum and some helpful instructions from Adobe Customer Support online I have been able to sort it out. For those who've read this far down the thread, here are the instructions from Adobe, which worked a treat - and also cured a problem I was having with Adobe Reader XI for Mac (internal error message meaning I couldn't use Reader and none of my pdfs would open with Preview either!)
    1. Please Open Finder and click on Applications on left hand side of Finder window.
    2. Navigate to Applications->Utilities ->Adobe Installers. Double click on Uninstall Adobe Creative Cloud and follow the onscreen instructions.
    3. Delete Adobe Application Manager folder from Applications/Utilities.
    4. Open Finder. Click on Go in Finder menu and choose Go to Folder. Type /Library/Application Support/Adobe in Go to folder and press return key. You will have Adobe folder open in Finder.
    5. Delete AdobeApplicationManager and OOBE folder.
    6. Click on Go in Finder menu and choose Go to Folder again. Type ~/Library/Application Support/Adobe in Go to folder and press return key.
    7. Delete AAMUpdater and OOBE folder from Adobe.
    8. Click on Go in Finder menu and choose Go to Folder again. Type ~/Library/Application Support and press return key.
    9. Right click on Adobe folder and choose Get Info.
    10. Click the lock icon at bottom of Get Info window to unlock it, then enter an administrator’s name and password.
    11. Click on + icon and choose select all users on pop up and window and choose Select.
    12. Change the permissions for all Users to Read and Write.
    13. Choose "Apply to enclosed items" from the Action pop-up menu (looks like a gear).
    14. Try installing the Creative Cloud Desktop application from below link.
    https://ccmdls.adobe.com/AdobeProducts/KCCC/1/osx10/CreativeCloudInstaller.dmg
    Please launch Adobe Creative Cloud Desktop application and check if you are able to sign in.

  • I cannot create an Application server connection in Oracle JDeveloper 11 g

    i cannot create an Application server connection in Oracle JDeveloper 11 g , i got 0 of 9 test successful and i got this erros
    Cannot establish connection.
    Testing JSR-160 DomainRuntime ... skipped.
    Testing JSR-88 ... skipped.
    Testing JSR-88-LOCAL ... skipped.
    Testing JNDI ... skipped.
    Testing JSR-160 Edit ... skipped.
    Testing HTTP ... failed.
    Testing Server MBeans Model ... skipped.
    Testing HTTP Authentication failed
    0 of 9 tests successful.

    Hi,
    you can start the Jdev by command line and then see the log that it is generating. Maybe there you can see the problem that is happening.
    Also you can check if the server is running with
         telnet hostname 7001
    Some possible reasons
         you have a firewall blocking the connection
         did you check /etc/hosts file entry ? should be something like this <ip address of host > hostname1
    Cheers
    Augusto

  • ACR Raw images wont copy to Jpeg or Tiff; as it fails with "Cannot Create File"

    Requesting immediate help if anyone available currently
    I've been using Photoshop CS6 for several years, never a problem at all. As soon as I bought Creative Cloud, I see many issues that cannot be resolved or are recurring.
    Again today as I go to copy files (images) from Adobe Camera Raw, to say a Tiff or a Jpeg, it appears to begin to copy as normal, then suddenly a box appears with all my copying
    file name/numbers, and it begins to eliminate one by one "Cannot Create File", failing the entire process to copy. I have never seen this until I began using Creative Cloud about a
    month ago.
    Can anyone help this Saturday evening as i am trying to complete a large project of images for others who expect them soon.?
    Thank you and I look forward to any advice soon,
    Mark Seibold, Artist-Astronomer, Portland Oregon

    Hi Rick
    Thanks for clarifying that. Yes, that term was my mistake, as I meant to write 'Save As"
    Another forum respondent just replied also, and he states as so many others do, that they do not use
    the Adobe Camera Raw app formerly with CS6, as they instead use Lightroom, so he apologized that he
    was not familiar with ACR but that I might have an old CS6 plug-in running that may not be completely
    compatible with the new Creative Cloud. I am not sure if this is the problem.
    What I would find as not really likely, is that the Creative Cloud engineers would go through all the trouble
    to redesign from the old CS6, then even assist us over the phone to help install it, but in oversight,
    leave us without a proper update to properly run Adobe Camera Raw. I also have never really understood the advantage of Lightroom. I'm sure that many must enjoy its efficiency, as I hear wedding photographers like it for huge batch processing of adjusting many images in synchronicity all at once. I would say that I do the same with ACR accessing it through Bridge, and I like ACR's quick and simple access for simple image adjustments and then say a small batch all synchronized, then finally to "Save As" for all selected to a final output as Tiff or Jpeg.
    As an astronomer that has just started learning to use Registax for night sky images, we also like the ACR adjustments and then to "Save As" eg. all Jpeg or all Tiff, to then photo-stitch large landscape and night sky panoramas with Microsoft ICE photo-stitching.
    Sorry for the long description here, but I hope to relate the total idea of what I am doing for the past years. I'll even attach an example >
    Thanks for your possible solution to my problem in "Saving As" in ACR,
    Mark

  • Download error message - "Cannot Create File"

    Recently I developed a problem and am unable to download anything (files, software, etc) from any website. I begin a download, the download manager comes up and it shows an error message "Cannot Create File." I am using the default manager that is incorporated in OS X 10.3.9.
    I never had a problem until a week or so ago when I downloaded a software demo. I decided to get the full software package and trashed the demo files per the company's instructions. I got the error message when I tried to download the full program and now get the message no matter what I attempt to download. Might I have trashed a file I wasn't supposed to trash?
    I tried installing 10.3.9 again on my main drive but still have the problem. If I use an external hard drive with spare copy of 10.3.9 and make that my start up drive, I can download files successfully.
    Any help would be greatly appreciated.
    Dave
    2002 DP 1GH Quicksilver   Mac OS X (10.3.9)  

    Recently I developed a problem and am unable to
    download anything (files, software, etc) from any
    website. I begin a download, the download manager
    comes up and it shows an error message "Cannot Create
    File." I am using the default manager that is
    incorporated in OS X 10.3.9.
    I never had a problem until a week or so ago when I
    downloaded a software demo. I decided to get the full
    software package and trashed the demo files per the
    company's instructions. I got the error message when
    I tried to download the full program and now get the
    message no matter what I attempt to download. Might I
    have trashed a file I wasn't supposed to trash?
    I tried installing 10.3.9 again on my main drive but
    still have the problem. If I use an external hard
    drive with spare copy of 10.3.9 and make that my
    start up drive, I can download files successfully.
    Any help would be greatly appreciated.
    Dave
    2002 DP 1GH
    Quicksilver   Mac OS X (10.3.9)  
    I have the same problem ! Not being able to download a file from the Adobe site. I need Reader 7 to download some files from exact exams but can't do it. Just keep getting the Cannot Creat File message in the download window. Can anyone help?
    eMac 1.25 & G4 800 iBook   Mac OS X (10.4.5)  
    eMac 1.25 & G4 800 iBook   Mac OS X (10.4.5)  

  • I have LR 4 and now I cannot open the software because I get this warning: light room cannot start because it cannot create files in the temp file location.. C:/windows/temp. How do I fix this? I have removed and downloaded LR and even used by disc and st

    I have LR 4 and now I cannot open the software because I get this warning: "light room cannot start because it cannot create files in the temp file location. C:\windows\temp\". I think I need to have LR open in a different place but I have no idea how to do that. Any help is most appreciated.
    Alex

    Jim
    Thank you for your prompt reply. Unfortunately I am not that tech oriented and
    cannot easily find that folder. I did notice when I was booting up the LR software
    that I could accept the site where LR usually is set up or choose a place. I am
    thinking that the standard location for LR software is corrupted and that if I
    chose a different place it would work. I say this because whether I use my
    original disc or download from adobe I get the same warning. I have 100GB of
    memory on the hard drive and I have cleaned the computer with Mcaffee and free
    software. What should I do next? I can't use this software and I doubt LR 5
    would open up with my current problem.
    Alex

  • Unable to download "cannot create file"

    I have an older G3 and am using Mac OS 10.4.11 and Safari. Several weeks ago I began having a problem with all types of downloads. When I try to download, I get a message saying "cannot create file". This is very frustrating as I have people sending me emails with photos, etc. and cannot open them.
    Please advise.

    Click here and follow the instructions.
    (30629)

  • Downloads read-Cannot create file.......is something wrong?

    i have got this message on 3 straight downloads now
    only thing that is different is NOW i connect wirelessly doees that have anything to do with it
    download window opens but 3 in a row now............cannot create file
    thanks

    Perform the procedure in this FAQ.
    (15782)

  • Invalid media. Cannot create file" popup when generating

    Okay, the background. I'm currently using RoboHelp HTML 11.0.3.268, with the latest updates as I write this, having updated from RoboHelp HTML 9. (I know that people will ask, and I understand, so I'm stating as much information up front to ensure that nobody has any questions of their own.) My main RoboHelp project is broken down into eight separate subprojects, with an output of CHM and WebHelp HTML files. In addition, my supervisor had an issue with viewing the new RoboHelp 11-generated HTML files in Google Chrome, so I found and added the RH11 files recommended by RoboHelp Help (WebHelp issues in RoboHelp versions 10 and 11). Immediately after doing this, though, I cannot generate WebHelp files.As soon as I select between any of the WebHelp Settings menu, a popup appears that reads "Invalid media. Cannot create file", followed with the directory path of the project's main .htm page.  Short of reinstalling RoboHelp HTML, what options do I have to be able to generate a valid set of WebHelp files?

    Here's the RH 11.0.3 files: https://drive.google.com/file/d/0B97LY22mEkjqemJobkRmRmg2RFU/view?usp=sharing Add the files to the template_stock folder.
    The Chrome freezing up should be solved in RoboHelp 10/11. On RoboHelp 9, no amount of fixes will make Chrome work locally. If your manager tries the 11 WebHelp it should work fine.
    Kind regards,
    Willam

Maybe you are looking for

  • ML, Parallels (Aspen Hysys) and multi-display. How much RAM do I need?

    Hello, I'm a proud owner of a 13-inch Mid '10 MB with a 2.4 Intel Core 2 Duo Processor. I recently upgraded my machine with a 250 GB Samsung 840 SSD and bought an enclosure for my original 250 GB HDD to sit on. I'm in ML 10.8.3 and need to use Parall

  • Save As & Open Dialog Window for some documents hangs when custom VSTO plugin is installed

    Hello, I have created a VSTO application which uploads a word document to Document Management Server. The problem is not with this plugin, but after the plugin is installed, for certain documents when user makes some modification to the document and

  • No entry in table $ for key $ at $ T555A 110600

    Hello Experts, When I run the time evaluation through T-Code PT60, I am getting the following error: No entry in table $ for key $ at $ T555A 110600 01.01.2009 Technical error no. 72 01.01.2009 Processing terminated for EE 90000022. Kindly let me kno

  • Macbook pro screen won't wake up after sleep

    I'm having a strange problem that just started today. I close my macbook pro lid and put it asleep. Then when I open the lid the keyboard lights up. The screen comes on for about three seconds and everyone looks fine then the screen goes to sleep aga

  • Adobe Reader X friert immer ein (Datei:SharedDataEvents)?

    Diesbezüglich gab es schon eine Diskusion, aber nachdem dort nichts mehr weiter geklärt wird, obwohl ich scheinbar den Übeltäter dieses Hängen beliebens gefunden habe. Mittlerweile ist das Problem bei einem weiteren Image aufgetreten, dass wir einem