After Dapper Update NFS/SMB don't work
Luis
lemsx1 at gmail.com
Sat Feb 17 02:56:31 UTC 2007
are you running some caching daemon? like nscd?
$> ps ax | grep nscd
reloading this daemon makes things be "refreshed" in memory.
$> sudo /etc/init.d/nscd reload
Outside of that, your guess is just as good as mine.
On 2/16/07, Jeremy Thompson <jeremy.a.thompson+ubuntu at googlemail.com> wrote:
>
>
> On 2/16/07, Luis <lemsx1 at gmail.com> wrote:
> > host is a command that queries your DNS entries... that's fine.
> >
> > doing:
> >
> > ping server
>
> It's a pinging so that's good.
> > should point to the private IP for "server" (192.x.x.x), the one in
> > your /etc/hosts
> >
> >
> > you should be able to do:
> >
> > showmount -e server
>
>
> jeremy at Main:~$ showmount -e server
> Export list for server:
> /mnt/Backup 192.168.1.0
> /mnt/Music 192.168.1.0
> /mnt/Videos 192.168.1.0
>
> and sudo mount -a worked.
>
> THANK YOU SO VERY MUCH. I can't live without my music and it's on the
> network share.
>
> Now.. why would this have happened? I didn't change anything in hosts
> before the update. Did the update do something? I need to learn from this,
> and it's very puzzling right now.
>
> > On 2/16/07, Jeremy Thompson <
> jeremy.a.thompson+ubuntu at googlemail.com> wrote:
> > > Interesting update -
> > >
> > > jeremy at Main:/etc$ host Main
> > > Main.MSHOME has address 208.67.219.40
> > > Host Main.MSHOME not found: 3(NXDOMAIN)
> > > jeremy at Main:/etc$ host localhost
> > > localhost.MSHOME has address 208.67.219.40
> > > ;; reply from unexpected source: 208.67.220.220#53, expected
> > > 208.67.222.222#53
> > > ;; Warning: ID mismatch: expected ID 54541, got 27575
> > > Host localhost.MSHOME not found: 3(NXDOMAIN)
> > >
> > > Do I have a DNS problem?
> > >
> > > JT
> > >
> > >
> > >
> > > On 2/16/07, Jeremy Thompson <
> > > jeremy.a.thompson+ubuntu at googlemail.com> wrote:
> > > > Thanks for the replies..
> > > >
> > > >
> > > > On 2/16/07, Luis <lemsx1 at gmail.com > wrote:
> > > > > Are you sure that you can resolve "server"?
> > > > >
> > > > > $> host server
> > > >
> > > >
> > > > jeremy at Main:/etc$ host server
> > > > server.MSHOME has address 208.67.219.41
> > > > Host server.MSHOME not found: 3(NXDOMAIN)
> > > >
> > > > So I would guess I can't resolve the server. I don't know if I
> couldn't
> > > do this before hand...
> > > >
> > > >
> > > > > That should give you the IP of "server". If that works, then try:
> > > > >
> > > > > $> showmout -e server
> > > > >
> > > > > And that should give you a list of all the shares that server is
> > > serving.
> > > > >
> > > > > If any of those two commands don't work, then your problem is either
> > > > > /etc/hosts, /etc/resolv.conf and/or firewall issues (hint: iptables
> > > > > -nL).
> > > >
> > > > jeremy at Main:/etc$ sudo iptables -nL
> > > > Chain INPUT (policy ACCEPT)
> > > > target prot opt source destination
> > > >
> > > > Chain FORWARD (policy ACCEPT)
> > > > target prot opt source destination
> > > >
> > > > Chain OUTPUT (policy ACCEPT)
> > > > target prot opt source destination
> > > >
> > > > Here's the other command.
> > > >
> > > > jeremy at Main:/etc$ cat resolv.conf
> > > > nameserver 208.67.222.222
> > > > nameserver 208.67.220.220
> > > > domain MSHOME
> > > >
> > > > Is there some service I should see as running? Here's the output of
> > > hosts, I added the 192.168.1.3 to it after it didn't resolve. It still
> > > doesn't.
> > > >
> > > > jeremy at Main:/etc$ cat hosts
> > > > 127.0.0.1 localhost Main
> > > > 127.0.1.1 Main
> > > > 192.168.1.3 server
> > > >
> > > > # The following lines are desirable for IPv6 capable hosts
> > > > ::1 ip6-localhost ip6-loopback
> > > > fe00::0 ip6-localnet
> > > > ff00::0 ip6-mcastprefix
> > > > ff02::1 ip6-allnodes
> > > > ff02::2 ip6-allrouters
> > > > ff02::3 ip6-allhosts
> > > >
> > > > Thanks again
> > > >
> > > > JT
> > > >
> > > >
> > > >
> > > > > You don't need to do anything on server, since it works fine from
> > > Windows.
> > > > >
> > > > > On 2/15/07, Jeremy Thompson <
> > > jeremy.a.thompson+ubuntu at googlemail.com> wrote:
> > > > > > Hello all,
> > > > > > I finally did the update to Dapper that's been there for a week.
> > > Now I
> > > > > > can't see my FreeNAS Server with SMB/NFS. I can still reach it on
> my
> > > > > > windows boxes with SMB. My fstab file, which didn't change is -
> > > > > >
> > > > > > /etc/fstab: static file system information.
> > > > > > #
> > > > > > # <file system> <mount point> <type> <options> <dump>
> <pass>
> > > > > > proc /proc proc defaults 0 0
> > > > > > /dev/sda2 / ext3
> > > defaults,errors=remount-ro 0 1
> > > > > > /dev/sda5 none swap sw
> > > 0 0
> > > > > > /dev/hda /media/cdrom0 udf,iso9660 user,noauto 0
> 0
> > > > > >
> > > > > > #NFS Share Mounts
> > > > > > server:/mnt/Music /media/music nfs
> > > > > > rsize=8192,wsize=8192,timeo=14,intr
> > > > > > server:/mnt/Backup /media/backup nfs
> > > > > > rsize=8192,wsize=8192,timeo=14,intr
> > > > > > server:/mnt/Videos /media/videos nfs
> > > > > > rsize=8192,wsize=8192,timeo=14,intr
> > > > > >
> > > > > >
> > > > > > I issues the 'sudo mount -a' command and I get
> > > > > >
> > > > > > mount to NFS server 'server' failed: server is down
> > > > > >
> > > > > > The server isn't down. None of the folder will come up in network
> > > browser
> > > > > > either.
> > > > > >
> > > > > > Need some help, everything worked fine before I updated 20 minutes
> > > ago.
> > > > > >
> > > > > > Thank you.
> > > > > >
> > > > > > JT
> > > > > >
> > > > > > --
> > > > > > ubuntu-users mailing list
> > > > > > ubuntu-users at lists.ubuntu.com
> > > > > > Modify settings or unsubscribe at:
> > > > > >
> > > https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > > > --
> > > > > ----)(-----
> > > > > Luis Mondesi
> > > > > *NIX Guru
> > > > >
> > > > > "Feliz el hombre que ha hallado sabiduria y el hombre que consigue
> > > > > discernimiento, porque el tenerla como ganancia es mejor que tener
> la
> > > > > plata como ganancia; y el tenerla como producto, [mejor] que el oro
> > > > > mismo" (Prov 3:13-14).
> > > > > |_|0|_|
> > > > > |_|_|0|
> > > > > |0|0|0|
> > > > >
> > > > > --
> > > > > ubuntu-users mailing list
> > > > > ubuntu-users at lists.ubuntu.com
> > > > > Modify settings or unsubscribe at:
> > > https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
> > > > >
> > > >
> > > >
> > >
> > >
> > > --
> > > ubuntu-users mailing list
> > > ubuntu-users at lists.ubuntu.com
> > > Modify settings or unsubscribe at:
> > > https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
> > >
> > >
> >
> >
> > --
> > ----)(-----
> > Luis Mondesi
> > *NIX Guru
> >
> > "Feliz el hombre que ha hallado sabiduria y el hombre que consigue
> > discernimiento, porque el tenerla como ganancia es mejor que tener la
> > plata como ganancia; y el tenerla como producto, [mejor] que el oro
> > mismo" (Prov 3:13-14).
> > |_|0|_|
> > |_|_|0|
> > |0|0|0|
> >
> > --
> > ubuntu-users mailing list
> > ubuntu-users at lists.ubuntu.com
> > Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
> >
>
> Again, Thank you all a ton.
>
> JT
>
> --
> ubuntu-users mailing list
> ubuntu-users at lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
>
>
--
----)(-----
Luis Mondesi
*NIX Guru
"Feliz el hombre que ha hallado sabiduria y el hombre que consigue
discernimiento, porque el tenerla como ganancia es mejor que tener la
plata como ganancia; y el tenerla como producto, [mejor] que el oro
mismo" (Prov 3:13-14).
|_|0|_|
|_|_|0|
|0|0|0|
More information about the ubuntu-users
mailing list