aboutsummaryrefslogtreecommitdiffstats
path: root/en/4/download_index.php
blob: f0f1260d0bb8d12a5666c1e197f4ad2eee6efe43 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<?php

define('HLANG', true);
define('ALIGNMENT', 'Center');

require '../../langs.php';
$dictionary = read_translation_file($locale, array('4', 'common_footer'));
require '../downloads/get/lib.php';

function get_mageia_image_file_name($variant = null, $arch, $medium, $ext)
{
  $va   = empty($variant) ? $arch : $variant . '-' . $arch;

  return implode('-', array('Mageia','4.1', $va, $medium)) . $ext;
}

function dl_link($variant = null, $arch = 'i586', $medium, $torrent = false, $unavailabletorrent = false)
{
  switch ($arch) {
  case "i586":
    $bit = _r('32bit');
    break;
  case "x86_64":
    $bit = _r('64bit');
    break;
  case "dual":
    $bit = _r('dualarch');
    break;
  default:
    $bit = '';
    break;
  }

  echo $torrent && $unavailabletorrent ? sprintf(_r('forthcoming')) :  sprintf('<a rel="nofollow" href="../downloads/get/?q=%s%s" title="%s">%s</a>',
    get_mageia_image_file_name($variant, $arch, $medium, '.iso'),
    $torrent ? '&amp;torrent=1' : '',
    implode(' ', array('Mageia 4.1', $variant, $arch, $medium)),
    $bit
  ); 
}

?>

<!DOCTYPE html>
<html dir="ltr" lang="<?php echo $locale; ?>">
<head>
    <meta charset="utf-8">
    <title><?php echo sprintf(_r('Download') . ' Mageia 4.1')?></title>
    <meta name="description" content="<?php _g('Download Mageia 4 DVD, CD, LiveCD, network install ISO images.') ?>">
    <meta name="keywords" content="<?php _g('mageia, mageia 4, linux, free, download, iso, torrent, vm, http, ftp, rsync, bittorrent')?>">
    <meta name="robots" content="index,nofollow,nosnippet">
    <link rel="canonical" href="/<?php echo $locale.'/4';?>/">
    <link rel="stylesheet" href="/g/style/all.css">
    <?php echo common_header(); ?>
    <?php include '../../analytics.php'; ?>
</head>
<body class="release downloads">
    <?php echo $hsnav; ?>
    <h1 id="mgnavt"><?php echo sprintf(_r('Download') . ' <strong>Mageia 4.1</strong>')?></h1>
    <?php include '../4/nav.php'; ?>
    <div id="doc4" class="yui-t7" style="margin-bottom: 0px;">
        <div id="bd" role="main">
            <div class="yui-ge bb1">
            <div class="yui-u first rb1">
                    <div class="para" id="classical">
<?php
    _g('But please remember that it already <a href="%s">reached EOL</a>.', array(_r('http://blog.mageia.org/en/2015/09/10/mageia-4-about-to-reach-its-end-of-life/')), 'h2 class="warn"');
    _g('If you want to put the ISO on USB key, <span class="warn">please DO NOT use Unetbootin</span>. Have a look <a href="%s">here</a> for the alternative.',array(_r('https://wiki.mageia.org/en/Installation_Media#Dump_Mageia_ISO_on_a_USB_flash_drive')),'p'); 
    _g('Mageia 4.1 is a <a href="%s">maintenance</a> release for Mageia 4 with the current packages from update medias. It also has a fix for a syslinux bug which prevented some people installing from a burned cd/dvd.',array(_r('http://blog.mageia.org/en/2014/06/20/pulling-mageia-4-1-out-of-the-hat/')),'p');

