X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=download%2Fprerelease%2Findex.html.tt2;h=228561b4067ba03a346736460cdde88cbd1794dd;hb=b3fa14e5587a0502e808f3822a744443065b4ce2;hp=26a97e1d111ee77e058f5a2ff8f2ab80b8475133;hpb=9d6a60d0ade47900e89321616a8de25f192a6b34;p=grml.org.git diff --git a/download/prerelease/index.html.tt2 b/download/prerelease/index.html.tt2 index 26a97e1..228561b 100644 --- a/download/prerelease/index.html.tt2 +++ b/download/prerelease/index.html.tt2 @@ -1,10 +1,5 @@ - - + grml.org - Download @@ -12,18 +7,16 @@ exit; - - + - - @@ -82,120 +85,190 @@ exit;
-

Download Grml 2012.05-rc1

+

Download Grml 2021.07-rc1

NOTE: This is a PRE-RELEASE, not a stable release yet.
You have been warned.

Looking for the stable release version instead?

-

Download the Grml flavour you need, then write it to a CD-R or an empty USB stick.

- -
-
- -
- -

Options

- - -

- -
-
-
-
-
- Release Notes -
- -
- -
-
-
-
-
- -
- - - + function update_links() { + var current_version = "2021.07-rc1"; + var product = 'grml'; + var arch = document.getElementById('download_arch').value; + var flavour = document.getElementById('download_flavour').value; + if (arch == 'amd64') product = 'grml64'; + if (arch == 'i386') product = 'grml32'; + if (arch == '96') product = 'grml96'; + var iso = product + '-' + flavour + '_' + current_version + '.iso'; + var mirror_url = "https://download.grml.org/devel/"; + document.getElementById('download_link_mirror').href = mirror_url + iso; + document.getElementById('download_link_mirror').innerHTML = '
Download Now
' + product + '-' + flavour + ' ' + current_version + '
'; + // document.getElementById('download_link_bt').href = mirror_url + iso + '.torrent'; + document.getElementById('download_link_signature').href = mirror_url + iso + '.asc'; + } + + // hook update function + document.getElementById('download_flavour').onchange = update_arch; + document.getElementById('download_arch').onchange = update_links; + // force initial link href set + update_links(); + // only show our link "buttons" + document.getElementById('formbuttons').style.display = 'none'; + document.getElementById('linkbuttons').style.display = ''; + document.getElementById('download_group1').style.display = ''; + document.getElementById('download_group1_noscript').style.display = 'none'; +
-
- Alternate downloads

- Daily images
- Older releases
- chroots for remastering (prerelease)
- Source code (one tgz for both architectures)
-
- Signing Key
-
- Please verify all downloads using GnuPG! -
- -
- Boot from USB stick
-
- Just dd(1) the downloaded ISO to an empty USB stick!

- dd if=grml_2012.05-rc1.iso of=/dev/USB_STICK -

- - Troubleshooting

- Boot option guide -

- -
+
+
+ Alternate downloads

+ Daily images
+ Older releases
+ Source code (one tgz for both architectures)
+
+ Netboot packages:
+ 64-bit + 32-bit +
+
+ +
+
+ Boot from USB key
+
+ Just dd(1) the downloaded ISO to an empty USB key!

+ dd if=grml_2021.07-rc1.iso of=/dev/USB_KEY bs=4M status=progress conv=fdatasync +

+ + Troubleshooting

+ Boot option guide +
+
+
+
+ +
+
+

Verify your download

+ +

Please verify all downloads!

+ +

Alongside the actual download files (ISO, netboot, sources), the Grml mirrors publish the extra files SHA256SUMS and SHA256SUMS.gpg.
+ The SHA256SUMS file contains checksums for all available release files.
+ The SHA256SUMS.gpg file provides the GnuPG signature for that file.
+ Once you have SHA256SUMS and SHA256SUMS.gpg in the same directory as your Grml downloads, verify the checksum file via:

+ + +gpg --keyid-format long --verify SHA256SUMS.gpg SHA256SUMS + + +

If you don't have our GnuPG signing key + (key ID 0x96A87872B7EA3737, fingerprint 33CC B136 401A FEC8 43A3 8763 96A8 7872 B7EA 3737), run:

+ + +gpg --keyid-format long --keyserver hkps://keys.openpgp.org --recv-keys 0x96A87872B7EA3737 + + +

Finally verify the checksum of your Grml downloads, via:

+ + +sha256sum --ignore-missing -c SHA256SUMS + + +

Source code

+ +

The Grml team uses Git for managing software and packages. + The repositories are available online at GitHub.

+