|
So I have this going on:
# apt-get update Get:1 http://ftp.us.debian.org etch Release.gpg [1032B] Hit http://ftp.us.debian.org etch Release (...bunch more of this elided...) Hit http://ftp.us.debian.org etch/contrib Sources Fetched 68.8kB in 1s (37.4kB...
Started by chaos on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
The keyring is kept in the file /etc/apt/trusted.gpg (not to be confused with....
Try doing this and running apt-get again:
apt-key update
apt-key is a program that is used to manage a keyring of gpg keys for secure apt.
|
|
On Tue, 07 Aug 2007 18:35:21 +0200, Rodolfo Medina <rodolfo.medina@gmail.com> wrote:
Hi.
After adding a CD-ROM with `apt-cdrom', running `apt-get update' will be
enough? Or should I also run `apt-get dist-upgrade' as a third step?
I couldn...
Started by Rodolfo Medina on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
After adding a CD-ROM with `apt-cdrom', running `apt-get update' will be
enough? Or should I also run `apt-get dist-upgrade' as a third
apt-cdrom ....
:
On Tue, 2007-08-07 at 18:35 +0200, Rodolfo Medina wrote:
Hi .
|
|
On Sun, 22 Jul 2007 21:40:39 +0100, "Chris Andrew" <cjhandrew@gmail.com> wrote:
Hi,
I've got Etch running on an SS20 (as previously mentioned). I'm trying to
update my system, but get signature related problems with the APT packages.
apt-...
Answer Snippets (Read the full thread at omgili):
> > >
> > > apt-key list tells me that two me from installing apt....
I feel
this could be problematic with the APT
> > packages.
:
This is stopping me from installing apt/ apt-utils and aptitude.
|
Ask your Facebook Friends
|
I was expecting the worst after all of LO shots at her 2 month apt but nothing seemed to bother her. Of course initially she was not happy about the shots, but wasn't fussy after or have a fever or anything.
Were the 4 month shots worse? Did you give ...
Started by nfisher23 on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at thebump):
She never got a fever but I finally gave in and gave her tylenol because she wouldnt calm down- not even to nurse... .
After her 2 mo shots, she was extremely fussy.
We gave Tylenol both before and after.
She got really sick.
For us....yes, they were worse.
|
|
I'm creating some scripts to streamline application installations and I need to append to the end of /etc/apt/sources.list
This code below append to files in ~ but not in /etc/apt/
echo "deb http://ppa.launchpad.net/person/ppa/ubuntu karmic main" >...
Started by c00lryguy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Make sure to have a backup file
echo "foo" | sudo tee -a /etc/apt/sources.list
However, I would really recommend you create a new .list and then use this method to append, store it in /etc/apt main' >> /etc/apt/sources.list"....
|
|
Is there an equivalent of apt-get in Cygwin?
Started by Zubair on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
There are some known issues although they appear.
Check out the issues tab.
There is an apt-cyg script.
There seem to be alternatives for apt-get in cygwin , but I can't say anything about them.
|
|
I need to find the last time that the
apt-get update
command was run on my server. How can I determine this information?
Started by Mark Roddy on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
If apt-get update was run with sudo you should have a line logged in /var/log, but not necessarily which app called ....
You could check the Access times on the files in /var/lib/apt/lists which is updated when you run apt-get update.
|
|
I am new to linux, and just beginning to learn bash. I am using Ubuntu 9.04, and would like to add repositories to /etc/apt/sources.list from the command line. Basically, I would like to do this:
sudo echo "[some repository]" >> /etc/apt/sources...
Started by Matthew on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
This does not quite belong here, but the answer is:
echo "[some repository]" | sudo tee -a /etc/apt subshell like
sudo sh -c 'echo "[some repository]" >> /etc/apt/sources.list'
works, too "[some repository]" >> /etc/apt....
|
|
Is there anyway to disable/remove apt-get on a debian based server. I'd prefer to use aptitude, and don't want the other users to be installing packages with apt-get, to avoid package/database issues.
Started by DeadlyCreampuff on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
I frequently install things using ....
That way all the different variations of apt-get (like aptitude and who knows what else.
You could do:
chmod 0 /usr/bin/apt-get
There are plenty of ways you can do it, but the fact in /etc/apt.
|
|
I need to make a once off mirror of all the Ubuntu apt repository (for the record it's because I'm sending it to Kenya (see here and here ).
I did it before and used apt-mirror , and that does exactly what I want. However now I want to do it slowly, so...
Started by Rory McCann on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
You could edit the source code to utilise # or your limit rate
After I looked at the source code for apt-mirror, I discovered that apt-mirror has.
Since apt-mirror is just a Perl wrapper for wget .
|