ページ

2014年5月26日月曜日

Cent OS 6.5 USBストレージのマウント

現在 A-TERMルータのプチNASとして活躍のUSBストレージをVM上のCent OS 6.5から
マウントして観覧可能にしたい。

という事で、マウント先のディレクトリを
/mnt/wd-2
として作成し、マウントを実行。

[root@localhost mnt]# sudo mount -t cifs //192.168.0.1/wd-2 /mnt/wd-2
mount: 間違ったファイルシステムタイプ、不正なオプション、
       //192.168.0.1/wd-2 のスーパーブロックが不正、コードページまたは
       ヘルパープログラムの未指定、或いは他のエラー
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount.<type> helper program)
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

何か分からないが怒られるorz
上記を参考にcifs関連のパッケージをインストール

[root@localhost mnt]# yum install cifs-utils
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package cifs-utils.x86_64 0:4.8.1-19.el6 will be installed
--> Processing Dependency: keyutils for package: cifs-utils-4.8.1-19.el6.x86_64
--> Running transaction check
---> Package keyutils.x86_64 0:1.4-4.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package             Arch            Version                Repository     Size
================================================================================
Installing:
 cifs-utils          x86_64          4.8.1-19.el6           base           65 k
Installing for dependencies:
 keyutils            x86_64          1.4-4.el6              base           39 k

Transaction Summary
================================================================================
Install       2 Package(s)

Total download size: 103 k
Installed size: 204 k
Is this ok [y/N]: y
Downloading Packages:
(1/2): cifs-utils-4.8.1-19.el6.x86_64.rpm                |  65 kB     00:00     
(2/2): keyutils-1.4-4.el6.x86_64.rpm                     |  39 kB     00:00     
--------------------------------------------------------------------------------
Total                                           495 kB/s | 103 kB     00:00     
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : keyutils-1.4-4.el6.x86_64                                    1/2 
  Installing : cifs-utils-4.8.1-19.el6.x86_64                               2/2 
  Verifying  : cifs-utils-4.8.1-19.el6.x86_64                               1/2 
  Verifying  : keyutils-1.4-4.el6.x86_64                                    2/2 

Installed:
  cifs-utils.x86_64 0:4.8.1-19.el6                                              

Dependency Installed:
  keyutils.x86_64 0:1.4-4.el6                                                   

Complete!

再度マウントを実行してみる。
[root@localhost mnt]# sudo mount -t cifs //192.168.0.1/wd-2 /mnt/wd-2
Password: 
[root@localhost mnt]# ls /mnt/wd-2
$RECYCLE.BIN  20_document  40_picture  60_vm     90_backup
10_develop    30_music     50_video    70_books  readme.txt
[root@localhost mnt]# 
[root@localhost mnt]# df
Filesystem         1K-blocks      Used Available Use% Mounted on
/dev/sda2           18339256   2852416  14555256  17% /
tmpfs                 506176       232    505944   1% /dev/shm
/dev/sda1             297485     34634    247491  13% /boot
.host:/            244277768 159972844  84304924  66% /mnt/hgfs
//192.168.0.1/wd-2 976489632 166328384 810161248  18% /mnt/wd-2

無事マウントできました。

0 件のコメント:

コメントを投稿