damiga wrote:
So i dropped into a shell and tried mounting tha backup folder with NFS so i could use cpio, but no go with mounting folder.
# mount -t nfs 192.168.1.10:mnt/sdc1/nfs /restore
mount:cannot get filehandle for 192.168.1.10:mnt/sdc1/nfs - Permission denied
mount: giving up on: /restore
So, anyone got any pointers? been searching for about two hours straight here.
Is there another route I should choose?
Shouldn't that be:
Code:
# mount -t nfs 192.168.1.10:/mnt/sdc1/nfs /restore
Unless you made a typo in your post, you need that first slash after the colon in the remote filespec. So that first.
The other question is whether or not you exported that volume from your Linux box. I have something like this on a CentOS Linux box here:
Code:
201 shoebox% cat /etc/exports
/ex/v1 10.10.0.0/16(ro,all_squash,insecure,sync)
/ex/v2 10.10.0.0/16(ro,all_squash,insecure,sync)
202 shoebox%
You don't need the network restriction, but if you keep it adjust for your 192.168.1.0/24 (I'm guessing) network. Check your man pages for exportfs(1m), exports(5), and showmount(1m) to hash the rest of it out. Or there's undoubtedly a well-written section of doc on TechPubs, maybe in the Linux Doc Project, if I bestirred myself to find it...