课程: Linux System Engineer: Networking and SSH
今天就学习课程吧!
今天就开通帐号,24,700 门业界名师课程任您挑!
Installing SSH client and server
- [Instructor] The SSH client and server should be installed by default in Enterprise Linux 7, but if they're not we'll do it now. To install the client, open a terminal and type in sudo yum install -y openssh-clients, and hit Enter. If it's already installed, it won't hurt anything. We install the SSH server the same way. Type in sudo yum install -y openssh-server, and hit Enter. If you had to install the server, it will have to be enabled as well. We'll use systemctl for this. Type in clear, and then type in sudo systemctl enable sshd.service, and hit Enter. This will ensure that it's running the next time we reboot. Now, let's manually start it. Type in sudo systemctl start sshd.service, and hit Enter. Now, we're ready to proceed with learning about Secure Shell.
随堂练习,边学边练
下载课堂讲义。学练结合,紧跟进度,轻松巩固知识。