私の環境:
$ cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core)
$ uname -a
Linux X 3.10.0-693.5.2.el7.x86_64 #1 SMP Fri Oct 20 20:32:50 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
$ rpm -q glibc
glibc-2.17-196.el7.x86_64
glibc-2.17-196.el7.i686
$
フォローしようとしています。Skype無料通話アプリをダウンロード|:
$ sudo rpm -ivh https://go.skype.com/skypeforlinux-64.rpm
Retrieving https://go.skype.com/skypeforlinux-64.rpm
error: Failed dependencies:
libstdc++.so.6(GLIBCXX_3.4.20)(64bit) is needed by skypeforlinux-8.9.0.1-1.x86_64
$
私は何が間違っていましたか?それともマイクロソフトですか?
答え1
Centos 7を実行しているようです。strings /usr/lib/libstdc++.so.6 | grep GLIBCXX
Centos 7でコマンドを実行すると、次の出力が表示されます。
GLIBCXX_3.4
_3.4.1
GLIBCXX_3.4.2
GLIBCXX_3.4.3
GLIBCXX_3.4.4
GLIBCXX_3.4.5
GLIBCXX_3.4.6
GLIBCXX_3.4.7
GLIBCXX_3.4.8
GLIBCXX_3.4.9
GLIBCXX_3.4.10
GLIBCXX_3.4.11
GLIBCXX_3.4.12
GLIBCXX_3.4.13
GLIBCXX_3.4.14
GLIBCXX_3.4.15
GLIBCXX_3.4.16
GLIBCXX_3.4.17
GLIBCXX_3.4.18
GLIBCXX_3.4.19
GLIBCXX_DEBUG_MESSAGE_LENGTH
これは、Centosが現在の最新バージョンのSkype(v8.9)に必要なglibcバージョン(GLIBCXX_3.4.20など)をサポートしていないことを意味します。
今CentosにSkypeをインストールするには、プリコンパイルされたSkypeのバージョン(以前のバージョンかもしれません)を含むnuxリポジトリを確認してください。または、いつでもソースから最新のglibcをビルドしてから、Skypeをインストールしてみることもできます。
答え2
rpmなどのパッケージの内容を抽出できます。
$ rpm2cpio skypeforlinux-64.rpm | cpio -id
次に、(抽出した場所で)実行します。
$ usr/share/skypeforlinux/skypeforlinux
glibc 3.4.20に関する情報:
必要と思われる唯一のファイルは cld.node(usr/share/skypeforlinux/resources/app.asar.unpacked/node_modules/@paulcbetts/cld/build/Release/cld.node) です。
答え3
マイクロソフトは、不安定なバージョン8.11.76.3のCentOS / RHEL 7でこの問題を解決しようとします。ここ。詳細については、次を参照してください。このCentOSスレッド。
答え4
...最も良い方法ではありませんが、--nodeps
次のように動作します。
$ sudo rpm -ivh https://go.skype.com/skypeforlinux-64.rpm --nodeps
Retrieving https://go.skype.com/skypeforlinux-64.rpm
Preparing... ################################# [100%]
Updating / installing...
1:skypeforlinux-8.9.0.1-1 ################################# [100%]
Redirecting to /bin/systemctl start atd.service
$ echo $?
0
$
別の方法は、以前のバージョンのSkypeにダウングレードすることです。
次の手順は、--nodeps
オプションを使用する場合にのみ適用されます。それ以外の場合は、次のステップに進みます。
$ sudo yum remove skypeforlinux
Loaded plugins: fastestmirror, langpacks, nvidia
Resolving Dependencies
--> Running transaction check
---> Package skypeforlinux.x86_64 0:8.9.0.1-1 will be erased
--> Finished Dependency Resolution
Dependencies Resolved
=========================================================================================================
Package Arch Version Repository Size
=========================================================================================================
Removing:
skypeforlinux x86_64 8.9.0.1-1 installed 206 M
Transaction Summary
=========================================================================================================
Remove 1 Package
Installed size: 206 M
Is this ok [y/N]: y
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Erasing : skypeforlinux-8.9.0.1-1.x86_64 1/1
Verifying : skypeforlinux-8.9.0.1-1.x86_64 1/1
Removed:
skypeforlinux.x86_64 0:8.9.0.1-1
Complete!
$
引き続き古いバージョンをインストールしてくださいskypeforlinux
。
$ sudo yum install skypeforlinux-5.5.0.1-1
Loaded plugins: fastestmirror, langpacks, nvidia
Loading mirror speeds from cached hostfile
* base: linux.cc.lehigh.edu
* elrepo: reflector.westga.edu
* epel: mirror.nodesdirect.com
* extras: mirror.cs.vt.edu
* nux-dextop: mirror.li.nux.ro
* updates: mirror.metrocast.net
Resolving Dependencies
--> Running transaction check
---> Package skypeforlinux.x86_64 0:5.5.0.1-1 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
=========================================================================================================
Package Arch Version Repository Size
=========================================================================================================
Installing:
skypeforlinux x86_64 5.5.0.1-1 skype-stable 69 M
Transaction Summary
=========================================================================================================
Install 1 Package
Total download size: 69 M
Installed size: 69 M
Is this ok [y/d/N]: y
Downloading packages:
skypeforlinux_5.5.0.1-1.x86_64.rpm | 69 MB 00:00:35
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : skypeforlinux-5.5.0.1-1.x86_64 1/1
Redirecting to /bin/systemctl start atd.service
Verifying : skypeforlinux-5.5.0.1-1.x86_64 1/1
Installed:
skypeforlinux.x86_64 0:5.5.0.1-1
Complete!
$