If you have a hosting facility for internet services, you can help us making our software available in all the world by setting up a mirror of dyne.org. We are grateful to mirrors helping us to keep the source code around :) You can use rsync(1) and crontab(P) to keep your mirror up to date with all the latest changes day by day, just call a script like this in your cron: --------------8<---------cut-here--------8<---------------- #!/bin/sh # this script takes an argument ($1) # indicating the directory where all the sources are created if [ -z $1 ]; then echo "need an argument: target directory" exit 1 fi cd $1 # download some information curl -O ftp://ftp.dyne.org/README curl -O ftp://ftp.dyne.org/MIRRORS curl -O ftp://ftp.dyne.org/LICENSE.GPL # this will occupy approx. 100MB of space, just sources: for sw in freej muse hasciicam tbt frei0r; do rsync -r rsync.dyne.org::$sw $sw done # comment the following line if you like to save space # dynebolic latest ISO takes about 700MB rsync --delete -r rsync.dyne.org::dynebolic-latest dynebolic cd - --------------8<---------cut-here--------8<---------------- remember you should call this script with an argument: the directory where to create the mirrors. thanks for your support!