Coder Social home page Coder Social logo

Comments (14)

jorangreef avatar jorangreef commented on July 22, 2024

It looks like the User you are passing does not exist as a valid user on the system.

from sudo-prompt.

debelop13 avatar debelop13 commented on July 22, 2024

I have create a new user, without admin privileges, and is continuous happening. I have to restart or log out and it works again, but only first time.

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

Your command (chown -R User) shows that you are passing in User literally as your user name?

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

What does ls /Users return on that system?

from sudo-prompt.

debelop13 avatar debelop13 commented on July 22, 2024

I do a whoami, my user is named "test".

My real code
var user = execSync("whoami").toString().replace("\n", "");
var command = "chown -R " + user + " '" + destination + "';
sudo.exec(command, options,.....

It is like my chown destroys something

First time before run my app:

Admins-MacBook-Pro:~ test$ /usr/bin/sudo -n -E -- chown -R test '/Applications/Example/Plugins/'
sudo: a password is required
Admins-MacBook-Pro:~ test$ ls /Users
Shared admin test

After run my app:

Admins-MacBook-Pro:~ test$ /usr/bin/sudo -n -E -- chown -R test '/Applications//Example/Plugins/'
test is not in the sudoers file. This incident will be reported.
Admins-MacBook-Pro:~ test$ ls /Users
Shared admin test

Curiosuly I dont need to restart, 5 minuts later open application, I run again and works fine.
Restart / 5 minuts after.. (only in yosemite):

Admins-MacBook-Pro:~ test$ /usr/bin/sudo -n -E -- chown -R test '/Applications/Example/Plugins/'
sudo: a password is required
Admins-MacBook-Pro:~ test$ ls /Users
Shared admin test

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

Thanks, if you are logged in as the test user, what does running id in the Terminal return (make sure you are logged in as the test user)?

from sudo-prompt.

debelop13 avatar debelop13 commented on July 22, 2024

Yes, i am logged in test user:

Before run my app:

Admins-MacBook-Pro:~ test$ /usr/bin/sudo -n -E -- chown -R test '/Applications/Example/Plugins/'
sudo: a password is required
Admins-MacBook-Pro:~ test$ id
uid=503(test) gid=20(staff) groups=20(staff),703(com.apple.sharepoint.group.3),12(everyone),61(localaccounts),702(com.apple.sharepoint.group.2),100(_lpoperator),701(com.apple.sharepoint.group.1)

After run my app:

Admins-MacBook-Pro:~ test$ /usr/bin/sudo -n -E -- chown -R test '/Applications/Example/Plugins/'
test is not in the sudoers file. This incident will be reported.
Admins-MacBook-Pro:~ test$ id
uid=503(test) gid=20(staff) groups=20(staff),703(com.apple.sharepoint.group.3),12(everyone),61(localaccounts),702(com.apple.sharepoint.group.2),100(_lpoperator),701(com.apple.sharepoint.group.1)

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

I think the problem is that your test user is not a member of the admin group. Your default sudoers file will probably only allow root and users who are members of the admin group. You need to add your test user to the admin group (this may work: http://apple.stackexchange.com/questions/76088/how-do-i-give-a-user-sudo-permissions).

from sudo-prompt.

debelop13 avatar debelop13 commented on July 22, 2024

But this can be solved in my mac, but If I have to distribute this app, it is a problem..

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

If you restart your computer, and without running the app, what does the following give?

/usr/bin/sudo -E -- chown -R test '/Applications/Example/Plugins/'

from sudo-prompt.

debelop13 avatar debelop13 commented on July 22, 2024

Sorry, I did not understand correctly last comment, and I have delete it.


This command is asking for password, and after error is the same:

Admins-MacBook-Pro:~ test$ /usr/bin/sudo -E -- chown -R test '/Applications/Example/Plugins/'
Password:
test is not in the sudoers file. This incident will be reported.

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

Thanks, running the command I gave you confirms that the issue is either with sudo or chown. To see which one it is...

Can you try and run this command in your Terminal:

sudo -k && whoami && sudo echo hello

And then try this:

sudo -k && sudo chown -R test '/Applications/Example/Plugins/'

What do these two commands return?

from sudo-prompt.

debelop13 avatar debelop13 commented on July 22, 2024

Can be possible the same error?

Admins-MacBook-Pro:~ test$ sudo -k && whoami && sudo echo hello
test
Password:
test is not in the sudoers file. This incident will be reported.

Admins-MacBook-Pro:~ test$ sudo -k && sudo chown -R test '/Applications/Example/Plugins/'
Password:
test is not in the sudoers file. This incident will be reported.

from sudo-prompt.

jorangreef avatar jorangreef commented on July 22, 2024

How did you create the test user on your Mac?

I think it's because your test user is not a member of the admin group, or perhaps because of how the user was created.

There's nothing that sudo-prompt can do since your command fails with sudo itself. sudo-prompt can only do what sudo can do.

from sudo-prompt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.