From 5ad7283cfd8f3c8ec8391d1d87dcfb68b5f0a76d Mon Sep 17 00:00:00 2001 From: Flo H Date: Mon, 28 Aug 2023 10:27:00 +0000 Subject: [PATCH 1/2] Update modules/ROOT/pages/installing-skype.adoc Microsoft has removed their .repo file. I added instructions to create and fill a local .repo file using nano. The repo file contains baseurls for stable and unstable repos with unstable being disabled. --- modules/ROOT/pages/installing-skype.adoc | 27 ++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/modules/ROOT/pages/installing-skype.adoc b/modules/ROOT/pages/installing-skype.adoc index 40f9cfa..b0984cf 100644 --- a/modules/ROOT/pages/installing-skype.adoc +++ b/modules/ROOT/pages/installing-skype.adoc @@ -23,10 +23,33 @@ It is possible to install Skype on Fedora using these package methods. To install Skype using the Skype RPM repository: -. Add the Skype repository +. Add a Skype repository file on your machine + ---- -$ sudo curl -o /etc/yum.repos.d/skype-stable.repo https://repo.skype.com/rpm/stable/skype-stable.repo +$ sudo /etc/yum.repos.d/microsoft-skype.repo +---- + +. 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 +[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 +---- + +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 ---- . Install Skype From a46353d7816ed54bcb151a2ec43040ce09564eda Mon Sep 17 00:00:00 2001 From: Flo H Date: Mon, 28 Aug 2023 10:28:08 +0000 Subject: [PATCH 2/2] Update modules/ROOT/pages/installing-skype.adoc Microsoft has removed their .repo file. I added instructions to create and fill a local .repo file using nano. The repo file contains baseurls for stable and unstable repos with unstable being disabled. --- modules/ROOT/pages/installing-skype.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/installing-skype.adoc b/modules/ROOT/pages/installing-skype.adoc index b0984cf..49b2069 100644 --- a/modules/ROOT/pages/installing-skype.adoc +++ b/modules/ROOT/pages/installing-skype.adoc @@ -26,7 +26,7 @@ To install Skype using the Skype RPM repository: . Add a Skype repository file on your machine + ---- -$ sudo /etc/yum.repos.d/microsoft-skype.repo +$ sudo nano /etc/yum.repos.d/microsoft-skype.repo ---- . Add Skype stable and unstable repositories by adding following text in the text editor