Created
September 13, 2013 12:15
-
-
Save grenade/6549903 to your computer and use it in GitHub Desktop.
Enable the ssh daemon on Fedora Core 19 and start accepting connections.
This file contains hidden or 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
| # Turn off SELinux at boot | |
| sudo sed -i.bak -e 's#SELINUX=enforcing#SELINUX=permissive#g' /etc/selinux/config | |
| # Turn off SELinux now | |
| sudo setenforce Permissive | |
| # Make sshd start at boot | |
| sudo chkconfig sshd on | |
| # Start sshd now | |
| sudo servcie sshd start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment