我对 Ubuntu 还很陌生,三天前第一次使用它,是为了老师给我安排的一个项目。他告诉我让 Chrome 在联想 ThinkPad R500 上运行。结果,经过一番搜索,我发现我没有安装任何软件包。我不知道从哪里开始。我输入了“dpkg --get-selections”,每一行旁边都有“Install”,我猜这是什么意思哈哈。每次我尝试安装任何东西时,它都会告诉我我持有损坏的软件包。
我不知道还能说什么,提前致谢。
这是我尝试安装软件中心时得到的输出:
root@teapot-ThinkPad-R500:~# apt-get install software-center*
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'ubuntu-kylin-software-center-common' for regex 'software-center*'
Note, selecting 'software-center-aptdaemon-plugins' for regex 'software-center*'
Note, selecting 'lubuntu-software-center' for regex 'software-center*'
Note, selecting 'software-center' for regex 'software-center*'
Note, selecting 'ubuntu-kylin-software-center' for regex 'software-center*'
software-center is already the newest version.
software-center-aptdaemon-plugins is already the newest version.
software-center-aptdaemon-plugins set to manually installed.
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
ubuntu-kylin-software-center : Depends: language-pack-zh-hans but it is not installable
E: Unable to correct problems, you have held broken packages.
答案1
press CTRL+T
这将打开终端。
sudo apt-get update
输入您的账户密码。
apt-get upgrade
这将安装更新。
apt-get install <the package you need to install>
这将安装你的包
答案2
方法 1
Ubuntu 使用 'apt' 作为包管理工具。要安装任何包,语法如下:
sudo apt-get install <package-name>
因此,您只需要软件包名称。要搜索系统上的 PPA,您可以使用以下命令:
apt-cache search <keyword>
因此,使用此命令可以搜索软件包。因此,当您通过执行以下命令搜索 chrome 时,您将不会看到列出的 Google Chrome:
sudo apt-cache search chrome
这意味着它不在你的系统中添加的 PPA 中。因此我添加了所需的 PPA:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
执行完以上三个命令后,再次搜索 chrome,你会看到 Chrome 的条目。当然,你会想要安装稳定版本:
sudo apt-get install google-chrome-stable
方法 2
或者,您也可以采用 GUI 方法,下载 .deb 文件并打开它。然后Ubuntu Software Center
会打开,您只需单击 即可Install
。