Gentoo Archives: gentoo-user

From: Tim Kruse <irrlicht2c@×××.net>
To: gentoo-user@l.g.o
Subject: [gentoo-user] Re: Problem emerging realplayer-10.0.6
Date: Tue, 01 Nov 2005 11:55:45
Message-Id: tj0k33-517.ln1@news.irrlicht.homelinux.net
In Reply to: Re: [gentoo-user] Problem emerging realplayer-10.0.6 by Walter Dnes
1 * On 01.11.2005 Walter Dnes wrote:
2
3 > Several people on this list, me included, have been bitten by this.
4 > Note the "s" in "https". That means "secure". wget is the program that
5 > emerge uses to download files. In order to access "https" URLs, wget
6 > *MUST* be emerged with the "ssl" flag. You can either set it globally
7 > in your /etc/make.conf, or if you just want to affect wget, enter this
8 > line in /etc/portage/package.use
9 >
10 > net-misc/wget ssl
11 >
12 > You must emerge wget after setting the "ssl" flag, and then wget can
13 > access "https" URLs.
14
15 I had the same problem and my wget is emerged with the ssl USE
16 flag
17
18 ,-----[equery uses wget]
19 | [...]
20 | + + ssl : Adds support for Secure Socket Layer connections
21 | [...]
22 `-----
23
24 So that is not the issue here. The problem is, that wget
25 couldn't verify the certificate (for which reason ever) and you
26 have to manually download it (or set the proper option in wget's
27 config):
28
29 ,-----
30 | # wget \
31 | https://helixcommunity.org/download.php/1589/RealPlayer-10.0.6.776-20050915.i586.rpm
32 | --12:30:08-- \
33 | https://helixcommunity.org/download.php/1589/RealPlayer-10.0.6.776-20050915.i586.rpm
34 | => `RealPlayer-10.0.6.776-20050915.i586.rpm'
35 | Resolving helixcommunity.org... 207.188.25.135
36 | Connecting to helixcommunity.org|207.188.25.135|:443... connected.
37 | ERROR: Certificate verification error for helixcommunity.org:
38 | unable to get local issuer certificate
39 | To connect to helixcommunity.org insecurely, use `--no-check-certificate'.
40 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
41 | Unable to establish SSL connection.
42 |
43 | # wget --no-check-certificate \
44 | https://helixcommunity.org/download.php/1589/RealPlayer-10.0.6.776-20050915.i586.rpm
45 | --12:30:23-- \
46 | https://helixcommunity.org/download.php/1589/RealPlayer-10.0.6.776-20050915.i586.rpm
47 | => `RealPlayer-10.0.6.776-20050915.i586.rpm'
48 | Resolving helixcommunity.org... 207.188.25.135
49 | Connecting to helixcommunity.org|207.188.25.135|:443... connected.
50 | WARNING: Certificate verification error for helixcommunity.org:
51 | unable to get local issuer certificate
52 | HTTP request sent, awaiting response... 200 OK
53 | Length: 6,643,315 (6.3M) [application/binary]
54 |
55 | 5% [====> ] 360,448 128.93K/s
56 `-----
57
58 So long,
59 tkr
60
61 PS: Sorry for the long lines. They're due to copy and paste,
62 but I have reajusted the longest
63
64 --
65 I HAVE to buy a new "DODGE MISER" and two dozen JORDACHE JEANS because
66 my viewscreen is "USER-FRIENDLY"!!

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-user] Re: Problem emerging realplayer-10.0.6 Tristan Helmich <tristan@××××××××.de>