public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] wget problem for the Proxy
@ 2006-07-06 16:04 Fischetti Antonio
  2006-07-06 16:34 ` Grant Mills
  0 siblings, 1 reply; 6+ messages in thread
From: Fischetti Antonio @ 2006-07-06 16:04 UTC (permalink / raw)
  To: ecos-discuss

I'm can't download with
wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl

It says "Unresolved Host".
I am under a proxy.
Do I need a special version of wget. Sort of 'socks' style?

Thanx.

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ECOS] wget problem for the Proxy
  2006-07-06 16:04 [ECOS] wget problem for the Proxy Fischetti Antonio
@ 2006-07-06 16:34 ` Grant Mills
       [not found]   ` <d32f14c80607070118j6e204780q80e00c28d280b7ec@mail.gmail.com>
  0 siblings, 1 reply; 6+ messages in thread
From: Grant Mills @ 2006-07-06 16:34 UTC (permalink / raw)
  To: Fischetti Antonio; +Cc: ecos-discuss

Find and edit .wgetrc

Set the proxies.  There is one for http and one for ftp:

http_proxy =
ftp_proxy =

Don't forget to enable the proxies either:

use_proxy = on

This may be of little use if your ftp proxy server does not conform to
what wget supports.  NcFTP and FileZilla both have much broader
support for proxy servers.

On 7/6/06, Fischetti Antonio <antonio.fischetti@gmail.com> wrote:
> I'm can't download with
> wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
>
> It says "Unresolved Host".
> I am under a proxy.
> Do I need a special version of wget. Sort of 'socks' style?
>
> Thanx.
>
> --
> Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
> and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss
>
>


-- 
Grant Mills
gmills@ucsd.edu

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ECOS] Re: Re: wget problem for the Proxy
       [not found]   ` <d32f14c80607070118j6e204780q80e00c28d280b7ec@mail.gmail.com>
@ 2006-07-07  8:24     ` Fischetti Antonio
  2006-07-07  8:34       ` Alex Schuilenburg
  0 siblings, 1 reply; 6+ messages in thread
From: Fischetti Antonio @ 2006-07-07  8:24 UTC (permalink / raw)
  To: ecos-discuss

Hi, it seems it improved a bit.
My 'wgetrc' file now looks like (I replaced the real Proxy name, IP
and port with
<proxy_name>, <IP_proxy_addr>, and <port_number>)

______________

http_proxy = <proxy_name>:<port_number>
ftp_proxy = <proxy_name>:<port_number>
use_proxy = on
______________


This is what gets displayed on my Cygwin window
______________
$ wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
--10:05:41--  ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
           => `ecos-install.tcl.1'
Resolving <proxy_name>... <IP_proxy_addr>
Connecting to <proxy_name>|<IP_proxy_addr>|:<port_number>... connected.
Proxy request sent, awaiting response... 407 Proxy Authentication Required
10:05:41 ERROR 407: Proxy Authentication Required.
______________

And it stops.
When I usually connect to the proxy (i.e. to surf the web) I provide a
username and password. How can I add Username/password to 'wgetrc'? Or
is there anything else to be done?


Thanx alot,
Antonio.

On 7/6/06, Grant Mills <gmills@ucsd.edu> wrote:
> Find and edit .wgetrc
>
> Set the proxies.  There is one for http and one for ftp:
>
> http_proxy =
> ftp_proxy =
>
> Don't forget to enable the proxies either:
>
> use_proxy = on
>
> This may be of little use if your ftp proxy server does not conform to
> what wget supports.  NcFTP and FileZilla both have much broader
> support for proxy servers.
>
> On 7/6/06, Fischetti Antonio <antonio.fischetti@gmail.com> wrote:
> > I'm can't download with
> > wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
> >
> > It says "Unresolved Host".
> > I am under a proxy.
> > Do I need a special version of wget. Sort of 'socks' style?
> >
> > Thanx.
> >
> > --
> > Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
> > and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss
> >
> >
>
>
> --
> Grant Mills
> gmills@ucsd.edu
>

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ECOS] Re: Re: wget problem for the Proxy
  2006-07-07  8:24     ` [ECOS] Re: " Fischetti Antonio
