私はubuntu/xbmcの起動時に自動的にマウントしようとしているnfs共有を持っています
/etc/fstab
には次のものがあります
nas:/mnt/raid /mnt/raid nfs noauto,rw,async
起動時にマウントは自動的に行われません。
手動でmount
コマンドを発行すると動作します:
$ Sudo mount -o noauto,rw,async -t nfs nas:/mnt/raid /mnt/raid
起動時にこのマウントを自動的に発生させるにはどうすればよいですか?
/var/log/messages
のエラーを探してもあまり得られませんが、nodiskmountについて何かを言っています:
Kernel command line: \
BOOT_IMAGE=/boot/vmlinuz-2.6.32-29-generic \
root=UUID=e575a39a-09d9-4747-befa-466c7aae64d1 \
ro quiet splash \
xbmc=autostart,nodiskmount \ <-- THIS LINE
loglevel=0 \
video=vesafb
これが問題になりますか? nodiskmount
を無効にする方法はありますか?
使用しているXBMCFreak LiveCD 10from XBMCFreak.nl これはUbuntu lucid lynx
に基づいています
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.04.2 LTS - XBMCLive
Release: 10.04
Codename: lucid
D'oh-/etc/fstab
のnoauto
をauto
に変更するだけの簡単さ