How do I mount Shares from an Iomega ix4-200d?
Plug-and-play from Windows with the included installation CD, but not a word about Linux.
It looks like there are several ways to do it; I have put my current solution below.
How do I mount Shares from an Iomega ix4-200d?
Plug-and-play from Windows with the included installation CD, but not a word about Linux.
It looks like there are several ways to do it; I have put my current solution below.
Not knowing anything about such endeavors, this took me about 4 hours to figure out. It turns out the procedure is very simple.
sudo mount -t nfs 192.168.1.113:/nfs/SHARENAME /mnt/yourdir
SHARENAME
above is just the name of your Share on the ix4 without embellishment. Keep the /nfs. Obviously, change the IP address to whatever your's is./mnt/yourdir
is a directory you've created with mkdir. Actually, it can be anywhere. /mnt is the canonical place.mount.nfs
in your/sbin
directory. Quite an oversight on your part. Install it withapt-get install nfs-common
.Once you get it working you can put a similar line in
/etc/fstab
, so your Shares are automatically mounted. Section 4.2 and 4.3 of the Sourceforge nfs resource explain how to do it.Kudos to Eric Crossley's Blog which has the idea of mounting as NFS and the basic mount command. He has a few more useful ix4 setups there as well.
I just installed it, thanks for your help but I needed a few different settings.
I just want to point out the differences (and might be stating the obvious? but I am new to Linux):
//a.b.c.d.
and very mean,ix2
tells you to mount to//a.b.c.d/nfs/....
and this should be/public
.I've got access with a little distinct syntax:
Don't forget to enable NFS on the NAS (Network-Protocols)
I couldn't abide the fact that on Windows I could access the shares with out credentials but on my Linuxes it kept asking for password and/or giving 'Access denied'.
This finally worked for me.
In the Iomega Control Panel (web GUI), go to
Network>Protocols
.Enable
NFS
.Then go to
Storage>Shares
.You should see the share folders all listed (Documents, Pictures, etc).
Expand each one and you should see options like 'Information', 'NFS', etc.
Expand 'NFS' and it will
reveal the NFS share name.
In my case the shares had these names:
Documents =
/nfs/Documents
Movies =/nfs/Movies
i.e.etc
So, on my Ununtu server i first installed the NFS (and CIFS for good measure):
Then I wrote this script to handle the mounting:
No need to provide username and password - access just as you would via Windows Explorer.