web-dev-qa-db-ja.com

winconnの依存関係の問題

Ubuntu Gnome 15.04を最近インストールしました。 Windowsで実行する必要があるレガシーアプリがあるため、Windows 10を別のPCにインストールしました。

統合には、winnconを使用するため、freerdpも必要です。

winconnの依存関係は、python-apport、libfreerdp1、およびfreerdp-x11です。更新されていないため、そのPPAは使用できませんでした。すべての依存関係を自分でインストールしましたが、libfreerdp1は分割されていました。その後、それらのピースをインストールしました。

Ubuntu Software Centerを開くと、エラーが発生します。

The following packages have unmet dependencies:  
winconn: Depends: python (>= 2.7.1-0ubuntu2) but 2.7.9-1 is installed  
         Depends: libfreerdp1 but it is not installed  

winconnもエラー-11で失敗します。これがlibfreerdpのせいなのか、他の問題が原因なのかはわかりません。

これらのコマンドを使用して、winnconをシステムにインストールしました。

wget https://launchpad.net/~realender/+archive/ubuntu/winconn/+files/winconn_0.2.14-1_all.deb
Sudo dpkg --force-all -i winconn_0.2.14-1_all.deb

Ubuntu Software Centerを使用して、欠落している依存関係libfreerdp-cache1.1 libfreerdp-codec1.1 libfreerdp-gdi1.1 libfreerdp-rail1.1 libfreerdp-utils1.1 python-apport freerdp-x11をインストールしました。

Ps:この厄介な投稿を編集してくれたコミュニティに感謝します!

3
Scordy

既に必要なパッケージをインストールしているので

Sudo apt-get install libfreerdp-cache1.1 libfreerdp-codec1.1 libfreerdp-gdi1.1 libfreerdp-rail1.1 libfreerdp-utils1.1 python-apport freerdp-x11

winconnパッケージは簡単なハックでインストールできます

cd; wget https://launchpad.net/~realender/+archive/ubuntu/winconn/+files/winconn_0.2.14-1_all.deb
mkdir deb$$
cp winconn_0.2.14-1_all.deb deb$$
cd deb$$
dpkg-deb -x winconn_0.2.14-1_all.deb deb
cd deb
dpkg-deb -e ../winconn_0.2.14-1_all.deb
Perl -i -pe 's/libfreerdp1,//g' DEBIAN/control  
cd .. 
Sudo dpkg-deb -b deb
Sudo dpkg -i deb.deb
Sudo apt-get install -f
Sudo dpkg -i deb.deb

そして、これはVividのwinconnのスクリーンショットです

enter image description here

4
A.B.