install SSH on ubuntu 12.04

来源:互联网 发布:济宁行知中学 编辑:程序博客网 时间:2024/05/21 08:39

By default Ubuntu Desktop OS comes with ssh clientpackage. It does not include ssh server package which is needed to access this machine.

To install SSH on the newly installed Ubuntu 12.04 run following commands

sudo apt-get updatesudo apt-get install ssh

That’s it. To confirm the working ssh. Run the following commands from another machine

ssh username@IP_of_the_ubuntu_machine

If you get following error then
1. ssh is not running on the remote server
2. ssh is configured to run on different port

ssh: connect to host 192.168.1.10 port 22: Connection refused

Also remember to open ssh port between remote and host machine for communication.

原创粉丝点击