- 论坛徽章:
- 0
|
linux下使用mount挂着网络磁盘
在linux下挂载windows系统的网络共享磁盘:
mount -t smbfs -o username=longyufei,password=1985731 //192.168.0.80/E$ /mnt/samba
删除挂载点!
umount /mnt/samba/
在linux下挂载linux的Smaba服务磁盘:
mount -t smbfs -o username=lyf,password=1985731 //192.168.0.80/lyf /www/t_disk
删除挂载点!
umount /mnt/t_disk/
挂载linux系统的NFS网络共享磁盘
mount -t nfs -o rw 192.168.0.80:/home/lyf /mnt/nfs
windows环境下访问linux下的NFS共享目录,不怎么方便!建议使用Smaba服务器!.
就可以是\\方式访问了。
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/104128/showart_2054263.html |
|