?>
                        <h2><?php _g('Classical Installation Flavours')?></h2>
                        <table class="fr-table dlt2">
                        <thead>
                            <tr>
                                <th><?php _g('Format');?></th>
                                <th class="size"><?php _g('size');?></th>
                                <th><?php _g('link');?></th>
                                <th><?php _g('BitTorrent');?></th>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                                <th class="name" style="width:60%">DVD 32bit<br>DVD 64bit<br>
                                <span class="dlinfo"><?php _g('Desktop'); ?>: GNOME, KDE, XFCE, Mate, Cinnamon, LXDE, ...</span></th>
                                <td class="size">3.7GB</td>
                                <td>
                                    <?php dl_link(null,'i586','DVD',false);
                                    echo '<br>';
                                    dl_link(null,'x86_64','DVD',false);
                                    echo '</td><td>';
                                    dl_link(null,'i586','DVD',true);
                                    echo '<br>';
                                    dl_link(null,'x86_64','DVD',true);?>
                                </td>
                            </tr>
                            <tr>
                                <th class="name">DVD dualarch<br>
                                <span class="dlinfo"><?php _g('Desktop'); ?>: XFCE</span></th>
                                <td class="size">1GB</td>
                                <td>
                                <?php dl_link(null,'dual','DVD',false);?>
                                </td><td>
                                <?php dl_link(null,'dual','DVD',true);?>
                                </td>
                            </tr>
                        </tbody>
                        </table>

                        <p class="dlinfo"><?php _g('Notes:'); ?></p>
                        <ul class="dlinfo hl">
                            <li>
                            <?php _g('Up to 167 locales are supported:', null, ' '); ?>
                                Deutsch, English, español, français, italiano, português, svenska, nederlands,
                                polski, dansk, Русский
                                <?php _g('and so much more!', null, ' '); ?>
                                <a href="<?php _g('https://wiki.mageia.org/en/Available_locales')?>" hreflang="en"><?php _g('See the comprehensive list')?></a>.</li>
                            <li><?php
                                _g('These DVD and CD ISOs contains Free Software and some proprietary drivers.', null, ' ');
                                _g('You will be asked of which kind of Software you want to install.');
                                ?></li>
                            <li><?php _g('The dualarch DVD contains only a minimal list of packages.')?></li>
                        </ul>
                    </div>

                    <div class="para" id="live">
                        <h2><?php _g('LiveCDs and LiveDVDs');?></h2>
                        <p class="dlinfo"><?php _g('Use LiveCDs and LiveDVDs for fresh new installs ONLY.', null, ' ');?>
                            <span class="warn"><?php _g('DO NOT use these LiveCDs or LiveDVDs to upgrade from Mageia 3!', null, ' '); ?></span>
                            <?php _g('Use above DVD or CD and see <a href="%s" hreflang="en">upgrade guide</a>.', array($upgradeguide));?></p>
                        <table class="fr-table dlt2">
                        <thead>
                            <tr>
                                <th><?php _g('Desktop');?></th>
                                <th class="size"><?php _g('size');?></th>
                                <th><?php _g('link');?></th>
                                <th><?php _g('BitTorrent');?></th>
                            </tr>
                        </thead>
                        <tbody>
                                <tr>
                        <th class="name" style="width:60%">LiveDVD KDE<br>
                            <span class="dlinfo"><?php _g('All languages')?></span></th>
                        <td class="size">1.4GB</td>
                        <td>
                            <?php dl_link('LiveDVD-KDE4','i586','DVD',false);
                            echo '<br>';
                            dl_link('LiveDVD-KDE4','x86_64','DVD',false);
                            echo '</td><td>';
                            dl_link('LiveDVD-KDE4','i586','DVD',true);
                            echo '<br>';
                            dl_link('LiveDVD-KDE4','x86_64','DVD',true);?>
                        </td>
                    </tr>
                    <tr>
                        <th class="name">LiveDVD GNOME<br>
                            <span class="dlinfo"><?php _g('All languages')?></span></th>
                        <td class="size">1.4GB</td>
                        <td>
                            <?php dl_link('LiveDVD-GNOME','i586','DVD',false);
                            echo '<br>';
                            dl_link('LiveDVD-GNOME','x86_64','DVD',false);
                            echo '</td><td>';
                            dl_link('LiveDVD-GNOME','i586','DVD',true);
                            echo '<br>';
                            dl_link('LiveDVD-GNOME','x86_64','DVD',true);?>
                        </td>
                    <tr>
                        <th class="name">LiveCD KDE<br>
                            <span class="dlinfo"><?php _g('English only')?></span></th>
                        <td class="size">700MB</td>
                        <td>
                            <?php dl_link('LiveCD-KDE4-en','i586','CD',false);
                            echo '</td><td>';
                            dl_link('LiveCD-KDE4-en','i586','CD',true);?>
                        </td>
                    </tr>
                    <tr>
                        <th class="name">LiveCD GNOME<br>
                            <span class="dlinfo"><?php _g('English only')?></span></th>
                        <td class="size">700MB</td>
                        <td>
                            <?php dl_link('LiveCD-GNOME-en','i586','CD',false);
                            echo '</td><td>';
                            dl_link('LiveCD-GNOME-en','i586','CD',true);?>
                    </tr>

                        </tbody>
                        </table>

                    </div>

                    <div class="para">
                        <h2><?php _g('Wired Network-based Installation CD')?></h2>
                        <p class="dlinfo"><?php _g('Download quickly and immediately boot into install mode from <em>wired</em> network or a local disk.')?></p>

                        <table class="fr-table dlt2">
                        <thead>
                          <tr>
                              <th><?php _g('Format');?></th>
                              <th class="size"><?php _g('size');?></th>
                              <th><?php _g('link');?></th>
                          </tr>
                        </thead>
                        <tbody>
                          <tr>
                        <th><?php _g('Network installer, Free Software CD')?></th>
                        <td class="size">27MB<br>53MB</td>
                        <td><?php dl_link('Boot','i586','CD',false);
                            echo '<br>';
                            dl_link('Boot','x86_64','CD',false);?>
                        </td>
                    </tr>
                    <tr>
                        <th><?php _g('Network installer + nonfree firmware CD')?><br>
                            <span class="dlinfo"><?php _g('needed for some disc controllers, some network cards, etc.')?></span></th>
                        <td class="size">37MB<br>74MB</td>
                        <td><?php dl_link('Boot-nonfree','i586','CD',false);
                            echo '<br>';
                            dl_link('Boot-nonfree','x86_64','CD',false);?>
                        </td>
                    </tr>
                        </tbody>
                        </table>
                    </div>
                </div>
                <div class="yui-u">
                    <div class="para" style="padding-left: 1em;">
                        <h2>Mageia 4</h2>
                        <?php _g('February 1<sup>st</sup> 2014', null, 'p')?>
                        <ul class="hl">
                            <li><?php _g('<a href="%s">Release notes</a>', array($releasenotes))?></li>
                            <li><?php _g('<a href="%s">Errata</a>', array($errata))?></li>
                            <li><?php _g('<a href="%s">Which to choose</a>', array(_r('https://wiki.mageia.org/en/Installation_Media')))?></li>
                            <li><?php _g('<a href="%s">Get ISO on USB flash stick</a>', array(_r('https://wiki.mageia.org/en/Installation_Media#Dump_Mageia_ISO_on_a_USB_flash_drive')))?></li>
                            <li><?php _g('Newcomer? <a href="%s">Here\'s a wiki page for you.</a>', array(_r('https://wiki.mageia.org/en/Newcomers_start_here')))?></li>
                        </ul>
                        <br>
                        <br>
                        <?php _g('Upgrading<br>from Mageia 3?', null, 'h3')?>
                        <ul class="hl"><?php
                            _g('<strong>do not</strong> use LiveCDs;', null, 'li');
                            _g('see the <a href="%s" hreflang="en">upgrade guide</a>', array($upgradeguide), 'li');
                        ?></ul>
                        <br>
                        <br>
                        <?php
                            _g('Looking for Mageia 3?', null, 'h3');
                            echo '<p>';
                            _g('It is <a href="%s">here now</a>.', array('../3/'), ' ');
                            _g('But please remember that it already <a href="%s">reached EOL</a>.', array(_r('https://blog.mageia.org/en/2014/11/26/lets-say-goodbye-to-mageia-3/')), 'span class="warn"'); ?>
                        </p>
                        <br>
                        <br>
                        <?php
                            _g('Need more challenge?', null, 'h3');
                            _g('You can <a href="%s">help</a> us <a href="%s">on Mageia 5</a>.', array('../contribute/','../5/'), 'p');
                        ?>
                    </div>
                    <hr>
                </div>
            </div>
        </div>
    </div>
<?php echo common_footer($locale); ?>
</body>
</html>