Allow app to request authefication

1

I use ForkLift as default file manager. From time to time some files could be overwritten only with user permission. Finder asks password but Forklift just says that it is impossible.

enter image description here

Launching Forklift from terminal with sudo access does not help.

eleven

Posted 2014-02-10T13:47:47.633

Reputation: 113

1"with sudo access does not help" How are you attempting this? – grg – 2014-02-11T16:45:03.413

@grgarside through terminal: sudo open /Apps/ForkLift.app – eleven – 2014-02-11T19:27:04.923

1

That doesn't run the app as sudo — see this: you need to run the binary as sudo.

– grg – 2014-02-11T19:28:46.133

Answers

1

You need to run the app binary as sudo for it to be run under sudo. Running the app package as sudo won't launch the app as sudo.

sudo /Applications/App.app/Contents/MacOS/App

grg

Posted 2014-02-10T13:47:47.633

Reputation: 1 499