Linux

Software Installation (Debian-Based Distro)

  • 1Password: .deb package
  • LibreOffice: preinstalled, Software Manager, or 64-bit .deb package
  • LibreWolf: Software Manager
    • Set default: System Settings > Preferences > Preferred Applications
  • Obsidian: Software Manager
  • Resilio Sync: x64 .deb package plus instructions for running
  • Sublime Text: Software Manager, or apt instructions
  • git: sudo apt install git
  • GitHub: gh (for saving auth credentials)
  • nvm: use the install script
  • rbenv: rbenv-installer - requires build deps and oh-my-zsh plugin or manual bashrc setup
  • postgresql:
    • sudo apt install postgresql libpq-dev
  • tmux: sudo apt install tmux
    • tmuxinator: gem install tmuxinator
  • zsh: just sudo apt install zsh, oh-my-zsh will set it as the default shell (need to restart afterward)
    • Check with ps -p $$
    • If not, run chsh -s /usr/bin/zsh josh
$ sudo su - postgres
$ createuser josh
$ psql
ALTER USER josh WITH SUPERUSER;