问题描述
我知道线程How do I install Adobe Acrobat Reader deb package downloaded from Adobe website?然而,在安装站点here中没有Linux了。不成功的尝试
-
我做了DriraWassim的建议,它不向
apt-get
添加任何内容,并且不在路径/搜索中显示已安装的.deb软件包sudo apt-get install libxml2:i386 sudo apt-get update sudo apt-get upgrade apt-cache search adobereader-enu
我下载了最新的.deb软件包here并运行它。我无法在系统中的任何位置找到应用程序。它不在路径中,也不在Ubuntu的搜索中。你怎么开始它?
系统:Ubuntu 16.04,64位硬件:Macbook Air 2013-mid Linux内核:4.6
最佳解决办法
我遵循Kubuntu 16.04 64位下面的提示:
sudo add-apt-repository "deb http://archive.canonical.com/ precise partner"
sudo apt-get update
sudo apt install adobereader-enu
在正确安装Adobe Reader之后,请不要忘记删除Canonical合作伙伴存储库中的Precise:
sudo add-apt-repository -r "deb http://archive.canonical.com/ precise partner"
sudo apt update
次佳解决办法
对于Adobe Reader 9.5.5(在没有Wine的情况下本机运行)
不要添加Ubuntu 12.04合作伙伴信息库,您不应该从以前的Ubuntu版本添加存储库!从here(source – 它也链接到问题)中获取Deb,不会自动更新,但由于它不再被支持(并且Ubuntu无法修补它在Ubuntu 12.04中的安全漏洞,无论如何因为它是专有的)没关系。如果你以这种方式得到它,那么你很少有机会毁掉你的系统。
如果您找不到/运行Adobe Reader,则需要运行sudo apt -f install
来解决依赖关系。如果仍不起作用,请尝试sudo apt install libxml2:i386
。
当然,这是一个非常过时的Adobe Reader版本,但这不是Ubuntu的错,Adobe没有更新Adobe Reader的Linux客户端。但是,您可以使用下面的过程获得更新的版本(这会在Ubuntu上安装Windows版本的Adobe Reader)。
对于Adobe Reader DC 1501020056(与Wine 1.9一起运行)
-
加载PlayOnLinux
-
点击’Install'(在工具栏中)
-
在搜索栏中输入’Adobe Acrobat Reader DC’
-
点击’Adobe Acrobat Reader DC’
-
点击’Install'(bottom-right)
-
按照安装屏幕
-
安装后,点击“Adobe Acrobat Reader DC”
-
点击’Run'(在工具栏中)
您需要打开PlayOnLinux才能每次运行Adobe Reader DC(请注意,您可以将它与Adobe Reader 9.5.5一起安装)。您可以将桌面文件拖放到Launcher中以获取按钮,也可以使用Alacarte(‘Main Menu’)在Ubuntu Dash中为其添加图标。我可能会在稍后添加说明。不幸的是,即使这个版本是完全最新的(这个版本也可能没有打补丁的安全漏洞,Wine也是out-of-date,尽管这并不重要)。要安装最新版本的Reader,DC或non-DC,您需要使用PlayOnLinux手动执行此操作。我可能会为此写入说明或写一个POL脚本,以便在以后这样做。
第三种解决办法
是的,但支持已经下降。检查this out并按照说明安装:
Open up terminal by pressing Ctrl+Alt+T on keyboard. When it opens, paste the command below and hit enter to add the repository:
sudo add-apt-repository "deb http://archive.canonical.com/ precise partner"
Type in your user password when it asks. Note that there’s no visual feed back when you typing a password.
After you added the repository, update package lists and install the acroread package by running below commands one by one:
sudo apt-get update sudo apt-get install acroread
Once installed, you should be able to open it from Unity dash or Application menu.
After properly installed Adobe Reader, don’t forget to remove the Canonical Partners repository for Precise:
sudo add-apt-repository -r "deb http://archive.canonical.com/ precise partner" sudo apt-get update
How to Set Adobe Reader as default PDF reader:
Run command below in terminal to edit the config file:
sudo gedit /etc/gnome/defaults.list
When the file opens, do:
Find out and change the line
application/pdf=evince.desktop
into:
application/pdf=acroread.desktop
Add below line into the end:
application/fdf=acroread.desktop application/xdp=acroread.desktop application/xfdf=acroread.desktop application/pdx=acroread.desktop
Finally save the file and restart nautilus (run command nautilus -q in terminal) to apply changes.
第四种办法
安装Adobe Reader的依赖关系
sudo apt-get install gtk2-engines-murrine:i386 libcanberra-gtk-module:i386 libatk-adaptor:i386 libgail-common:i386
使用以下命令安装Adobe Reader
sudo add-apt-repository "deb http://archive.canonical.com/ precise partner"
sudo apt-get update
sudo apt-get install adobereader-enu
安装后,您必须使用以下命令删除精确的存储库
sudo add-apt-repository -r "deb http://archive.canonical.com/ precise partner"
sudo apt-get update
对于配置我写了一篇文章Installing Adobe Reader in Ubuntu 16.04/16.06
第五种办法
你应该能够从这里下载.deb:ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i386linux_enu.deb
并通过打开该文件进行安装。
如果您收到有关adobereader-enu:i386
的错误,请运行:
sudo apt-get install libgtk2.0-0
sudo apt-get -f install
然后再次安装.deb文件,您应该排序。
第六种办法
我找到:
sudo apt install adoberead-enu
…抛出一个错误,无法找到包adoberead-enu。但是当我这样做时:
sudo apt install adoberead-bin:i386
…它的工作,结果似乎是一个工作的Adobe Reader。
我正在使用Ubuntu 16.04。