You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
|
Feb
(5) |
Mar
|
Apr
(2) |
May
(3) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2002 |
Jan
(2) |
Feb
(5) |
Mar
(14) |
Apr
(1) |
May
(7) |
Jun
(2) |
Jul
(7) |
Aug
(13) |
Sep
(21) |
Oct
(3) |
Nov
|
Dec
|
2003 |
Jan
(6) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
(5) |
Nov
|
Dec
(3) |
2004 |
Jan
(11) |
Feb
(2) |
Mar
(4) |
Apr
|
May
(9) |
Jun
|
Jul
(1) |
Aug
(12) |
Sep
(6) |
Oct
(7) |
Nov
(10) |
Dec
(3) |
2005 |
Jan
(22) |
Feb
(20) |
Mar
(5) |
Apr
(10) |
May
(15) |
Jun
(14) |
Jul
(9) |
Aug
(3) |
Sep
(7) |
Oct
(1) |
Nov
(3) |
Dec
(12) |
2006 |
Jan
(1) |
Feb
(1) |
Mar
(5) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(2) |
2007 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Athanasius <Ath...@mi...> - 2001-05-19 15:16:36
|
On Sat, May 19, 2001 at 11:01:12PM +1000, Matthew Gibbins wrote: > When I connect from the client machine I get 111 Connection refused. > I've got ftp enabled on the host and also have apache up and running. > I also have an aptuser defined in passwd with a null passwd and ownership of > the directories on the host. > What could I possibly be missing? ROOT@jimblewix:/var/log# grep apt /etc/inetd.conf apt-proxy stream tcp nowait.400 apt-user /usr/sbin/tcpd /usr/local/sbin/apt-proxy /var/log/apt-proxy.log i.e. you run apt-proxy as a seperate service out of inetd. HTH, -Ath -- - Athanasius = Athanasius(at)miggy.org / http://www.miggy.org/ Finger athan(at)fysh.org for PGP key "And it's me who is my enemy. Me who beats me up. Me who makes the monsters. Me who strips my confidence." Paula Cole - ME |
From: Matthew G. <mgi...@mi...> - 2001-05-19 13:02:00
|
Hi, I like the idea of apt-proxy. However, I'm having some trouble getting it to work...:( When I connect from the client machine I get 111 Connection refused. I've got ftp enabled on the host and also have apache up and running. I also have an aptuser defined in passwd with a null passwd and ownership of the directories on the host. What could I possibly be missing? -- I'm not advocating that anyone take up emacs. Not even me: at my age, I'd be more likely to try bungee-jumping. It's easier, and has less risk of causing permanent brain damage. ** A posting on ZDNet forum |
From: Daniel T. <dt...@cy...> - 2001-05-15 21:08:45
|
Hi All: I'm having problems trying to set up apt-proxy, can somebody please send me some working 'apt-proxy.conf' and 'sources.list' files. Perhaps that way it'll be easier for me to set up my own config files. Thanks in advance ! Daniel |
From: Athanasius <Ath...@mi...> - 2001-04-11 17:41:01
|
On Wed, Apr 04, 2001 at 12:58:28AM +0100, Athanasius wrote: > Hi, > I've just this moment finished wrestling apt-proxy.conf and > sources.list into co-operating with each other and ran into one small > problem. > > It seems anything listed under proposed-updates thinks its in a path > like: > > /pool/main/z/zsh/zsh-doc_3.1.9.dev8-6_all.deb > > when, er, it isn't. As such I added this quick hack into apt-proxy, I *sigh*, except they are NOW. Seems I caught the Packages files having been updated and mirrored to ftp.debian.org and ftp.uk.debian.org, but not the pool areas yet. I still needed to add this to the apt-proxy.conf though: add_backend /pool/ \ /other/debian/pool/ \ ftp.uk.debian.org::debian/pool/ \ ftp.debian.org::debian/pool/ Oh, and seems security stuff is 'on the move' too, meaning I added this last night: add_backend /dists/potato/updates/ \ /other/debian/security/ \ security.debian.org::debian-security/dists/potato/updates/ I've yet to test if I can get away with JUST that or still need the: add_backend /dists/security/ \ /other/debian/security/ \ security.debian.org::debian-security/dists/potato/updates/ which generates the need for the former. -Ath -- - Athanasius = Athanasius(at)miggy.org / http://www.miggy.org/ Finger athan(at)fysh.org for PGP key "And it's me who is my enemy. Me who beats me up. Me who makes the monsters. Me who strips my confidence." Paula Cole - ME |
From: Athanasius <Ath...@mi...> - 2001-04-03 23:58:33
|
Hi, I've just this moment finished wrestling apt-proxy.conf and sources.list into co-operating with each other and ran into one small problem. It seems anything listed under proposed-updates thinks its in a path like: /pool/main/z/zsh/zsh-doc_3.1.9.dev8-6_all.deb when, er, it isn't. As such I added this quick hack into apt-proxy, I know this can be done better (like just testing in the *.deb case for instance, so no duplication of code). Hopefully the apt-proxy guys will put some proper fix in for this in the next release. Ah another little fixette to save having to setup the base directories snuck into the diff too, namely -p on mkdir: ----------------------------------begin---------------------------------- --- /usr/local/src/apt-proxy-1.1.1/apt-proxy Thu Oct 12 07:14:12 2000 +++ /usr/local/sbin/apt-proxy Wed Apr 4 00:35:20 2001 @@ -152,10 +152,10 @@ fi # Don't support nested directory symlinks. Mail rusty. [ -d "$MMS_FRONTBASE$mms_d" ] || - mkdir -m 755 "`dirname $MMS_FRONTBASE$mms_d`/$MMS_L" + mkdir -p -m 755 "`dirname $MMS_FRONTBASE$mms_d`/$MMS_L" else log Making directory "$MMS_FRONTBASE$mms_d" - mkdir -m 755 "$MMS_FRONTBASE$mms_d" + mkdir -p -m 755 "$MMS_FRONTBASE$mms_d" fi [ ! -d "$MMS_FRONTBASE$mms_d" ] && bad_config "$MMS_FRONTBASE$mms_d" \ @@ -575,6 +575,20 @@ conenc= ;; + /pool/*/?/*/*.deb) + REQUEST=/proposed-updates/`echo $REQUEST | cut -d/ -f6` + + debug Looking for file \`$REQUEST\' + resolve_url $REQUEST + [ -f $FRONT ] || + STREAM="`fetch_file_start $URL_REST $FRONT_BASE $BACKS`" + debug STREAM: $STREAM + [ -n "$CLEANUP_DAYS" ] && DO_CLEANUP=1 + + SIZE_FILE=Packages + contype=application/dpkg + conenc= + ;; *.deb) debug Looking for file \`$REQUEST\' resolve_url $REQUEST -----------------------------------end----------------------------------- HTH, -Ath -- - Athanasius = Athanasius(at)miggy.org / http://www.miggy.org/ Finger athan(at)fysh.org for PGP key "And it's me who is my enemy. Me who beats me up. Me who makes the monsters. Me who strips my confidence." Paula Cole - ME |
From: David P. <mo...@ma...> - 2001-02-09 21:03:57
|
> I think you only need to add the "pub" to the backend above i.e.: > > add_backend /KDE2/ \ > /home/ftp/pub/mirrors/debian/KDE2/ \ > ftp.wh9.tu-dresden.de::pub/linux/debian-stuff/KDE2/ > >> add_backend /KDE2/ \ >> /home/ftp/pub/mirrors/debian/KDE2/ \ >> ftp.uni-marburg.de::pub/mirror/debian-kde.tdyc.com/ \ >> +ftp.wh9.tu-dresden.de::pub/linux/debian-stuff/KDE2/ \ I just noticed that it appears you have a trailing \ at the end of your add_backend line... The last entry should not have a trailing \. Perhaps that's you problem? dave panofsky. |
From: Thomas T. <th...@tr...> - 2001-02-09 13:48:05
|
Hello All, > > I want to use the (existing) mirror on: > > > > deb ftp://ftp.wh9.tu-dresden.de/pub/linux/debian-stuff/KDE2 potato main \ > > crypto optional qt1apps > > > > # ----------- > > add_backend /KDE2/ \ > > /home/ftp/pub/mirrors/debian/KDE2/ \ > > ftp.wh9.tu-dresden.de::linux/debian-stuff/KDE2/ \ > > #----------- > > I think you only need to add the "pub" to the backend above i.e.: > > add_backend /KDE2/ \ > /home/ftp/pub/mirrors/debian/KDE2/ \ > ftp.wh9.tu-dresden.de::pub/linux/debian-stuff/KDE2/ Thanks, but this is, what happens: #----------- 11992: Got line Host: hostname:9999 11992: Got line Connection: keep-alive 11992: Got line User-Agent: Debian APT-HTTP/1.2 11992: Finished processing request Fre Feb 9 10:23:50 CET 2001 Request/ KDE2/dists/potato/qt1apps/binary-i386/Relea se 11992: Updating file `/KDE2/dists/potato/qt1apps/binary-i386/Release' KDE2 : No such file or directory Bad URL /KDE2 directory does not exist on any server #----------- In the meantime, I tried allmost everything. Adding of some other KDE mirrors, changing the servers, changing sources.lists on my clients etc. #----------- add_backend /KDE2/ \ /home/ftp/pub/mirrors/debian/KDE2/ \ ftp.uni-marburg.de::pub/mirror/debian-kde.tdyc.com/ \ +ftp.wh9.tu-dresden.de::pub/linux/debian-stuff/KDE2/ \ #----------- Is any KDE2 Mirror operating in your Configuration - if you use it? -- Bonan tagon, Thomas Trueten ICQ# 82831959 PGP-encrypted Mails welcome, Key on Request (subj: get pgpkey) FD B3 82 81 FC 48 49 73 7C 95 E0 23 68 D5 55 44 23 2E 54 9E |
From: David P. <mo...@ma...> - 2001-02-08 20:22:01
|
> Message: 1 > From: Thomas Trueten <th...@tr...> > To: apt...@li... > Date: Thu, 8 Feb 2001 10:04:53 +0000 > Subject: [Apt-proxy-users] apt-proxy / KDE2 > > Hello all, > I've problems to connect to any debian KDE2 Mirrors in > apt-proxy. > > Here is my logfile: > #----------- > Bad URL /KDE2 directory does not exist on any server > #----------- > > I want to use the (existing) mirror on: > > deb ftp://ftp.wh9.tu-dresden.de/pub/linux/debian-stuff/KDE2 potato main \ > crypto optional qt1apps > > # ----------- > add_backend /KDE2/ \ > /home/ftp/pub/mirrors/debian/KDE2/ \ > ftp.wh9.tu-dresden.de::linux/debian-stuff/KDE2/ \ > #----------- I think you only need to add the "pub" to the backend above i.e.: add_backend /KDE2/ \ /home/ftp/pub/mirrors/debian/KDE2/ \ ftp.wh9.tu-dresden.de::pub/linux/debian-stuff/KDE2/ Good luck, dave panofsky. |
From: Thomas T. <th...@tr...> - 2001-02-08 09:09:46
|
Hello all, I've problems to connect to any debian KDE2 Mirrors in apt-proxy. Here is my logfile: #----------- 1583: Got line Host: hostname:9999 1583: Got line Connection: keep-alive 1583: Got line User-Agent: Debian APT-HTTP/1.2 1583: Finished processing request Wed Feb 7 14:05:21 CET 2001 Request/KDE2/dists/potato/main/binary-i386/Release 1583: Updating file `/KDE2/dists/potato/main/binary-i386/Release' KDE2 :No such file or directory Bad URL /KDE2 directory does not exist on any server #----------- "KDE2 :No such file or directory" is the only hint. This directory doesn't exist on my local ftp Server. But I think apt-proxy will create it automaticly, at least ist does with the others I want to use the (existing) mirror on: deb ftp://ftp.wh9.tu-dresden.de/pub/linux/debian-stuff/KDE2 potato main \ crypto optional qt1apps Here is an extract of apt-proxy.conf: # ----------- add_backend /KDE2/ \ /home/ftp/pub/mirrors/debian/KDE2/ \ ftp.wh9.tu-dresden.de::linux/debian-stuff/KDE2/ \ #----------- And here the sources.list entry, which should belong to: #----------- deb http://hostname:9999/KDE2/ potato main crypto optional qt1apps #----------- My version is apt-proxy 1.1.1 on debian 2.2r2 A search in deja.com results in no practical ... Please help me. -- Bonan tagon, Thomas Trueten ICQ# 82831959 PGP-encrypted Mails welcome, Key on Request (subj: get pgpkey) FD B3 82 81 FC 48 49 73 7C 95 E0 23 68 D5 55 44 23 2E 54 9E |
From: Stephan B. <s-...@gm...> - 2001-02-04 20:11:15
|
Hi, I still don't know if apt-proxy is the right software I am looking for... That's my problem: I have upadted the gateway and now all the debs are in /var/cache/apt/ ... I want that all the boxes connected to the gateway use the gateway's apt cache when they do apt-get... So I do not have to fetch all the same debs again and again... Is this possible with apt-proxy? bye sbeyer -- Stephan Beyer <s-...@gm...> IRC Nick: sbeyer http://www.s-beyer.de |
From: Markus H. <mar...@gm...> - 2000-12-20 19:23:04
|
Moin apt-proxy-users! Hi all again, I've forgeted somethin .... > firstly: GREAT idea to build a software like apt-proxy. No more tricky > using of apt-move !!! > > So I installed it like it's described in the manpage. But schock when > I firstly tryed out. I get a huge list of "connection refused" messages > when I does a apt-get update on my client maschine. ...so I've tried > this and that and at the end I chaged the user in my inetd.conf file > >from ftp to root ---> and all gets right !!! > Ahh, user ftp is not allowed to write into the /var/log directory ... > but isn't this (the root-thing) a possibel security hole ?? > > Another strange thing I recognised is that when I firstly try to > install something (eg. apt-get dist upgrade) the first attempt always > failed with a connenction time out ..... ... and now the reason for the subject of my message: I found this in my /var/log/apt-proxy.log --------cut----8<-------- /home/ftp/pub/debian/helixcode/dists/woody/main/binary-i386/.gnum\eric_0.61-0potato1_i386.deb.partial.EjPv3Q /usr/sbin/apt-proxy: grep-dctrl: command not found -------cut----8<----------- Looks like a typo .... CU Markus ... -- Markus Hubig <mh...@we...>++++Ulrichswiesen 8++++75387 Neubulach++ [tele: +049 7053 967197]***[fax: +049 7053 967195]***[ICQ# 78525086] Key fingerprint = 8874 373A 562A 4948 FEB9 0B29 2277 1736 6CE4 9DE8 |
From: Markus H. <mar...@gm...> - 2000-12-20 18:39:22
|
Hi all, firstly: GREAT idea to build a software like apt-proxy. No more tricky using of apt-move !!! So I installed it like it's described in the manpage. But schock when I firstly tryed out. I get a huge list of "connection refused" messages when I does a apt-get update on my client maschine. ...so I've tried this and that and at the end I chaged the user in my inetd.conf file from ftp to root ---> and all gets right !!! Ahh, user ftp is not allowed to write into the /var/log directory ... but isn't this (the root-thing) a possibel security hole ?? Another strange thing I recognised is that when I firstly try to install something (eg. apt-get dist upgrade) the first attempt always failed with a connenction time out ..... CU Markus -- Markus Hubig <mh...@we...>++++Ulrichswiesen 8++++75387 Neubulach++ [tele: +049 7053 967197]***[fax: +049 7053 967195]***[ICQ# 78525086] Key fingerprint = 8874 373A 562A 4948 FEB9 0B29 2277 1736 6CE4 9DE8 |