Hi CNK
I just finished creating backups of TC4 - TC8 x86 and x86_64
from distro.ibiblio.org/tinycorelinux. I currently have TC1 - TC8.
In case someone is interested in the storage required for this:
tc@E310:/mnt/sdb1$ for C in `seq 1 8`; do du -hs "$C".x/; done
2.3G 1.x/
8.4G 2.x/
14G 3.x/
26G 4.x/
9.1G 5.x/
13G 6.x/
15G 7.x/
16G 8.x/
tc@E310:/mnt/sdb1$ calc 2.3+8.4+14+26+9.1+13+15+16
103.8
tc@E310:/mnt/sdb1$
This is a breakdown of storage used just for tcz/ (files only), tcz/src/, and tcz/backup/.
Add in release_candidates/, release/, and archive/ and you have another 500M to 3.5G.
x86:
tcz/=8.6G tcz/src/=4.9G tcz/backup/=1.4G x86 Ver. 4
tcz/=2.5G tcz/src/=1.5G tcz/backup/=954M x86 Ver. 5
tcz/=2.6G tcz/src/=1.2G tcz/backup/=1.6G x86 Ver. 6
tcz/=3.3G tcz/src/=942M tcz/backup/=1.2G x86 Ver. 7
tcz/=3.5G tcz/src/=182M tcz/backup/=754M x86 Ver. 8
tcz/=3.9G tcz/src/=514M tcz/backup/=887M x86 Ver. 9
tcz/=4.6G tcz/src/=396M tcz/backup/=1.9G x86 Ver. 10
tcz/=4.1G tcz/src/=565M tcz/backup/=1.5G x86 Ver. 11
tcz/=4.1G tcz/src/=447M tcz/backup/=332M x86 Ver. 12
tcz/=4.3G tcz/src/=260M tcz/backup/=385M x86 Ver. 13
tcz/=5.2G tcz/src/=290M tcz/backup/=1.2G x86 Ver. 14
tcz/=5.3G tcz/src/=379M tcz/backup/=1.5G x86 Ver. 15
x86_64:
tcz/=374M tcz/src/=343M tcz/backup/=25M x86_64 Ver. 4
tcz/=1.1G tcz/src/=1.4G tcz/backup/=481M x86_64 Ver. 5
tcz/=1.6G tcz/src/=1.5G tcz/backup/=1.5G x86_64 Ver. 6
tcz/=2.7G tcz/src/=2.3G tcz/backup/=2.2G x86_64 Ver. 7
tcz/=3.4G tcz/src/=2.4G tcz/backup/=1.8G x86_64 Ver. 8
tcz/=4.5G tcz/src/=2.4G tcz/backup/=2.7G x86_64 Ver. 9
tcz/=5.2G tcz/src/=2.3G tcz/backup/=2.7G x86_64 Ver. 10
tcz/=5.6G tcz/src/=3.6G tcz/backup/=2.2G x86_64 Ver. 11
tcz/=6.6G tcz/src/=2.5G tcz/backup/=1.4G x86_64 Ver. 12
tcz/=7.3G tcz/src/=1.4G tcz/backup/=2.0G x86_64 Ver. 13
tcz/=8.4G tcz/src/=3.3G tcz/backup/=3.1G x86_64 Ver. 14
tcz/=8.4G tcz/src/=3.9G tcz/backup/=3.2G x86_64 Ver. 15
If anyone wants to download a repo from a mirror:
# Copy repos using wget.
# ipv4 only, quiet, recurse, no clobber, no parent, reject index.html files, no host directories, ignore NUMBER remote directory components
# The --cut-dirs prevents wget from recursing up the tree.
tc@E310:/mnt/sdb1/8.x$ wget -4 -q -r -nc -np -R "index.html*" -nH --cut-dirs 2 http://distro.ibiblio.org/tinycorelinux/8.x/x86/
As soon as it finishes, run this and make sure it returns zero:
tc@E310:/mnt/sdb1/8.x$ echo $?
0
If it does not return zero, this will provide a list of which files were problematic:
# Find download errors:
# ipv4 only, no verbose, recurse, no clobber, no parent, reject index.html files, no host directories, ignore NUMBER remote directory components
# The --cut-dirs prevents wget from recursing up the tree.
tc@E310:/mnt/sdb1/8.x$ wget -4 -nv -r -nc -np -R "index.html*" -nH --cut-dirs 2 http://distro.ibiblio.org/tinycorelinux/8.x/x86/ 2>&1 | grep -v "index.html.tmp"