「Raspbian StretchでNASをマウント」の版間の差分
提供: オレッジベース
27行目: | 27行目: | ||
[[Category:Linux]] | [[Category:Linux]] | ||
+ | [[Category:RaspBerryPi]] | ||
[[Category:Raspbian]] | [[Category:Raspbian]] | ||
[[Category:Stretch]] | [[Category:Stretch]] | ||
[[Category:NAS]] | [[Category:NAS]] | ||
[[Category:マウント]] | [[Category:マウント]] |
2018年8月23日 (木) 16:08時点における最新版
ディレクトリの作成
$ sudo mkdir /mnt/<LOCAL_DIR>
マウント
$ sudo mount -t cifs //<NAS_DIR> /mnt/<LOCAL_DIR> -o guest
or
$ sudo mount -t cifs //<NAS_DIR> /mnt/<LOCAL_DIR> -o username="<USER_NAME>",password="<PASSWORD>"
起動時の自動マウント登録
$ sudo vim /etc/fstab
以下を追記(usernameとpasswordが不要な場合)
//<NAS_DIR> /mnt/<LOCAL_DIR> cifs guest 0 0
or
//<NAS_DIR> /mnt/<LOCAL_DIR> cifs username="<USER_NAME>",password="<PASSWORD>" 0 0