Re: apt-get problem

2008-01-15 Thread Lennart Sorensen
On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:
 that sounds like a good idea; perhaps I could google up 
 proxy package and find out what might be there?

Well given you had files named anon-proxy, then it is probably this
package:

anon-proxy - Proxy to surf the web anonymously

So 'apt-get remove --purge anon-proxy'

That should clean it out thoroughly.

--
Len Sorensen


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[SOLVED] Re: apt-get problem

2008-01-15 Thread Don Montgomery


On Tue, 15 Jan 2008, Lennart Sorensen wrote:

On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:

that sounds like a good idea; perhaps I could google up
proxy package and find out what might be there?


Well given you had files named anon-proxy, then it is probably this
package:

anon-proxy - Proxy to surf the web anonymously

So 'apt-get remove --purge anon-proxy'

That should clean it out thoroughly.

--
Len Sorensen


Len,

Based on output from

'apt-cache search --names-only proxy'

I ran

'apt-get remove --purge anon-proxy privoxy'

and then the output from

'grep 4001 -r /etc/'

revealed no further http proxy entries.

apt-get update works fine now, and my system is updating 
even as I write this.  Thank you, everyone, for all of 
your help and patience.


Don


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Lennart Sorensen
On Mon, Jan 14, 2008 at 08:38:59AM -0600, Don Montgomery wrote:
 
 Here is what I found:
 
 [EMAIL PROTECTED]:~$ less /etc/apt/apt.conf
 /etc/apt/apt.conf: No such file or directory
 [EMAIL PROTECTED]:~$ ll /etc/apt
 total 40
 drwxr-xr-x 2 root root 4096 2007-11-25 14:28 apt.conf.d
 -rw-r--r-- 1 root root 2524 2006-11-14 08:43 apt-file.conf
 -rw--- 1 root root0 2007-04-26 17:06 secring.gpg
 -rw-r--r-- 1 root root  952 2008-01-13 19:35 sources.list
 -rw-r--r-- 1 root root0 2007-04-26 17:06 sources.list~
 drwxr-xr-x 2 root root 4096 2007-02-26 15:53 
 sources.list.d
 -rw-r--r-- 1 root root  506 2007-04-30 19:32 
 sources.list.save
 -rw--- 1 root root 1200 2007-08-13 19:50 trustdb.gpg
 -rw--- 1 root root 4148 2007-08-13 19:50 trusted.gpg
 -rw--- 1 root root 4148 2007-08-13 19:50 trusted.gpg~
 [EMAIL PROTECTED]:~$ cd /etc/apt/apt.conf.d/
 [EMAIL PROTECTED]:/etc/apt/apt.conf.d$ ll
 total 16
 -rw-r--r-- 1 root root  40 2007-04-26 17:06 00trustcdrom
 -rw-r--r-- 1 root root  92 2007-07-02 07:07 01autoremove
 -rw-r--r-- 1 root root  91 2007-04-30 19:32 10periodic
 -rw-r--r-- 1 root root 182 2006-12-20 13:31 70debconf
 [EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat 00trustcdrom
 APT::Authentication::TrustCDROM true;
 [EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat 01autoremove
 APT
 {
   NeverAutoRemove
   {
 ^linux-image.*;
 ^linux-restricted-modules.*;
   };
 };
 [EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat 10periodic
 APT::Periodic::Update-Package-Lists 1;
 APT::Periodic::Download-Upgradeable-Packages 0;
 [EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat 70debconf
 // Pre-configure all packages with debconf before they are installed.
 // If you don't like it, comment it out.
 DPkg::Pre-Install-Pkgs {/usr/sbin/dpkg-preconfigure --apt || true;};
 [EMAIL PROTECTED]:/etc/apt/apt.conf.d$
 
 Thanks, Don

Perhaps try:

grep 4001 -r /etc/

or

env|grep 4001

My guess is you have a proxy setting somewhere in /etc, or you somehow
set a proxy environment variable that it is trying to use.

--
Len Sorensen


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Don Montgomery


Here is what I found:

[EMAIL PROTECTED]:~$ less /etc/apt/apt.conf
/etc/apt/apt.conf: No such file or directory
[EMAIL PROTECTED]:~$ ll /etc/apt
total 40
drwxr-xr-x 2 root root 4096 2007-11-25 14:28 apt.conf.d
-rw-r--r-- 1 root root 2524 2006-11-14 08:43 apt-file.conf
-rw--- 1 root root0 2007-04-26 17:06 secring.gpg
-rw-r--r-- 1 root root  952 2008-01-13 19:35 sources.list
-rw-r--r-- 1 root root0 2007-04-26 17:06 sources.list~
drwxr-xr-x 2 root root 4096 2007-02-26 15:53 
sources.list.d
-rw-r--r-- 1 root root  506 2007-04-30 19:32 
sources.list.save

-rw--- 1 root root 1200 2007-08-13 19:50 trustdb.gpg
-rw--- 1 root root 4148 2007-08-13 19:50 trusted.gpg
-rw--- 1 root root 4148 2007-08-13 19:50 trusted.gpg~
[EMAIL PROTECTED]:~$ cd /etc/apt/apt.conf.d/
[EMAIL PROTECTED]:/etc/apt/apt.conf.d$ ll
total 16
-rw-r--r-- 1 root root  40 2007-04-26 17:06 00trustcdrom
-rw-r--r-- 1 root root  92 2007-07-02 07:07 01autoremove
-rw-r--r-- 1 root root  91 2007-04-30 19:32 10periodic
-rw-r--r-- 1 root root 182 2006-12-20 13:31 70debconf
[EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat 00trustcdrom
APT::Authentication::TrustCDROM true;
[EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat 01autoremove
APT
{
  NeverAutoRemove
  {
^linux-image.*;
^linux-restricted-modules.*;
  };
};
[EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat 10periodic
APT::Periodic::Update-Package-Lists 1;
APT::Periodic::Download-Upgradeable-Packages 0;
[EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat 70debconf
// Pre-configure all packages with debconf before they are installed.
// If you don't like it, comment it out.
DPkg::Pre-Install-Pkgs {/usr/sbin/dpkg-preconfigure --apt || true;};
[EMAIL PROTECTED]:/etc/apt/apt.conf.d$

Thanks, Don

On Sun, 13 Jan 2008, Douglas A. Tutty wrote:

Date: Sun, 13 Jan 2008 23:13:25 -0500
From: Douglas A. Tutty [EMAIL PROTECTED]
To: debian-amd64@lists.debian.org
Subject: Re: apt-get problem
Resent-Date: Mon, 14 Jan 2008 04:13:47 + (UTC)
Resent-From: debian-amd64@lists.debian.org

On Sun, Jan 13, 2008 at 07:43:22PM -0600, Don Montgomery wrote:


I looked at the apt-get howto located at

http://www.debian.org/doc/manuals/apt-howto/ch-basico.en.html#s-sources.list

and grabbed some additional lines for my
/etc/apt/sources.list file, which now reads:




---

however, when I run apt-get update, I still get no joy,
and a lot of lines like:

Failed to fetch
http://debian.uchicago.edu/debian/dists/testing/Release.gpg
Could not connect to localhost:4001 (127.0.0.1). - connect
(111 Connection refused)

Any ideas what is happening?



Still looks like its trying to connect to a proxy at localhost port
4001.  Give us your /etc/apt/apt.conf and any files under
/etc/apt/apt.conf.d

Doug.





--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Lennart Sorensen
On Mon, Jan 14, 2008 at 10:02:33AM -0600, Don Montgomery wrote:
 Wow, a lot of output, but I suspect the first few lines 
 tell the tale:
 
 [EMAIL PROTECTED]:/etc/apt/apt.conf.d# env|grep 4001
 http_proxy=http://localhost:4001
 HTTP_PROXY=http://localhost:4001
 [EMAIL PROTECTED]:/etc/apt/apt.conf.d# grep 4001 -r /etc/
 grep: /etc/alternatives/javac: No such file or directory
 /etc/rc1.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
 /etc/rc5.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
 /etc/rc4.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
 /etc/popularity-contest.conf:MY_HOSTID=f763d78f15bb4001b5315c9e2423a993
 /etc/rc3.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
 /etc/rc0.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
 /etc/rc6.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
 /etc/environment:HTTP_PROXY=http://localhost:4001 # +ANON_MARK+
 /etc/environment:http_proxy=http://localhost:4001 # +ANON_MARK+

So that there just set an entironment variable making most programs that
are properly written try to use it as a proxy.  apt is properly written
so it does as it is told and tries to use your proxy.

Now the question is why does your proxy not work.  I also see the
anon-proxy script in rc#.d and init.d apparently providing a proxy on
that port.  Maybe it's misconfigured or it simply doesn't work.

So either fix the proxy so it works, or stop using it as a global proxy
setting and only enable it for those programs where it actually works.

--
Len Sorensen


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Don Montgomery


Wow, a lot of output, but I suspect the first few lines 
tell the tale:


[EMAIL PROTECTED]:/etc/apt/apt.conf.d# env|grep 4001
http_proxy=http://localhost:4001
HTTP_PROXY=http://localhost:4001
[EMAIL PROTECTED]:/etc/apt/apt.conf.d# grep 4001 -r /etc/
grep: /etc/alternatives/javac: No such file or directory
/etc/rc1.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc5.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc4.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/popularity-contest.conf:MY_HOSTID=f763d78f15bb4001b5315c9e2423a993
/etc/rc3.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc0.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc6.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/environment:HTTP_PROXY=http://localhost:4001 # +ANON_MARK+
/etc/environment:http_proxy=http://localhost:4001 # +ANON_MARK+
/etc/udev/libsane.rules:SYSFS{idVendor}==04b0, SYSFS{idProduct}==4001, MODE=0664, 
GROUP=scanner, ENV{libsane_matched}=yes
/etc/udev/libsane.rules:# Artec/Ultima 1236 USB | Artec/Ultima Ultima 2000 
(0x4001)
/etc/udev/libsane.rules:SYSFS{idVendor}==05d8, SYSFS{idProduct}==4001, MODE=0664, 
GROUP=scanner, ENV{libsane_matched}=yes
/etc/udev/rules.d/025_libsane.rules:SYSFS{idVendor}==04b0, SYSFS{idProduct}==4001, MODE=0664, 
GROUP=scanner, ENV{libsane_matched}=yes
/etc/udev/rules.d/025_libsane.rules:# Artec/Ultima 1236 USB | Artec/Ultima 
Ultima 2000 (0x4001)
/etc/udev/rules.d/025_libsane.rules:SYSFS{idVendor}==05d8, SYSFS{idProduct}==4001, MODE=0664, 
GROUP=scanner, ENV{libsane_matched}=yes
/etc/mime-magic:0   beshort 054001  370 sysV pure executable
/etc/mime-magic:0   beshort 0x4001  MIPSEB-LE MIPS-III COFF 
executable
/etc/default/anon-proxy:PORT=4001
/etc/default/nfs-common:#   this variable to a statd argument like: --port 4000 
--outgoing-port 4001.
/etc/selinux/refpolicy-targeted/contexts/netfilter_contexts:-A 
selinux_new_input -p udp --dport 64001 -j SECMARK --selctx 
system_u:object_r:traceroute_server_packet_t:s0
/etc/selinux/refpolicy-targeted/contexts/netfilter_contexts:-A selinux_new_output -p udp --dport 64001 -j SECMARK --selctx system_u:object_r:traceroute_client_packet_t:s0 Binary file 
/etc/selinux/refpolicy-targeted/modules/previous/base.linked matches

/etc/selinux/refpolicy-targeted/modules/previous/netfilter_contexts:-A 
selinux_new_input -p udp --dport 64001 -j SECMARK --selctx 
system_u:object_r:traceroute_server_packet_t:s0
/etc/selinux/refpolicy-targeted/modules/previous/netfilter_contexts:-A selinux_new_output -p udp --dport 64001 -j SECMARK --selctx system_u:object_r:traceroute_client_packet_t:s0 Binary file 
/etc/selinux/refpolicy-targeted/modules/previous/base.pp matches Binary file 
/etc/selinux/refpolicy-targeted/modules/active/base.linked matches

/etc/selinux/refpolicy-targeted/modules/active/netfilter_contexts:-A 
selinux_new_input -p udp --dport 64001 -j SECMARK --selctx 
system_u:object_r:traceroute_server_packet_t:s0
/etc/selinux/refpolicy-targeted/modules/active/netfilter_contexts:-A selinux_new_output -p udp --dport 64001 -j SECMARK --selctx system_u:object_r:traceroute_client_packet_t:s0 Binary file 
/etc/selinux/refpolicy-targeted/modules/active/base.pp matches

/etc/kde3/kdebug.areas:24001 Quanta (parser)
/etc/kde3/kdebug.areas:34001klyx
/etc/kde3/kdebug.areas:44001KexiDB (driver impl)
/etc/init.d/anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc2.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
[EMAIL PROTECTED]:/etc/apt/apt.conf.d#

--Don

On Mon, 14 Jan 2008, Lennart Sorensen wrote:

Date: Mon, 14 Jan 2008 09:54:41 -0500
From: Lennart Sorensen [EMAIL PROTECTED]
To: Don Montgomery [EMAIL PROTECTED]
Cc: Douglas A. Tutty [EMAIL PROTECTED], debian-amd64@lists.debian.org
Subject: Re: apt-get problem
Resent-Date: Mon, 14 Jan 2008 14:54:56 + (UTC)
Resent-From: debian-amd64@lists.debian.org

On Mon, Jan 14, 2008 at 08:38:59AM -0600, Don Montgomery wrote:


Here is what I found:

[EMAIL PROTECTED]:~$ less /etc/apt/apt.conf
/etc/apt/apt.conf: No such file or directory
[EMAIL PROTECTED]:~$ ll /etc/apt
total 40
drwxr-xr-x 2 root root 4096 2007-11-25 14:28 apt.conf.d
-rw-r--r-- 1 root root 2524 2006-11-14 08:43 apt-file.conf
-rw--- 1 root root0 2007-04-26 17:06 secring.gpg
-rw-r--r-- 1 root root  952 2008-01-13 19:35 sources.list
-rw-r--r-- 1 root root0 2007-04-26 17:06 sources.list~
drwxr-xr-x 2 root root 4096 2007-02-26 15:53
sources.list.d
-rw-r--r-- 1 root root  506 2007-04-30 19:32
sources.list.save
-rw--- 1 root root 1200 2007-08-13 19:50 trustdb.gpg
-rw--- 1 root root 4148 2007-08-13 19:50 trusted.gpg
-rw--- 1 root root 4148 2007-08-13 19:50 trusted.gpg~
[EMAIL PROTECTED]:~$ cd /etc/apt/apt.conf.d/
[EMAIL PROTECTED]:/etc/apt/apt.conf.d$ ll
total 16
-rw-r--r-- 1 root root  40 2007-04-26 17:06 00trustcdrom
-rw-r--r-- 1 root root  92 2007-07-02 07:07 01autoremove
-rw-r--r-- 1 root root  91 2007-04-30 19:32 10periodic
-rw-r--r-- 1 root root 182 2006-12-20 13:31 70debconf
[EMAIL PROTECTED]:/etc/apt/apt.conf.d$ cat

Re: apt-get problem

2008-01-14 Thread Don Montgomery


For discontinuing the proxy, I guess I can go into 
/etc/rc*.d/* and comment out all the lines mentioning port 
4001; would reboot be necessary after that?  Otherwise, 
how would one go about fixing the proxy so that it does 
work?


Thanks, Don

On Mon, 14 Jan 2008, Lennart Sorensen wrote:

Date: Mon, 14 Jan 2008 11:25:10 -0500
From: Lennart Sorensen [EMAIL PROTECTED]
To: Don Montgomery [EMAIL PROTECTED]
Cc: debian-amd64@lists.debian.org
Subject: Re: apt-get problem

On Mon, Jan 14, 2008 at 10:02:33AM -0600, Don Montgomery wrote:

Wow, a lot of output, but I suspect the first few lines
tell the tale:

[EMAIL PROTECTED]:/etc/apt/apt.conf.d# env|grep 4001
http_proxy=http://localhost:4001
HTTP_PROXY=http://localhost:4001
[EMAIL PROTECTED]:/etc/apt/apt.conf.d# grep 4001 -r /etc/
grep: /etc/alternatives/javac: No such file or directory
/etc/rc1.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc5.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc4.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/popularity-contest.conf:MY_HOSTID=f763d78f15bb4001b5315c9e2423a993
/etc/rc3.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc0.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc6.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/environment:HTTP_PROXY=http://localhost:4001 # +ANON_MARK+
/etc/environment:http_proxy=http://localhost:4001 # +ANON_MARK+


So that there just set an entironment variable making most programs that
are properly written try to use it as a proxy.  apt is properly written
so it does as it is told and tries to use your proxy.

Now the question is why does your proxy not work.  I also see the
anon-proxy script in rc#.d and init.d apparently providing a proxy on
that port.  Maybe it's misconfigured or it simply doesn't work.

So either fix the proxy so it works, or stop using it as a global proxy
setting and only enable it for those programs where it actually works.

--
Len Sorensen



--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Douglas A. Tutty
On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:
 
 For discontinuing the proxy, I guess I can go into 
 /etc/rc*.d/* and comment out all the lines mentioning port 
 4001; would reboot be necessary after that?  Otherwise, 
 how would one go about fixing the proxy so that it does 
 work?

stop top posting.

Debian doesn't proxy by default so you must have a proxy package
installed.  If you don't want it, remove it.

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Don Montgomery


On Mon, 14 Jan 2008, Douglas A. Tutty wrote:

Date: Mon, 14 Jan 2008 13:47:51 -0500
From: Douglas A. Tutty [EMAIL PROTECTED]
To: debian-amd64@lists.debian.org
Subject: Re: apt-get problem
Resent-Date: Mon, 14 Jan 2008 18:58:30 + (UTC)
Resent-From: debian-amd64@lists.debian.org

On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:


For discontinuing the proxy, I guess I can go into
/etc/rc*.d/* and comment out all the lines mentioning port
4001; would reboot be necessary after that?  Otherwise,
how would one go about fixing the proxy so that it does
work?


stop top posting.


my apologies


Debian doesn't proxy by default so you must have a proxy package
installed.  If you don't want it, remove it.

that sounds like a good idea; perhaps I could google up 
proxy package and find out what might be there?


Don


Doug.





--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Douglas A. Tutty
On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:
 
 On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
 Date: Mon, 14 Jan 2008 13:47:51 -0500
 From: Douglas A. Tutty [EMAIL PROTECTED]
 To: debian-amd64@lists.debian.org
 Subject: Re: apt-get problem
 Resent-Date: Mon, 14 Jan 2008 18:58:30 + (UTC)
 Resent-From: debian-amd64@lists.debian.org
 
 On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:
 
 For discontinuing the proxy, I guess I can go into
 /etc/rc*.d/* and comment out all the lines mentioning port
 4001; would reboot be necessary after that?  Otherwise,
 how would one go about fixing the proxy so that it does
 work?
 
 stop top posting.
 
 my apologies
 
 Debian doesn't proxy by default so you must have a proxy package
 installed.  If you don't want it, remove it.
 
 that sounds like a good idea; perhaps I could google up 
 proxy package and find out what might be there?
 
 Don
 

Is that supposed to be funny?

Use whatever package management tools you usually use and see what proxy
packages you have installed.  Then delete it.

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Don Montgomery


On Mon, 14 Jan 2008, Douglas A. Tutty wrote:

On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:

On Mon, 14 Jan 2008, Douglas A. Tutty wrote:

On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:


For discontinuing the proxy, I guess I can go into
/etc/rc*.d/* and comment out all the lines mentioning port
4001; would reboot be necessary after that?  Otherwise,
how would one go about fixing the proxy so that it does
work?


stop top posting.


my apologies


Debian doesn't proxy by default so you must have a proxy package
installed.  If you don't want it, remove it.


that sounds like a good idea; perhaps I could google up
proxy package and find out what might be there?

Don



Is that supposed to be funny?


no


Use whatever package management tools you usually use and see what proxy
packages you have installed.  Then delete it.

KDE Control Center lists Proxy as connect to the 
Internet directly


Is there another way to find out what I need to know?

Thanks, Don


Doug.





--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Jaime Ochoa Malagón
On 1/14/08, Don Montgomery [EMAIL PROTECTED] wrote:

 On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
  On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:
  On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
  On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:
 
  For discontinuing the proxy, I guess I can go into
  /etc/rc*.d/* and comment out all the lines mentioning port
  4001; would reboot be necessary after that?  Otherwise,
  how would one go about fixing the proxy so that it does
  work?
 
  stop top posting.
 
  my apologies
 
  Debian doesn't proxy by default so you must have a proxy package
  installed.  If you don't want it, remove it.
 
  that sounds like a good idea; perhaps I could google up
  proxy package and find out what might be there?
 
  Don
 
 
  Is that supposed to be funny?
 
 no

  Use whatever package management tools you usually use and see what proxy
  packages you have installed.  Then delete it.
 
 KDE Control Center lists Proxy as connect to the
 Internet directly

 Is there another way to find out what I need to know?

1.- did you install this machine by yourself?

let me explain, the proxy configuration and app (just a guess
anon-proxy see http://packages.debian.org/anon-proxy)

don't appear by himself in your machine...

but if you don't install it then you mustn't remove the package
beacuse could be really well configured...

2.- did you could be able to use any other net tool (e.j. iceweasel)

3.- could you simply reinstall to avoid the problem?

good luck...


 Thanks, Don

  Doug.
 
 
 

 --


 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




-- 
Perhaps the depth of
love can be calibrated by the number of different selves that are
actively involved in a given relationship.

Carl Sagan (Contact)

Jaime Ochoa Malagón
Integrated Technology
Tel: (55) 52 54 26 10



Re: apt-get problem

2008-01-14 Thread Wayne Topa
Don Montgomery([EMAIL PROTECTED]) is reported to have said:

 On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
--snip--

 Debian doesn't proxy by default so you must have a proxy package
 installed.  If you don't want it, remove it.

 that sounds like a good idea; perhaps I could google up proxy package and 
 find out what might be there?


dpkg -l *proxy* |grep ^i

should get you what you need.  

WT

-- 
Adding manpower to a late software project makes it later.
___


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Jaime Ochoa Malagón
On 1/14/08, Wayne Topa [EMAIL PROTECTED] wrote:
 Don Montgomery([EMAIL PROTECTED]) is reported to have said:
 
  On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
 --snip--
 
  Debian doesn't proxy by default so you must have a proxy package
  installed.  If you don't want it, remove it.
 
  that sounds like a good idea; perhaps I could google up proxy package and
  find out what might be there?
 

 dpkg -l *proxy* |grep ^i

 should get you what you need.


/etc/rc1.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc5.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc4.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/popularity-contest.conf:MY_HOSTID=f763d78f15bb4001b5315c9e2423a993
/etc/rc3.d/S20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc0.d/K20anon-proxy:[ -z $PORT ]  PORT=4001
/etc/rc6.d/K20anon-proxy:[ -z $PORT ]  PORT=4001

If you are shure to remove the proxy just type

dpkg --purge anon-proxy



 WT

 --
 Adding manpower to a late software project makes it later.
 ___


 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




-- 
Perhaps the depth of
love can be calibrated by the number of different selves that are
actively involved in a given relationship.

Carl Sagan (Contact)

Jaime Ochoa Malagón
Integrated Technology
Tel: (55) 52 54 26 10



Re: apt-get problem

2008-01-14 Thread Douglas A. Tutty
On Mon, Jan 14, 2008 at 06:49:26PM -0600, Don Montgomery wrote:
 On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
 On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:
 On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
 On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:
 
 For discontinuing the proxy, I guess I can go into
 /etc/rc*.d/* and comment out all the lines mentioning port
 4001; would reboot be necessary after that?  Otherwise,
 how would one go about fixing the proxy so that it does
 work?
 
 stop top posting.
 
 my apologies
 
 Debian doesn't proxy by default so you must have a proxy package
 installed.  If you don't want it, remove it.
 
 that sounds like a good idea; perhaps I could google up
 proxy package and find out what might be there?
 
 Use whatever package management tools you usually use and see what proxy
 packages you have installed.  Then delete it.
 
 KDE Control Center lists Proxy as connect to the 
 Internet directly
 
 Is there another way to find out what I need to know?
 

This isn't a KDE thing.  

What package manager do you use?  E.g. aptitude, apt-get, dselect...

Then use its search function and look for installed packages with the
word proxy in the description.

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Douglas A. Tutty
On Mon, Jan 14, 2008 at 07:02:45PM -0600, Jaime Ochoa Malag?n wrote:
 On 1/14/08, Don Montgomery [EMAIL PROTECTED] wrote:
 
  On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
   On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:
   On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
   On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:
  
   For discontinuing the proxy, I guess I can go into
   /etc/rc*.d/* and comment out all the lines mentioning port
   4001; would reboot be necessary after that?  Otherwise,
   how would one go about fixing the proxy so that it does
   work?
  
   Debian doesn't proxy by default so you must have a proxy package
   installed.  If you don't want it, remove it.
  
   that sounds like a good idea; perhaps I could google up
   proxy package and find out what might be there?
 
   Use whatever package management tools you usually use and see what proxy
   packages you have installed.  Then delete it.
  
  KDE Control Center lists Proxy as connect to the
  Internet directly
 
  Is there another way to find out what I need to know?
 
 1.- did you install this machine by yourself?
 
 let me explain, the proxy configuration and app (just a guess
 anon-proxy see http://packages.debian.org/anon-proxy)
 
 don't appear by himself in your machine...
 
 but if you don't install it then you mustn't remove the package
 beacuse could be really well configured...
 
 2.- did you could be able to use any other net tool (e.j. iceweasel)
 
 3.- could you simply reinstall to avoid the problem?
 

If he is the system admin, he should know if he installed or set up the
machine.  If he isn't, then he shouldn't reinstall or install packages.
If he didn't install the system but is now the sysadmin, then he needs
to learn to use a package manager sooner or later.  

Reinstalling to avoid removing a proxy seems overkill.  This is debian.
You should only need to reinstall for a failed disk in a non-raid
system.

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-14 Thread Jaime Ochoa Malagón
On 1/14/08, Douglas A. Tutty [EMAIL PROTECTED] wrote:
 On Mon, Jan 14, 2008 at 07:02:45PM -0600, Jaime Ochoa Malag?n wrote:
  On 1/14/08, Don Montgomery [EMAIL PROTECTED] wrote:
  
   On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:
On Mon, 14 Jan 2008, Douglas A. Tutty wrote:
On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:
   
For discontinuing the proxy, I guess I can go into
/etc/rc*.d/* and comment out all the lines mentioning port
4001; would reboot be necessary after that?  Otherwise,
how would one go about fixing the proxy so that it does
work?
   
Debian doesn't proxy by default so you must have a proxy package
installed.  If you don't want it, remove it.
   
that sounds like a good idea; perhaps I could google up
proxy package and find out what might be there?
  
Use whatever package management tools you usually use and see what proxy
packages you have installed.  Then delete it.
   
   KDE Control Center lists Proxy as connect to the
   Internet directly
  
   Is there another way to find out what I need to know?
 
  1.- did you install this machine by yourself?
 
  let me explain, the proxy configuration and app (just a guess
  anon-proxy see http://packages.debian.org/anon-proxy)
 
  don't appear by himself in your machine...
 
  but if you don't install it then you mustn't remove the package
  beacuse could be really well configured...
 
  2.- did you could be able to use any other net tool (e.j. iceweasel)
 
  3.- could you simply reinstall to avoid the problem?
 

 If he is the system admin, he should know if he installed or set up the
 machine.  If he isn't, then he shouldn't reinstall or install packages.

Thats the point...

 If he didn't install the system but is now the sysadmin, then he needs
 to learn to use a package manager sooner or later.

I hope sooner...


 Reinstalling to avoid removing a proxy seems overkill.  This is debian.

I agree, but he should learn to use it, or perhaps all the
configuration need to be ajusted to the new sysadmin (in a laptop
scenario primarily)

 You should only need to reinstall for a failed disk in a non-raid
 system.

Isn't it beautifull?


 Doug.


 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




-- 
Perhaps the depth of
love can be calibrated by the number of different selves that are
actively involved in a given relationship.

Carl Sagan (Contact)

Jaime Ochoa Malagón
Integrated Technology
Tel: (55) 52 54 26 10



Re: apt-get problem

2008-01-14 Thread Don Montgomery

On Mon, 14 Jan 2008, Jaime Ochoa Malagón wrote:

On 1/14/08, Don Montgomery [EMAIL PROTECTED] wrote:

On Mon, 14 Jan 2008, Douglas A. Tutty wrote:

On Mon, Jan 14, 2008 at 05:39:04PM -0600, Don Montgomery wrote:

On Mon, 14 Jan 2008, Douglas A. Tutty wrote:

On Mon, Jan 14, 2008 at 11:50:58AM -0600, Don Montgomery wrote:



KDE Control Center lists Proxy as connect to the
Internet directly

Is there another way to find out what I need to know?


1.- did you install this machine by yourself?

let me explain, the proxy configuration and app (just a guess
anon-proxy see http://packages.debian.org/anon-proxy)

don't appear by himself in your machine...

but if you don't install it then you mustn't remove the package
beacuse could be really well configured...

I did a netinstall a while back.  About a month ago, I 
dist-upgraded to lenny---I guess that was about the time 
this started.



2.- did you could be able to use any other net tool (e.j. iceweasel)

Yes, iceweasel, konqueror, and galeon all work fine, even 
now.  apt-get worked fine too, until the dist-upgrade.



3.- could you simply reinstall to avoid the problem?

I certainly will, if I cannot find another way to deal 
with it.



good luck...

Thanks.  I really appreciate all the great work that the 
folks on this list have done for this port.


Don



Thanks, Don


Doug.





--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]








--

Re: apt-get problem

2008-01-13 Thread Don Montgomery


I looked at the apt-get howto located at

http://www.debian.org/doc/manuals/apt-howto/ch-basico.en.html#s-sources.list

and grabbed some additional lines for my 
/etc/apt/sources.list file, which now reads:


#

deb http://debian.uchicago.edu/debian/ testing main contrib non-free
deb-src http://debian.uchicago.edu/debian/ testing main contrib non-free

deb http://security.debian.org/ testing/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free

deb http://http.us.debian.org/debian testing main contrib non-free
deb http://non-us.debian.org/debian-non-US testing/non-US main contrib non-free
deb http://security.debian.org testing/updates main contrib non-free

# Uncomment if you want the apt-get source function to work
deb-src http://http.us.debian.org/debian testing main contrib non-free
deb-src http://non-us.debian.org/debian-non-US testing/non-US main contrib 
non-free

---

however, when I run apt-get update, I still get no joy, 
and a lot of lines like:


Failed to fetch 
http://debian.uchicago.edu/debian/dists/testing/Release.gpg 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)


Any ideas what is happening?

Thanks, Don

P.S.  apt-get was working flawlessly on this machine for 
the longest time---I do not know what has changed.


+
On Sat, 5 Jan 2008, Don Montgomery wrote:

Date: Sat, 5 Jan 2008 11:23:25 -0600 (CST)
From: Don Montgomery [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: debian-amd64@lists.debian.org
Subject: Re: apt-get problem
Resent-Date: Sat,  5 Jan 2008 17:21:37 + (UTC)
Resent-From: debian-amd64@lists.debian.org


/etc/apt/sources.list:

deb http://debian.uchicago.edu/debian/ testing main contrib non-free
deb-src http://debian.uchicago.edu/debian/ testing main contrib non-free

deb http://security.debian.org/ testing/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free

/etc/apt/apt-file.conf:

# Apt-file configuration file

# Substitutions are made as follow:
#   host = remote hostname
#   port = port
#   uri = complete URI from sources.list
#   path = path from /
#   dist = the distrib name
#   comp = the component name
#   cache = path to the cache dir
#   dest = the destination file name
#   cdrom = cdrom mount point

# Where are located Packages (relative to comp directory)
destination = host_path_dists_dist_Contents-arch.gz

# Fetch methods using curl -L
http = curl -L -I uri/dists/dist/Contents-arch.gz 21 | grep 
'^HTTP.*404'  /dev/null || (curl -L -z cache/dest -R -o 
cache/dest_tmp uri/dists/dist/Contents-arch.gz /dev/null 21 
 (mv cache/dest_tmp cache/dest 21  chmod 644 
cache/dest) || (rm -f cache/dest_tmp; echo Can't get 
uri/dists/dist/Contents-arch.gz))
ftp = curl -L --ftp-pasv -I uri/dists/dist/Contents-arch.gz 21 | 
grep '^Content-Length:'  /dev/null  (curl -L --ftp-pasv -z 
cache/dest -R -o cache/dest_tmp 
uri/dists/dist/Contents-arch.gz /dev/null 21  (mv 
cache/dest_tmp cache/dest 21  chmod 644 cache/dest) || 
(rm -f cache/dest_tmp; echo Can't get 
uri/dists/dist/Contents-arch.gz))


# If you prefere wget uncomment following
http2 = wget -N -P cache -O cache/dest_tmp 
uri/dists/dist/Contents-arch.gz /dev/null 21  (mv 
cache/dest_tmp cache/dest  chmod 644 cache/dest)|| (rm -f 
cache/dest_tmp; echo uri/dists/dist/Contents-arch.gz not found)
ftp2 = wget -N --passive-ftp -P cache -O cache/dest_tmp 
uri/dists/dist/Contents-arch.gz /dev/null 21  ( mv 
cache/dest_tmp cache/dest  chmod 644 cache/dest) || (rm 
-f cache/dest_tmp; echo uri/dists/dist/Contents-arch.gz not 
found)


ssh = scp -l user -P port|22 
host:/path/dists/dist/Contents-arch.gz cache/dest  chmod 
644 cache/dest
rsh = rcp -l user host:/path/dists/dist/Contents-arch.gz 
cache/dest  chmod 644 cache/dest
file = cp /path/dists/dist/Contents-arch.gz cache/dest  chmod 
644 cache/dest
copy = cp /path/dists/dist/Contents-arch.gz cache/dest  chmod 
644 cache/dest
cdrom = echo Put CDROM labeled path in the cdrom device  /dev/stderr ; 
read ; mount cdrom; cp cdrom/dists/dist/Contents-arch.gz 
cache/dest  chmod 644 cache/dest; umount cdrom


Don

On Fri, 4 Jan 2008, [EMAIL PROTECTED] wrote:

Date: Fri, 04 Jan 2008 20:26:10 -0800
From: [EMAIL PROTECTED]
To: debian-amd64@lists.debian.org
Subject: Re: apt-get problem
Resent-Date: Sat,  5 Jan 2008 04:27:24 + (UTC)
Resent-From: debian-amd64@lists.debian.org

Quoting Douglas A. Tutty [EMAIL PROTECTED]:


On Fri, Jan 04, 2008 at 06:32:52PM -0600, Don Montgomery wrote:

Hello,

I am having a problem with apt-get (please see below).
(I have noted no other network problems: browser and ssh
work fine.)  I am not sure what is supposed to go on with
localhost.  Any ideas?

Thanks in advance, Don

[EMAIL PROTECTED]:/home/don# apt-get update
Err http://security.debian.org testing/updates Release.gpg
 Could not connect to localhost:4001 (127.0.0.1). -
connect (111

Re: apt-get problem

2008-01-13 Thread Douglas A. Tutty
On Sun, Jan 13, 2008 at 07:43:22PM -0600, Don Montgomery wrote:
 
 I looked at the apt-get howto located at
 
 http://www.debian.org/doc/manuals/apt-howto/ch-basico.en.html#s-sources.list
 
 and grabbed some additional lines for my 
 /etc/apt/sources.list file, which now reads:
 
 
 ---
 
 however, when I run apt-get update, I still get no joy, 
 and a lot of lines like:
 
 Failed to fetch 
 http://debian.uchicago.edu/debian/dists/testing/Release.gpg 
 Could not connect to localhost:4001 (127.0.0.1). - connect 
 (111 Connection refused)
 
 Any ideas what is happening?
 

Still looks like its trying to connect to a proxy at localhost port
4001.  Give us your /etc/apt/apt.conf and any files under
/etc/apt/apt.conf.d

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-05 Thread Don Montgomery


/etc/apt/sources.list:

deb http://debian.uchicago.edu/debian/ testing main contrib non-free
deb-src http://debian.uchicago.edu/debian/ testing main contrib non-free

deb http://security.debian.org/ testing/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free

Don

On Fri, 4 Jan 2008, Douglas A. Tutty wrote:

Date: Fri, 4 Jan 2008 21:52:28 -0500
From: Douglas A. Tutty [EMAIL PROTECTED]
To: debian-amd64@lists.debian.org
Subject: Re: apt-get problem
Resent-Date: Sat,  5 Jan 2008 02:55:27 + (UTC)
Resent-From: debian-amd64@lists.debian.org

On Fri, Jan 04, 2008 at 06:32:52PM -0600, Don Montgomery wrote:

Hello,

I am having a problem with apt-get (please see below).
(I have noted no other network problems: browser and ssh
work fine.)  I am not sure what is supposed to go on with
localhost.  Any ideas?

Thanks in advance, Don

[EMAIL PROTECTED]:/home/don# apt-get update
Err http://security.debian.org testing/updates Release.gpg
  Could not connect to localhost:4001 (127.0.0.1). -
connect (111 Connection refused)
Err http://security.debian.org testing/updates/main
Translation-en_US
  Could not connect to localhost:4001 (127.0.0.1). -
connect (111 Connection refused)


It looks like your apt is trying to connect via an http proxy on
localhost at port 4001 and is unable to.  Does your browser connect via
a proxy?  ssh uses a different port so wouldn't be involved in a proxy
issue.

For completeness, give us your /etc/apt/sources.list.

I don't know where proxies are set up for apt.

Doug.





--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-05 Thread Don Montgomery


/etc/apt/sources.list:

deb http://debian.uchicago.edu/debian/ testing main contrib non-free
deb-src http://debian.uchicago.edu/debian/ testing main contrib non-free

deb http://security.debian.org/ testing/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free

/etc/apt/apt-file.conf:

# Apt-file configuration file

# Substitutions are made as follow:
#   host = remote hostname
#   port = port
#   uri = complete URI from sources.list
#   path = path from /
#   dist = the distrib name
#   comp = the component name
#   cache = path to the cache dir
#   dest = the destination file name
#   cdrom = cdrom mount point

# Where are located Packages (relative to comp 
directory)
destination = 
host_path_dists_dist_Contents-arch.gz


# Fetch methods using curl -L
http = curl -L -I uri/dists/dist/Contents-arch.gz 
21 | grep '^HTTP.*404'  /dev/null || (curl -L -z 
cache/dest -R -o cache/dest_tmp 
uri/dists/dist/Contents-arch.gz /dev/null 21  
(mv cache/dest_tmp cache/dest 21  chmod 
644 cache/dest) || (rm -f cache/dest_tmp; echo 
Can't get uri/dists/dist/Contents-arch.gz))
ftp = curl -L --ftp-pasv -I 
uri/dists/dist/Contents-arch.gz 21 | grep 
'^Content-Length:'  /dev/null  (curl -L --ftp-pasv -z 
cache/dest -R -o cache/dest_tmp 
uri/dists/dist/Contents-arch.gz /dev/null 21  
(mv cache/dest_tmp cache/dest 21  chmod 
644 cache/dest) || (rm -f cache/dest_tmp; echo 
Can't get uri/dists/dist/Contents-arch.gz))


# If you prefere wget uncomment following
http2 = wget -N -P cache -O cache/dest_tmp 
uri/dists/dist/Contents-arch.gz /dev/null 21  
(mv cache/dest_tmp cache/dest  chmod 644 
cache/dest)|| (rm -f cache/dest_tmp; echo 
uri/dists/dist/Contents-arch.gz not found)
ftp2 = wget -N --passive-ftp -P cache -O 
cache/dest_tmp 
uri/dists/dist/Contents-arch.gz /dev/null 21  
( mv cache/dest_tmp cache/dest  chmod 644 
cache/dest) || (rm -f cache/dest_tmp; echo 
uri/dists/dist/Contents-arch.gz not found)


ssh = scp -l user -P port|22 
host:/path/dists/dist/Contents-arch.gz 
cache/dest  chmod 644 cache/dest
rsh = rcp -l user 
host:/path/dists/dist/Contents-arch.gz 
cache/dest  chmod 644 cache/dest
file = cp /path/dists/dist/Contents-arch.gz 
cache/dest  chmod 644 cache/dest
copy = cp /path/dists/dist/Contents-arch.gz 
cache/dest  chmod 644 cache/dest
cdrom = echo Put CDROM labeled path in the cdrom 
device  /dev/stderr ; read ; mount cdrom; cp 
cdrom/dists/dist/Contents-arch.gz cache/dest 
 chmod 644 cache/dest; umount cdrom


Don

On Fri, 4 Jan 2008, [EMAIL PROTECTED] wrote:

Date: Fri, 04 Jan 2008 20:26:10 -0800
From: [EMAIL PROTECTED]
To: debian-amd64@lists.debian.org
Subject: Re: apt-get problem
Resent-Date: Sat,  5 Jan 2008 04:27:24 + (UTC)
Resent-From: debian-amd64@lists.debian.org

Quoting Douglas A. Tutty [EMAIL PROTECTED]:


On Fri, Jan 04, 2008 at 06:32:52PM -0600, Don Montgomery wrote:

Hello,

I am having a problem with apt-get (please see below).
(I have noted no other network problems: browser and ssh
work fine.)  I am not sure what is supposed to go on with
localhost.  Any ideas?

Thanks in advance, Don

[EMAIL PROTECTED]:/home/don# apt-get update
Err http://security.debian.org testing/updates Release.gpg
 Could not connect to localhost:4001 (127.0.0.1). -
connect (111 Connection refused)
Err http://security.debian.org testing/updates/main
Translation-en_US
 Could not connect to localhost:4001 (127.0.0.1). -
connect (111 Connection refused)


It looks like your apt is trying to connect via an http proxy on
localhost at port 4001 and is unable to.  Does your browser connect via
a proxy?  ssh uses a different port so wouldn't be involved in a proxy
issue.

For completeness, give us your /etc/apt/sources.list.

I don't know where proxies are set up for apt.



/etc/apt/apt.conf might contain some settings, and most likely the place for 
a proxy.


Cheers,
Mike



--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



apt-get problem

2008-01-04 Thread Don Montgomery


Hello,

I am having a problem with apt-get (please see below). 
(I have noted no other network problems: browser and ssh 
work fine.)  I am not sure what is supposed to go on with 
localhost.  Any ideas?


Thanks in advance, Don

[EMAIL PROTECTED]:/home/don# apt-get update
Err http://security.debian.org testing/updates Release.gpg
  Could not connect to localhost:4001 (127.0.0.1). - 
connect (111 Connection refused)
Err http://security.debian.org testing/updates/main 
Translation-en_US
  Could not connect to localhost:4001 (127.0.0.1). - 
connect (111 Connection refused)
Err http://security.debian.org testing/updates/contrib 
Translation-en_US
  Could not connect to localhost:4001 (127.0.0.1). - 
connect (111 Connection refused)
Err http://security.debian.org testing/updates/non-free 
Translation-en_US
  Could not connect to localhost:4001 (127.0.0.1). - 
connect (111 Connection refused)

Err http://debian.uchicago.edu testing Release.gpg
  Could not connect to localhost:4001 (127.0.0.1). - 
connect (111 Connection refused)
Err http://debian.uchicago.edu testing/main 
Translation-en_US
  Could not connect to localhost:4001 (127.0.0.1). - 
connect (111 Connection refused)
Err http://debian.uchicago.edu testing/contrib 
Translation-en_US
  Could not connect to localhost:4001 (127.0.0.1). - 
connect (111 Connection refused)
Err http://debian.uchicago.edu testing/non-free 
Translation-en_US
  Could not connect to localhost:4001 (127.0.0.1). - 
connect (111 Connection refused)
Failed to fetch 
http://debian.uchicago.edu/debian/dists/testing/Release.gpg 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)
Failed to fetch 
http://debian.uchicago.edu/debian/dists/testing/main/i18n/Translation-en_US.bz2 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)
Failed to fetch 
http://debian.uchicago.edu/debian/dists/testing/contrib/i18n/Translation-en_US.bz2 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)
Failed to fetch 
http://debian.uchicago.edu/debian/dists/testing/non-free/i18n/Translation-en_US.bz2 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)
Failed to fetch 
http://security.debian.org/dists/testing/updates/Release.gpg 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)
Failed to fetch 
http://security.debian.org/dists/testing/updates/main/i18n/Translation-en_US.bz2 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)
Failed to fetch 
http://security.debian.org/dists/testing/updates/contrib/i18n/Translation-en_US.bz2 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)
Failed to fetch 
http://security.debian.org/dists/testing/updates/non-free/i18n/Translation-en_US.bz2 
Could not connect to localhost:4001 (127.0.0.1). - connect 
(111 Connection refused)

Reading package lists... Done
W: Some index files failed to download, they have been 
ignored, or old ones used instead.

[EMAIL PROTECTED]:/home/don#




 --


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-04 Thread Douglas A. Tutty
On Fri, Jan 04, 2008 at 06:32:52PM -0600, Don Montgomery wrote:
 Hello,
 
 I am having a problem with apt-get (please see below). 
 (I have noted no other network problems: browser and ssh 
 work fine.)  I am not sure what is supposed to go on with 
 localhost.  Any ideas?
 
 Thanks in advance, Don
 
 [EMAIL PROTECTED]:/home/don# apt-get update
 Err http://security.debian.org testing/updates Release.gpg
   Could not connect to localhost:4001 (127.0.0.1). - 
 connect (111 Connection refused)
 Err http://security.debian.org testing/updates/main 
 Translation-en_US
   Could not connect to localhost:4001 (127.0.0.1). - 
 connect (111 Connection refused)

It looks like your apt is trying to connect via an http proxy on
localhost at port 4001 and is unable to.  Does your browser connect via
a proxy?  ssh uses a different port so wouldn't be involved in a proxy
issue.

For completeness, give us your /etc/apt/sources.list.

I don't know where proxies are set up for apt.

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get problem

2008-01-04 Thread michael

Quoting Douglas A. Tutty [EMAIL PROTECTED]:


On Fri, Jan 04, 2008 at 06:32:52PM -0600, Don Montgomery wrote:

Hello,

I am having a problem with apt-get (please see below).
(I have noted no other network problems: browser and ssh
work fine.)  I am not sure what is supposed to go on with
localhost.  Any ideas?

Thanks in advance, Don

[EMAIL PROTECTED]:/home/don# apt-get update
Err http://security.debian.org testing/updates Release.gpg
  Could not connect to localhost:4001 (127.0.0.1). -
connect (111 Connection refused)
Err http://security.debian.org testing/updates/main
Translation-en_US
  Could not connect to localhost:4001 (127.0.0.1). -
connect (111 Connection refused)


It looks like your apt is trying to connect via an http proxy on
localhost at port 4001 and is unable to.  Does your browser connect via
a proxy?  ssh uses a different port so wouldn't be involved in a proxy
issue.

For completeness, give us your /etc/apt/sources.list.

I don't know where proxies are set up for apt.



/etc/apt/apt.conf might contain some settings, and most likely the  
place for a proxy.


Cheers,
Mike