Skip to content

Instantly share code, notes, and snippets.

@elconejito
Last active July 27, 2016 17:40
Show Gist options
  • Save elconejito/a4f8fd5a41e16ea98a69a830c0cf559c to your computer and use it in GitHub Desktop.
Save elconejito/a4f8fd5a41e16ea98a69a830c0cf559c to your computer and use it in GitHub Desktop.
Remove annoyances in my dev environment
DISABLE STRICT HOST KEY CHECKING
============
Open or create this file: ~/.ssh/config
Add this to the file, where * is a domain you trust
-----------
Host *
StrictHostKeyChecking no
Then run this for "security": sudo chmod 400 ~/.ssh/config
USE SUDO WITHOUT A PASSWORD
============
Open the sudoers file with an editor: sudo visudo
Add this to the file
-----------
USERNAME ALL=(ALL) NOPASSWD: ALL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment