Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > macOS > OS X won't let me rename an application

OS X won't let me rename an application
Thread Tools
bballe336
Mac Enthusiast
Join Date: Jul 2006
Location: MA
Status: Offline
Reply With Quote
Jun 28, 2008, 10:58 PM
 
I want to rename an application, however when I right click on it and select get info I am unable to change it. Is there a trick? I'm the administrator on this machine by the way.

Thanks for any help!
     
Cold Warrior
Moderator
Join Date: Jan 2001
Location: Polwaristan
Status: Offline
Reply With Quote
Jun 28, 2008, 11:01 PM
 
Try clicking in the name itself, then wait a second and click again. This should give you the rename text box where you can type in what you want.

What app(s) are you trying to rename?
     
bballe336  (op)
Mac Enthusiast
Join Date: Jul 2006
Location: MA
Status: Offline
Reply With Quote
Jun 29, 2008, 12:45 AM
 
That doesn't work, it was the first thing I tried, I am trying to rename RealFlow 4 (it installed as RealFlow for some reason and I want it to say "RealFlow 4").
     
Cold Warrior
Moderator
Join Date: Jan 2001
Location: Polwaristan
Status: Offline
Reply With Quote
Jun 29, 2008, 12:47 AM
 
When you Get Info, check the permissions for that application. See if you have enough privileges.
     
bballe336  (op)
Mac Enthusiast
Join Date: Jul 2006
Location: MA
Status: Offline
Reply With Quote
Jun 29, 2008, 01:33 AM
 
Originally Posted by Cold Warrior View Post
When you Get Info, check the permissions for that application. See if you have enough privileges.
I have full permissions on everything, which is what's really confusing. Is there any type of application that would allow me to rename it? I've searched but can't find anything.
     
Randman
Posting Junkie
Join Date: Mar 2004
Location: MacNN database error. Please refresh your browser.
Status: Offline
Reply With Quote
Jun 29, 2008, 01:48 AM
 
The application isn't open, is it? Try restarting and then doing it?

This is a computer-generated message and needs no signature.
     
Chuckit
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status: Offline
Reply With Quote
Jun 29, 2008, 02:13 AM
 
I can only think of two things that would lead to the symptoms you describe:
1) You don't have write permissions for the enclosing folder
2) The item is locked
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
     
analogika
Posting Junkie
Join Date: Feb 2005
Location: 888500128
Status: Offline
Reply With Quote
Jun 29, 2008, 03:47 AM
 
Originally Posted by Chuckit View Post
I can only think of two things that would lead to the symptoms you describe:
1) You don't have write permissions for the enclosing folder
2) The item is locked
3) The application is running.
     
Chuckit
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status: Offline
Reply With Quote
Jun 29, 2008, 03:54 AM
 
You can type in the name field of a running application — the system will just warn you that it's a bad idea (and in that case you wouldn't really need to ask why the dialog appeared anyway).
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
     
analogika
Posting Junkie
Join Date: Feb 2005
Location: 888500128
Status: Offline
Reply With Quote
Jun 29, 2008, 08:04 AM
 
Egads! You're right!

(Did that used to be the case in 10.4 and earlier, as well?)
     
bballe336  (op)
Mac Enthusiast
Join Date: Jul 2006
Location: MA
Status: Offline
Reply With Quote
Jun 30, 2008, 09:13 AM
 
Originally Posted by Chuckit View Post
I can only think of two things that would lead to the symptoms you describe:
1) You don't have write permissions for the enclosing folder
2) The item is locked
I have write permissions for the application, it is not locked, and it is not running, I still cannot change the name though.
     
zro
Mac Elite
Join Date: Nov 2003
Location: The back of the room
Status: Offline
Reply With Quote
Jun 30, 2008, 10:05 AM
 
Originally Posted by Chuckit View Post
1) You don't have write permissions for the enclosing folder
Emphasis mine.
     
P
Moderator
Join Date: Apr 2000
Location: Gothenburg, Sweden
Status: Offline
Reply With Quote
Jun 30, 2008, 11:09 AM
 
You can also try getting info for the application and changing the name in that box.
     
turtle777
Clinically Insane
Join Date: Jun 2001
Location: planning a comeback !
Status: Offline
Reply With Quote
Jun 30, 2008, 11:24 AM
 
Originally Posted by bballe336 View Post
I want to rename an application, however when I right click on it and select get info I am unable to change it.
Originally Posted by P View Post
You can also try getting info for the application and changing the name in that box.
Uhm, that's the first thing the PO tried.

-t
     
bballe336  (op)
Mac Enthusiast
Join Date: Jul 2006
Location: MA
Status: Offline
Reply With Quote
Jul 1, 2008, 04:24 PM
 
Thanks for the help so far, does anyone have any other suggestions?
     
CharlesS
Posting Junkie
Join Date: Dec 2000
Status: Offline
Reply With Quote
Jul 1, 2008, 04:32 PM
 
