blob: be840d3a68bc99d873cf5e3b2f04fbeb1b6ef599 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
{% extends "base.html" %}
{% block content %}
<div class="box">
<h2 class="title">Buy A CD</h2>
CDs are available for purchase from OSDisc.com. For each CD purchased, a
portion of the money goes to the Arch Linux Project.<br /><br />
<div style="text-align:center">
<a href="http://www.osdisc.com/cgi-bin/distro/index.cgi?distro=archlinux">Click here to purchase a CD</a>
</div>
<br /><br />
<h2 class="title">BitTorrent Download</h2>
<br /><br />
<div style="text-align:center">
<h3>Download with BitTorrent</h3>
If you can spare the bytes, please leave the BT client
open after your<br /> download is finished, so you can seed it back to others.<br />
<br />
<table class="center" cellspacing="10">
<tr>
<th> </th>
<th>CORE</th>
<th>FTP Install</th>
</tr>
<tr>
<td>i686:</td>
<td>
<a href="ftp://ftp.archlinux.org/iso/2007.08/i686/Archlinux-i686-2007.08-2.core.iso.torrent">
2007.08-2
</a>
</td>
<td>
<a href="ftp://ftp.archlinux.org/iso/2007.08/i686/Archlinux-i686-2007.08-2.ftp.iso.torrent">
2007.08-2
</a>
</td>
</tr><tr>
<td>x86_64:</td>
<td>
<a href="ftp://ftp.archlinux.org/iso/2007.08/x86_64/Archlinux-x86_64-2007.08-2.core.iso.torrent">
2007.08-2
</a>
</td>
<td>
<a href="ftp://ftp.archlinux.org/iso/2007.08/x86_64/Archlinux-x86_64-2007.08-2.ftp.iso.torrent">
2007.08-2
</a>
</td>
</tr>
</table>
</div>
<br /><br />
<h2 class="title">HTTP/FTP Download</h2>
<br /><br />
<div style="text-align:center">
<h3>Download with HTTP/FTP</h3>
In addition to the BitTorrent links above, ISO images can also be downloaded <br /> via HTTP/FTP from the /iso/ sub-directory of mirror sites listed below.<br />
<br /><br />
<h3>Mirror Sites</h3>
<table class="center" cellspacing="10">
{% for mirror in mirrors %}
<tr>
<td style="text-align:left"><a href="{{ mirror.url }}">{{ mirror.domain }}</a></td>
<td style="text-align:right">{{ mirror.country }}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
<br /><br />
{% endblock %}
|