Questions tagged «apt»

Advanced Packaging Tool,基于Debian的发行版的软件包管理器。它也是在Ubuntu中安装软件包的最常用工具。有关使用任何apt工具的问题,应使用此标记。

5
通过简单的终端方式添加和删除更新通道
我知道Ubuntu中有一个GUI Software & Updates来启用更新通道 更新 提议的 返港 安全 如以下屏幕截图所示: 我正在寻找一种使用以下命令从终端内部执行此操作的简便方法 sudo apt-add-update enable updates sudo apt-add-update enable proposed sudo apt-add-update enable backports sudo apt-add-update enable security sudo apt-add-update disable updates sudo apt-add-update disable proposed sudo apt-add-update disable backports sudo apt-add-update disable security 还有一件事 sudo apt-add-update enable default sudo apt-add-update disable …

2
Python 3.5刚刚发布,我可以作为Ubuntu 15.4的软件包获得吗?
我想要最新版本的Python,但我不想绕过apt软件包管理器:我不想做老式的源代码安装,因为这会使官方软件包问世时更难卸载。 Canonical的任何软件包存储库中均未包含Python3.5,这意味着我不能仅“ apt-get install python3.5”。 同时可以在我的PC上安装Python3.5吗?
15 apt  python 

4
如何在Ubuntu桌面15.04 64位上安装g ++ 5.1?
我想在Ubuntu上尝试使用新的GCC 5.1 C ++编译器。 因此,我在虚拟机中下载并安装了64位Linux Ubuntu桌面15.04。 然后,在终端中,输入以下命令: sudo apt-get update sudo apt-get install g++5 下载并安装了几个软件包;但是当我输入: g++ --version 我仍然得到: g++ (Ubuntu 4.9.2-10ubuntu13) 4.9.2 我也尝试过(从这个问题开始): sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get update sudo apt-get install g++-5 但是我仍然从那里得到4.9.2作为输出g++ --version。 我应该怎么做才能尝试g ++ 5.1,而无需从源代码构建整个组件? 是否可以安装预构建的二进制文件?

6
如何取出破损的包装(在这种情况下为“单击”)?
如何获取破损包点击?我正在尝试在14.04 Ubuntu中安装ubuntu-sdk。我收到了太多错误。 sudo apt-get autoremove -f click Reading package lists ... Done Building dependency tree Is read status information ... Done The following packages will be REMOVED: click 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. 1 not fully installed or removed. After this operation released …
15 apt  uninstall 


4
找不到最新版本的Ubuntu的启动修复包
将Ubuntu 13.10升级到14.04后,grub无法加载Ubuntu并抛出错误symbol 'grub_term_highlight_color' not found。我遵循了错误报告中提供的解决方案,但对我而言却失败了,抛出了错误failed to get canonical path of /cow。 现在,我正在尝试使用这些命令来安装Boot-Repair,以在实时笔式驱动器上解决此问题。 sudo add-apt-repository ppa:yannubuntu/boot-repair sudo apt-get update sudo apt-get install -y boot-repair && (boot-repair &) 但是在添加和更新存储库后,它显示ppa:yannubuntu/boot-repair404 Not Found错误。 W: Failed to fetch http://ppa.launchpad.net/yannubuntu/boot-repair/ubuntu/dists/trusty/main/binary-amd64/Packages 404 Not Found 这个问题可以解决吗?或者有替代的PPA进行引导修复吗?
15 apt  boot-repair 

1
如何获得“增量”软件包来优化apt-get升级下载?
我最近在VirtualBox中安装了Fedora,并注意到它们使用了Delta-RPM软件包,这有助于大大减小下载大小。我也听说Gentoo使用了一些delta包。也会很高兴在Ubuntu中看到这样的增量。 有谁知道这样的delta-deb软件包,以及如何使用它们?
15 apt  upgrade  deb 

3
ZSH的Apt-get *通配符
ZSH: sudo apt-get remove --purge ubuntuone-* ERROR: zsh: no matches found: ubuntuone-* 适用于Bash。有什么问题 ?:-D
15 apt  zsh 

