Quantcast
Image

Search Results for: installing

How to only download packages without installing using apt in Ubuntu/Debian

By  •  May 28, 2023

Apt-get is an advanced packaging tool for Ubuntu and other Debian-based Linux distribution, used primarily to install packages into the system. Running the following apt-get command will automatically download and install the package and all it’s dependencies.

sudo apt-get install package-name

If you are for some reason want apt-get to just download the packages and dependencies without installing it, simply add -d switch to the command as the following.

sudo apt-get install -d package-name

To confirm that the package is not installed, you’re presented with the following output when the command done executing.

Download complete and in download only mode

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 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

How to install Java Development Kit (JDK) on openSUSE and SLES

By  •  November 28, 2023

You need a Java Development Kit (JDK) to develop and compile Java applications. Installing a JDK will also install the Java Runtime Environment (JRE), which is required to run …
Read More

How to install Java Development Kit (JDK) on CentOS, Red Hat and Fedora

By  •  November 28, 2023

Java Development Kit (JDK) is used for developing and compiling Java applications. Installing a JDK will also install the Java Runtime Environment (JRE), which is necessary for running Java
Read More

How to install ImageMagick PHP module on Ubuntu and Debian

By  •  November 28, 2023

ImageMagick is a command-based and capable image editing suite, making it perfect as a backend to many other tools. This includes PHP with the use of imagick PHP module. …
Read More

How to remove saved password in Google Chrome or Chromium

By  •  November 28, 2023

Google Chrome and Chromium, by default, offer to save login details such as username and password for websites that you tried to log in to. While the built-in password …
Read More

How to install Google Chrome on CentOS, Red Hat or Fedora

By  •  November 28, 2023

In CentOS, Red Hat Enterprise Linux (RHEL), and Fedora, Google Chrome is not installed by default. Google Chrome is also not available in their default yum and dnf repositories. …
Read More

Top