Subversion Repositories SvarDOS

Rev

Rev 827 | Rev 846 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
179 mateuszvis 1
    <h1>SvarDOS - an open-source DOS distribution</h1>
285 mateuszvis 2
    <p class="copyr">for PCs of the 1980-2000 era</p>
20 mv_fox 3
 
217 mateuszvis 4
    <p>SvarDOS is an open-source project that is meant to integrate the best out of the currently available DOS tools, drivers and games. DOS development has been abandoned by commercial players a very long time ago, mostly during early nineties. Nowadays, it survives solely through the efforts of hobbyists and retro-enthusiasts, but this is a highly sparse and unorganized ecosystem. SvarDOS aims to collect available DOS software, package it and make it easy to find and install applications using a network-enabled package manager (like apt-get, but for DOS and able to run even on a 8086 PC).</p>
14 mv_fox 5
 
285 mateuszvis 6
    <h2>Minimalist and 8086-compatible</h2>
14 mv_fox 7
 
285 mateuszvis 8
    <p>Once installed, SvarDOS is a minimalistic DOS system that offers only the FreeDOS kernel and the most basic tools for system administration. It is up to the user to install additional packages. Care is taken so SvarDOS remains 8086-compatible, at least in its most basic (core) configuration.</p>
212 mateuszvis 9
 
217 mateuszvis 10
    <h2>Open-source</h2>
212 mateuszvis 11
 
217 mateuszvis 12
    <p>SvarDOS files are published under the terms of the MIT license. This applies only to SvarDOS-specific files, though - the packages supplied with SvarDOS may be subject to different licenses (GPL, BSD, Public Domain, Freeware...).</p>
212 mateuszvis 13
 
308 mateuszvis 14
    <h2>Multilingual</h2>
15
 
16
    <p>Many languages are supported: English, German, French, Polish, Russian, Italian and more.</p>
17
 
217 mateuszvis 18
    <h2>No "versions"</h2>
212 mateuszvis 19
 
285 mateuszvis 20
    <p>SvarDOS is a "rolling" release, meaning that it doesn't follow the concept of "versions". Once the system is installed, its packages can be kept up-to-date using the SvarDOS online update tools (pkg &amp; pkgnet).</p>
212 mateuszvis 21
 
217 mateuszvis 22
    <h2>Community and help</h2>
212 mateuszvis 23
 
684 mateusz.vi 24
    <p>Need to get in touch? Wish to submit some packages, translate SvarDOS to your language, or otherwise contribute? Or maybe you'd like some information about SvarDOS? The project has a <a href="https://lists.osdn.me/mailman/listinfo/svardos-users">mailing list</a> just for that. You may also wish to take a look at the <a href="phpamb.php?fname=help/help-en&amp;f=todo.ama">project's "todo list"</a> and <a href="https://osdn.net/projects/svardos/ticket/">ticket list</a>.</p>
212 mateuszvis 25
 
569 mateuszvis 26
    <?php
827 mateusz.vi 27
    $flist = scandir('download/', SCANDIR_SORT_DESCENDING);
28
    foreach ($flist as $f) {
29
      if (!preg_match('/^[0-9]*$/', $f)) continue;
30
      $lastver = $f;
31
      break;
32
    }
643 mateusz.vi 33
 
733 mateusz.vi 34
    echo '<h2>Downloads (build ' . $lastver . ')</h2>'
569 mateuszvis 35
    ?>
14 mv_fox 36
 
183 mateuszvis 37
    <ul>
643 mateusz.vi 38
      <li><a href="download/<?php echo $lastver; ?>/svardos-<?php echo $lastver; ?>-cd.zip">SvarDOS install CD (ISO)</a></li>
39
      <li><a href="download/<?php echo $lastver; ?>/svardos-<?php echo $lastver; ?>-floppy-2880k.zip">SvarDOS install on 2.88M floppy disks</a></li>
40
      <li><a href="download/<?php echo $lastver; ?>/svardos-<?php echo $lastver; ?>-floppy-1440k.zip">SvarDOS install on 1.44M floppy disks</a></li>
41
      <li><a href="download/<?php echo $lastver; ?>/svardos-<?php echo $lastver; ?>-floppy-1200k.zip">SvarDOS install on 1.2M floppy disks</a></li>
42
      <li><a href="download/<?php echo $lastver; ?>/svardos-<?php echo $lastver; ?>-floppy-720k.zip">SvarDOS install on 720K floppy disks</a></li>
43
      <li><a href="download/<?php echo $lastver; ?>/svardos-<?php echo $lastver; ?>-usb.zip">SvarDOS install on a bootable USB image</a></li>
44
      <li><a href="download/<?php echo $lastver; ?>/svardos-<?php echo $lastver; ?>-dosemu.zip">SvarDOS image for DOSEMU</a><span class="helpmsg" title="a pre-installed image for the DOSEMU emulator, usually needs to be unzipped in ~/.dosemu/drive_c/">?</span></li>
183 mateuszvis 45
    </ul>
14 mv_fox 46
 
834 mateusz.vi 47
    <p>The links above point to the latest stable build of installation images (that is, build <?php echo $lastver?>) and that's the build we recommend. Otherwise, archival and staging builds can be found in our <a href="?p=files">files section</a>, but that's only if you like living dangerously.</p>
48
 
49
    <p class="wondering">Wondering how SvarDOS is built? Take a look at the <a href="http://svn.svardos.org/">project's SVN</a>, where all the build-related files and scripts are stored.</p>