Cheat Sheet

Ubuntu tips and tricks

Apps

Azure CLI

curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash

Docker

sudo apt-get update

sudo apt-get install -y \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
    
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

sudo apt-key fingerprint 0EBFCD88

sudo add-apt-repository \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"
   
sudo apt-get update

sudo apt-get install -y docker-ce docker-ce-cli containerd.io

sudo usermod -aG docker $USER

Logout and login again.

Flamehost

Add a shortcut for flameshot gui.

Forticlietn SSL VPN

https://hadler.me/linux/forticlient-sslvpn-deb-packages/

Microsoft Teams

vscode

zsh

Install zsh and oh-my-zsh.

Edit ~/.zshrc

Install zsh-syntax-highlighting

To upgrade oh-my-zsh

Install autojump.

zsh pure

https://github.com/sindresorhus/pure

zsh disable shared history.

Keyboard

en_US with pt_BR keys

Last updated