Mount a NFS partition from a NAS server
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
We have a NAS server in the lab and I can reach it through the web interface at 192.168.1.100
, and I have enabled NFS on the admin's panel.
After that I did
sudo aptitude install nfs-common
sudo mount -t nfs4 192.168.2.254:/gwas_data /media/thecus
Result:
mount.nfs4: Connection timed out
OS is Ubuntu 14.04. Any ideas?
nfs nas
bumped to the homepage by Community⦠6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |Â
up vote
1
down vote
favorite
We have a NAS server in the lab and I can reach it through the web interface at 192.168.1.100
, and I have enabled NFS on the admin's panel.
After that I did
sudo aptitude install nfs-common
sudo mount -t nfs4 192.168.2.254:/gwas_data /media/thecus
Result:
mount.nfs4: Connection timed out
OS is Ubuntu 14.04. Any ideas?
nfs nas
bumped to the homepage by Community⦠6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
1
Tried replacing the IP address with your NAS's actual IP?
â Mat
Dec 11 '14 at 13:24
Possibly your firewall blocks the ports necessary for NFS (and maybe also rpcbind). Have a look atdmesg | tail
right after trying the mount command.
â Ned64
Apr 28 '17 at 10:00
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
We have a NAS server in the lab and I can reach it through the web interface at 192.168.1.100
, and I have enabled NFS on the admin's panel.
After that I did
sudo aptitude install nfs-common
sudo mount -t nfs4 192.168.2.254:/gwas_data /media/thecus
Result:
mount.nfs4: Connection timed out
OS is Ubuntu 14.04. Any ideas?
nfs nas
We have a NAS server in the lab and I can reach it through the web interface at 192.168.1.100
, and I have enabled NFS on the admin's panel.
After that I did
sudo aptitude install nfs-common
sudo mount -t nfs4 192.168.2.254:/gwas_data /media/thecus
Result:
mount.nfs4: Connection timed out
OS is Ubuntu 14.04. Any ideas?
nfs nas
nfs nas
asked Dec 11 '14 at 13:23
qed
99341119
99341119
bumped to the homepage by Community⦠6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community⦠6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
1
Tried replacing the IP address with your NAS's actual IP?
â Mat
Dec 11 '14 at 13:24
Possibly your firewall blocks the ports necessary for NFS (and maybe also rpcbind). Have a look atdmesg | tail
right after trying the mount command.
â Ned64
Apr 28 '17 at 10:00
add a comment |Â
1
Tried replacing the IP address with your NAS's actual IP?
â Mat
Dec 11 '14 at 13:24
Possibly your firewall blocks the ports necessary for NFS (and maybe also rpcbind). Have a look atdmesg | tail
right after trying the mount command.
â Ned64
Apr 28 '17 at 10:00
1
1
Tried replacing the IP address with your NAS's actual IP?
â Mat
Dec 11 '14 at 13:24
Tried replacing the IP address with your NAS's actual IP?
â Mat
Dec 11 '14 at 13:24
Possibly your firewall blocks the ports necessary for NFS (and maybe also rpcbind). Have a look at
dmesg | tail
right after trying the mount command.â Ned64
Apr 28 '17 at 10:00
Possibly your firewall blocks the ports necessary for NFS (and maybe also rpcbind). Have a look at
dmesg | tail
right after trying the mount command.â Ned64
Apr 28 '17 at 10:00
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
- Create a public folder (FMBData in this example)
- Click on NFS to share it
- Set the hostname to the IP of the linux machine (e.g. 192.168.1.111)
- On the linux machine,
sudo apt-get install nfs-common
,sudo mkdir /media/thecus
, thensudo mount -t nfs4 192.168.1.100:FMBData /media/thecus
. You can get the WAN IP of the server on the front screen.
Screenshots:
Maybe you could detail which NAS this is for - there are several brands and firmware revisions and thiis question and answer is very specific.
â Ned64
Apr 28 '17 at 10:57
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
- Create a public folder (FMBData in this example)
- Click on NFS to share it
- Set the hostname to the IP of the linux machine (e.g. 192.168.1.111)
- On the linux machine,
sudo apt-get install nfs-common
,sudo mkdir /media/thecus
, thensudo mount -t nfs4 192.168.1.100:FMBData /media/thecus
. You can get the WAN IP of the server on the front screen.
Screenshots:
Maybe you could detail which NAS this is for - there are several brands and firmware revisions and thiis question and answer is very specific.
â Ned64
Apr 28 '17 at 10:57
add a comment |Â
up vote
0
down vote
- Create a public folder (FMBData in this example)
- Click on NFS to share it
- Set the hostname to the IP of the linux machine (e.g. 192.168.1.111)
- On the linux machine,
sudo apt-get install nfs-common
,sudo mkdir /media/thecus
, thensudo mount -t nfs4 192.168.1.100:FMBData /media/thecus
. You can get the WAN IP of the server on the front screen.
Screenshots:
Maybe you could detail which NAS this is for - there are several brands and firmware revisions and thiis question and answer is very specific.
â Ned64
Apr 28 '17 at 10:57
add a comment |Â
up vote
0
down vote
up vote
0
down vote
- Create a public folder (FMBData in this example)
- Click on NFS to share it
- Set the hostname to the IP of the linux machine (e.g. 192.168.1.111)
- On the linux machine,
sudo apt-get install nfs-common
,sudo mkdir /media/thecus
, thensudo mount -t nfs4 192.168.1.100:FMBData /media/thecus
. You can get the WAN IP of the server on the front screen.
Screenshots:
- Create a public folder (FMBData in this example)
- Click on NFS to share it
- Set the hostname to the IP of the linux machine (e.g. 192.168.1.111)
- On the linux machine,
sudo apt-get install nfs-common
,sudo mkdir /media/thecus
, thensudo mount -t nfs4 192.168.1.100:FMBData /media/thecus
. You can get the WAN IP of the server on the front screen.
Screenshots:
edited Apr 28 '17 at 9:35
answered Dec 11 '14 at 13:54
qed
99341119
99341119
Maybe you could detail which NAS this is for - there are several brands and firmware revisions and thiis question and answer is very specific.
â Ned64
Apr 28 '17 at 10:57
add a comment |Â
Maybe you could detail which NAS this is for - there are several brands and firmware revisions and thiis question and answer is very specific.
â Ned64
Apr 28 '17 at 10:57
Maybe you could detail which NAS this is for - there are several brands and firmware revisions and thiis question and answer is very specific.
â Ned64
Apr 28 '17 at 10:57
Maybe you could detail which NAS this is for - there are several brands and firmware revisions and thiis question and answer is very specific.
â Ned64
Apr 28 '17 at 10:57
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f173746%2fmount-a-nfs-partition-from-a-nas-server%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
Tried replacing the IP address with your NAS's actual IP?
â Mat
Dec 11 '14 at 13:24
Possibly your firewall blocks the ports necessary for NFS (and maybe also rpcbind). Have a look at
dmesg | tail
right after trying the mount command.â Ned64
Apr 28 '17 at 10:00