Skip to content

Instantly share code, notes, and snippets.

@johnc219
Created November 22, 2016 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnc219/26e0b432b0959fcba952459b86ef3b74 to your computer and use it in GitHub Desktop.
Save johnc219/26e0b432b0959fcba952459b86ef3b74 to your computer and use it in GitHub Desktop.

Raspberry Pi Onboarding Steps

  • Updating packages
    • sudo apt-get update
    • sudo apt-get upgrade
    • sudo apt-get clean
    • sudo apt-get autoremove
  • Installing Vim
    • sudo apt-get vim
  • Apply a .vimrc
  • Change default editor
    • sudo update-alternatives --config editor
  • Scheduleding backups
    • make a backup.sh file
    cd /home/
    tar czf pi_home.tar.gz pi
    
    • schedule it using cron
      • crontab -e
  • Setting up GitHub
  • Get private IP
    • hostname -I
  • Change password default
    • passwd
  • Review .bashrc and .bash_profile

Official Documentation

here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment