LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-17-2020, 07:51 PM   #1
Shiseiji1958
LQ Newbie
 
Registered: Feb 2009
Posts: 4

Rep: Reputation: 10
Mount Point Does Not Exist ~ Trying to Mount a NAS


Hi all. I've been a part time user for over a decade now but so far have managed. Now I'm not.
Ubunto 20 and I've checked the folder permissions and set it for network access. The question is pretty basic I think, but obviously I'm missing "something"?

mount –t 192.168.1.31:/volume1/MyNAS/mnt/Shared generates the error as does
mount –t 192.168.1.31:/volume1/MyNAS/mnt/home/ron/shared

What am I missing?

TIA

Ron
 
Old 11-17-2020, 08:00 PM   #2
computersavvy
Senior Member
 
Registered: Aug 2016
Posts: 3,345

Rep: Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484
Quote:
Originally Posted by Shiseiji1958 View Post
Hi all. I've been a part time user for over a decade now but so far have managed. Now I'm not.
Ubunto 20 and I've checked the folder permissions and set it for network access. The question is pretty basic I think, but obviously I'm missing "something"?

mount –t 192.168.1.31:/volume1/MyNAS/mnt/Shared generates the error as does
mount –t 192.168.1.31:/volume1/MyNAS/mnt/home/ron/shared

What am I missing?

TIA

Ron
first you must have the exported directory in /etc/exports properly formatted to specify who can mount it on the NFS server and restart nfsd.
You also have to have the firewall on both ends allow connections to nfs.

Then you need to mount using the correctly formatted command and attaching to an existing mount point.
Assuming that /home/ron/shared is the mount point, that it exists, and the exported directory is /volume1/MyNAS then the command would be
Code:
 sudo mount -t nfs 192.168.1.31:/volume1/MyNAS /home/ron/shared

Last edited by computersavvy; 11-17-2020 at 08:04 PM.
 
Old 11-17-2020, 08:04 PM   #3
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Hi,

you are not passing the arguments that mount expects. You need to specify the fstype (I'm guessing nfs, but could be cifs), the device, and then the location to mount it.
Eg something like
Code:
mount -t nfs 192.168.1.31:/volume1 /mnt
We can probably help more if you give us some information about your nas.

Evo2.
 
1 members found this post helpful.
Old 11-17-2020, 08:15 PM   #4
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,721

Rep: Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914
Without much details I would assume this is a commercial NAS unit, shares are setup via web configuration page and exports settings are automatic.

As shown in the previous post your syntax is wrong.
 
1 members found this post helpful.
Old 11-17-2020, 08:40 PM   #5
Shiseiji1958
LQ Newbie
 
Registered: Feb 2009
Posts: 4

Original Poster
Rep: Reputation: 10
Arrgggggg can I claim fatigue???
Quote:
mount -t nfs 192.168.1.31:/volume1 /mnt
Thanks! And yes, a commercial off the shelf set up for now, one of the NAS distributions in the future. Progress, system now reports "access denied by server while mounting 192.168.1.31:/volume1" So I need to get back into the Asustor app. Stupid Win 10, SMB1 is the only one installed while they say "DON'T use it!" But the later versions aren't installed. So can't connect as a network drive. At least with Linux you can find what ever you need! And kind people who understand it.

Thanks much, I'll report back that it's working or what I'm stuck on.

Ron
 
Old 11-17-2020, 09:35 PM   #6
computersavvy
Senior Member
 
Registered: Aug 2016
Posts: 3,345

Rep: Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484Reputation: 1484
Quote:
Originally Posted by Shiseiji1958 View Post
Arrgggggg can I claim fatigue???

Thanks! And yes, a commercial off the shelf set up for now, one of the NAS distributions in the future. Progress, system now reports "access denied by server while mounting 192.168.1.31:/volume1" So I need to get back into the Asustor app. Stupid Win 10, SMB1 is the only one installed while they say "DON'T use it!" But the later versions aren't installed. So can't connect as a network drive. At least with Linux you can find what ever you need! And kind people who understand it.

Thanks much, I'll report back that it's working or what I'm stuck on.

Ron
Well, that bit of information says you should be using samba instead of nfs. You will need to verify that cifs-utils is installed.

The mount command would be different as to filesystem type and syntax. See this for further info on mounting cifs shares and here for mounting smbfs shares. Note that cifs is the currently supported type and should mount without anything other than changing the -t option and the source path.

If needed read up on the config for samba in "man samba" and the additional pages it leads to, with a large group of commands and configuration options to set samba server up properly. The client should have nothing needed except the package above.
 
Old 11-17-2020, 09:52 PM   #7
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,721

Rep: Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914
Post the model number. I just browsed their website and the one home model I looked at supports smb versions 2 and 3 plus nfs. As you posted verify the share name and make sure it is a nfs versus share versus smb.

Looks like their software has lots of features.
 
Old 11-18-2020, 03:55 PM   #8
Shiseiji1958
LQ Newbie
 
Registered: Feb 2009
Posts: 4

Original Poster
Rep: Reputation: 10
Go figure, it works if you read and type the code properly. Or do a better job of copy/paste.

Quote:
. . . supports smb versions 2 and 3 plus nfs. As you posted verify the share name and make sure it is a nfs versus share versus smb.

Looks like their software has lots of features.
Fixed that too. My comment on Windows is because SMB1 is dead, "but" it's the only SMB listed in my Win10 features. So problem with no solution. Typical crappy QC. And in the mean time . . . I purchased the AS4002T because the features looked pretty good for my honesty simple needs. They also have an extensive library of help, but I wish I could read more of it than have to sit through a video. 40 seconds of blah, blah, blah . . . Hopefully I can get now keep this KISS and present my GF all of her CD's loaded for Christmas.

Thanks again! 11 years and no questions that weren't already answered, and great help when I needed it.

Ron

Last edited by Shiseiji1958; 11-18-2020 at 03:58 PM. Reason: Added requested information.
 
Old 11-18-2020, 04:07 PM   #9
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,721

Rep: Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914Reputation: 5914
Basically, the only thing "missing" without SMBV1 is browsing shares. You can always map a drive to the NAS.
 
Old 11-19-2020, 01:31 PM   #10
Shiseiji1958
LQ Newbie
 
Registered: Feb 2009
Posts: 4

Original Poster
Rep: Reputation: 10
Thumbs up

Quote:
You can always map a drive to the NAS.
Thanks, done. KISS "M" for music

Plan is to get something set up to manage it other than my Ubuntu laptop. Right now just need to get all the CDs ripped/loaded.

Thanks again!

Ron
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Fstab fails to mount second hard drive to /run/media/$USER: "mount point does not exist". MurderousMincePie Linux - Newbie 3 10-10-2017 06:41 AM
[SOLVED] LFS: mount: mount point /mnt/lfs/dev/pts does not exist nocrazy Linux From Scratch 2 08-21-2016 12:54 PM
mount: mount point /mnt/cdrom does not exist Sujathapm Linux - Newbie 11 07-31-2013 02:19 AM
Redhat Linux 4.8 error -mount: mount point /oracle does not exist for new /etc/fstab entries bellnarm Linux - Server 1 11-23-2011 05:09 AM
mount error: mount point /home/me/x does not exist whil Fedora 3 05-24-2006 10:39 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:51 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration