Quantcast
Image

Search Results for: download

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 Google Chrome on SUSE

By  •  November 28, 2023

Google Chrome is not installed by default in openSUSE and SLES and is not even available in the default zypper repository. It is probably due to Google Chrome being …
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

How to install Chromium web browser on SUSE

By  •  November 28, 2023

Chromium web browser is not installed by default in both SLES and openSUSE. It is, however, available in the default zypper repository.

You can install Chromium web …
Read More

How to install Chromium browser on CentOS, RHEL or Fedora

By  •  November 28, 2023

Chromium is not the default web browser and is not even installed by default in CentOS, Red Hat, or Fedora. It's not even available in the distributions' default package …
Read More

How to install GlusterFS on CentOS, Red Hat or Fedora

By  •  November 28, 2023

GlusterFS can easily be installed via yum or dnf in CentOS, Red Hat, or Fedora as it's readily available in the default yum repository. However, it could be a …
Read More

How to build a Gentoo chroot environment

By  •  November 28, 2023

You can create a base Gentoo system by using the stage 3 installer. You will have to also mount both dev and proc filesystem for your base system to be usable for chroot. These are the outline of the process.

  1. Create your chroot folder

    $ mkdir chroot-gentoo
  2. Download Gentoo stage 3 installer

    $ wget ftp://rsync4.jp.gentoo.org/GENTOO/releases/x86/current/stages/stage3-x86-2008.0.tar.bz2
  3. Extract it

    $ tar xf stage3-x86-2008.0.tar.bz2 -C chroot-gentoo
  4. Mount proc and dev filesystem.

    $ sudo mount -o bind /dev chroot-gentoo/dev
    $ sudo mount -o bind /proc chroot-gentoo/proc
  5. Start chrooting

    $ sudo chroot chroot-gentoo /bin/bash
  6. Unmount the dev and proc filesystem once you exited your chroot environment.

    $ sudo umount chroot-gentoo/dev chroot-gentoo/proc

How to install Gekko on Ubuntu

By  •  November 28, 2023

Gekko is an opensource, Node.js application for Bitcoin trading and is hosted on Github.

To install Gekko on Ubuntu, you'll need to first install nodejs and git. …
Read More

How to install Gekko on CentOS / Fedora / Red Hat

By  •  November 28, 2023

Gekko is an opensource, Node.js application for Bitcoin trading. The application is available on Github.

As such you'll need to install git to download the application from …
Read More

Top