linux系统下用mount命令挂载到windows下。提示输入密码,但是输入了密码后也不能挂载成功。我的命令如下。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux系统下用mount命令挂载到windows下。提示输入密码,但是输入了密码后也不能挂载成功。我的命令如下。相关的知识,希望对你有一定的参考价值。
mount -t cifs -o username=0 //192.168.1.160/share /mnt/winc这个命令有错么?怎么回事啊?始终要输入密码
mount -t cifs -o username=0,password=pwd //192.168.1.160/share /mnt/winc老系统就用这个:
mount -t smbfs -o username=0,password=pwd //192.168.1.160/share /mnt/winc
这里你要搞清什么是cifs和smbfs吧。cifs在各大主流存储厂商里使用还是很多的。说到smbfs你又要弄清samba是怎么回事了。唉越学越无知啊。
这里MAN:
-t, --types vfstype
The argument following the -t is used to indicate the filesystem type. The filesystem types which are currently supported include: adfs, affs, autofs, cifs, coda, coherent, cramfs, debugfs, devpts, efs, ext, ext2, ext3, ext4, hfs, hfsplus, hpfs, iso9660, jfs, minix, msdos, ncpfs, nfs, nfs4, ntfs, proc, qnx4, ramfs, reiserfs, romfs, squashfs, smbfs, sysv, tmpfs, ubifs, udf, ufs, umsdos, usbfs, vfat, xenix, xfs, xiafs. Note that coherent, sysv and xenix are equivalent and that xenix and coherent will be removed at some point in the future - use sysv instead. Since kernel version 2.1.21 the types ext and xiafs do not exist anymore. Earlier, usbfs was known as usbdevfs. Note, the real list of all supported filesystems depends on your kernel.
-t后面可以跟cifs和smbfs.
想精通LINUX还要多看man的,当然学好英语先是必须的了。mount命令博大精深,但是我们常用的就那么几条。推荐你用DEBIAN和OpenSuse. 个人认为DEBIAN是最好的免费LINUX系统了。千万不要用红帽,相信哥,你会被它搞疯掉的。 参考技术A mount -t cifs -o username=username,password=pw //192.168.1.160/share /mnt
或者
mount -t cifs -o codepages=cp936,username=user,password=pw,-l //ip/share /mnt
或者
mount.cifs -o codepages=cp936,username=user,password=pw,-l //ip/share /mnt
或者
smbmount -o username=user,password=pw,-l //ip/share /mnt (这个命令rhel5以后没有了) 参考技术B moun -o user=0(你的windows用户名)[,password=(对应用户的密码)] //192.168.1.160/share /mnt/winc
这里我用的简写去了-t,加上了密码。你可以去掉[]里面的。
Window文件目录挂载(mount)到linux系统目录下
1、先在windows下面共享需要挂载的目录。
2、确保linux与windows是在同一个局域网当中。
3、在linux下面创建一个需要挂载到的目录。
4.然后点击“添加”,建立windows文件和linux路径的映射。
经过这样就linux应该就可以访问windows下的文件夹了。
在linux中,文件挂载的路径为:/mnt/hgfs/www/
以上是关于linux系统下用mount命令挂载到windows下。提示输入密码,但是输入了密码后也不能挂载成功。我的命令如下。的主要内容,如果未能解决你的问题,请参考以下文章