由于环境需要,在本机的linux系统下用virtualBox安装了一个linux系统。但是在操作的时候,需要进行两个操作系统的文件传输。这里主要使用了ssh(即openServer)。我安装的linux系统是2012.04的版本。在安装好系统以后我使用ssh-keygen来测试,当前的版本是否安装了ssh。但是测试的时候出现了对应的命令。满以为是安装好了,就进行操作。哪知道一直连不上本机的虚拟机。后来才发现没有安装上ssh-server。所以需要使用安装源进行安装。sudo apt-get insatll openssh-server。(这里有时候可能安装不了,这个时候你需要使用sudo apt-get install update来进行更新一下)。安装好了以后你就可以在两台机子之间进行测试了。你可以使用一下命令来测试是否能连上,ssh xx(这里是被链接到的主机名)@ip地址(被链接到的ip地址)。是否成功看下面的提示就行了。
如果你的测试通过了,你可以进行一下操作来进行连个主机之前的文件传输了。
1>从本地服务器复制到远程服务器
(1) 复制文件:
命令格式:
scp local_file remote_username@remote_ip:remote_folder
或者
scp local_file remote_username@remote_ip:remote_file
或者
scp local_file remote_ip:remote_folder
或者
scp local_file remote_ip:remote_file
第1,2个指定了用户名,命令执行后需要输入用户密码,第1个仅指定了远程的目录,文件名字不变,第2个指定了文件名
第3,4个没有指定用户名,命令执行后需要输入用户名和密码,第3个仅指定了远程的目录,文件名字不变,第4个指定了文件名
实例:
scp /home/linux/soft/scp.zip [email protected]:/home/linux/others/soft
scp /home/linux/soft/scp.zip [email protected]:/home/linux/others/soft/scp2.zip
scp /home/linux/soft/scp.zip www.mydomain.com:/home/linux/others/soft
scp /home/linux/soft/scp.zip www.mydomain.com:/home/linux/others/soft/scp2.zip
(2) 复制目录:
命令格式:
scp -r local_folder remote_username@remote_ip:remote_folder
或者
scp -r local_folder remote_ip:remote_folder
第1个指定了用户名,命令执行后需要输入用户密码;
第2个没有指定用户名,命令执行后需要输入用户名和密码;
例子:
scp -r /home/linux/soft/ [email protected]:/home/linux/others/
scp -r /home/linux/soft/ www.mydomain.com:/home/linux/others/
上面命令将本地soft目录复制到远程others目录下,即复制后远程服务器上会有/home/linux/others/soft/ 目录
(scp -r /home/xx/下载 [email protected]:/home/joshua/下载)
2>从远程服务器复制到本地服务器
从远程复制到本地的scp命令与上面的命令雷同,只要将从本地复制到远程的命令后面2个参数互换顺序就行了。
例如:
scp [email protected]:/home/linux/soft/scp.zip /home/linux/others/scp.zip
scp www.mydomain.com:/home/linux/soft/ -r /home/linux/others/
linux系统下scp命令中很多参数都和 ssh1 有关 , 还需要看到更原汁原味的参数信息,可以运行man scp 看到更细致的英文说明.
===============================================================
要修改root的ssh权限,即修改 /etc/ssh/sshd_config文件中
PermitRootLogin no 改为 PermitRootLogin yes
重启ssh服务
%/etc/init.d/sshd restart
重新测试成功!