Computer NFS shares

Cooper

Active Member
Location
Bountiful
If anyone on here knows about mounting nfs shares on linux I would love some help! I have 3 shares in my exports on my server and when I go to try and mount a share it mounts number 1 no matter what I do. I tried changing the exports files and arguments and that didnt fix it. Below is the command i am using. If you could shed some light on what Im doing wrong that would be awesome! Thanks in advance

sudo mount ipaddress:/path/to/share/ /path/to/mount/point

It mounts with no errors.
 

clfrnacwby

Recovery Addict
Location
NV
Try using the '-t' switch and specify it's an NFS device:

sudo mount -t nfs ipaddress:/path/to/share/ /path/to/mount/point
 

Cooper

Active Member
Location
Bountiful
I'm on the same network as the server, the firewall isn't blocking it. It mounts the first one fine then if I go to mount number 2 it mounts number 1 again. I'll try -t and let you know.

Sent from my SGH-I747 using Tapatalk 4 Beta
 

Caleb

Well-Known Member
Location
Riverton
As spork suggested, what does showmount -e <nfs server ip> show? Are those other exports listed? What does your exports config look like?
 
Top