0
votes
2answers
61 views
Parsing output of apt-get install for progress bar
I'm working on a simple GUI Python script to do some simple tasks on a system. Some of that work involves apt-get install to install some packages.
While this is going on, I want to display a …
0
votes
0answers
53 views
Error: sudo apt-get update [closed]
Hi i got this error while running the sudo apt-get update
command on my Ubuntu machine :(
Error:
Fetched 308B in 1s (158B/s)
Reading package lists... Done
W: GPG error: http://ppa.launchpad.net …
0
votes
0answers
42 views
debian: does apt-get support 302 redirects? [closed]
Will apt-get follow 302 redirects if instructed?
Clarifications
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 …
0
votes
1answer
54 views
Just installed QtOpenGL but cannot import it (from Python)
I just installed it with apt-get on debian linux with
apt-get install libqt4-opengl
the rest of PyQt4 is available, but I cant get to this new module.
from PyQt4 import QtOpenGL
raises …
1
vote
3answers
109 views
Does rubygems work on Ubuntu?
This blog post of December 2008 says that rubygems is broken on Debian-based systems.
Does rubygems work cleanly on Ubuntu (for both 1.8 and 1.9)?
0
votes
2answers
167 views
Check if a package is installed and then install it if it’s not.
I'm working on a Ubuntu system and
Currently this is what I'm doing:
if ! which command > /dev/null; then
echo -e "Command not found! Install? (y/n) \c"
read
if "$REPLY" = "y"; then
…
1
vote
2answers
187 views
libapache2-svn, matching version with Subversion 1.6.1
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 …
0
votes
1answer
91 views
How to make debian to look for updates to internet only, not to DVD? [closed]
My Debian installation requires me to insert the installation DVD for certain packages. How can I fix that?
debian:~# apt-get install git-core
Reading package lists... Done
Building dependency tree
…
2
votes
6answers
326 views
Benefit of installing Django from .deb versus .tar.gz?
I'm starting Django development, and I can either install it from the .deb using
$ apt-get install python-django
on my Ubuntu machine, or I can download the .tar.gz from djangoproject.com, and …
2
votes
1answer
183 views
What does 4: mean in g++ apt-get install version string?
On EasyPeasy 1.1 (for mini notebooks) derived from Ubuntu I installed g++ using apt-get:
$ apt-get install g++
One of the lines displayed was:
Setting up g++ (4:4.3.1-1ubuntu2) ...
What the does …
0
votes
2answers
58 views
Using apt-get to install an instance of a web application
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?
Thanks!
3
votes
3answers
319 views
Running apt-get on EC2 without coughing up for a bunch of bandwidth charges
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 …
4
votes
8answers
330 views
linux, directories, where should stuff go
I'm currently trying to get to grips with using linux.
I'm running mint linux (an ubuntu variant).
When I install something using apt-get, files seem to get scattered across various system …
1
vote
5answers
405 views
How to see packages installed on a given date using aptitude
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)?
I was installing a bunch of packages to try something new, and it …
2
votes
2answers
453 views
why download only for apt-get cron job
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.
This …
