Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

when adding a folder in the finder window it makes me Authenticate.. how can i change this?

when adding a folder in the finder window it makes me Authenticate.. how can i change this?


i am logged into the computer as the root user...


i know when i upgraded to 10.6 this happened but i cannot remember what i did to fix this

and it is doint it in 10.7



message says....

finder wants to make changes. type your password to allow this...


MBP 2.66 C2D

MacBook Pro, Mac OS X (10.7), Roland 54" VP-540 Wide-Format Eco-Sol Printer

Posted on Jul 22, 2011 1:38 AM

Reply
19 replies

Jul 29, 2011 10:21 PM in response to auximage

Try and give some more information when you are asking for help.


You mentioned using the root account - do you mean you used Directory Utility to enable the root account, and have then logged in via Other as root? Or you are using the administrator account created when you setup your computer (Two different levels of access)


Make sure you identify exactly where you are attempting to create a folder - and that you have adequate permissions to do so for that area. Also if you are copying a file - where from?


What are the respective permissions of the file being copied, the folder containing it and the destination folder?

For instance - I can delete "New Folder" from my Home Directory - but "Pictures" is a protected folder and asks me to authenticate to delete it. I used to remember the command to manually force a user created folder to do this, but looking into it today its not chflags uchg or chflags schg - They seem to lock the folder - as in read only despite the access rights.


For example,


If I - using the default admin account, attempt to create a folder using finder, at the top level of my disk, finder asks me to authenticate, and upon authenticating - creates the folder.


If I - using any user account, attempt to create a folder using finder, at the top level of my home directory - finder creates the folder without authentication.

Aug 1, 2011 9:24 AM in response to Gary Nunn

I have the same problem. I am the System Administrator and the only user. Whenever I try to move a file or folder in Lion--e.g. from the Desktop to my documents folder--I get a pop up box that says: "Finder wants to make changes. Enter your password." Depending on what I'm trying to move, from where, and to where, I sometimes first get a pop up that says I can't do it and then asks me to authenticate, and THEN gives me the password pop up--3 steps to move a document or folder. I've used Get Info to allow read and write permission and applied it to all my files and folders, and still the Finder says I don't have permission. I can't even move a file to the the Trash without my password. This is driving me nuts. How do get Lion to let me move files!!

Aug 1, 2011 1:11 PM in response to CT

I haven't because I'm trying to work and that takes a lot of time and attention. If I create a new user, I have to redo all my setting, etc. don't I? I think there's defintiely a Finder bug with Lion. It also asks me for a password to put something from the desktop into the trash, which other people seem to be having trouble with, as well. I found many threads about that.


I have a brand new MacBook Pro 15.4 2.2 ghz 8 GB Ram with Lion factory installed. I spent a very very long weekend transferring files from my old black MacBook. Migration Assistant failed. Firewire failed. Apple Pro helped me enable the Root User so I could copy my old user over, but that also failed. I actually had to go folder by folder, file by file, and copy everything to my (also brand new) Time Capsue, and then onto the MacBook Pro. I did copy my browser settings, iPhoto and iTunes settings, and brought a few 3rd party applications over, but most settings and programs on the new computer are brand new and fresh.


It seems a bit much that I should have to create a new user--again--when I am the new user! LOL

Aug 1, 2011 1:18 PM in response to judyplap

(1) The new user is just a troubleshooting tool to see where the problem is.


(2) Just because you've messed up your computer doesn't mean there is a bug. The vast majority of users don't have your problem.


(3) You've stolen this thread, which belongs to Gary Nunn, but you are unwilling to try standard troubleshooting. Adios.

Aug 1, 2011 2:29 PM in response to Gary Nunn

I ran into this problem with my Snow Leopard upgrade. The issue: the upgrade made a new account, so that when I imported my files from Time Machine, all of my files were owned by "username_old," whereas I was trying to access them as "username." I used a somewhat daredevil approach of doing a wholesale chown (Unix command for changing ownership) of all my files, changing the owner from "username_old" to "username." If you know enough Unix, then maybe you can figure out what to do?


In any case, I find that the easiest way to debug permissions problems is with the terminal. For example, if you're asked to authenticate when making a new folder on your Desktop, open a terminal and type:


whoami

ls -lrth


"whoami" prints out your username, and "ls -lrth" shows the contents of your home directory. You should see something like:


My-MacBook-Pro:~ garynunn$ whoami

garynunn

My-MacBook-Pro:~ garynunn$ ls -lrth

total 1000328

...

drwx------+ 49 owners_username groupname 1.6K Jul 31 23:50 Documents

