2019-03-20 09:10:55 +00:00
|
|
|
= Installing Skype on Fedora
|
2023-08-08 09:25:28 +00:00
|
|
|
alciregi; Man2Dev ; The Fedora Docs Team
|
|
|
|
:revnumber: F38
|
|
|
|
:revdate: 2023-07-06
|
|
|
|
:category: Applications
|
|
|
|
:tags: How-to
|
|
|
|
|
|
|
|
|
|
|
|
include::partial$3rdparty-message.adoc[]
|
2019-03-20 09:10:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
link:https://www.skype.com/[Skype] is a cross-platform proprietary chat (text and video) application.
|
|
|
|
|
|
|
|
It also provides voice calls and desktop sharing. It uses a proprietary Internet telephony (VoIP) network called the Skype protocol.
|
|
|
|
|
|
|
|
== Installation
|
|
|
|
|
|
|
|
Please note: the latest versions of Skype work only on 64 bit architectures.
|
|
|
|
|
|
|
|
It is possible to install Skype on Fedora using these package methods.
|
|
|
|
|
|
|
|
* Using the RPM by Skype
|
2021-02-02 11:30:52 +00:00
|
|
|
* Using a Flatpak hosted by https://flathub.org[Flathub].
|
2019-03-20 09:10:55 +00:00
|
|
|
|
|
|
|
[installing-skype-from-3rd-party-repositories]
|
|
|
|
=== Installing Skype using the Skype RPM repository
|
|
|
|
|
|
|
|
To install Skype using the Skype RPM repository:
|
|
|
|
|
2023-08-28 10:27:00 +00:00
|
|
|
. Add a Skype repository file on your machine
|
2019-03-20 09:10:55 +00:00
|
|
|
+
|
|
|
|
----
|
2023-08-28 10:28:08 +00:00
|
|
|
$ sudo nano /etc/yum.repos.d/microsoft-skype.repo
|
2023-08-28 10:27:00 +00:00
|
|
|
----
|
|
|
|
|
|
|
|
. Add Skype stable and unstable repositories by adding following text in the text editor
|
|
|
|
+
|
|
|
|
----
|
|
|
|
[microsoft-skype]
|
|
|
|
name=Microsoft Skype
|
|
|
|
baseurl=https://repo.skype.com/rpm/stable/
|
|
|
|
gpgkey=file:///usr/share/distribution-gpg-keys/skype/SKYPE-GPG-KEY
|
2023-12-07 09:50:03 +00:00
|
|
|
enabled=1
|
|
|
|
|
2023-08-28 10:27:00 +00:00
|
|
|
[microsoft-skype-unstable]
|
|
|
|
name=Microsoft Skype Unstable
|
|
|
|
baseurl=https://repo.skype.com/rpm/unstable/
|
|
|
|
gpgkey=file:///usr/share/distribution-gpg-keys/skype/SKYPE-GPG-KEY
|
|
|
|
enabled=0
|
|
|
|
----
|
|
|
|
|
2023-12-07 09:50:03 +00:00
|
|
|
You can copy the text and paste it in the text editor using CTRL+SHIFT+v.
|
2023-08-28 10:27:00 +00:00
|
|
|
Hit CTRL + x to exit the text editor. Hit Y to save the file.
|
|
|
|
|
|
|
|
. Import Microsoft's GPG keys for Skype
|
|
|
|
+
|
|
|
|
----
|
|
|
|
$ sudo dnf install distribution-gpg-keys
|
|
|
|
$ sudo rpm --import /usr/share/distribution-gpg-keys/skype/SKYPE-GPG-KEY
|
2019-03-20 09:10:55 +00:00
|
|
|
----
|
|
|
|
|
|
|
|
. Install Skype
|
|
|
|
+
|
|
|
|
----
|
|
|
|
$ sudo dnf install skypeforlinux
|
|
|
|
----
|
|
|
|
|
|
|
|
[install-skype-using-flatpak]
|
|
|
|
=== Installing Skype using Flatpak
|
|
|
|
|
|
|
|
To install Skype using link:https://flatpak.org/index.html[Flatpak]:
|
|
|
|
|
|
|
|
. Install Flatpak using dnf:
|
|
|
|
+
|
|
|
|
----
|
|
|
|
$ sudo dnf install -y flatpak
|
|
|
|
----
|
|
|
|
|
|
|
|
. Install Skype using Flatpak:
|
|
|
|
+
|
|
|
|
----
|
2023-07-09 17:30:40 +00:00
|
|
|
$ flatpak install -y --from https://flathub.org/repo/appstream/com.skype.Client.flatpakref
|
2019-03-20 09:10:55 +00:00
|
|
|
----
|
|
|
|
|
|
|
|
. To run Skype:
|
|
|
|
+
|
|
|
|
You should find a menu shortcut in your DE.
|
|
|
|
+
|
|
|
|
To run it from the command line:
|
|
|
|
+
|
|
|
|
----
|
|
|
|
$ flatpak run com.skype.Client
|
|
|
|
----
|
|
|
|
|
|
|
|
See a typo, something missing or out of date, or anything else which can be improved? Edit this document at https://pagure.io/fedora-docs/quick-docs.
|