How to Install Yandex Browser on FunOS

If you’re looking for a fast, secure, and feature-rich web browser with an elegant interface, Yandex Browser is an excellent choice. Built on the Chromium engine, it offers smooth performance, a clean design, and additional privacy and security features powered by Yandex — one of the largest technology companies in Russia.
In this guide, you’ll learn how to install Yandex Browser on FunOS, as well as how to uninstall it completely if needed.

What is Yandex Browser?

Yandex Browser is a free web browser developed by Yandex, a well-known Russian internet company. It’s based on the Chromium open-source project, the same foundation used by browsers like Google Chrome, Brave, and Microsoft Edge.

Yandex Browser focuses on speed, security, and simplicity. Some of its notable features include:

  • Turbo Mode: Automatically compresses web pages to load faster on slow connections.
  • Protect Mode: Warns you about unsafe websites and helps block malware and phishing attempts.
  • SmartBox: A combined address and search bar that provides instant suggestions and results.
  • Built-in Translator: Supports automatic translation of foreign-language web pages.
  • Customizable Interface: Allows users to choose wallpapers, background images, and visual themes.

Because it’s Chromium-based, Yandex Browser supports most Chrome extensions and web technologies, making it a great choice for FunOS users who want a modern and capable browser.

How to Install Yandex Browser on FunOS

Follow these steps to install Yandex Browser on your FunOS system.

Step 1: Open a Terminal

You can open the Terminal in one of the following ways:

  • Click Menu in the lower-left corner of the screen, then click Terminal.
  • Click the Terminal icon in the Tray.
  • Press Ctrl + Alt + T on your keyboard.

Step 2: Update the Package List

Before installing any new software, update your system’s package list to ensure you have the latest repository information.

sudo apt update

Step 3: Install the Necessary Dependencies

Install essential packages needed to fetch files over HTTPS:

sudo apt install apt-transport-https curl

Step 4: Add the GPG Key

Add Yandex’s official GPG key to verify package authenticity.

curl -fsSL https://repo.yandex.ru/yandex-browser/YANDEX-BROWSER-KEY.GPG | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/yandex-browser.gpg > /dev/null

Step 5: Add the Repository

Next, add the Yandex Browser repository to your system sources:

echo "deb [arch=amd64] https://repo.yandex.ru/yandex-browser/deb stable main" | sudo tee /etc/apt/sources.list.d/yandex-browser.list

Step 6: Update the Package List Again

After adding the new repository, update the package list again so that FunOS recognizes the newly added Yandex Browser repository:

sudo apt update

Step 7: Install Yandex Browser

Now install Yandex Browser (stable version):

sudo apt install yandex-browser-stable

Step 8: Reload the Menu

After installation, reload the JWM menu so that the new application appears:

  1. Click the Menu button in the lower-left corner.
  2. Click Reload menu.

Launching Yandex Browser

Once installed, you can launch Yandex Browser by doing the following:

  • Click the Menu button in the lower-left corner.
  • Navigate to the Internet section.
  • Click Yandex Browser to open it.

The first time you open it, Yandex Browser may ask if you want to import bookmarks or settings from another browser — you can choose to do so or skip this step.

How to Uninstall Yandex Browser on FunOS

If you decide you no longer need Yandex Browser, follow these steps to remove it completely.

Step 1: Open a Terminal

Open the Terminal using one of the same methods as before.

Step 2: Remove Yandex Browser

Run the following command to remove Yandex Browser and its associated files:

sudo apt remove --purge yandex-browser-stable

Step 3: Remove Any Unused Dependencies

Clean up any packages that are no longer needed:

sudo apt autoremove --purge

Step 4: Update the Package List

Update your system to keep everything tidy:

sudo apt update

Step 5: Remove User Data (Optional)

If you also want to delete all Yandex Browser user data (such as cache, bookmarks, and profiles), run the following commands:

rm -rf $HOME/.yandex
rm -rf $HOME/.config/yandex-browser
rm -rf $HOME/.cache/yandex-browser

Step 6: Reload the Menu

Finally, reload the menu to remove Yandex Browser from the Internet section:

  1. Click the Menu button in the lower-left corner.
  2. Click Reload menu.

Conclusion

Installing Yandex Browser on FunOS is straightforward thanks to its official Debian repository. The browser delivers an excellent balance of speed, security, and visual polish while maintaining compatibility with most Chromium extensions.
Whether you’re browsing the web, streaming videos, or managing your online work, Yandex Browser provides a smooth and reliable experience on FunOS.

If you ever decide to switch browsers, uninstalling Yandex Browser is just as easy and ensures your system stays clean and optimized.

Leave a Reply

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