Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I just bought SimpleTechs SimpleShare(250G) and now I'm having some troubles mountings its nfs shares. If I do:
snowhite:/home/mcr70 # showmount -e 192.168.10.250
Export list for simpleshare:
/shares/Media/media *
/shares/Media/testi *
/shares/Backup/backup *
So, SimpleShare is responding as expected.
Now, if I try to mount it:
snowhite:/home/mcr70 # mount 192.168.10.250:/shares/Backup/backup /mnt/
mount: RPC: Unable to receive; errno = Connection refused
After unsuccesful mount operation, showmount does not work anymore:
snowhite:/home/mcr70 # showmount -e 192.168.10.250
rpc mount export: RPC: Unable to receive; errno = Connection refused
I will have to reboot the machine in order to get export list again.
So, I think maybe nfs server dies/crashes in SimpleShare.
So, my question is:
Has anyone got nfs mount work with SimpleShare???
I too am interested in ways to get this thing to mount. I am using Mac OSX.3
yocalhost:~ levinela$ mount 192.168.0.102:/Volumes/WORKGROUP\;DORY/levinela/ /mnt/
mount: realpath /mnt: No such file or directory
yocalhost:~ levinela$ showmount -e 192.168.0.102
Exports list on 192.168.0.102:
/shares/root/home
There has got to be an easy way to make this work seamlessly on all my computers.
I do not about OSX, but maybe you could try to mount it like
> mount 192.168.0.102:/shares/root/home /mnt/
and see what happens.
About ssh, I believe there is not ssh or telnet in it. We did some digging and found out that it has a busybox 1.0 RC<something>.
Hopefully someday we can create a new firmware for it. Then it would have a ssh or telnet daemon...
yocalhost:/Users/levinela root# mount 192.168.0.102:/shares/root/home /mnt/
mount: realpath /mnt: No such file or directory
yocalhost:/Users/levinela root# exit
exit
yocalhost:~ levinela$ mount 192.168.0.102:/shares/root/home /mnt/
mount: realpath /mnt: No such file or directory
yocalhost:~ levinela$
Do you have a local directory named /mnt/ ????
try 'cd /mnt/' or 'ls /mnt/'
If you don't, try mounting into different directory, or create /mnt/ directory.
I have one of these too and I can mount it to my linux box with
mount -t smbfs -o username=unix_user //nas1/public /mounts/nas/public
But I can't figure out how to pass the username when doing an nfs mount. If i try as unix_user i get a message saying only root can do that, if I try as root I geta permission denied back from the simpleshare.
I picked one up today. After some trouble, I was able to mount
it from a Sun Sparc (Solaris 10). There is ZERO in their docs re
NFS. Here's what seemed to work ...
On the Sparc, I created a user "admin" (with the same
password as the appliance and created a share with
only NFS selected (no CIFS) and was able to mount as
root.
I can also map a drive from a WinXP laptop, haven't tried
linux as the laptop is dual boot.
I'm recovering my wife's windows box using Knoppix. I needed an excuse to get this SimpleTech NAS I had been eyeballin at BestBuy for the last few weeks. I asked the salesclerk if this would work with Linux and he didn't know so we busted open Google and found this thread. I figured I could make it work so I bought it.
Sure enough - my Mac didn't have any trouble doing a showmount, but knoppix didn't even see it with NFS. uggh...
So I went for Samba Network Neighborhood, and I'm copying files away right now. I'm kinda curious what's up with the NFS thing myself. When I get some more time I'll dig into this thing some more - I might even be so bold as to call the company. If I find out how to make it work I'll post it here for everyone.
I found this old discussion via Google which had no real resolution, so I thought I'd share my successful results...
I've had a SimpleShare for 2 years but never got around to using it regularly until recently. When I first tested it I had no problem with the NFS share. When recently reconfiguring everything, I did have a problem until using showshares to find the correct server share "device."
I finally got things to work in the following way:
1. Created pool NfsPool.
2. Created share NfsShare in NfsPool with NFS enabled and CIFS disabled. No access password was specified.
3. Created a mountpoint at /media/NfsMount
4. Used the following mount command:
> sudo mount -t nfs -o rw,nolock,rsize=8192,wsize=8192 \
simpleshare:/shares/NfsPool/NfsShare /media/NfsMount
5. Unmounted it once I got it to work and created the following fstab entry:
6. No I was able to mount as a regular user using:
> mount /media/NfsMount
This was all from an old Ubuntu 6.06 laptop over a LAN at home. I used my Netgear router to assign 192.168.1.20 to the SimpleShare's MAC address, and on the SimpleShare I configured this as the static address.
And, yes, SimpleShare's documentation leaves something to be desired for Linux users.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.