How to Install VSCodium on FunOS

What is VSCodium?

VSCodium is a free and open-source version of Microsoft’s Visual Studio Code (VS Code) editor. It is essentially the same as VS Code but with all the Microsoft telemetry and tracking removed. Here are some key points about VSCodium:

  1. Open Source: VSCodium is built from the same source code as VS Code, which is open source, but it strips out the proprietary components and telemetry.
  2. Privacy Focused: VSCodium does not include any telemetry or data collection features, addressing privacy concerns that some users have with VS Code.
  3. Functionality: It offers the same features as VS Code, including extensions, debugging, integrated terminal, and more, making it a powerful code editor for various programming languages and frameworks.
  4. Community Driven: The project is maintained by the community, ensuring that it remains true to its open-source and privacy-focused principles.
  5. Installation: VSCodium can be installed on various operating systems, including Windows, macOS, and Linux, just like VS Code.

By using VSCodium, developers can enjoy the benefits of Visual Studio Code without the concerns of telemetry and data tracking by Microsoft.

How to Install VSCodium on FunOS

Installing VSCodium on FunOS can be done using several methods. Here’s a step-by-step guide for each method:

Method 1: Install from the VSCodium Repositories (recommended)

1. Open a Terminal

2. Update the package list:

sudo apt update

3. Install the necessary dependencies:

sudo apt install apt-transport-https curl

4. Add VSCodium GPG Key:

wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \
    | gpg --dearmor \
    | sudo dd of=/usr/share/keyrings/vscodium-archive-keyring.gpg

5. Add the VSCodium Repository:

echo 'deb [ signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://download.vscodium.com/debs vscodium main' \
    | sudo tee /etc/apt/sources.list.d/vscodium.list

6. Update the package list:

sudo apt update

7. Install VSCodium:

sudo apt install codium

8. Click the menu in the bottom left corner of the screen. Next, click the Reload menu. The objective is to display VSCodium in the menu.

click reload menu
Click Reload menu

Method 2: Install using the .deb package from VSCodium official GitHub

1. Download the VSCodium .deb Package:

Go to the VSCodium Releases Page on GitHub and download the .deb package.

vscodium releases page on github
VSCodium releases page on GitHub

2. Open a Terminal

3. Navigate to the Downloads Directory:

cd ~/Downloads

4. Update the package list:

sudo apt update

5. Install the package:

sudo apt install ./codium_*.deb

6. Remove the downloaded VSCodium .deb package:

rm codium_*.deb

7. Click the menu in the bottom left corner of the screen. Next, click the Reload menu. The objective is to display VSCodium in the menu.

click reload menu
Click Reload menu

Launching VSCodium

After the installation is complete, you can launch VSCodium by typing codium in the terminal or by searching for “VSCodium” in the applications menu.

vscodium menu
VSCodium menu

How to Uninstall VSCodium on FunOS

To uninstall VSCodium from your FunOS system, follow these steps based on the method you used to install it.

Uninstall VSCodium installed from the VSCodium Repositories

1. Open a Terminal

2. Remove VSCodium:

sudo apt remove --purge codium

3. Remove any unused dependencies:

sudo apt autoremove --purge

4. Remove the repository and key (optional):

sudo rm /etc/apt/sources.list.d/vscodium.list

sudo rm /usr/share/keyrings/vscodium-archive-keyring.gpg

5. Update the package list:

sudo apt update

6. Remove user data (optional):

rm -rf $HOME/.vscode-oss

rm -rf $HOME/.config/VSCodium

7. Click the menu in the bottom left corner of the screen. Next, click the Reload menu. The objective is to remove VSCodium from the menu.

click reload menu
Click Reload menu

Uninstall VSCodium installed via the .deb package from VSCodium official GitHub

1. Open a Terminal

2. Remove VSCodium:

sudo apt remove --purge codium

3. Remove any unused dependencies:

sudo apt autoremove --purge

4. Remove user data (optional):

rm -rf $HOME/.vscode-oss

rm -rf $HOME/.config/VSCodium

5. Click the menu in the bottom left corner of the screen. Next, click the Reload menu. The objective is to remove VSCodium from the menu.

click reload menu
Click Reload menu

Conclusion

VSCodium is an excellent alternative to Visual Studio Code for developers who value privacy and open-source software. By removing Microsoft’s telemetry and tracking, VSCodium provides a robust, privacy-respecting code editor with all the features developers love in VS Code. Installing, launching, and uninstalling VSCodium on FunOS is a straightforward process, making it easy for users to switch to this open-source alternative. Whether you’re a seasoned developer or just starting, VSCodium offers a powerful and flexible tool for your coding needs.

Leave a Reply

Your email address will not be published. Required fields are marked *