web-dev-qa-db-ja.com

起動時にfstabを介してCIFSVFSをマウントする際の問題

新しくインストールしたRaspberryPi Model B +でRaspbianJessieを実行しています。数時間前にapt-get updateapt-get upgradeを使用しましたが、システムは最新の状態になっているはずです。
AVM Fritz!Boxに接続されているUSBディスクをマウントしようとしています。これを行うために、これを/ etc/fstabに追加しました

//192.168.178.1/FRITZ.NAS/VBTM-Store-n-Go-01 /home/pi/fb cifs username=myuser,password=mypass,workgroup=WORKGROUP,users,auto,user_xattr 0 0

Raspberry Piを再起動した後、USBディスクが/ home/pi/fbディレクトリにマウントされません。

Sudo mount -aはこの問題をすぐに解決し、USBディスクにアクセスできるようになりました。

dmesgを調べたところ、赤でマークされたエントリがいくつか見つかりました。それらのいくつかはこの問題に対処しているようです:

[    3.774312] systemd[1]: Job kbd.service/start deleted to break ordering cycle starting with basic.target/start  
[    3.868534] systemd[1]: Job raspi-config.service/start deleted to break ordering cycle starting with basic.target/start  
[    3.964346] systemd[1]: Job console-setup.service/start deleted to break ordering cycle starting with basic.target/start  
[   14.979342] CIFS VFS: Error connecting to socket. Aborting operation.  
[   14.979767] CIFS VFS: cifs_mount failed w/return code = -101  
[   18.085217] CIFS VFS: Error connecting to socket. Aborting operation.  
[   18.087841] CIFS VFS: cifs_mount failed w/return code = -101  
[   18.997658] bcm2708_fb soc:fb: Unknown ioctl 0x40187a22  
[   86.698592] CIFS VFS: Autodisabling the use of server inode numbers on \\192.168.178.1\FRITZ.NAS. This server doesn't seem to support them properly. Hardlinks will not be recognized on this mount. Consider mounting with the "noserverino" option to silence this message.

Raspbianが起動時にfstabを無視するのはなぜですか?

1
Simon

ここで「DavidCWGA」によって提案されているように、fstabのマウントオプションに「noauto、x-systemd.automount」を追加しました: https://github.com/raspberrypi/linux/issues/824

今私のために働いています!

1
Simon