[UBUNTU] mount.nfs fails in Ubuntu / Works on Red Hat!!!


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu [UBUNTU] mount.nfs fails in Ubuntu / Works on Red Hat!!!
# 1  
Old 08-13-2010
[UBUNTU] mount.nfs fails in Ubuntu / Works on Red Hat!!!

Gurus,

I want log in locally to my Lucid (10.04) workstation and have my code saved over the network on my samba account

At work, all developers have samba user ids and when we were running Red Hat, we went thru the following procedure to get setup.

* open a shell session to NFS server and execute the “id” command to get my samba user information.

Code:
$> ssh –l alberto our_nfs_server
$> id
uid=7090(alberto) gid=100(users) groups=100(users)

* Create locally a login on my Linux workstation with the same login and uid.

Code:
$>sudo useradd –u 7090 –g 100 –d /home/alberto –s /bin/bash alberto

* Define a password for my created login.
Code:
$>sudo passwd alberto

* Change permissions on the /home/alberto directory. Example:
Code:
$>sudo chown alberto:100 /home/alberto

* Place this line at end of fstab:
Code:
      our_nfs_server:/d0/homedirs/alberto /home/alberto nfs defaults 0 0

* Mount the local directory
Code:
$>sudo mount -a

Code:
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
mount.nfs: access denied by server while mounting our_nfs_server:/d0/homedirs/alberto

It does not work at all!!?? However, the same procedure on a RedHat workstation works fine. No errors.

We want to move all of our workstations/servers to Ubuntu so any help is welcome.

Thank you!!!

Al.
# 2  
Old 08-13-2010
Is there anything in the /etc/exports on your NFS server? Also, you mention SAMBA and NFS, are you sure you are using NFS on your RH machine and not mounting it via CIFS?

What directory were you in when you issued the command?
# 3  
Old 08-16-2010
I misspoke. Samba is what we're using here. I checked and the shares are being exported.

I re-did everything (Useradd, usermod...) within the root terminal and it seemed to work.

However, I get an error message when I log in (i.e. mount the directory) telling me that the

a) file .ICEauthority could not be updated
b) file .nautilus and Desktop could not be created.
c) gconf-sanity-check-2 exited with status 256

I opened a shell session to my samba account, created both .nautilus and .ICEauthority (chmod 755) ; I went to /etc/gconf on my machine and chmod-ed it 755.

Same problem. Any advice?

Last edited by alan; 08-16-2010 at 02:13 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Another one line command where I'd like to determine if Ubuntu or Red Hat when running command

Hello Forum, I'm making very good progress on my report thanks to the very helpful people on this forum. I've been able to successfully create my report for my Red Hat servers. But I do have a few ubuntu servers in the mix and I'd like to capture some data from them when an ssh connection is... (8 Replies)
Discussion started by: greavette
8 Replies

2. Shell Programming and Scripting

Red Hat and Ubuntu shell scripting

Are basic scripts in awk or bash or perl or other shell scripting languages the same in RHEL red hat as ubuntu? (1 Reply)
Discussion started by: cmccabe
1 Replies

3. Shell Programming and Scripting

sed command works on Fedora/Ubuntu, but doesn't work in Mac

Hi, I have a question. I define a function using sed command: replace() { searchterm=$1 replaceterm=$2 sed -e "s/$searchterm/$replaceterm/ig" $3 > $WORK'tempfile.tmp' mv $WORK'tempfile.tmp' $3 } Then I call replace 'test = 0' 'test = 1' $myfile This code... (1 Reply)
Discussion started by: Dark2Bright
1 Replies

4. Shell Programming and Scripting

sed command works on Fedora/Ubuntu, but doesn't work in Mac

Hi, I have a question. I define a function using sed command: replace() { searchterm=$1 replaceterm=$2 sed -e "s/$searchterm/$replaceterm/ig" $3 > $WORK'tempfile.tmp' mv $WORK'tempfile.tmp' $3 } Then I call replace 'test = 0' 'test = 1' $myfileThis code works well in... (1 Reply)
Discussion started by: Dark2Bright
1 Replies

5. Ubuntu

ufsdump from Solaris to ubuntu fails with bad file descriptor

Hi All I have a dedicated backup server running ubuntu 10.04, which has recently been rebuilt (same OS, just different h/w) This is used to receive ufsdump output from a number of Solaris servers, using the following syntax: ufsdump 1uf :/path/to/backup/file /fs/to/be/backed/up This has... (1 Reply)
Discussion started by: in2deep
1 Replies

6. Red Hat

"ERROR : failed to mount nfs source" Red Hat Kickstart

Hi There, I have been googling for this error and try solution provided but still not avail to resolve Kickstart Issue. Any expert have encounter this problem? Thanks. Regards, Regmaster (4 Replies)
Discussion started by: regmaster
4 Replies

7. Ubuntu

WGET in Ubuntu( vistual img ) vs Red Hat

Hi I need to fetch a file using wget command. In read Hat I have the file I need without any problem while in Ubuntu ( installed on a virtual image ) it doesn't work. More precisely my wget need to fetch a page from a web site with secure authentication so teh syntax I am using is wget... (7 Replies)
Discussion started by: manustone
7 Replies

8. Ubuntu

make Ubuntu and Red Hat boot partitions

Is it possible to make multiboot partitions of Ubuntu and red hat Linux? (4 Replies)
Discussion started by: sito
4 Replies

9. UNIX for Advanced & Expert Users

Unusual NFS mount problem on only ONE client: Red Hat WS Rel 3

This is an unusual situation where I have an NFS server currently serving out MULTIPLE clients over several variants of Linux and UNIX successfully (world permissions) except for a SINGLE client. Even the other Linux (SuSE) clients in the same room are mounting successfully with defaults without... (6 Replies)
Discussion started by: neelpert1
6 Replies
Login or Register to Ask a Question