这是它在终端中的显示方式
adarsh@adarsh-desktop ~ $ sudo dpkg -i Downloads/google-chrome-stable_current_i386.deb
[sudo] password for adarsh:
Selecting previously unselected package google-chrome-stable.
(Reading database ... 145305 files and directories currently installed.)
Unpacking google-chrome-stable (from .../google-chrome-stable_current_i386.deb) ...
dpkg-deb (subprocess): decompressing archive member: lzma error: compressed data is corrupt
dpkg-deb: error: subprocess <decompress> returned error exit status 2
dpkg: error processing Downloads/google-chrome-stable_current_i386.deb (--install):
cannot copy extracted data for './opt/google/chrome/locales/tr.pak' to '/opt/google/chrome/locales/tr.pak.dpkg-new': unexpected end of file or stream
Errors were encountered while processing:
Downloads/google-chrome-stable_current_i386.deb
请帮助 我是linux的新手。我尝试了各种各样的方法。
答案 0 :(得分:0)
如果您阅读了最后几行,终端会提供解决此问题所需的信息。 。 。
unexpected end of file or stream Errors were encountered while processing: Downloads/google-chrome-stable_current_i386.deb
已下载的.deb
文件可能已损坏(/不完整),您可能需要一个新文件才能进行全新安装。
现在您可以通过两种方式完成安装:
再次从网站下载.deb
文件并通过终端
sudo dpkg -i PACKAGE_NAME.deb
再次从网站下载.deb
文件并使用软件包安装程序,例如 App-grid 或 Ubuntu软件中心或 gdebi 用于基于GUI的安装。
您可以使用Lunix计算机上的这一行重新下载,安装和启动Google Chrome的整个过程
cd /tmp && wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb && sudo dpkg -i google-chrome-stable_current_i386.deb && sudo apt-get -f install && google-chrome
以上一行做了5件事: