web-dev-qa-db-ja.com

/ etc / fstabのnfs共有が起動時にマウントされない

私は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
2
Steve Lorimer

D'oh-/etc/fstabnoautoautoに変更するだけの簡単さ

3
Steve Lorimer