LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-10-2012, 01:08 AM   #1
nagendrar
Member
 
Registered: Apr 2008
Location: HYD, INDIA.
Posts: 154

Rep: Reputation: 15
how to fix "sudo: unable to execute /bin/ls: Permission denied"?


When I run the "/bin/ls" command with sudo. I am getting following error "sudo: unable to execute /bin/ls: Permission denied".

But we have the following line in /etc/sudoers file
<username> ALL=(root)NOPASSWD:/bin/ls


Please help me to solve the problem.

ThanQ,
Nagendra

Last edited by nagendrar; 09-10-2012 at 01:10 AM.
 
Old 09-10-2012, 01:19 AM   #2
ravi_nandula
Member
 
Registered: Sep 2011
Posts: 81

Rep: Reputation: Disabled
Quote:
Originally Posted by nagendrar View Post
When I run the "/bin/ls" command with sudo. I am getting following error "sudo: unable to execute /bin/ls: Permission denied".

But we have the following line in /etc/sudoers file
<username> ALL=(root)NOPASSWD:/bin/ls


Please help me to solve the problem.

ThanQ,
Nagendra
Please check this url.....which is related to give sudo to particular command to a user .

http://www.linuxquestions.org/questi...access-584219/

Thanks
 
Old 09-10-2012, 08:30 PM   #3
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,364

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Why would you need sudo for ls? That's one of the basic cmds available to anyone.
 
Old 09-11-2012, 12:30 AM   #4
nagendrar
Member
 
Registered: Apr 2008
Location: HYD, INDIA.
Posts: 154

Original Poster
Rep: Reputation: 15
ravi, Thank for your reply. But we already have these settings in sudoers file.

please help me to solve the problem.

ThanQ,
Nagendra
 
Old 09-11-2012, 12:32 AM   #5
ravi_nandula
Member
 
Registered: Sep 2011
Posts: 81

Rep: Reputation: Disabled
Quote:
Originally Posted by nagendrar View Post
ravi, Thank for your reply. But we already have these settings in sudoers file.

please help me to solve the problem.

ThanQ,
Nagendra
Why do you need to add "ls" command in the sudoers file.?????????????
For any user ls will work.....
 
Old 09-11-2012, 03:05 AM   #6
nagendrar
Member
 
Registered: Apr 2008
Location: HYD, INDIA.
Posts: 154

Original Poster
Rep: Reputation: 15
If we want to display files in another user from one user then 'ls' won't work.

All Files in /proc/ won't display using ls.

Regards,
Nagendra
 
Old 09-11-2012, 04:56 AM   #7
abhinav4
Member
 
Registered: Jun 2010
Location: India
Distribution: Fedora/Cent OS
Posts: 123

Rep: Reputation: 0
Quote:
Originally Posted by nagendrar View Post
If we want to display files in another user from one user then 'ls' won't work.

All Files in /proc/ won't display using ls.

Regards,
Nagendra
If you are not able to view a file using ls, it means you do not have permission for that file. ls is a very basic command open for all user unless you are manually changing the file permission of /bin/ls
 
Old 09-11-2012, 05:33 AM   #8
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,364

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
It definitely sounds like your system is stuffed up.
You should be able to ls /proc, no worries.
Also, as above, most other user's files, unless they have disabled other/world perms and group perms.

Which distro do you have
Code:
cat /etc/*release*
possibly as root in your case ...

What have you been doing to this system??
 
Old 09-11-2012, 05:33 AM   #9
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
This is something that should rather be solved using file-permissions and user groups than with using sudo, I would think.
 
Old 09-13-2012, 02:56 PM   #10
aniketmeshram
LQ Newbie
 
Registered: Feb 2011
Distribution: OpenSUSE 10.3, Fedora, Ubuntu
Posts: 23

Rep: Reputation: 1
just make the

Code:
<username> ALL=(root)NOPASSWD:/bin/ls
to
Code:
<username> ALL=(root)NOPASSWD:ALL
report if any problems.
 
Old 09-13-2012, 04:19 PM   #11
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354
Quote:
Originally Posted by aniketmeshram View Post
just make the

Code:
<username> ALL=(root)NOPASSWD:/bin/ls
to
Code:
<username> ALL=(root)NOPASSWD:ALL
report if any problems.
Wouldn't that give <user> permission to run any command as "root"? That might cause problems in a multi-user system.
 
Old 09-14-2012, 03:22 AM   #12
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by aniketmeshram View Post
just make the

Code:
<username> ALL=(root)NOPASSWD:/bin/ls
to
Code:
<username> ALL=(root)NOPASSWD:ALL
report if any problems.
This would give the user the rights to run any program as root without password. This is the worst setting you can have with regards to security and can be considered to be bad advice.
 
Old 09-14-2012, 06:55 AM   #13
aniketmeshram
LQ Newbie
 
Registered: Feb 2011
Distribution: OpenSUSE 10.3, Fedora, Ubuntu
Posts: 23

Rep: Reputation: 1
PTrenholme, TobiSGD, guys!! I gave him the suggestion to check if the problem exist over all.
Thats why i said "report if any problem" if it doesn't i would have suggested to change the sudoers setting so that only he gets the access control.
I didn't say that's the final answer. Usually, once adding the local user name to sudoers list doesn't give problems.
I don't know why he was having one. That's why!!.
 
  


Reply



Posting 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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Getting permission denied when running "sudo bash" Clariollo Red Hat 6 01-25-2012 02:18 PM
Tried to install a .bin but "bash: ./CmapTools64.bin: Permission denied" Xime1008 Linux - Newbie 6 05-16-2011 06:24 PM
Failed to execute child process "ooffice" (Permission denied) Mol_Bolom Linux - Software 2 03-11-2009 04:23 PM
can't execute c++ binaries, "permission denied"... even though permission is 777 SerfurJ Programming 14 02-20-2009 04:50 AM
"sudo mount -a" works perfect but permission denied when mounting on startup, why? aaron4katie Linux - Software 10 01-11-2007 10:16 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:24 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration