问题标签 [apt-get]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
36323 浏览

python - 修复损坏的Python3.2安装(Ubuntu)

我愚蠢地删除了subprocess.py模块,/usr/lib/python3.2所以我尝试通过执行以下命令来解决这个问题:

但我得到了这个错误:

我怎样才能解决这个问题?

0 投票
1 回答
4945 浏览

nginx - 使用 apt-get install nginx 后重新编译 nginx

我最初是通过 apt-get install 安装 nginx。它工作得很好。现在,我想安装一些 3rd 方模块,我必须重新编译 nginx。所以我尝试重新编译。它经历了这些动作,然后我意识到我的原始版本仍然是正在使用的版本。

我是否需要先卸载我的 nginx 原始副本才能正确安装另一个?

我的安装标志: --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx .pid --lock-path=/var/lock/nginx.lock --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib /nginx/body --http-proxy-temp-path=/var/lib/nginx/proxy --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --with-debug --with-http_stub_status_module --with-http_flv_module --with-http_ssl_module --with-http_dav_module --with-http_gzip_static_module --with-http_realip_module --with-mail --with-mail_ssl_module --with-ipv6 --add-module=/usr/src /gnosek-nginx-upstream-fair-5f6a3b7 --add-module=/usr/src/mod_strip

0 投票
3 回答
5143 浏览

linux - Ubuntu Natty 上的 Memcached 集群

我想在 Ubuntu Natty 上为我的 PHP 应用程序设置一个 memcached 集群。我想设置一个 4 节点集群。

我知道我可以像这样apt-get -y install memcached libmemcached-dev或通过源代码安装 memcached,但需要更长的时间。但是,当我在四个单独的节点上完成此操作时,我不知道我需要做什么来对它们进行集群。是否有我应该编辑的配置文件以及我需要更新哪些设置?

我用谷歌搜索了“memcached 集群”,但似乎找不到任何确定的东西。

我会很感激一些帮助。

提前致谢

0 投票
4 回答
29875 浏览

ubuntu - 通过 Chef 执行 add-apt-repository 的正确方法是什么?

我正在学习 Chef,我现在要为 Ubuntu 做:

但可能有更好的(“厨师式”?)方法来做到这一点。另外,我担心 add-apt-repository 有时会在执行时等待“Enter”键,因此这种方法可能无法正常工作。正确的做法是什么?

编辑:我只有格式的 ppa 链接: ppa:something/user

0 投票
2 回答
24003 浏览

terminal - zsh:找不到命令:apt-get

为了解决以下错误Cucumber Rails 3.1 uninitialized constant ActionController::Dispatcher (NameError),我正在关注这篇文章-> http://www.ruby-on-rails-outsourcing.com/articles/2011/01/07/getting -started-with-rvm-and-rails/

在我的终端上运行此命令时,

我得到这个错误:zsh: command not found: apt-get。很少有帖子建议使用 Macports,但我不知道如何使用它。

0 投票
7 回答
195228 浏览

cygwin - Cygwin的apt-get?

是否有任何apt-get与 Cygwin 一起使用的类似程序?

我已经尝试过cyg-apt,但是当我尝试时出现此错误:

0 投票
4 回答
16431 浏览

python - apt-get 的需求文件,类似于 pip

我喜欢如何使用 pip 要求管理依赖项。在 apt-get 的情况下是否有类似的东西?

http://www.pip-installer.org/en/latest/requirements.html#requirements-file-format

0 投票
2 回答
3449 浏览

debian - postinst 中的 db_input 不起作用

我的 postinst 脚本有问题,我必须询问 MySQL 的 root 密码才能为我的应用程序创建一些用户。我知道,在 postinst 中使用 db_input 是不好的做法,但我真的需要它。为什么当我安装我的应用程序表单存储库时此 postinst 不起作用,但当我将其安装为 .deb 包时正常工作?

后勤:

错误:

0 投票
1 回答
6501 浏览

debian - apt-get 由于公钥不可用,无法验证以下签名

我已经创建了自己的 Debian 存储库并遇到了这个问题。

我知道

  • --ignore-release-gpg

或者

  • gpg --keyserver pgp.mit.edu --recv-keys xxxxxxxxx
  • gpg --armor --export xxxxxxxxx | apt-key add -

两个问题:

  1. 为什么 apt-get 不会自动从在线存储库中导入此公钥?
  2. 为什么我在其他存储库中看不到此消息?
0 投票
1 回答
2736 浏览

ubuntu - 为什么 apt-get install libsqlite3-dev 给我一个 404 错误?

我正在尝试使用 bundler 安装 sqlite3 gem,但遇到了常见Failed to build native gem extensions错误。我正在尝试安装必要的文件来解决此问题并使用成功安装了 ruby​​-dev apt-get install,但是当我运行时出现apt-get install libsqlite3-dev此错误:

我尝试运行 apt-get update 并再次遇到一堆404 not found错误,并且运行命令 with--fix-missing没有做任何事情。

知道下一步该怎么做吗?