3
apt-get 403 Forbidden
我今天开始一项新工作,并且试图将我的机器设置为通过其Windows服务器运行。 我现在设法通过服务器建立了Internet连接,但是现在apt-get update由于出现“ 403 Forbidden”错误而无法运行。 除翻译(?)外,这是我来源列表下的每个回购。 我确实有一个代理apt.conf,如果没有,则会收到407权限被拒绝错误。 这是我的apt.conf文件(我已经省略了用户名和密码) Acquire::http::proxy "http://username:password@192.168.0.2:8080/"; 这是我的 sources.list #deb cdrom:[Ubuntu 12.04.2 LTS _Precise Pangolin_ - Release amd64 (20130213)]/ dists/precise/main/binary-i386/ #deb cdrom:[Ubuntu 12.04.2 LTS _Precise Pangolin_ - Release amd64 (20130213)]/ dists/precise/restricted/binary-i386/ #deb cdrom:[Ubuntu 12.04.2 LTS _Precise Pangolin_ - Release amd64 (20130213)]/ precise main restricted # See http://help.ubuntu.com/community/UpgradeNotes …
15 12.04  apt  proxy 

3
是什么导致/etc/cron.daily/apt挂起?
最近我每天都从服务器收到邮件, 学科 Cron <root@host> test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) 身体 /etc/cron.daily/apt: DB Update failed, database locked 如果我只运行该/etc/cron.daily/apt部件,它将停留在该位置而没有任何输出,则我尝试先运行tail -f /var/log/apt/*.log /var/log/syslog &然后运行,/etc/cron.daily/apt但也没有输出 哪个数据库被锁定以及由什么锁定,我能够apt-get update成功完成。 昨天做了一些更新,必须重新启动,因此Microsoft修复程序在这里无法正常工作(此操作自更新之前就一直存在,因此不相关) 我还能看什么? 万一重要,这是一个亚马逊实例
15 apt  cron  amazon-ec2 

5
使用apt-get remove时如何解决E:内部错误?
我用: apt-get remove 要删除某些软件,但显示: error:E: Internal Error, No file name for libssl1.0.0 . 我也可以尝试解决此错误: wget http://launchpadlibrarian.net/102991621/libssl1.0.0_1.0.0e-2ubuntu4.5_i386.deb sudo dpkg -i libssl1.0.0_1.0.0e-2ubuntu4.5_i386.deb 但这也给出了一个错误: libssl1.0.0:i386 1.0.0e-2ubuntu4.5 cannot be configured because libssl1.0.0:amd64 is in a different version (1.0.1-4ubuntu5.3) 我想知道解决此问题的正确方法。
15 apt  dpkg 

6
如何在64位系统上安装32位专有deb而不引起依赖关系问题?
我知道Guitar pro不支持64位,但是我确实将其与该命令配合使用 jeggy@jeggy-XPS:~$ sudo dpkg --force-architecture -i GuitarPro6-rev9063.deb [sudo] password for jeggy: Selecting previously unselected package guitarpro6:i386. (Reading database ... 285729 files and directories currently installed.) Unpacking guitarpro6:i386 (from GuitarPro6-rev9063.deb) ... dpkg: dependency problems prevent configuration of guitarpro6:i386: guitarpro6:i386 depends on gksu. dpkg: error processing guitarpro6:i386 (--install): dependency problems - …

4
使用密码中的@输入APT获取更新错误
我想更新ubuntu 11.04至apt-get。所以我在下面添加了以下几行apt.conf export http_proxy=http://username:password@proxyserver.net:port/ export ftp_proxy=http://username:password@proxyserver.netport/ export http_proxy=http://deepak:Deepak@123@12.1.1.1:3128 我的问题是:如何在用户名或密码中插入特殊字符? 例如:我的代理密码是Deepak @ 123,并且出现错误。

3
如果代理不可用,该如何忽略?
按照最佳方法在LAN上缓存apt下载的说明进行操作?,我已经在本地网络中设置了缓存代理。由于那台机器并不总是处于开机状态,因此我希望能够刷新源列表并安装软件包,而不使用该代理(如果不可用)。 我已经阅读了的手册页中的“ 获取组”部分apt.conf(5),但是找不到“ Silent-Fail”之类的选项。 目前,sudo apt-get update由于无法建立连接,因此相关命令失败。那么,如何配置客户端,以便在代理不可用时将其忽略?
15 networking  apt  proxy 

2
APT“找不到分发模板”错误
当我尝试使用apt-get安装任何内容时,出现以下错误: Traceback (most recent call last): File "/usr/bin/add-apt-repository", line 60, in <module> sp = SoftwareProperties() File "/usr/lib/python2.6/dist-packages/softwareproperties/SoftwareProperties.py", line 90, in __init__ self.reload_sourceslist() File "/usr/lib/python2.6/dist-packages/softwareproperties/SoftwareProperties.py", line 538, in reload_sourceslist self.distro.get_sources(self.sourceslist) File "/usr/lib/python2.6/dist-packages/aptsources/distro.py", line 90, in get_sources raise NoDistroTemplateException("Error: could not find a " aptsources.distro.NoDistroTemplateException: Error: could not find a distribution template …
15 apt 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.