Quantcast
Image

Search Results for: repo

How to remove PPA repository

By  •  May 28, 2023
sudo add-apt-repository --remove -y ppa:ondrej/php
sudo apt update
sudo apt-get install ppa-purge
sudo ppa-purge ppa:ondrej/php
sudo apt update
sudo apt autoremove

How to remove PPA repository on Ubuntu and Debian

By  •  December 2, 2021

You might need to use a third-party apt repository when the packages you need are not available in the default repository, or if it is, it might not be …
Read More

How to install add-apt-repository in Ubuntu / Debian

By  •  December 2, 2021

add-apt-repository is normally installed by default in Ubuntu and Debian distribution, but not in some variance such as Raspberry Pi OS. As such, you'll get the following command …
Read More

How to add third-party apt / apt-get repository on Ubuntu

By  •  December 2, 2021

apt and apt-get are the easiest ways to install applications for Ubuntu. Official package repository for the tools is hosted and managed by Ubuntu. It contain most but not …
Read More

How to install Google Chrome on Ubuntu

By  •  December 2, 2023

Google Chrome is not available in Ubuntu's default apt repositories though Chromium is. It makes installing Google Chrome on Ubuntu not as straightforward as possible.


Read More

How to install Git on Ubuntu

By  •  December 2, 2023

Git is by far the most widely used distributed version control system while being free and open source. git client is not installed by default in the desktop variants …
Read More

How to install Java Runtime Environment (JRE) on Ubuntu

By  •  November 28, 2023

The Java Runtime Environment (JRE) allows you to run Java applications on your computer. It includes the Java Virtual Machine (JVM), responsible for executing Java code, and a set …
Read More

How to install Java Runtime Environment (JRE) on openSUSE and SLES

By  •  November 28, 2023

You need a Java Runtime Environment (JRE) to run Java applications on your system. A JRE includes the Java Virtual Machine (JVM) and other libraries necessary to run Java
Read More

How to install Java Runtime Environment (JRE) on CentOS, Red Hat and Fedora

By  •  November 28, 2023

Java Runtime Environment (JRE) provides the necessary components to run Java applications on your systems. A JRE includes the Java Virtual Machine (JVM), the Java class libraries, and other …
Read More

How to install Java Development Kit (JDK) on Ubuntu

By  •  November 28, 2023

Java Developer Kit (JDK) is required for developing and compiling Java applications. Some of the popular JDKs are provided by OpenJDK and Oracle. OpenJDK is an open-source implementation of …
Read More

Top