Mailinglist Archive: opensuse (2700 mails)
| < Previous | Next > |
Re: [SLE] DVDs 4U (Was: "Disappointed in 9.3")
- From: Andreas Philipp <andreas.philipp@xxxxxxxxxxxx>
- Date: Sat, 2 Jul 2005 20:03:31 -0500
- Message-id: <200507022003.32641.andreas.philipp@xxxxxxxxxxxx>
Ken:
El Sáb 02 Jul 2005 16:00, ken escribió:
> So I'm still having the same problem, i.e., not in gzip format.
I experienced similar problems which I found out were related to failed DNS
server queries. If, for example, I run 'dig Linux.z.zoy.org', I get the
following error:
; <<>> DiG 9.2.2 <<>> Linux.z.zoy.org
;; global options: printcmd
;; connection timed out; no servers could be reached
This is true for every host name but 'and'; this last one returns the
authoritative name servers for zoy.org, which helps to adjust the script:
==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-
#!/bin/bash --norc
for DVDs in Linux screw the MPAA and; do
dig @ns1.zoy.org $DVDs.z.zoy.org;
done \
| perl -ne 's/\.//g; print pack("H224",$1) if(/^x([^z]*)/)' \
| gunzip
==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-
Instead of '@ns1.zoy.org' you can try with '@ns2.zoy.org ' and '@ns3.zoy.org'.
Once the name server to be queried is being specified, the script runs fine on
my PC.
Regards,
--
Andreas Philipp
Noema Ltda.
Bogotá, D.C. - Colombia
http://www.noemasol.com
El Sáb 02 Jul 2005 16:00, ken escribió:
> So I'm still having the same problem, i.e., not in gzip format.
I experienced similar problems which I found out were related to failed DNS
server queries. If, for example, I run 'dig Linux.z.zoy.org', I get the
following error:
; <<>> DiG 9.2.2 <<>> Linux.z.zoy.org
;; global options: printcmd
;; connection timed out; no servers could be reached
This is true for every host name but 'and'; this last one returns the
authoritative name servers for zoy.org, which helps to adjust the script:
==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-
#!/bin/bash --norc
for DVDs in Linux screw the MPAA and; do
dig @ns1.zoy.org $DVDs.z.zoy.org;
done \
| perl -ne 's/\.//g; print pack("H224",$1) if(/^x([^z]*)/)' \
| gunzip
==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-
Instead of '@ns1.zoy.org' you can try with '@ns2.zoy.org ' and '@ns3.zoy.org'.
Once the name server to be queried is being specified, the script runs fine on
my PC.
Regards,
--
Andreas Philipp
Noema Ltda.
Bogotá, D.C. - Colombia
http://www.noemasol.com
| < Previous | Next > |