Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mount NFS Openserver 6 from ubuntu 10 to 1

Status
Not open for further replies.

Tranbo

IS-IT--Management
Apr 14, 2010
75
0
0
US
mount -nfs 192.168.10.103:/u/zfile /mnt/unix

not working and no error

what is the proper command? does it work between the 2 unix flavor?

Thanks,
 
What is the output of the following command ?
showmount -e 192.168.10.103

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
user@ubuntu:/$ showmount -e 192.168.10.103
Export list for 192.168.10.103:
/u/ (everyone)
user@ubuntu:/$ sudo mount -nfs 192.168.10.103:/u/ /mnt/unix
user@ubuntu:/$ cd /mnt/unix
user@ubuntu:/mnt/unix$ ls
user@ubuntu:/mnt/unix$
 
i have found that you must tell linux that sco is specifically version 2. I have also had the most success when keeping the block size down.

mount -o nfsvers=2,rsize=1024,wsize=1024 192.168.10.103:/u/zfile /mnt/unix
 
Work Like A Champ!

user@ubuntu:~$ sudo mount -o nfsvers=2,rsize=1024,wsize=1024 192.168.10.103:/u/zfile /mnt/unix
user@ubuntu:~$ ls /mnt/unix
profiles Unix


Thank-You!
 
How do I get the permission to write to this mount? the exports folder is allow write by everyone.

root@ubuntu:/mnt/unix/Linux# showmount -e 192.168.10.103
Export list for 192.168.10.103:
/u (everyone)
root@ubuntu:/mnt/unix/Linux#
root@ubuntu:/mnt/unix/Linux# mkdir test
mkdir: cannot create directory `test': Permission denied

thank-you,

 

For root equivalency, on the sco box in /etc/exports, on a single line:

/u/zfile -root=ubuntu

generically (man exports):

directory [ -option[, option ]] ...
 
All working now! :)

Thanks for all your helps.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top