DEV Community

tripleo
tripleo

Posted on • Updated on

Things to do after installing Ubuntu

  1. Disable firefox snap:
echo '
Package: *
Pin: release
Pin-Priority: 1001

Package: firefox
Pin: version 1:1snap1-0ubuntu2
Pin-Priority: -1
' | sudo tee /etc/apt/preferences.d/mozilla-firefox
Enter fullscreen mode Exit fullscreen mode
  1. Remove the nano editor. Some people like it. I dont.
apt remove nano
Enter fullscreen mode Exit fullscreen mode

2b. Remove new console and text-editor apps and "upgrade" to previous versions until there is some sort of feature or ui parity.

apt install gedit gnome-terminal gnome-console- gnome-text-editor-
Enter fullscreen mode Exit fullscreen mode
  1. Install vscodium (you could also use home-manager -- regular nix-env does not appear to work).
  curl -fSsL https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | sudo gpg --dearmor | sudo tee /usr/share/keyrings/vscodium.gpg >/dev/null
  echo "deb [arch=amd64 signed-by=/usr/share/keyrings/vscodium.gpg] https://download.vscodium.com/debs vscodium main" | sudo tee /etc/apt/sources.list.d/vscodium.list
  sudo apt update
  sudo apt install codium #-insiders, if you like that
Enter fullscreen mode Exit fullscreen mode
  1. ...

Top comments (2)

Collapse
 
amnezia profile image
Max Jamesin

apt upgrade && apt update ?

Collapse
 
tripleo profile image
tripleo

iirc, one must update before upgrade.