@ 2006-07-07  8:34       ` Alex Schuilenburg
  2006-07-07 11:40         ` [ECOS] " Fischetti Antonio
  2006-07-07 15:31         ` [ECOS] Re: Re: " Fischetti Antonio
  0 siblings, 2 replies; 6+ messages in thread
From: Alex Schuilenburg @ 2006-07-07  8:34 UTC (permalink / raw)
  To: Fischetti Antonio; +Cc: ecos-discuss

Fischetti Antonio wrote:
> Hi, it seems it improved a bit.
> My 'wgetrc' file now looks like (I replaced the real Proxy name, IP
> and port with
> <proxy_name>, <IP_proxy_addr>, and <port_number>)
>
> ______________
>
> http_proxy = <proxy_name>:<port_number>
> ftp_proxy = <proxy_name>:<port_number>
> use_proxy = on
> ______________
>
>
> This is what gets displayed on my Cygwin window
> ______________
> $ wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
> --10:05:41--  ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
>           => `ecos-install.tcl.1'
> Resolving <proxy_name>... <IP_proxy_addr>
> Connecting to <proxy_name>|<IP_proxy_addr>|:<port_number>... connected.
> Proxy request sent, awaiting response... 407 Proxy Authentication
> Required
> 10:05:41 ERROR 407: Proxy Authentication Required.
> ______________
>
> And it stops.
> When I usually connect to the proxy (i.e. to surf the web) I provide a
> username and password. How can I add Username/password to 'wgetrc'? Or
> is there anything else to be done?
Also add to .wgetrc

proxy_user = 

proxy_passwd =


-- Alex

Managing Director / CEO                              eCosCentric Limited
http://www.ecoscentric.com/                 The eCos and RedBoot experts


>
>
> Thanx alot,
> Antonio.
>
> On 7/6/06, Grant Mills <gmills@ucsd.edu> wrote:
>> Find and edit .wgetrc
>>
>> Set the proxies.  There is one for http and one for ftp:
>>
>> http_proxy =
>> ftp_proxy =
>>
>> Don't forget to enable the proxies either:
>>
>> use_proxy = on
>>
>> This may be of little use if your ftp proxy server does not conform to
>> what wget supports.  NcFTP and FileZilla both have much broader
>> support for proxy servers.
>>
>> On 7/6/06, Fischetti Antonio <antonio.fischetti@gmail.com> wrote:
>> > I'm can't download with
>> > wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
>> >
>> > It says "Unresolved Host".
>> > I am under a proxy.
>> > Do I need a special version of wget. Sort of 'socks' style?
>> >
>> > Thanx.
>> >
>> > --
>> > Before posting, please read the FAQ:
>> http://ecos.sourceware.org/fom/ecos
>> > and search the list archive:
>> http://ecos.sourceware.org/ml/ecos-discuss
>> >
>> >
>>
>>
>> -- 
>> Grant Mills
>> gmills@ucsd.edu
>>
>


