×


Blog


How to Browse in incognito or private mode of Google Chrome ?

This article explain the benefits of working with the private mode or #Incognito #mode of #Google Chrome. Also, we also demonstrated to you the different ways of entering this mode while using Google Chrome. To browse incognito in #Chrome: 1. Click on the Chrome icon to launch the #browser. 2. At the upper right corner of the app, click on the More icon that looks like three vertical dots to activate Private Mode. 3. Select New Incognito Tab.


Install latest LibreOffice on Ubuntu 20.04 LTS - Different methods to do it ?

This article will guide you on different methods to have the latest version of #LibreOffice installed on your #Ubuntu 20.04 system. To #install LibreOffice Ubuntu 20.04 step by step instructions: 1. Use the top left Activities menu to open the #Software application. 2. Search for LibreOffice software. 3. Click the Install button to begin the LibreOffice installation. 4. Enter your username and password. 5. Start the LibreOffice #application.


Different methods to create and run a Shell script on Ubuntu 20.04 LTS ?

This article will guide you on different methods of creating and running a #shell #script in #Ubuntu 20.04. Shell Scripting is an open-source #computer program designed to be run by the #Unix / #Linux shell. Shell Scripting is a program to write a series of commands for the shell to execute. To write and execute a script: 1. Open the #terminal. Go to the directory where you want to create your script. 2. Create a file with . sh extension. 3. Write the script in the file using an editor. 4. Make the script executable with command chmod +x . 5. Run the script using ./.


Steps to set up FFmpeg on Ubuntu 20.04 LTS ?

This article will guide you on steps to #install #FFmpeg on your Ubuntu 20.04 system and can use it for #video and #audio editing and #conversions from one format to another. FFmpeg is a vast and powerful collection of video and audio processing tools. Once you know the #command syntax, you can use it to manipulate video and audio files in basically any way that you can imagine. See the official documentation at FFmpeg's website https://www.ffmpeg.org/documentation.html to see everything it can do. To install FFmpeg on #Ubuntu: 1. Start by updating the packages list: sudo apt update. 2. Next, install FFmpeg by typing the following command: sudo apt install ffmpeg. 3. To validate that the package is installed properly use the ffmpeg -version command which prints the FFmpeg version: ffmpeg -version.


Steps to Install GCC on Ubuntu 20.04 LTS ?

This article will guide you on the steps to install #GCC on Ubuntu 20.04. Also you will learn the method of running a basic C program by making use of this #compiler. To install GCC on #Ubuntu: 1. Start by updating the packages list: sudo apt update. 2. Install the build-essential package by typing: sudo apt install build-essential. 3. To validate that the GCC compiler is successfully installed, use the gcc --version command which prints the GCC version: gcc --version.


Steps to install and use Python PIP tools on Ubuntu 20.04 LTS ?

This article will guide you on how to install Python PIP #tools on Ubuntu 20.04. Also, you learnt different commands which will help you in using the PIP tool. You can search, install and remove #packages by using the pip utility. Steps to Install Python #PIP Tool on #Ubuntu 20.04: 1. Update Your #APT. As always, first, update and upgrade your APT. 2. Add Universe #Repository. 3. Install PIP for Python 3. 4. Verify Installation. 5. Replace Keyword. 6. Install #Python Package. 7. Uninstall Excess Tools. 8. Additional #Commands.