LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux Mint (https://www.linuxquestions.org/questions/linux-mint-84/)
-   -   Mounting Network Shares on a Netgear ReadyNas NV+ (https://www.linuxquestions.org/questions/linux-mint-84/mounting-network-shares-on-a-netgear-readynas-nv-4175439202/)

csiebert 11-28-2012 04:59 PM

Mounting Network Shares on a Netgear ReadyNas NV+
 
I'm been struggling on this for weeks to mount a non password protected share for this Nas in Mint 13

when I network browse for the first time to the network shares they work just fine no password needed but when I try to mount them to a direct to make it easier to use on a day to day basis it fails error(13)

I used the following:

sudo mount -t smbfs //10.1.30.6/Data /mnt/Data -o username=admin,workgroup=workgroup


I have tried cifs as well. Having non password protected share there is not docs on how to do it! PLEASE HELP

teckk 12-02-2012 12:03 PM

Couple of thoughts.
Should be
Code:

sudo mount -t smbfs://10.1.30.6/Data /mnt/Data
Is /Data shared in the smb.conf on 10.0.30.6?
Does /mnt/Data have read-write permissions?
What's your smb.conf look like?

Quote:

when I network browse for the first time to the network shares
How are you doing that? With ssh?

csiebert 12-03-2012 06:50 AM

The /mnt/Data is already existing
This is my result:

sieberts@sieberts-GA-MA785GM-US2H ~ $ sudo mount -t smbfs://10.1.30.6/Data /mnt/Data
Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
One can change the type of mount containing the directory dir:
mount --make-shared dir
mount --make-slave dir
mount --make-private dir
mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
mount --make-rshared dir
mount --make-rslave dir
mount --make-rprivate dir
mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .

csiebert 12-03-2012 06:51 AM

the result is the same even when I run
sudo mount -t smbfs //10.1.30.6/Data /mnt/Data -o username=admin,workgroup=workgroup

michaelk 12-03-2012 07:15 AM

I assume what you mean by browsing is via a file browser i.e. nautilus?

I would try the following and just press the enter key at the password prompt.
sudo mount -t cifs //10.1.30.6/Data /mnt/Data

csiebert 12-03-2012 08:22 AM

nautilus? = Yes I was


its just gives me the Sorry, try again.

If I put in the Password for the Readynas web interface login it gives me the :mount error(13): Permission Denied


I have ran these same mount commands in Gentoo no problem however I was mount windows based share in Gentoo

michaelk 12-03-2012 09:37 AM

The first password prompt is for your users password to grant sudo privileges which can not be blank. There will be a second prompt which I would expect to be blank. I assume that you do not have to enter a password when accessing the NAS from nautilus.

csiebert 12-03-2012 09:47 AM

I guess I could change the termianl to run su all the time then I could remove this confusion

csiebert 12-03-2012 02:41 PM

I exited from ther terminal and reopened it and then I ran this command:

sudo mount -t cifs //10.1.30.6/Data /mnt/Data

result: prompts for the sudo password first I typed it in and hit enter and it thought for a few seconds and then retured this result:

mount error: could not resolve address 10.1.30.6 unknown error

michaelk 12-03-2012 03:16 PM

Post the output of the command:
findsmb

It will list the IP address and netbios names.


All times are GMT -5. The time now is 06:25 PM.