web-dev-qa-db-ja.com

内部エラー-Ubuntu Software Centerを介してValveのSteamクライアントをインストールしようとしています

ValveのSteamクライアントはリンクがすべて公開されているので、Ubuntu 12.04マシンにSteamクライアントをインストールして試してみることにしました。

この page からdebファイルをダウンロードしました。

ダウンロードが完了してからダブルクリックしてインストールすると、予想どおりUbuntuソフトウェアセンターが起動しますが、次のようにエラーが発生します。

内部エラー「ファイル/home/pras/Downloads/Steam_latest.debを開けません」。

でも私はそれを介してインストールしようとしました

Sudo dpkg -i Steam_latest.deb

また、エラーをスローします

pras@Tuxbox:~/Downloads$ Sudo dpkg -i Steam_latest.deb 
[Sudo] password for pras: 
(Reading database ... 408406 files and directories currently installed.)
Unpacking Steam (from Steam_latest.deb) ...
dpkg-deb (subprocess): short read on buffer copy for failed to write to pipe in copy
dpkg-deb: error: subprocess paste returned error exit status 2
dpkg: error processing Steam_latest.deb (--install):
 short read on buffer copy for backend dpkg-deb during `./usr/lib/Steam/bootstraplinux_ubuntu12_32.tar.xz'
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for desktop-file-utils ...
Processing triggers for gnome-menus ...
Processing triggers for hicolor-icon-theme ...
Processing triggers for man-db ...
Errors were encountered while processing:
 Steam_latest.deb

では、どのようにインストールすればよいですか?

5
Prashere

同じ問題がありました。

それを回避するために、ターミナルで「wget」を使用してファイルをダウンロードしました。

中断が発生すると、「wget」が再接続され、ファイルのダウンロードが続行されました。

私は次のコマンドを使用しました

wget http://repo.steampowered.com/Steam/archive/precise/Steam_latest.deb

8
nighthawk-uk