VSCodium is a fork of Microsoft Visual Studio Code Editor, modified to have full open-source access.
https://www.linuxcapable.com/how-to-install-vscodium-on-ubuntu-20-04-lts/
The source code for this product can be found on GitHub, where it is licensed under MIT license and, therefore, will always remain free as long you don’t mind installing extra features via plugins or extensions from third parties like Telemetry transmitting your browsing habits across networks without permission.
Here are the steps to install VSCodium on Ubuntu Linux:
Update Ubuntu
1 sudo apt update && sudo apt upgrade
Install Dependencies
1 sudo apt install curl apt-transport-https gnupg2 -y
Import GPG
1 2 curl https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | gpg --dearmor \ | sudo tee /usr/share/keyrings/vscodium.gpg >/dev/null
Import the Repository
1 2 3 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
Run APT update to reflect new additional repository
Install VSCodium
1 sudo apt install codium -y
Launch VSCodium
vscodium
for normal launch, while vscodium &
will launch it in the background to free up the terminal.
You can also launch it in desktop mode.
Update VSCodium
1 sudo apt update && sudo apt upgrade
Remove (uninstall) VSCodium
1 sudo apt autoremove codium -y
Remove VSCodium Repository
1 sudo rm /etc/apt/sources.list.d/vscodium.list
Remove VSCodium GPG key
1 sudo rm /usr/share/keyrings/vscodium.gpg