openSUSE 13.1 - KDE
I have two drives on my network that are mounted on my system at boot time. They are listed in fstab.
/dev/sdb3 / ext4 discard,acl,user_xattr 1 1
/dev/sdb4 /home ext4 discard,acl,user_xattr 1 2
/dev/sdb2 swap swap defaults 0 0
/dev/sdb1 /boot/efi vfat umask=0002,utf8=true 0 0
//RT-AC66R/root /mnt/Hardin cifs nofail,credentials=/home/bart/.fstab/.creds,_netdev 0 0
//Ls420dc48/share /mnt/Buffalo cifs nofail,credentials=/home/bart/.fstab/.creds,_netdev,file_mode=0777,dir_mode=0777,rw 0 0
The device RT-AC66R/root is a hard drive connected via USB port to my router.
The device Ls420dc48/share is a Buffalo file server connected via ethernet to the router.
There is a link called Router in the home directory that points to /mnt/Hardin
There is a link called Server in the home directory that points to /mnt/Buffalo
If I reboot my machine, the two drives appear to be part of my directory tree as they should. I can read and write to either of the drives by using the “folders” in my home directory.
Recently, my wife finally had a belly full of Windows 10 and asked that I change her over to openSUSE (YAHOO! FINALLY!) I installed 13.1 on her machine, using KDE. Same as mine. I added the network drives in fstab on her machine.
/dev/sda3 / ext4 defaults 1 1
/dev/sda4 /var ext4 defaults 1 2
/dev/sda5 /tmp ext4 acl,user_xattr 1 2
/dev/sda6 /home ext4 acl,user_xattr 1 2
/dev/sda2 swap swap defaults 0 0
/dev/sda1 /boot/efi vfat umask=0002,utf8=true 0 0
//RT-AC66R/root /mnt/Hardin cifs nofail,credentials=/home/vinetta/.fstab/.creds,_netdev 0 0
//Ls420dc48/share /mnt/Buffalo cifs nofail,credentials=/home/vinetta/.fstab/.creds,_netdev,file_mode=0777,dir_mode=0777,rw 0 0
(Don’t know why I separated /var and /tmp but… oh well, no harm.)
Problem is, her machine does not mount the two devices RT-AC66R and Ls420dc48 at boot. After rebooting, if I open Konsole and do this:
vinetta@linux-eiwq:~> ls -l Server
lrwxrwxrwx 1 vinetta users 13 Oct 7 15:05 Server -> /mnt/Buffalo/
vinetta@linux-eiwq:~> ls -l Router
lrwxrwxrwx 1 vinetta users 11 Oct 11 14:02 Router -> /mnt/Hardin
vinetta@linux-eiwq:~> su -
Password:
linux-eiwq:~ # mount /mnt/Buffalo
linux-eiwq:~ # exit
logout
vinetta@linux-eiwq:~> ls -l Server
lrwxrwxrwx 1 vinetta users 13 Oct 7 15:05 Server -> /mnt/Buffalo/
vinetta@linux-eiwq:~>
The first time, Server -> /mnt/Buffalo is shown in dark blue. If I open dolphin and open ~/Server, there is nothing shown
After the mount command, Server -> .mnt/Buffalo is shown in reverse color and dolphin shows the contents of the network drive.
I just know I’m missing something, but I can’t figure it out. Why does one machine mount the drives and the other does not?