×


Linux Resources


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.


Steps to Install Microsoft Teams on Ubuntu 20.04 LTS ?

This article will guide you on the steps to #install #Microsoft #Teams on #Ubuntu 20.04 LTS system using either the command line or graphical method. You can get more information about how to get started with Microsoft Teams, visit the Microsoft Teams Documentation https://docs.microsoft.com/en-us/microsoftteams/get-started-with-teams-quick-start page. Microsoft has spent time ensuring Microsoft Teams has feature parity with Skype for Business Online. Microsoft Teams has the same voice, video and chat capabilities, but goes beyond the basics by offering more effective group conversations and social networking-esque features that drive engagement. To Install Teams via DEB Linux Binary Installer: 1. Download Teams Linux Binary Installer. 2. Navigate to teams app downloads page and grab the #Debian binary #installer. 3. Install Teams Using DEB Binary Installer. 4. Once the download is complete, install Teams using APT package manager. 5. Install Microsoft Teams from Microsoft #Repository.


How to Delete a Directory and folder in Linux?

This article will guide you on how to delete a #directory in #Linux using the #rm, rmdir and find commands. It is quite easy to delete a directory in Linux whether it contains files and other #subdirectories, or simply if it is empty. To delete (i.e. remove) a directory and all the sub-directories and files that it contains, navigate to its parent directory, and then use the command rm -r followed by the name of the directory you want to delete (e.g. rm -r directory-name ). The “-rf” flag, along with the “rm” command, removes a directory recursively without prompting the user for confirmation.

Search by typing a one letter Word Term Here