Last active
October 22, 2020 09:15
-
-
Save vitran96/8b67952f05e89cc940b20d24159a9475 to your computer and use it in GitHub Desktop.
Debian_base_InstallOpenSSH.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For Debian base Linux Distro | |
sudo apt install openssh-server | |
sudo systemctl status ssh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo systemctl stop ssh # Stop | |
sudo systemctl start ssh # Start | |
sudo systemctl disable ssh # Disable BOOT run | |
sudo systemctl enable ssh # Enable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment