From: Res on 5 Jul 2010 18:14 On Mon, 05 Jul 2010 21:47:00 +1000, andrew wrote: > On 2010-07-05, Archer <champ(a)the.bit> wrote: > >> Has anyone downloaded 13.1? > > Actual Australian ftp sites do not seem to be carrying much slackware > material, but speeds to the US and Europe are not so bad from my part of > Australia... If you continue to have trouble send an email from this > website: > > http://www.andrews-corner.org > > and I can send you a copy, us Aussies should stick together :). > > Andrew The mirrors page is out of date, has been for over 4 years, I've brought it to their attention several times, I have given up in recent times, I even offered to take over maintaining it, but got as much response as I did with the dead links :) so forget the official slackware mirror site listing. Archer: Internode's mirror (unofficial mirror) carries it.
From: Richard Herbert on 5 Jul 2010 20:09 On Mon, 05 Jul 2010 02:15:00 +0000, Archer wrote: > Has anyone downloaded 13.1? I downloaded the Slackware 13.1 DVD ISO from: ftp.belnet.be/packages/slackware/slackware-13.1-iso/ Very fast downloads and max 1000 users. -- Richard Herbert Registered Linux user 14329 "If there's nothing wrong with me, then ... there must be something wrong with the Universe!" Dr. Beverly Crusher; Star Trek TNG
From: geep on 6 Jul 2010 16:13 On Mon, 05 Jul 2010 02:15:00 +0000, Archer wrote: > I've been trying for a week or more to get Slackware 13.1 via ftp, http > and bittorrent without success. The Slackware torrents page seems okay > except that torrents don't start up, and the mirrors for my locality > (Australia) are either non-respomsive or can't be found. I'm not having > any of these problems except with Slack. > > Does anyone know what's happening with GetSlack? > > Has anyone downloaded 13.1? > > Archer Hi Archer, I gave up downloading the .iso ages ago. I always download the individual files using rsync. Then build my own .iso image. A couple of reliable mirrors I use are: http://www.mirrorservice.org/sites/ftp.slackware.com/pub/slackware/ http://slackware.mirrors.tds.net/pub/slackware/ e.g. This skips source etc. for a faster download. Of course you can include them if you want everything. bwlimit so I can still watch streaming TV at the same time. rsync \ --bwlimit=375 \ -avzP --delete --human-readable \ --filter=-_/source \ --filter=-_/extra \ --filter=-_/pasture \ --filter=-_/testing \ rsync://slackware.mirrors.tds.net/slackware/slackware-13.1/ . or (this should be all on one line) rsync://rsync.mirrorservice.org/ftp.slackware.com/pub/slackware/ slackware-13.1/ . (DO NOT FORGET THE FINAL DOT) I put some details about this in another post on here recently. Look for Jun 29 post by author geep. Cheers, Peter
From: Grant on 6 Jul 2010 19:20 On Tue, 6 Jul 2010 20:13:42 +0000 (UTC), geep <geep(a)boursomail.com> wrote: >On Mon, 05 Jul 2010 02:15:00 +0000, Archer wrote: > >> I've been trying for a week or more to get Slackware 13.1 via ftp, http >> and bittorrent without success. The Slackware torrents page seems okay >> except that torrents don't start up, and the mirrors for my locality >> (Australia) are either non-respomsive or can't be found. I'm not having >> any of these problems except with Slack. >> >> Does anyone know what's happening with GetSlack? >> >> Has anyone downloaded 13.1? >> >> Archer > >Hi Archer, > >I gave up downloading the .iso ages ago. I always download the individual >files using rsync. Then build my own .iso image. A couple of reliable >mirrors I use are: >http://www.mirrorservice.org/sites/ftp.slackware.com/pub/slackware/ >http://slackware.mirrors.tds.net/pub/slackware/ > >e.g. This skips source etc. for a faster download. >Of course you can include them if you want everything. >bwlimit so I can still watch streaming TV at the same time. >rsync \ >--bwlimit=375 \ >-avzP --delete --human-readable \ >--filter=-_/source \ >--filter=-_/extra \ >--filter=-_/pasture \ >--filter=-_/testing \ >rsync://slackware.mirrors.tds.net/slackware/slackware-13.1/ . > >or (this should be all on one line) >rsync://rsync.mirrorservice.org/ftp.slackware.com/pub/slackware/ >slackware-13.1/ . > >(DO NOT FORGET THE FINAL DOT) > >I put some details about this in another post on here recently. >Look for Jun 29 post by author geep. Yes, I think this is good way to go, I keep local mirror of slack install tress I'm interested in too. Here's the script I use that updates several version of slackware, I run it manually whenever I think of it, usually a few times per week. ~$ cat /usr/local/bin/rs #!/bin/bash # # rsync slackware install sources to local mirror # # Copyright (C) 2006-2010 Grant Coady <http://bugs.id.au> GPLv2 # # 2010-05-25 add 13.1, cleanup # 2009-05-24 more comments, easier options # 2009-05-20 add slackware64! # 2008-12-11 rewrite again # set the source mirror host machine here, find these from the slackware.com # 'get slack' mirrors page #MIRROR_HOST="slackware.mirrors.tds.net" MIRROR_HOST="slackware.osuosl.org" #MIRROR_HOST="slackware.oregonstate.edu" #MIRROR_HOST="mirror.pacific.net.au" # set the local mirror parent directory here MIRROR_DIR="/home/mirror" # set bandwidth limit to this value in kiloBytes/second -- I set this to # 32kB/s on a 512/128kbps ADSL connection so there's plenty of bandwidth # available for normal web browsing and email while this script is running. BWLIMIT=40 # these rsync options usually not require any changes, they work for me RSYNC_OPTS="-avPH --bwlimit=$BWLIMIT --delete --delete-excluded --progress " # Note: Remove '--exclude */kdei' lines below if you need the KDE # international language support. do_rsync() # version { case $1 in # maintenance group slackware-11.0 | slackware-13.0 ) rsync $RSYNC_OPTS \ --exclude slackware/kdei \ --exclude source \ --exclude extra \ --exclude pasture \ --exclude testing \ $MIRROR_HOST::slackware/$1/ $MIRROR_DIR/$1 ;; # slack64 maintenance group slackware64-13.0 ) rsync $RSYNC_OPTS \ --exclude slackware64/kdei \ --exclude source \ --exclude extra \ --exclude pasture \ --exclude testing \ $MIRROR_HOST::slackware/$1/ $MIRROR_DIR/$1 ;; # slack64 latest plus current slackware64-* ) rsync $RSYNC_OPTS \ --exclude slackware64/kdei \ --exclude source/kdei \ $MIRROR_HOST::slackware/$1/ $MIRROR_DIR/$1 ;; # for the rest we grab everything * ) rsync $RSYNC_OPTS \ --exclude slackware/kdei \ --exclude source/kdei \ $MIRROR_HOST::slackware/$1/ $MIRROR_DIR/$1 ;; esac } # read slackware install tree local mirror version list from inline file while read vers rest; do echo "" echo $vers do_rsync $vers done <<-EOF slackware-11.0 slackware-13.0 slackware-13.1 slackware-current slackware64-13.0 slackware64-13.1 slackware64-current EOF echo "Done!" ~$ ls -l /home/mirror/ total 40 .... drwxr-xr-x 9 grant wheel 888 2010-06-30 15:04 slackware-11.0/ drwxr-xr-x 7 grant wheel 960 2010-06-30 15:16 slackware-13.0/ drwxr-xr-x 11 grant wheel 1056 2010-06-30 15:19 slackware-13.1/ drwxr-xr-x 11 grant wheel 1056 2010-06-30 15:29 slackware-current/ drwxr-xr-x 7 grant wheel 904 2010-06-30 15:32 slackware64-13.0/ drwxr-xr-x 11 grant wheel 1032 2010-06-30 15:35 slackware64-13.1/ drwxr-xr-x 11 grant wheel 1032 2010-06-30 15:45 slackware64-current/ Grant.
From: Dan C on 6 Jul 2010 23:12
On Tue, 06 Jul 2010 20:13:42 +0000, geep wrote: > On Mon, 05 Jul 2010 02:15:00 +0000, Archer wrote: > >> I've been trying for a week or more to get Slackware 13.1 via ftp, http >> and bittorrent without success. The Slackware torrents page seems okay >> except that torrents don't start up, and the mirrors for my locality >> (Australia) are either non-respomsive or can't be found. I'm not having >> any of these problems except with Slack. >> >> Does anyone know what's happening with GetSlack? >> >> Has anyone downloaded 13.1? >> >> Archer > > Hi Archer, > > I gave up downloading the .iso ages ago. I always download the > individual files using rsync. Then build my own .iso image. Why? Why go to that much trouble? What advantage does making your own .iso provide? -- "Ubuntu" -- an African word, meaning "Slackware is too hard for me". "Bother!" said Pooh, as his rectum exploded. Usenet Improvement Project: http://twovoyagers.com/improve-usenet.org/ Thanks, Obama: http://brandybuck.site40.net/pics/politica/thanks.jpg |