Can't run mkdir even as root please help

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Can't run mkdir even as root please help
# 8  
Old 05-02-2013
Quote:
Originally Posted by Corona688

It's telling you "permission denied" because the NFS server is denying you permission... It's not really keeping secrets from you. Try accessing it from the owners of those files.

Well here is what i am faced with
Code:
[root@vm1 ~]# exit
logout
[vm1@vm1 ~]$ mkdir /home/vm1/Desktop/nfs
mkdir: cannot create directory `/home/vm1/Desktop/nfs': Permission denied
[vm1@vm1 ~]$ su mkdir /home/vm1/Desktop/nfs
su: user mkdir does not exist
[vm1@vm1 ~]$ sudo mkdir /home/vm1/Desktop/nfs

We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:

    #1) Respect the privacy of others.
    #2) Think before you type.
    #3) With great power comes great responsibility.

[sudo] password for vm1: 
vm1 is not in the sudoers file.  This incident will be reported.
[vm1@vm1 ~]$ visudo
visudo: /etc/sudoers: Permission denied
visudo: /etc/sudoers: Permission denied


-----
Also here are some of my settings
Code:
[root@vm1 ~]# cat /etc/exports
/home/vm1/Desktop/nfs 192.168.1.34(rw,sync)
[root@vm1 ~]# exportfs
/home/vm1/Desktop/nfs
        192.168.1.34
[root@vm1 ~]# showmount -e 192.168.1.34
Export list for 192.168.1.34:
/home/vm1/Desktop/nfs 192.168.1.34


Last edited by radoulov; 05-02-2013 at 05:29 PM..
# 9  
Old 05-02-2013
That looks like a sudo problem. The reason you can't run the command is because sudo does not allow you to. As it says, you are not in the sudoers file.
# 10  
Old 05-02-2013
Quote:
Originally Posted by hanson44
That looks like a sudo problem. The reason you can't run the command is because sudo does not allow you to. As it says, you are not in the sudoers file.
Code:
[root@vm1 ~]# visudo
[root@vm1 ~]# exit
logout
[vm1@vm1 ~]$ sudo mkdir /home/vm1/Desktop/nfs
[sudo] password for vm1: 
mkdir: cannot create directory `/home/vm1/Desktop/nfs': Permission denied


Last edited by radoulov; 05-02-2013 at 05:30 PM..
# 11  
Old 05-02-2013
You will have to ask the administrator which users are allowed to use nfs. Or possibly UID's -- your system and the NFS servers' may not agree on what UID is what username.

sudo obviously isn't going to work if root didn't work before.

Last edited by Corona688; 05-02-2013 at 07:04 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need to run a bash script that logs on as a non-root user and runs script as root

So I have a script that runs as a non-root user, lets say the username is 'xymon' . This script needs to log on to a remote system as a non-root user also and call up a bash script that runs another bash script as root. in short: user xymon on system A needs to run a file as root user and have... (2 Replies)
Discussion started by: damang111
2 Replies

2. UNIX for Dummies Questions & Answers

Exposure to run JVM under root?

We noticed that a JMS application running on a WebSphere application Server (not inside the J2EE container) is trying to access some resources using the UserId root. We checked with the developers, they said they did not specify any userId and it may be WAS is assigning the userId running the JVM... (2 Replies)
Discussion started by: AIX_user
2 Replies

3. Cybersecurity

Run chage as not root ?

Hello, Running Debian lenny. Is there any way to run $ chage --expiredate some_date user1 chage: Permission denied. as not root user inside script ? I really need to do this, I could grant whatever group membership to running user, setuid bit or whatever is needed ? (I do not want to do... (4 Replies)
Discussion started by: vilius
4 Replies

4. Shell Programming and Scripting

How to run Route in bash without as root

Hi friends, I will make a bash script for excecuted a route (My OS is Ubuntu 10.04) this is my script (with name mine.sh) #!/bin/bash route add -net 192.168.2.0 netmask 255.255.255.0 gw 192.168.1.1 if I run this bash as root, i can run it.. root@venom-desktop:/home/venom#sh... (2 Replies)
Discussion started by: venom
2 Replies

5. UNIX for Dummies Questions & Answers

How to allow access to some commands having root privleges to be run bu non root user

hi i am new to unix and i have abig task. i have to \run particular commands having root privileges from a non root user. i know sudo is one of the way but i need sum other approach kindly help Thanks (5 Replies)
Discussion started by: suryashikha
5 Replies

6. Shell Programming and Scripting

how to run a command as root

Hi, i need to run a command as root.Whoever executes the command ,i will check for a particular role if that is satisfied i have to make it to run as root. Please help me to carry out this. Thanks Padmini (1 Reply)
Discussion started by: padmisri
1 Replies

7. AIX

Crontab cannot run by non-root user

Good morning everybody. I have just receiedv a complaint from our DBA saying that if he create a scripts to run some Oracle performance scripts using crontab and the scheduling part is ok but the job is failed when I checked on /var/adm/cron/log. I have tried his scripts using Oracle id directly... (4 Replies)
Discussion started by: kwliew999
4 Replies

8. Shell Programming and Scripting

Make program only run by root

Hi all, i hope i got this in the right place, what i am trying to do is make a program only run by root, ie for instance user fred is logged in and uses firefox, what id like to do is change that so that when fred wants to use firefox he will be asked to enter root password before he is allowed to... (14 Replies)
Discussion started by: dave123
14 Replies

9. Filesystems, Disks and Memory

RUN OUT SPACE (Root)

Dear Buddies, Plz Help me out ,,,,,, the Unix Servers i m working on ,,,Somes times run out of space in root ,,,due the generation of a file named STA ....which causes the system to crash ,,,,, plz hlp me !!!!!!!!!!!!!!!!!!!!!! how to find out the file ....generation causes ...... ... (6 Replies)
Discussion started by: scorpiyanz
6 Replies

10. UNIX for Dummies Questions & Answers

Run non-root script as root with non-root environment

All, I want to run a non-root script as the root user with non-root environment variables with crontab. The non-root user would have environment variables for database access such as Oracle or Sybase. The root user does not have the Oracle or Sybase enviroment variables. I thought you could do... (2 Replies)
Discussion started by: bubba112557
2 Replies
Login or Register to Ask a Question