-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ECOS] Re: wget problem for the Proxy
  2006-07-07  8:34       ` Alex Schuilenburg
@ 2006-07-07 11:40         ` Fischetti Antonio
  2006-07-07 15:31         ` [ECOS] Re: Re: " Fischetti Antonio
  1 sibling, 0 replies; 6+ messages in thread
From: Fischetti Antonio @ 2006-07-07 11:40 UTC (permalink / raw)
  To: Alex Schuilenburg; +Cc: ecos-discuss

Wow!!! Thank you very much, it works!!!!

But....

the download does work, it says "complete". It's the unpacking that
doesn't work.

Find below a copy from my shell.
___________________________

Please select GNU tools to download and install: 4
[1]     arm-elf
[2]     i386-elf
[3]     mipsisa32-elf
[*]     powerpc-eabi
[5]     sh-elf
[q]     Finish selecting GNU tools

("*" indicates tools already selected)

Please select GNU tools to download and install: q
Entering C:\cygwin\opt\ecos
Retrieving GNU tools for powerpc-eabi
Connected...
Downloading ecoscentric-gnutools-powerpc-eabi-1.4-2.cygwin.tar.bz2...
File size 13,483,656 bytes
[**************************************************]
Retrieving eCos version 2.0
Connected...
Downloading ecos-2.0.cygwin.tar.bz2...
File size 14,337,622 bytes
[**************************************************]
Downloads complete.
If you wish to disconnect from the internet you may do so now.
Unpacking ecoscentric-gnutools-powerpc-eabi-1.4-2.cygwin.tar.bz2...
Unpacking ecos-2.0.cygwin.tar.bz2...
*** tar returned error.
*** First five lines of error output believed to be:

*** ecos-install.tcl error: tar unpack failed

___________________________


In my '/opt/ecos/gnutools/powerpc-eabi/bin' I see all the
'powerpc-...exe' files. So it seems that unpacking gnutools-powerpc
tar files was successful.

It's ecos2 unpacking that fails, isn't it?

Thanx for your help,
Antonio.







On 7/7/06, Alex Schuilenburg <alexs@ecoscentric.com> wrote:
> Fischetti Antonio wrote:
> > Hi, it seems it improved a bit.
> > My 'wgetrc' file now looks like (I replaced the real Proxy name, IP
> > and port with
> > <proxy_name>, <IP_proxy_addr>, and <port_number>)
> >
> > ______________
> >
> > http_proxy = <proxy_name>:<port_number>
> > ftp_proxy = <proxy_name>:<port_number>
> > use_proxy = on
> > ______________
> >
> >
> > This is what gets displayed on my Cygwin window
> > ______________
> > $ wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
> > --10:05:41--  ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
> >           => `ecos-install.tcl.1'
> > Resolving <proxy_name>... <IP_proxy_addr>
> > Connecting to <proxy_name>|<IP_proxy_addr>|:<port_number>... connected.
> > Proxy request sent, awaiting response... 407 Proxy Authentication
> > Required
> > 10:05:41 ERROR 407: Proxy Authentication Required.
> > ______________
> >
> > And it stops.
> > When I usually connect to the proxy (i.e. to surf the web) I provide a
> > username and password. How can I add Username/password to 'wgetrc'? Or
> > is there anything else to be done?
> Also add to .wgetrc
>
> proxy_user =
>
> proxy_passwd =
>
>
> -- Alex
>
> Managing Director / CEO                              eCosCentric Limited
> http://www.ecoscentric.com/                 The eCos and RedBoot experts
>
>
> >
> >
> > Thanx alot,
> > Antonio.
> >
> > On 7/6/06, Grant Mills <gmills@ucsd.edu> wrote:
> >> Find and edit .wgetrc
> >>
> >> Set the proxies.  There is one for http and one for ftp:
> >>
> >> http_proxy =
> >> ftp_proxy =
> >>
> >> Don't forget to enable the proxies either:
> >>
> >> use_proxy = on
> >>
> >> This may be of little use if your ftp proxy server does not conform to
> >> what wget supports.  NcFTP and FileZilla both have much broader
> >> support for proxy servers.
> >>
> >> On 7/6/06, Fischetti Antonio <antonio.fischetti@gmail.com> wrote:
> >> > I'm can't download with
> >> > wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
> >> >
> >> > It says "Unresolved Host".
> >> > I am under a proxy.
> >> > Do I need a special version of wget. Sort of 'socks' style?
> >> >
> >> > Thanx.
> >> >
> >> > --
> >> > Before posting, please read the FAQ:
> >> http://ecos.sourceware.org/fom/ecos
> >> > and search the list archive:
> >> http://ecos.sourceware.org/ml/ecos-discuss
> >> >
> >> >
> >>
> >>
> >> --
> >> Grant Mills
> >> gmills@ucsd.edu
> >>
> >
>
>

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ECOS] Re: Re: Re: Re: wget problem for the Proxy
  2006-07-07  8:34       ` Alex Schuilenburg
  2006-07-07 11:40         ` [ECOS] " Fischetti Antonio
