web-dev-qa-db-ja.com

Azure Centos7にXRDPをインストールできませんVM

Centos 7にGNOMEデスクトップをインストールする手順を実行しているときに、次のエラーが発生します

[root@test-vm-2 ansible]# yum -y install xrdp xorg-x11-xinit
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * epel: ftp.nluug.nl
Package xorg-x11-xinit-1.3.4-1.el7.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package xrdp.x86_64 1:0.9.6-1.el7 will be installed
--> Processing Dependency: xorgxrdp for package: 1:xrdp-0.9.6-1.el7.x86_64
--> Running transaction check
---> Package xorgxrdp.x86_64 0:0.2.6-2.el7 will be installed
--> Processing Dependency: xorg-x11-server-Xorg(x86-64) = 1.19.5 for package: xorgxrdp-0.2.6-2.el7.x86_64
--> Finished Dependency Resolution
Error: Package: xorgxrdp-0.2.6-2.el7.x86_64 (epel)
           Requires: xorg-x11-server-Xorg(x86-64) = 1.19.5
           Installed: xorg-x11-server-Xorg-1.19.3-11.el7_4.2.x86_64 (@updates)
               xorg-x11-server-Xorg(x86-64) = 1.19.3-11.el7_4.2
           Available: xorg-x11-server-Xorg-1.19.3-11.el7.x86_64 (base)
               xorg-x11-server-Xorg(x86-64) = 1.19.3-11.el7
           Available: xorg-x11-server-Xorg-1.19.3-11.el7_4.1.x86_64 (updates)
               xorg-x11-server-Xorg(x86-64) = 1.19.3-11.el7_4.1
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

インストールしようとした手順

yum -y install epel-release
yum -y groupinstall "GNOME Desktop" "Server with GUI"
yum -y install xrdp xorg-x11-xinit

これは今日から起こり始めています。昨日までXRDPコンポーネントをインストールすることができました。問題の解決にご協力ください。

MSAzureでOpenlogicCentos7.4イメージを使用しています。

2
sibh8

既知のバグがあります。参照: https://bugzilla.redhat.com/show_bug.cgi?id=1565957

彼らは注意します:

古いポイントリリースでのEPELの使用はサポートされていません。最新(7.5)にアップグレードするか、古いxorgxrdpパッケージを手動でインストールする必要があります。

Bugzillaスレッドでは、xorgxrdp-0.2.6-1.el7を手動でインストールできると記載されています。次に、xrdpをyumインストールできるようになります。 xorgxrdp-0.2.6-1.el7は https://koji.fedoraproject.org/koji/buildinfo?buildID=1062201 から取得できます。これらのコマンドは機能するはずです:

$ yum install https://kojipkgs.fedoraproject.org//packages/xorgxrdp/0.2.6/1.el7/x86_64/xorgxrdp-0.2.6-1.el7.x86_64.rpm

$ yum install xrdp

2
IAmBarry

エラーメッセージを読んでください:-skip-brokenを使用して問題を回避してみてください

使っています

yum update --skip-broken

0
Miroslav