NASをマウントする際のメモ
◆準備ができていないときのエラー
[root@localhost ~]# mount -t smbfs //192.168.0.6/share /mnt/nas
mount: unknown filesystem type ‘smbfs’
[root@localhost ~]# mount -t smbfs //192.168.0.6/share /mnt/nas
mount: unknown filesystem type ‘smbfs’
CIFS VFS: cifs_mount failed w/return code = -22
スポンサードリンク
◆準備する
[root@localhost ~]# yum install samba-client
◆マウントする
[root@localhost ~]# mount -t cifs -o username=share,iocharset=utf8 //192.168.0.6/share /mnt/nas
◆マウントエラー(ログインできない)
[root@localhost ~]# mount -t cifs //192.168.0.6/share /mnt/nas
Password:
Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE
CIFS VFS: Send error in SessSetup = -13
CIFS VFS: cifs_mount failed w/return code = -13
mount error 13 = Permission denied
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
◆確認する
[root@localhost ~]# df -h
Filesystem サイズ 使用 残り 使用% マウント位置
/dev/mapper/VolGroup00-LogVol00
19G 14G 4.0G 78% /
/dev/xvda1 99M 42M 53M 44% /boot
tmpfs 129M 0 129M 0% /dev/shm
//192.168.0.6/share 112G 4.0G 108G 4% /mnt/nas
[root@localhost ~]# ls /mnt/nas/
???t?? AutoBup?F?N?? WS000002.BMP
?h???C?o AutoBup?F?X?L???i WS000003.BMP
◆マウント解除する
[root@localhost ~]# umount /mnt/nas/
※文字化けを直せなかった。一部の文献によればcodepage=932をオプション行に書き込むとよいとあったが、「そんなオプションは知らん」と怒られてしまう
参考文献
- http://www.atmarkit.co.jp/flinux/rensai/linuxtips/605usens.html
- http://www.atmarkit.co.jp/flinux/rensai/root05/root05c.html
- http://www.itmedia.co.jp/help/tips/linux/l0114.html
- http://www.nikep.net/new-backup-method.php
oldId.20090701060443173