drwx------+ 42 owners_username groupname 1.4K Aug 1 17:19 Desktop

...


Broken down:

  • whoami prints out garynunn, or whatever your username happens to be
  • ls -lrth gives information on all the files in your current directory, namely:
  • The "drwx------+" specifies the permisions (d means directory, then you have three sets of three letters telling you the permissions for the user, the group, and everyone else).
  • 49 is the number of links to the directory (not really important).
  • owners_username is the username of whoever owns the file.
  • groupname is the group that the file belongs to (e.g. staff, admin, wheel, students...).
  • 1.6K is the size of the file.
  • Jul 31 23:50 is the date/time the file was last modified.
  • Lastly, the name of the file.

So, when you do this, do the output of whoami and the owner of "Desktop" match? If no, that's your problem! You can change the owner of your Desktop folder from the wrong username to the right username by doing the command:

chown <correct_username> Desktop

Hope this help!

Aug 1, 2011 4:28 PM in response to winterrunner5000

@winterrunner: that sounds plausible. I'll check it out. Thank you.


@CT: I think you've misunderstood me. I just meant I hadn't had time to try the new user thing. I was just hoping to find a quick solution so I could keep working. And I certainly wasn't trying to highjack anyone's thread. Didn't mean to ruffle your feathers...or anyone else's. Very grateful for these forums. They offer invaluable help. Thank you.

Aug 1, 2011 8:27 PM in response to judyplap

If you need a GUI to change the owner of a file or files, try BatChMod


Download BatChmod 1.51

Works on 10.5 and 10.6



http://www.macchampion.com/arbysoft/BatchMod/Download.html


-----------------------

Here are similar teminal commands:
Macintosh-HD -> Applications -> Utilities -> Terminal


#Your current user is:
echo $USER
#Let's assume myuser


#Or, you can use the id command.
id

#Remember, this will be the correct userid. You need to find the bad userid.



#You need to look on one of your bad files. To find out your UID and GID do:


cd ~
ls -ln
ls -l


ls -ln filename-of-bad-file


Now, compare the output and write down what you find.


You best use the numeric value of the old userid. In this case it is 501. Before you do a command that will change files, you should list all the files to be changed. From an administrator account, enter the following command:
sudo find -x / -user 501 -exec ls -l {} \;
# the system will ask for your log on password. Type it in. The letters will not appear on the screen. Then, press the enter key.


# adding a -x before the / limits the search to the current file system which will be your startup partition.


# To stop the display press control-c ( hold down the control key then press c )





mac $ sudo find -x / -user 501 -exec ls -l {} \;
-rwxr-xr-x 1 na unknown 0 Oct 23 2001 /Applications/AppleWorks 6/AppleWorks 6.app/AppleWorks 6
-rwxr-xr-x 1 na unknown 0 Oct 23 2001 /Applications/AppleWorks 6/AppleWorks 6.app/Contents/MacOS/AppleWorks Essentials
-rwxr-xr-x 1 na unknown 0 Oct 23 2001 /Applications/AppleWorks 6/AppleWorks 6.app/Contents/MacOS/Clippings
-rwxr-xr-x 1 na unknown 0 Oct 23 2001 /Applications/AppleWorks 6/AppleWorks
^C

This command will change the ownership of a file.

Any file or folder with a userid of 501 is changed to 1000. Your numbers will differ.

sudo find -x / -user 501 -exec chown 1000 {} \;


#And you need to do this from an administrator id.


More examples:


sudo find -x / -user 501 -exec chown 5464 {} \;


sudo find -x / -group 20 -exec chgrp 211 {} \;


#combined change of uid & gid
sudo find -x / -user 501 -exec chown 5464:211 {} \;


Hope this helps a little.


Robert

Aug 8, 2011 4:49 AM in response to Gary Nunn

same problem here on 3 Macs updated from Snow Leopard to Lion !


I am admin and only user, repaired persmission an dcan not add files/folders to my hard disk without message:


1) dragging files/folders from desktop to hard disk: The item " " can't be moved because "My harddisk" can't be modified


2) Command-Shift-N: on when Hard disk is open: Finder want to make chnages. Type your password to allow this.

Aug 8, 2011 9:46 AM in response to mgshoutman

You will gain more visibility for you question by create a new thread.


On this page, look to the right. See actions. See start a new discussion.


https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion?view=discussi ons


-----------------------

I cannot resist.

same problem here

Then the suggest solutions posted above should work for you. What happened when you tried them?


Robert

when adding a folder in the finder window it makes me Authenticate.. how can i change this?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.