After two weeks of intermittent learning, finally the Mu class online Tony Teacher's "Linux network Management" basic knowledge of learning. Tony's teacher is witty, humorous, and call!! for the teacher.
Course Address: https://www.imooc.com/learn/258
After reading the last lecture today, the teacher talked about several very common Linux management tools.
1, Xshell
Use this tool to remotely manage Linux on Windows.
There are many links on the Internet, I have not been able to log on to my Linux after installation, it is not installed on my Linux SSH service.
1. Detect if the SSH service is installed, enter the following command
$ ssh localhost
The following prompt is not installed:
Ssh:connect to host localhost Port 22:connection refused
(SSH: Connect to host Local host Port 22: Connection denied)
2. Installing Ssh-server
$ sudo apt-get install openssh-server
3. Start the service
$ sudo /etc/init.d/ssh start
Startup success will prompt:
[OK] Starting SSH (via Systemctl): Ssh.service.
4. Check whether the service started successfully
$ ps -e|grep ssh
Start successfully if you have the following prompt
6455? 00:00:00 sshd
Other than that:
To start, stop, and restart the SSH command:
$ sudo /etc/init.d/ssh start //启动SSH命令
$ sudo /etc/init.d/ss stop //停止SSH命令,重新连接你会发现不能再连接上了
$ sudo /etc/init.d/ss restart //重启SSH命令
2, WinSCP
File Transfer tool: (background is SSH encryption protocol) win files to the Linux copy, very convenient
Official website Download: Https://winscp.net/download/WinSCP-5.13.1-Setup.exe
Resources:
75735152
---Xshell of Linux Learning