×


Linux Resources


Install Visual Studio Code on CentOS 8 - Step by Step Process ?

This article covers how to install the VS code package on CentOS 8 using the command line application. Visual Studio Code is a free and open-source, cross-platform IDE or code editor that enables developers to develop applications and write code using a myriad of programming languages such as C, C++, Python, Go and Java to mention a few.


To Install Visual Studio Code on Debian, Ubuntu and Linux Mint:

1. Update your system by running the command.

$ sudo apt update

2. Once updated, proceed and install dependencies required by executing.

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

3. Next, using the wget command, download the repository and import Microsoft’s GPG key as shown:

$ 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 /etc/apt/trusted.gpg.d/
$ sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'

4. Once you’ve enabled the repository, update the system and install Visual Studio Code by running the command:

$ sudo apt update
$ sudo apt install code


Install Viber on Ubuntu 20.04 - Step by Step Process ?

This article covers how you can install Viber on your Ubuntu system. Also, you will learn how to remove Viber from Ubuntu in case you no longer need it.

Viber is an instant messaging and video calling app that allows you to send instant messages, photos, audio, video files, make free calls, and share your location with other Viber users. Viber was first released for smartphones, then later also developed for desktop users including Windows, Linux, and macOS. 


To Install Viber via Deb Package:

1. Issue the following command in Terminal to download Viber .deb installer file.

$ wget https://download.cdn.viber.com/cdn/desktop/Linux/viber.deb

2. Issue the following command in Terminal in order to install the viber.deb package.

$ sudo apt install ./viber.deb


To Uninstall Viber from Ubuntu:

Run the below command to uninstall Viber from your Ubuntu desktop.

# sudo apt remove viber


Install Podman on Ubuntu 20.04 - Step by Step Process ?

This article covers how to install Podman on your system. Podman is the drop-in replacement for Docker on the Red Hat/CentOS/Fedora environments. 

This new container technology improves on Docker by decentralizing the components necessary for container management. 

Instead of having a single daemon for everything, Podman uses individualized components that are only used when necessary. 

Another advantage of Podman is that it can work with pods, in similar fashion to Kubernetes. 


To install Podman with the command: 

$ sudo apt-get install podman -y

When the installation completes, verify the installation with the command: 

$ podman --version


Install ReactJS on Ubuntu 20.04 - Step by Step Process ?

This article covers the method of using ReactJS on a Ubuntu 20.04 system by installing NodeJS and required dependencies on it. 

Finally, we demonstrated to you the usage of ReactJS by creating a sample application.


To install npm on Ubuntu Linux, login into your server as a sudo user and invoke the command below:

$ sudo apt install npm

Once the installation is complete, you can verify the version of npm installed using the command:

$ npm --version


To install the tool, run the following npm command:

$ sudo npm -g install create-react-app


Once installed, you can confirm the version of installed by running:

$ create-react-app --version


How to Install ReactJS on Ubuntu 20.04? 

React or Reacts is a front-end JavaScript library that is used to develop UI components. It is managed by Facebook and open-source developers.

It makes it effortless to create and maintain interactive UI specifically for single-page applications. 

Many developers are using it because of its flexibility, integrity, and its feature to bring Html directly into JS. 

Many well-known corporations such as Facebook, Uber, and Instagram used the ReactJS framework to create interfaces.


To install npm, open up the terminal and type the following command:

$ sudo apt install npm


To verify if the installation is completed successfully, check the npm version through the command:

$ npm --version


Copy and Paste Text in the Ubuntu 20.04 LTS Linux Terminal - Step by Step ?

This article covers how you can copy and paste text in the Linux Terminal. This saves the time that spends in typing the long commands and text.

When you enter a long command into the Terminal window that you found on the web or in a document, you can save yourself some time by easily copying and pasting the command at the prompt.


To Copy and Paste Text into the Linux Terminal:

1. To begin, highlight the text of the command you want on the webpage or in the document you found. 

2. Press Ctrl + C to copy the text.

3. Press Ctrl + Alt + T to open a Terminal window, if one is not already open. Right-click at the prompt and select "Paste" from the popup menu.

4. The text you copied is pasted at the prompt. 

5. Press Enter to execute the command.

6. You can also copy text from the Terminal window to paste into other programs. 

7. Simply highlight the text, right-click on it, and select "Copy" from the popup menu. 

You can paste this text into a text editor, word processor, and so on.


Use of Head Command in Linux - With different examples ?

This article covers how to use head command with all required options. 

By using the tail command with a head command, you can also display the last lines of a file on the terminal.

The head command, as the name implies, print the top N number of data of the given input. 

By default, it prints the first 10 lines of the specified files. 

If more than one file name is provided then data from each file is preceded by its file name. 


Head command Syntax:

head [OPTION]... [FILE]...

Search by typing a one letter Word Term Here