Try doing it in the Terminal:

(in this example, the path to the app is /path/to/oldname.app. replace it with whatever's appropriate)

cd /path/to
mv oldname.app newname.app

If it works, then the Finder was just being stupid. If it fails, you'll get a message telling you why, thus satisfying your curiosity. If it has something to do with permissions, you can prefix the "mv" command with "sudo" to force it.

Ticking sound coming from a .pkg package? Don't let the .bom go off! Inspect it first with Pacifist. Macworld - five mice!
     
Chuckit
Clinically Insane
Join Date: Oct 2001
Location: San Diego, CA, USA
Status: Offline
Reply With Quote
Jul 1, 2008, 04:45 PM
 
Actually, you should enclose the names in quotes for the mv command. So it would be:
mv "old name.app" "new name.app"
Chuck
___
"Instead of either 'multi-talented' or 'multitalented' use 'bisexual'."
     
CharlesS
Posting Junkie
Join Date: Dec 2000
Status: Offline
Reply With Quote
Jul 1, 2008, 04:47 PM
 
True, you'll need the quotes if the app name has a space in it.

Ticking sound coming from a .pkg package? Don't let the .bom go off! Inspect it first with Pacifist. Macworld - five mice!
     
bballe336  (op)
Mac Enthusiast
Join Date: Jul 2006
Location: MA
Status: Offline
Reply With Quote
Jul 1, 2008, 08:15 PM
 
All I end up with is a directory or file not found error, I have tried numerous combinations of just accountname/applications/.... and harddrive/accountname/applications with no success. I assume I'm doing it wrong, how should the path name by typed out?
     
CharlesS
Posting Junkie
Join Date: Dec 2000
Status: Offline
Reply With Quote
Jul 1, 2008, 08:16 PM
 
If it's just in the Applications folder at the root of the drive, the path is /Applications. Otherwise, just type "cd", then a space, then drag the folder that the app is in onto the Terminal window and it'll automatically put the right path in.

Ticking sound coming from a .pkg package? Don't let the .bom go off! Inspect it first with Pacifist. Macworld - five mice!
     
bballe336  (op)
Mac Enthusiast
Join Date: Jul 2006
Location: MA
Status: Offline
Reply With Quote
Jul 1, 2008, 08:35 PM
 
Originally Posted by CharlesS View Post
If it's just in the Applications folder at the root of the drive, the path is /Applications. Otherwise, just type "cd", then a space, then drag the folder that the app is in onto the Terminal window and it'll automatically put the right path in.
Thanks a bunch, that worked, though I had to use the sudo command as it told me permission was denied, which is clearly not right as this is the only administrator account on the system.
     
neuonyx
Fresh-Faced Recruit
Join Date: Mar 2007
Status: Offline
Reply With Quote
Jul 4, 2008, 08:35 AM
 
Originally Posted by bballe336 View Post
Thanks a bunch, that worked, though I had to use the sudo command as it told me permission was denied, which is clearly not right as this is the only administrator account on the system.
Wow, you're an idiot. The problem was you didn't have permissions -- it told you that. An 'administrator account' is an account that has the ability to sudo. NOT an account that has all kinds of crazy permissions. In finder you have to 'authenticate' before you can do this. You 'authenticated' in terminal by using sudo.
     
TETENAL
Addicted to MacNN
Join Date: Aug 2004
Location: FFM
Status: Offline
Reply With Quote
Jul 4, 2008, 09:18 AM
 
An administrator should be able to rename applications in the Applications folder without authentification. This is an issue that should be fixed by the "Repair permissions" command of Disk Utility.
     
OreoCookie
Moderator
Join Date: May 2001
Location: Hilbert space
Status: Offline
Reply With Quote
Jul 4, 2008, 09:29 AM
 
Please keep it civilized, neuonyx.
I don't suffer from insanity, I enjoy every minute of it.
     
bballe336  (op)
Mac Enthusiast
Join Date: Jul 2006
Location: MA
Status: Offline
Reply With Quote
Jul 4, 2008, 01:03 PM
 
Originally Posted by neuonyx View Post
Wow, you're an idiot. The problem was you didn't have permissions -- it told you that. An 'administrator account' is an account that has the ability to sudo. NOT an account that has all kinds of crazy permissions. In finder you have to 'authenticate' before you can do this. You 'authenticated' in terminal by using sudo.
Yes, I'm sure by being the only administrator on the machine I didn't have permissions, and by using my password for this account to confirm the sudo command means that this account doesn't have the permissions right? Get over yourself, no one cares what you have to say after the issue has been resolved.

I repaired permissions and all is fine now.
     
   
 
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Top
Privacy Policy
All times are GMT -4. The time now is 01:24 PM.
All contents of these forums © 1995-2017 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.8 © 2000-2017, Jelsoft Enterprises Ltd.,