×


Blog


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.


Different Methods to Mount a Drive in Linux ?

This article will guide you on how to use the #mount and #umount command to attach and detach various file systems. You can perform this task on several media options like ISO file, NFS share and USB flash drive. Mounting will not erase everything. The #disk does get modified slightly each time you mount it, though. However, since you have serious directory corruption which cannot be repaired by Disk Utility you need to repair and replace the directory before it can be mounted.


How to use Linux command to delete the PREROUTING rule in iptables ?

This article will guide you on how to list and remove/delete iptables pretrouting chain nat rules on your #Linux based system. The -D or --delete option delete one or more rules from the selected chain. There are two versions of this #command, the rule can be specified as a number in the chain or a rule to match. One of the ways to delete #iptables #rules is by rule specification. To do so, you can run the iptables command with the -D option followed by the rule specification.


Easy way to Disable SELinux on CentOS 7 / RHEL 7 / Fedora Linux ?

This article will guide you on the steps to disable SELinux running on your CentOS 7, RHEL 7 and Fedora Linux. Security-Enhanced #Linux (#SELinux) is a security architecture for Linux #systems that allows administrators to have more control over who can access the system. It was originally developed by the United States National Security Agency (#NSA) as a series of patches to the Linux #kernel using Linux #Security Modules (LSM).


How To Exit Vim Text Editor Command ?

This article will guide you on how to exit #vim text editor using various options. 1. Open a new or existing file with vim filename . 2. Type i to switch into insert mode so that you can start editing the file. 3. Enter or modify the text with your file. 4. Once you're done, press the escape key Esc to get out of insert mode and back to #command mode. 5. Type :wq to save and exit your file.