linux 命令 访问windows 共享 拷贝文件到linux
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 命令 访问windows 共享 拷贝文件到linux相关的知识,希望对你有一定的参考价值。
我现在ssh到一台RHELinux 5 上面,现在用 smbclient可以访问局域网内windows的共享,进入smb:\>以后,怎么copy共享目录下的文件到linux下面呢?用什么命令??
你可以使用samba文件共享,也可以使用简单的mount命令
samba:需要搭建samba服务,具体参考如下:
http://blog.sina.com.cn/s/blog_6e0c0fdf0100x8fj.html
mount命令:
现在windows里共享一个文件出来,这里举例iso文件夹
mount -o username=huangxiaoming //172.20.0.189/iso /mnt/share --从windows挂载
ls /mnt/share ---就可以看到了
传到Linux本机:scp 'linuxidc@192.168.3.202:/c:/Users/linuxidc/Desktop/read\ note.txt' ./
传到其他Windows:scp ./RUNNING.txt linuxidc@192.168.3.202:/c:/Users/linuxidc/Desktop/ 参考技术B cp 源目录 目的目录本回答被提问者和网友采纳 参考技术C 查帮助,或都man一下 参考技术D 雨钱《笑,笑,笑》:笑,笑,笑,大肚能容,容天下难容之事。能容,能容。笑,笑,笑,佛面常笑,笑世上可笑之人。可笑,可笑。
虚拟机Oracle VM VirtualBox linux系统如何访问windows共享文件夹
1、 在本机系统设置一个共享文件夹,用于与Ubuntu交互的区域空间。
2、右击状态栏上共享文件夹图标或菜单栏“设备-共享文件夹”,打开共享文件夹设置,如图示
3、点击共享文件夹设置框,右上角的添加按钮
选择之前本机设置的共享文件夹
此时一定不可以勾选自动挂载
4、设置好共享名后,进入Linux系统,打开终端,先执行命令,在挂载点目录添加“Windows_Share”目录,接着执行" mount -t vboxsf VirtureBox_Share /mnt/Windows_Share/",就能完成共享文件夹的设置。
[oracle@ODIGettingStarted ~]$ su
Password:
[root@ODIGettingStarted oracle]# mkdir /mnt/Windows_Share
[root@ODIGettingStarted oracle]# mount -t vboxsf VirtureBox_Share /mnt/Windows_Share/
[root@ODIGettingStarted oracle]#
5、设置完成,可以创建几个文件,测试一下
(测试方法:
1. 在本地C:\\Software\\Oracle\\VirtureBox_Share创建一个文件,到mnt/ Windows_Share/目录 查看。
2.在mnt/Windows_Share/目录创建一个文件,在本机C:\\Software\\Oracle\\VirtureBox_Share进行查看)
[root@ODIGettingStarted oracle]# cd /mnt/Windows_Share/
[root@ODIGettingStarted Windows_Share]# ls
window创建.txt
[root@ODIGettingStarted Windows_Share]# touch linux.txt
[root@ODIGettingStarted Windows_Share]# ls
linux.txt window创建.txt
[root@ODIGettingStarted Windows_Share]#
6、设置自动挂载
[oracle@ODIGettingStarted ~]$ su
Password:
[root@ODIGettingStarted oracle]#vim /etc/fstab
添加
VirtureBox_Share /mnt/Windows_Share/ vboxsf rw,gid=110,uid=1100,auto 0 0
7、卸载挂载点命令:
umount -f /mnt/share
原文地址:
以上是关于linux 命令 访问windows 共享 拷贝文件到linux的主要内容,如果未能解决你的问题,请参考以下文章
怎样用Samba实现windows和linux之间文件的网络访问