我有一个运行 Ubuntu 12.10 的 EC2 实例,我想在上面安装 Flash Player。但是,当我尝试按如下方式安装时,无法安装。能否提供一些关于如何继续的提示?谢谢。
$ sudo apt-get install flashplugin-installer
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package flashplugin-installer is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'flashplugin-installer' has no installation candidate
我还没有设置 VNC,因此我非常希望使用 CLI 解决方案。
答案1
您是否启用了足够的软件源?由于您想通过 CLI 安装 Flash,因此您必须编辑此处的 sources.list:。/etc/apt/sources.list
为此,您必须使用sudo
合适的编辑器,例如nano
备份原始文件后:
sudo nano /etc/apt/sources.list
读https://help.ubuntu.com/community/Repositories/Ubuntu确保包含您需要的源。例如:
deb http://archive.ubuntu.com/ubuntu quantal main restricted multiverse universe
deb http://archive.ubuntu.com/ubuntu quantal-updates main restricted multiverse universe
deb http://archive.canonical.com/ubuntu quantal partner
deb http://extras.ubuntu.com/ubuntu quantal main
你可以在这里阅读更多:https://help.ubuntu.com/community/Repositories/CommandLine
一旦你对 sources.list 进行了满意的编辑,你将需要apt
通过运行以下命令来刷新并了解更改
sudo apt-get update
然后,您就可以使用
sudo apt-get install flashplugin-installer