Tag: apt get

在pkg-configsearchpath中找不到软件包opencv

我使用https://help.ubuntu.com/community/OpenCV中的说明安装了OpenCV $ sudo su $ sudo apt-get install build-essential $ sudo apt-get install libavformat-dev $ sudo apt-get install ffmpeg $ sudo apt-get install libcv2.3 libcvaux2.3 libhighgui2.3 python-opencv opencv-doc libcv-dev libcvaux-dev libhighgui-dev 现在当我执行“pkg-config –cfalgs –libs opencv”我得到这个错误: Package opencv was not found in the pkg-config search path. Perhaps you should add the directory containing `opencv.pc' to the […]

Docker构build“无法解决”archive.ubuntu.com“”apt-get无法安装任何东西

我一直在试图运行Docker构build以前工作的各种文件,现在不再工作。 只要Docker文件包含任何要安装软件的行,就会失败,并显示该包未find。 RUN apt-get -y install supervisor nodejs npm 日志中显示的常见信息是 Could not resolve 'archive.ubuntu.com' 任何想法,为什么任何软件不会安装?

如何让厨师在运行其他食谱之前运行apt-get update

现在我在我的Vagrantfile中有以下内容: config.vm.provision :chef_solo do |chef| chef.cookbooks_path = "cookbooks" chef.add_recipe "apt" chef.add_recipe "build-essential" chef.add_recipe "chef-redis::source" chef.add_recipe "openssl" chef.add_recipe "git" chef.add_recipe "postgresql::server" chef.add_recipe "postgresql::client" end 为了安装添加到我的recipe_list的软件,我需要在安装其他软件之前让VM发出apt-get更新 。 我的印象是,这是“合适”配方的特点之一 – 它会运行更新的第一件事情。 当我做一个stream浪汉的规定是: [Sat, 11 Feb 2012 22:20:03 -0800] INFO: *** Chef 0.10.2 *** [Sat, 11 Feb 2012 22:20:03 -0800] INFO: Setting the run_list to ["recipe[apt]", "recipe[build-essential]", "recipe[chef-redis::source]", "recipe[openssl]", […]

什么是通过厨师做add-apt-repository的正确方法?

我正在学习厨师,现在我要为Ubuntu做的事情: execute "add-apt-repository ppa:#{node[:some_repo]}" do user "root" end execute "apt-get update" do user "root" end 但可能有更好的(“厨师式”)方式来做到这一点。 另外,我担心有时add-apt-repository会在执行时等待“Enter”键,所以这种方法可能不起作用。 什么是正确的做法呢? 编辑:我只有格式的PPA链接:PPA:东西/用户

在使用Puppet安装其他软件包之前运行`apt-get update`

我试图创build自动安装zend服务器CE的puppet模块,这在这里并不重要,但步骤如下 更新/etc/apt/source.list 通过wget下载回购密钥 做apt-get更新 apt-get install zend-server-ce-5.2 我有init.pp文件 class zendserverce { # https://github.com/puppetlabs/puppetlabs-stdlib file_line { 'debian_package': path => '/etc/apt/sources.list', line => 'deb http://repos.zend.com/zend-server/deb server non-free' } exec { "wget http://repos.zend.com/zend.key -O- |apt-key add -": path => ["/usr/bin", "/usr/sbin"] } exec { "apt-get update": command => "/usr/bin/apt-get update", onlyif => "/bin/sh -c '[ ! -f /var/cache/apt/pkgcache.bin […]

如何更正virtualbox安装

这里是如果我从terminal运行virtualbox的错误输出。 如何纠正? 我在一台Ubuntu 12.10 64位机器上。 virtualbox WARNING: The character device /dev/vboxdrv does not exist. Please install the virtualbox-ose-dkms package and the appropriate headers, most likely linux-headers-generic. You will not be able to start VMs until this problem is fixed. 编辑: 我有最新的linux-headers-generic和virtualbox-ose-dkms软件包

在Docker下安装时回答对话问题是否可行?

是否有可能以某种方式回答使用apt-get安装某些软件包时作为对话框显示的问题? 例如我试图设置一个包含mail-stack-delivery包的容器: FROM ubuntu RUN apt-get install -y mail-stack-delivery 然而,dockerfile在编译时会产生许多错误,这些错误包括: debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 […]

Jenkins用户在Apt-Get安装安装

我通过debian安装步骤(使用apt-get install)在我的Ubuntu服务器上安装了Jenkins。 我希望我的构build从GitHub上的私有git存储库中获取。 有了这个,我需要使用SSH访问到我的存储库。 我的search结果中的大部分都只是说,以Jenkins用户身份login,并为我的GitHub帐户生成一个SSH密钥,但是通过debian软件包pipe理器进行安装,我没有Jenkins用户的密码。 那么如何为我的Jenkins服务器生成一个SSH密钥来使用?

如何在没有RVM的情况下在Ubuntu上安装Ruby 2

我想安装ruby 2.0使用 sudo apt-get install ruby2.0 但是ruby2.0没有可用的包 我想用apt-get install来安装它,就像ruby 1.9.1一样 有什么build议么?

在Debian中通过apt-get安装Java 7(Oracle)

在Debian中通过apt-get存储库安装Oracle Java 7似乎不起作用。 apt-get install oracle-java7-installer 看起来像apt-get不能识别oracle-java7-installer 。