active questions tagged apt-get - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T10:11:00Z http://stackoverflow.com/feeds/tag/apt-get http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839945/equivalent-of-apt-get-on-different-linux-distros 0 equivalent of apt-get on different Linux distros [closed] Richard 2009-12-03T13:46:28Z 2009-12-03T13:52:40Z <p>I use Ubuntu and make good use of apt-get. Recently I tried openSUSE and found their equivalent Yast system much slower.</p> <p>So I was wondering how do the various distro package management systems compare to apt-get? And is there a need for this variety?</p> http://stackoverflow.com/questions/1815080/easyinstall-pil-fails 0 easy_install PIL fails uswaretech 2009-11-29T09:18:24Z 2009-11-29T09:27:47Z <p>I am trying to setup a dev environment on a new laptop, I am trying <code>sudo easy_install PIL</code> after seting up setuptools and python etc, I get this error. <code>Setup script exited with error: command 'gcc' failed with exit status 1</code></p> <p>I have gcc and build_essentials installed, on Ubuntu Karmic. Full traceback is at <a href="http://dpaste.de/fHiW/" rel="nofollow">http://dpaste.de/fHiW/</a></p> http://stackoverflow.com/questions/1692082/parsing-output-of-apt-get-install-for-progress-bar 1 Parsing output of apt-get install for progress bar icefire 2009-11-07T05:18:21Z 2009-11-07T07:42:22Z <p>I'm working on a simple GUI Python script to do some simple tasks on a system. Some of that work involves <code>apt-get install</code> to install some packages.</p> <p>While this is going on, I want to display a progress bar that should update with the progress of the download, using the little percentage shown in apt-get's interface in the terminal.</p> <p>BUT! I can't find a way to get the progress info. Piping or redirecting the output of apt-get just gives static lines that show the "completed download" message for each package, and same for reading via <code>subprocess.Popen()</code> in my script.</p> <p>How can I read from apt-get's output to get the percentages of the file downloaded?</p> http://stackoverflow.com/questions/1654161/error-sudo-apt-get-update 0 Error: sudo apt-get update [closed] tutorboy.com 2009-10-31T11:46:51Z 2009-11-03T15:21:54Z <p>Hi i got this error while running the sudo apt-get update command on my Ubuntu machine :(</p> <p><strong>Error:</strong></p> <pre><code>Fetched 308B in 1s (158B/s) Reading package lists... Done W: GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5A9BF3BB4E5E17B5 W: You may want to run apt-get update to correct these problems </code></pre> http://stackoverflow.com/questions/1218753/libapache2-svn-matching-version-with-subversion-1-6-1 1 libapache2-svn, matching version with Subversion 1.6.1 bearcdp 2009-08-02T11:53:07Z 2009-10-09T14:30:46Z <p>Hello, I'm installing subversion on an Xubuntu desktop system with apache2 installed and running fine. However, I wanted to use Subversion 1.6 because of the sparse directory feature. I'm running Jaunty, but I was able to tell apt-get to download 1.6.1 by temporarily adding the software source "deb <a href="http://source" rel="nofollow">http://source</a> archive.canonical.com/ubuntu karmic main" and removing the regular "jaunty" source from the list. </p> <p>However, it seems that Ubuntu's karmic distribution installs subversion 1.6.1 fine, but when it gets to apache2lib-svn it installs 1.5.4 rather than 1.6.1. What can I do to remedy this? I'm trying to use apt-get remove since I know it cleans up packages of what you've installed, and being relatively new to Linux I figured it's better not to leave random packages lying around without a home.</p> http://stackoverflow.com/questions/1515469/debian-does-apt-get-support-302-redirects 0 debian: does apt-get support 302 redirects? [closed] jldupont 2009-10-04T02:46:54Z 2009-10-04T04:14:11Z <p>Will <em>apt-get</em> follow 302 redirects if instructed?</p> <p><strong>Clarifications</strong></p> <p>I have my own DEBIAN repositories and I am in the process of evaluating if I can "virtually consolidate" all of them to one. For this, I need to understand if client side apt-get can follow 302 redirects since the "virtual repo" would use this "trick" to have apt-get fetch .deb package from different places.</p> http://stackoverflow.com/questions/1419650/just-installed-qtopengl-but-cannot-import-it-from-python 0 Just installed QtOpenGL but cannot import it (from Python) Nathan 2009-09-14T04:15:01Z 2009-09-14T04:25:35Z <p>I just installed it with apt-get on debian linux with</p> <pre><code>apt-get install libqt4-opengl </code></pre> <p>the rest of PyQt4 is available, but I cant get to this new module.</p> <pre><code>from PyQt4 import QtOpenGL </code></pre> <p>raises ImportError. any idea what to do? </p> http://stackoverflow.com/questions/1332580/does-rubygems-work-on-ubuntu 1 Does rubygems work on Ubuntu? Andrew Grimm 2009-08-26T05:52:34Z 2009-08-26T08:04:12Z <p><a href="http://stakeventures.com/articles/2008/12/04/rubygem-is-from-mars-aptget-is-from-venus" rel="nofollow">This blog post</a> of December 2008 says that rubygems is broken on Debian-based systems.</p> <p>Does rubygems work cleanly on Ubuntu (for both 1.8 and 1.9)?</p> http://stackoverflow.com/questions/1298066/check-if-a-package-is-installed-and-then-install-it-if-its-not 0 Check if a package is installed and then install it if it's not. PCBEEF 2009-08-19T06:18:50Z 2009-08-19T09:18:20Z <p>I'm working on a Ubuntu system and </p> <p>Currently this is what I'm doing:</p> <pre><code>if ! which command &gt; /dev/null; then echo -e "Command not found! Install? (y/n) \c" read if "$REPLY" = "y"; then sudo apt-get install command fi fi </code></pre> <p>Is this what most people would do? Or is there a more elegant solution?</p> http://stackoverflow.com/questions/1199379/how-to-make-debian-to-look-for-updates-to-internet-only-not-to-dvd 0 How to make debian to look for updates to internet only, not to DVD? [closed] Artem Tikhomirov 2009-07-29T10:50:12Z 2009-07-29T11:08:06Z <p>My Debian installation requires me to insert the installation DVD for certain packages. How can I fix that?</p> <pre><code>debian:~# apt-get install git-core Reading package lists... Done Building dependency tree Reading state information... Done The following extra packages will be installed: ca-certificates libcurl3-gnutls libdigest-sha1-perl liberror-perl openssl rsync Suggested packages: git-doc git-arch git-cvs git-svn git-email git-daemon-run git-gui gitk gitweb The following NEW packages will be installed: ca-certificates git-core libcurl3-gnutls libdigest-sha1-perl liberror-perl openssl rsync 0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded. Need to get 3427kB/5228kB of archives. After this operation, 11.8MB of additional disk space will be used. Do you want to continue [Y/n]? y Media change: please insert the disc labeled 'Debian GNU/Linux 5.0.2 _Lenny_ - Official amd64 DVD Binary-1 20090628-18:02' in the drive '/cdrom/' and press enter </code></pre> http://stackoverflow.com/questions/943242/benefit-of-installing-django-from-deb-versus-tar-gz 2 Benefit of installing Django from .deb versus .tar.gz? slacy 2009-06-03T05:50:43Z 2009-06-03T13:43:54Z <p>I'm starting Django development, and I can either install it from the .deb using</p> <pre><code>$ apt-get install python-django </code></pre> <p>on my Ubuntu machine, or I can download the .tar.gz from <a href="http://djangoproject.com" rel="nofollow">djangoproject.com</a>, and start with that.</p> <p>What are the benefits and drawbacks of each approach?</p> http://stackoverflow.com/questions/913575/what-does-4-mean-in-g-apt-get-install-version-string 2 What does 4: mean in g++ apt-get install version string? C.W.Holeman II 2009-05-27T01:41:50Z 2009-05-27T02:07:34Z <p>On EasyPeasy 1.1 (for mini notebooks) derived from Ubuntu I installed g++ using apt-get:</p> <pre><code>$ apt-get install g++ </code></pre> <p>One of the lines displayed was:</p> <pre><code>Setting up g++ (4:4.3.1-1ubuntu2) ... </code></pre> <p>What the does "4:" mean?</p> <pre><code>$ g++ --version g++ (Ubuntu 4.3.2-1ubuntu12) 4.3.2 </code></pre> <p>What is the relationship of the "4.3.1" in apt-get to the "4.3.2" g++ version?</p> http://stackoverflow.com/questions/882341/running-apt-get-on-ec2-without-coughing-up-for-a-bunch-of-bandwidth-charges 5 Running apt-get on EC2 without coughing up for a bunch of bandwidth charges Simon Willison 2009-05-19T12:05:43Z 2009-05-22T20:20:56Z <p>I'm running Ubuntu on EC2 (using the alestic community AMI) and on startup my new instances use up a bunch of bandwidth running apt-get upgrade etc. Bandwidth between EC2 instances is free... anyone know if there's a mirror of the Ubuntu packages somewhere on EC2 I can use instead?</p> http://stackoverflow.com/questions/894449/using-apt-get-to-install-an-instance-of-a-web-application 0 Using apt-get to install an instance of a web application Flipper 2009-05-21T18:45:02Z 2009-05-21T19:15:12Z <p>Is it possible to have many instances of MediaWiki or Wordpress on a web server, installed and automatically upgraded by apt-get? If so, would Ubuntu LTS upgrade with security-only patches?</p> <p>Thanks!</p> http://stackoverflow.com/questions/683664/linux-directories-where-should-stuff-go 4 linux, directories, where should stuff go bplus 2009-03-25T21:56:36Z 2009-05-10T14:28:59Z <p>I'm currently trying to get to grips with using linux. I'm running mint linux (an ubuntu variant).</p> <p>When I install something using apt-get, files <strong>seem</strong> to get scattered across various system directories at random (system meaning not my home directory), of course I know this isn't at random it just seems this way at the moment.</p> <p>However if I download the latest version of firefox from the website it just comes in a zip, I just extract it to one directory and run it.</p> <p>I haven't tried compiling anything from source but I'd bet that it just compiles all to one directory then I run it from that directory.</p> <ol> <li><p>How come the difference between apt-get and doing it yourself?</p></li> <li><p>Whats the best approach for installing new apps? </p></li> <li><p>Any general pointers on what the various directories in linux are for and when I should tamper with them would be much appreciated too. </p></li> </ol> http://stackoverflow.com/questions/423540/how-to-see-packages-installed-on-a-given-date-using-aptitude 2 How to see packages installed on a given date using aptitude Mikeage 2009-01-08T07:47:55Z 2009-03-26T15:56:28Z <p>Does anyone know if there's an easy way to find a list of packages installed, sorted by date, when using aptitude (or apt-get)?</p> <p>I was installing a bunch of packages to try something new, and it didn't work out. I'd like to remove all of these packages, to get back some disk space. </p> <p>I've tried just looking at the list of .deb files downloaded, but that seems like a rather backwards way of doing it (although it did work).</p> http://stackoverflow.com/questions/283263/why-download-only-for-apt-get-cron-job 2 why download only for apt-get cron job contagious 2008-11-12T07:43:26Z 2008-11-13T08:26:13Z <p>I'm putting a crontab job for updating with apt-get once a day (running Debian Lenny, there are updates almost daily). But almost all examples i've seen of this cron job invoke the -d flag. </p> <p>This elicits 4 questions:</p> <ul> <li>Why should I only download the packages and not install them?</li> <li>Doesn't this defeat the purpose of running it automatically?</li> <li>Don't I have to go in and actually install the updates later?</li> <li>Is it safe for me to run the cron job without the -d flag?</li> </ul>