@ 2006-07-07 15:31         ` Fischetti Antonio
  1 sibling, 0 replies; 6+ messages in thread
From: Fischetti Antonio @ 2006-07-07 15:31 UTC (permalink / raw)
  To: ecos-discuss; +Cc: Alex Schuilenburg

Ooooops! My mistake. It was due to the lack of free space on my partition.
I changed partition from C: to E: and installed again Cygwin, then
sh ecos-install.tcl
worked fine.

I executed the command

. /opt/ecos/ecosenv.sh

Then when I run configtool.exe it asks for valid repository tree.
I specify the root of eCos repository tree:

E:\cygwin\opt\ecos\ecos-2.0

which is the directory that contains: acsupport, doc, examples, tools.

The window appears but a lot of error messages say something like
"This package does not have any valid version subdirectories" or such.

After that the window is closed.

Is there any setting I should do with ecosconfig.exe ?


Thank you,
Antonio.


On 7/7/06, Alex Schuilenburg <alexs@ecoscentric.com> wrote:
> Fischetti Antonio wrote:
> > Hi, it seems it improved a bit.
> > My 'wgetrc' file now looks like (I replaced the real Proxy name, IP
> > and port with
> > <proxy_name>, <IP_proxy_addr>, and <port_number>)
> >
> > ______________
> >
> > http_proxy = <proxy_name>:<port_number>
> > ftp_proxy = <proxy_name>:<port_number>
> > use_proxy = on
> > ______________
> >
> >
> > This is what gets displayed on my Cygwin window
> > ______________
> > $ wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
> > --10:05:41--  ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
> >           => `ecos-install.tcl.1'
> > Resolving <proxy_name>... <IP_proxy_addr>
> > Connecting to <proxy_name>|<IP_proxy_addr>|:<port_number>... connected.
> > Proxy request sent, awaiting response... 407 Proxy Authentication
> > Required
> > 10:05:41 ERROR 407: Proxy Authentication Required.
> > ______________
> >
> > And it stops.
> > When I usually connect to the proxy (i.e. to surf the web) I provide a
> > username and password. How can I add Username/password to 'wgetrc'? Or
> > is there anything else to be done?
> Also add to .wgetrc
>
> proxy_user =
>
> proxy_passwd =
>
>
> -- Alex
>
> Managing Director / CEO                              eCosCentric Limited
> http://www.ecoscentric.com/                 The eCos and RedBoot experts
>
>
> >
> >
> > Thanx alot,
> > Antonio.
> >
> > On 7/6/06, Grant Mills <gmills@ucsd.edu> wrote:
> >> Find and edit .wgetrc
> >>
> >> Set the proxies.  There is one for http and one for ftp:
> >>
> >> http_proxy =
> >> ftp_proxy =
> >>
> >> Don't forget to enable the proxies either:
> >>
> >> use_proxy = on
> >>
> >> This may be of little use if your ftp proxy server does not conform to
> >> what wget supports.  NcFTP and FileZilla both have much broader
> >> support for proxy servers.
> >>
> >> On 7/6/06, Fischetti Antonio <antonio.fischetti@gmail.com> wrote:
> >> > I'm can't download with
> >> > wget --passive-ftp ftp://ecos.sourceware.org/pub/ecos/ecos-install.tcl
> >> >
> >> > It says "Unresolved Host".
> >> > I am under a proxy.
> >> > Do I need a special version of wget. Sort of 'socks' style?
> >> >
> >> > Thanx.
> >> >
> >> > --
> >> > Before posting, please read the FAQ:
> >> http://ecos.sourceware.org/fom/ecos
> >> > and search the list archive:
> >> http://ecos.sourceware.org/ml/ecos-discuss
> >> >
> >> >
> >>
> >>
> >> --
> >> Grant Mills
> >> gmills@ucsd.edu
> >>
> >
>
>

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-07-07 15:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-06 16:04 [ECOS] wget problem for the Proxy Fischetti Antonio
2006-07-06 16:34 ` Grant Mills
     [not found]   ` <d32f14c80607070118j6e204780q80e00c28d280b7ec@mail.gmail.com>
2006-07-07  8:24     ` [ECOS] Re: " Fischetti Antonio
2006-07-07  8:34       ` Alex Schuilenburg
2006-07-07 11:40         ` [ECOS] " Fischetti Antonio
2006-07-07 15:31         ` [ECOS] Re: Re: " Fischetti Antonio

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).