-
-
Save iledarn/19a85fa516ca90828ba1691e9c2abb6d to your computer and use it in GitHub Desktop.
save my ssh key
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
# | |
su | |
# ivann + general | |
mkdir /root/.ssh | |
curl --silent https://github.com/yelizariev.keys | xargs echo -n >> /root/.ssh/authorized_keys | |
echo -ne " [email protected]\n" >> /root/.ssh/authorized_keys | |
sed -i 's/PermitRootLogin no/PermitRootLogin without-password # changed by Ivan Yelizariev from value "no"/' /etc/ssh/sshd_config | |
/etc/init.d/ssh restart | |
# | |
# iledarn | |
curl --silent https://github.com/iledarn.keys | xargs echo -n >> /root/.ssh/authorized_keys | |
echo -ne " [email protected]\n" >> /root/.ssh/authorized_keys |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment