Skip to content

Instantly share code, notes, and snippets.

@grenade
Created September 13, 2013 12:15
Show Gist options
  • Save grenade/6549903 to your computer and use it in GitHub Desktop.
Save grenade/6549903 to your computer and use it in GitHub Desktop.
Enable the ssh daemon on Fedora Core 19 and start accepting connections.
# 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