I'm trying to network two computers. I'm using Slackware 12.0. I have set up a loop back device for testing on my system. Here is a list of what I think are the relevant files.
hosts
Code:
# For loopbacking.
127.0.0.1 localhost
192.168.1.3 Veronica.home.local Veronica.
HOSTNAME
Code:
Veronica.home.local
exports
Code:
/mnt/backup/Media/Audio/Music \
192.168.1.0/255.255.255.0(ro,root_squash,subtree_check)
hosts.deny
hosts.allow
Code:
ALL : 192.168.1.0/255.255.255.0
When I try to mount on the host computer, I get this message
Code:
root@Veronica:/mnt# mount 192.168.1.3:/mnt/backup/Media/Audio/Music /mnt/test
mount: 192.168.1.3:/mnt/backup/Media/Audio/Music failed, reason given by server: Permission denied
So I can't even mount a loop back. What could be wrong?