Linxu:在Linux下访问Windows的共享目录
Posted 软二的小忠晏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linxu:在Linux下访问Windows的共享目录相关的知识,希望对你有一定的参考价值。
在 Windows xp 上设置一个共享目录
共享目录:d:myfiles
在 Linux 下安装 samba-client 客户端
yum install samba-client
安装 cifs-utils 软件包
yum install cifs-utils
在 Linux 下创建一个挂载点
mkdir /mnt/Windows
挂载 Windows 上的共享目录
挂载 Windows 上的共享目录 d:myfiles 到 Linux 下的/mnt/Windows 目录下
mount -t cifs -o username=Administrator //192.168.0.3/mytest /mnt/Windows
Enter password: ********
如果挂载成功,则可以进入/mnt/Windows 下进行相应操作
在/etc/fstab 文件中,加入该共享目录的挂载信息
//192.168.1.123/redhat_disk /mnt/Windows cifs username=tommy,password=111111 0 0
以上是关于Linxu:在Linux下访问Windows的共享目录的主要内容,如果未能解决你的问题,请参考以下文章