Total Pageviews

Showing posts with label linux. Show all posts
Showing posts with label linux. Show all posts

Chrome: How to Install Google Chrome on Linux

How to Install Google Chrome on Linux

Works on Ubuntu, Debian, Fedora, Arch Linux and more - Updated for 2025

Google Chrome is a fast, secure, and widely used web browser developed by Google. While Linux distributions typically come with Firefox pre-installed, many users prefer Chrome for its features and cross-device syncing.

๐Ÿ”ง Installing Google Chrome on Ubuntu/Debian

1. Download the .deb package

You can download it via terminal:

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

2. Install the package

sudo apt install ./google-chrome-stable_current_amd64.deb

๐Ÿงฐ Installing Google Chrome on Fedora / RHEL / CentOS

1. Download the .rpm package

wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

2. Install the package

sudo dnf install ./google-chrome-stable_current_x86_64.rpm

๐Ÿš€ Installing Google Chrome on Arch Linux / Manjaro

Use an AUR helper like yay:

yay -S google-chrome

๐ŸŒ Launching Google Chrome

Once installed, you can launch Chrome by searching it in your application menu or via terminal:

google-chrome-stable

๐Ÿงผ Uninstalling Google Chrome

Ubuntu/Debian:

sudo apt remove google-chrome-stable

Fedora:

sudo dnf remove google-chrome-stable

Arch:

yay -Rns google-chrome

✅ Conclusion

With this guide, you've successfully installed Google Chrome on your Linux machine. Whether you're a developer testing in multiple browsers or a casual user, Chrome brings speed and Google integration to your desktop.

VSCode: How to Install Visual Studio Code on Linux (Ubuntu, Debian, Fedora & more)

How to Install Visual Studio Code on Linux

Visual Studio Code (VS Code) is a lightweight and powerful code editor developed by Microsoft. It supports multiple programming languages and includes features like IntelliSense, debugging, and Git integration.

Step-by-Step Installation (Ubuntu/Debian-based Systems)

1. Update the Package Index

sudo apt update

2. Install Required Dependencies

sudo apt install software-properties-common apt-transport-https wget

3. Import the Microsoft GPG Key

wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
sudo install -o root -g root -m 644 packages.microsoft.gpg /usr/share/keyrings/

4. Add the VS Code Repository

echo "deb [arch=amd64 signed-by=/usr/share/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" | sudo tee /etc/apt/sources.list.d/vscode.list

5. Install Visual Studio Code

sudo apt update
sudo apt install code

Installing on Fedora / RHEL

sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'
sudo dnf check-update
sudo dnf install code

Installing on Arch Linux / Manjaro

Use an AUR helper like yay:

yay -S visual-studio-code-bin

Launching VS Code

After installation, launch it from your app menu or run:

code

Install Popular Extensions

code --install-extension ms-python.python
code --install-extension esbenp.prettier-vscode

Uninstalling VS Code

To remove VS Code if needed:

sudo apt remove code         # Ubuntu/Debian
sudo dnf remove code         # Fedora/RHEL
yay -Rns visual-studio-code-bin  # Arch/Manjaro

Conclusion

Visual Studio Code is a must-have tool for developers. With this guide, you can easily install and get started with VS Code on your Linux system, regardless of your distribution.

How to Install Indian Language Fonts on Linux Using sudo apt-get install fonts-indic


If you're trying to view or write in Indian languages on your Linux system and seeing square boxes or garbled text, chances are you’re missing the right fonts. Thankfully, Linux makes it easy to install them using a simple command.

What Is fonts-indic?

The fonts-indic package is a collection of TrueType fonts for several major Indian languages. It includes support for:

  • Hindi (Devanagari script)

  • Tamil

  • Bengali

  • Gujarati

  • Kannada

  • Malayalam

  • Oriya

  • Punjabi

  • Telugu

  • Sanskrit

These fonts are essential for rendering content in Indian languages correctly in browsers, documents, and desktop applications.

How to Install Indian Language Fonts on Linux

To install the fonts, open a terminal and run:

apt-get update 
sudo apt-get install fonts-indic

Here’s what each part does:

  • sudo: Grants administrative privileges (you’ll need to enter your password).

Once installed, applications like LibreOffice, Firefox, and Chrome will automatically start displaying Indian scripts properly.

Why Use fonts-indic?

  • Enables support for multiple Indian languages.

  • Improves document compatibility and readability.

  • Ensures proper display of web content in local languages.

Troubleshooting Tips

  • Still not seeing the text properly? Try restarting your browser or application.

  • Fonts not applied in LibreOffice? Change the default font in Tools > Options > LibreOffice > Fonts.

Conclusion

Installing Indian language fonts on Ubuntu or Debian-based systems is straightforward with the fonts-indic package. Whether you're reading regional news, working on multilingual documents, or coding in native scripts, this package ensures you don’t run into font display issues.