ubuntu的使用
1.使用ssh
windows下通过winscp,putty(ssh) 等连接ubuntu 需安装ssh服务
ubuntu桌面版本 默认并没有安装ssh服务,如果通过ssh链接ubuntu,需要自己手动安装ssh-server。判断是否安装ssh服务,可以通过如下命令进行:
sedion@ubuntu:~$ ssh localhost ssh
sedion@ubuntu:~$ ssh localhost ssh: connect to host localhost port 22: Connection refused
如上所示,表示没有还没有安装,可以通过apt安装,命令如下:
sedion@ubuntu:~$ sudo apt-get install openssh-server
系统将自动进行安装,安装完成以后,先启动服务:
sedion@ubuntu:~$ sudo /etc/init.d/ssh start
启动后,可以通过如下命令查看服务是否正确启动
sedion@ubuntu:~$ ps -e|grep ssh
结果显示为:
1589 ? 00:00:00 ssh-agent
2749 ? 00:00:00 sshd
2843 pts/0 00:00:00 ssh
2844 ? 00:00:00 sshd
2911 ? 00:00:00 sshd
2949 pts/1 00:00:00 ssh
2950 ? 00:00:00 sshd
3015 ? 00:00:00 sshd
3272 pts/2 00:00:00 ssh
3273 ? 00:00:00 sshd
3340 ? 00:00:00 sshd
3838 ? 00:00:00 sshd
3905 ? 00:00:00 sshd
表明ssh服务已启动了.可以进行连接了。