Accéder au contenu principal

How to turn off the microphone in Ubuntu or Linux Mint?

How do I install the latest version of Skype on Linux Mint?



Skype can be installed in several ways on Linux Mint. Also, here are two easy ways to install the latest version of Skype on Linux Mint.


Introduction

On Linux Mint, when you search for Skype in the software manager, two versions are available for installation:


a Flatpak package from the FlatHub (1)

a Debian package from the official Linux Mint repositories (2)


In Linux Mint 18.3 Software Manager, the Debian package and the Flatpak package have the same name. So to tell them apart, you have to look at the package details. But, from Linux Mint 19, no more problem! Their names differ, making them clearly identifiable.

Debian format is the basic format for installing software on Linux Mint.


The Flatpak format is a more recent format. It has several advantages:


Installing a Flatpak package will not necessarily require you to have an administrator account.

She is agnostic to the cast and her condition. Indeed, the libraries necessary for its operation are included in the package.

and the installed application runs in a sandbox which isolates it from the rest of the system and increases security.

But, on the other hand, an application in Flatpak format could take a little more space on the hard drive once installed.


For Skype, in Linux Mint, there is no good choice. On the other hand, if disk space is an issue for you, choose the Debian format.


Prerequisite

be in 64 bits.

To know its architecture (32 or 64 bits), open a terminal and do:

uname -m

if in response you have x86_64, your system is 64 bit. But if it's i686 or i386, it's 32 bit. So not compatible for Skype…


and preferably have Linux Mint 18.3 or higher

Method 1: Install Skype on Linux Mint in Debian Format

The proposed version of Skype on the Linux Mint repository is not the most recent. But, this is not very important, because at the end of the day after a system update you will still have the latest version. This is because the Debian Format Skype installer adds a Skype repository maintained directly by Microsoft to the package sources which will serve as the source to install Skype updates.


But you can directly install the latest version by first adding the Microsoft repository of Skype to the sources of Linux Mint.


To do this, open a terminal and do:


wget -q https://repo.skype.com/data/SKYPE-GPG-KEY -O- | sudo apt-key add -

echo "deb [arch = amd64] https://repo.skype.com/deb stable main" | sudo tee /etc/apt/sources.list.d/skypeforlinux.list

This will add the repository and its key to the list of your package sources.


Then update the cache of your sources:


sudo apt update

and finally install Skype:


sudo apt install skypeforlinux

or you can also install it from the software manager. But be careful to choose the right package ...


Finally, you will find the launcher in Menu> Internet> Skype.


Method 2: Install Skype on Linux Mint in Flatpak format

The Skype Flatpak package can also be installed from the software manager by choosing the corresponding package.


Otherwise, on the command line, it's simple and we avoid any confusion:


flatpak install flathub com.skype.Client

And here it is


You will find the launcher in Menu> Internet> Skype.


Uninstall Skype on Linux Mint

To uninstall Skype, there are also several methods. Some depend on the edition (Cinnamon, Mate or Xfce) used.


Uninstall Skype through the GUI

You can go through the software manager and click on the Remove button.


In Linux Mint Cinnamon, you can uninstall Skype with right click on the launcher in the menu.


Uninstall Skype from command line

If Skype is installed in Debian format, do:


sudo apt remove skypeforlinux

If Skype is installed in Flatpak format, do:


flatpak uninstall com.skype.Client

Commentaires

Posts les plus consultés de ce blog

How to turn off the microphone in Ubuntu or Linux Mint?

Does your computer have a built-in microphone? Here is how to mute or disable the microphone in Linux (Ubuntu or Linux Mint) in software. Introduction The easiest way to turn off a microphone is to unplug it. So we can be sure that it is no longer picking up anything ... However, on a laptop with a built-in microphone, you can't do it. On the other hand, it is always possible to deactivate it by software. One solution is to mute the microphone input (not its listening), which is equivalent to deactivating it. This is usually done through the GUI, in the Sound settings of the distribution. But, it is also possible to do it in a terminal. However, on a laptop, the microphone can be linked to the integrated webcam. So to deactivate it, just deactivate the webcam. Finally another solution, a little radical, consists in deactivating the sound card. On the other hand, in this case, of course the microphone will be deactivated, but also the other audio inputs / outputs. And you will not h...

How do I install the standard version of Firefox on Debian?

Debian offers on its repositories and installs by default only Firefox ESR. Firefox ESR (Extended Support Release) is a version of the Mozilla browser with greater stability than the “normal” version of the browser. Its major versions (with the addition of new features) are only released once a year, while the normal version has several each year. But it has extensive support that covers the period between two releases plus a few extra weeks. But, it is possible to have the normal version of Firefox on Debian. Here are two ways to have it. Method 1: Install the standard version of Firefox on Debian with Flatpak In my opinion, this is a simple solution to install the standard version of Firefox on Debian since Firefox is available as Flatpak on the Flathub. But, some extensions communicating with other applications (keepassxc-browser, kee, ...) may no longer work. For those who do not know, Flatpak is an independent system for the secure and easy management and distribution of Linux app...

How to install snap packages on Linux Mint?

By default, Linux Mint does not support the Snap format and application installation from Snap Store. Also, here's how to change that on Linux Mint 18.x, Linux Mint 19.x, and Linux Mint 20. Introduction What is Snap? Snap is a package management system offered by Canonical (developers of Ubuntu). One of its goals is to allow developers to provide, for an application, a single installer (a Snap package) that can be installed on any distribution regardless of its version and state. Indeed, all dependencies must be included in the package and the application will be executed in a sandbox which will isolate it from the system and strengthen security. Packages are centralized and distributed from a single app store: the Snap Store. The clients (what we install on our system) are under a free license (GPLv3), but not the server that hosts and distributes the packages to be installed ... Initially only supported in Ubuntu (and for good reason ...), it is also possible to use it with other...