I'm currently experiencing a strange problem: Automounting an NFS share via /etc/fstab at boot time is not working.
After a fresh reboot, I always have to mount the share manually:
$this->bbcode_second_pass_code('', '$ cat /etc/fstab
#
# /etc/fstab: static file system information
#
# <file system> <dir> <type> <options> <dump> <pass>
/dev/mmcblk0p2 swap swap defaults 0 0
pogoplug:/srv/nfs4/hdd /mnt/nfs nfs nfsvers=3,udp,noatime,timeo=14,intr,_netdev,nofail,auto 0 1
$ systemctl status nfs-client.target
● nfs-client.target - NFS client services
Loaded: loaded (/usr/lib/systemd/system/nfs-client.target; enabled; vendor preset: disabled)
Active: active since Sa 2015-02-14 20:17:14 CET; 1min 57s ago
$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 12G 6,3G 4,9G 57% /
devtmpfs 420M 0 420M 0% /dev
tmpfs 424M 0 424M 0% /dev/shm
tmpfs 424M 1,4M 422M 1% /run
tmpfs 424M 0 424M 0% /sys/fs/cgroup
tmpfs 424M 0 424M 0% /tmp
tmpfs 85M 0 85M 0% /run/user/1000
$ sudo mount -a
$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 12G 6,3G 4,9G 57% /
devtmpfs 420M 0 420M 0% /dev
tmpfs 424M 0 424M 0% /dev/shm
tmpfs 424M 1,4M 422M 1% /run
tmpfs 424M 0 424M 0% /sys/fs/cgroup
tmpfs 424M 0 424M 0% /tmp
tmpfs 85M 0 85M 0% /run/user/1000
pogoplug:/srv/nfs4/hdd 15G 4,3G 9,7G 31% /mnt/nfs
')
Thanks in advance,
Jan