<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://mail.knoppix.net/wiki3/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://mail.knoppix.net/wiki3/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=118.175.255.10</id>
		<title>Knoppix Documentation Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://mail.knoppix.net/wiki3/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=118.175.255.10"/>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Special:Contributions/118.175.255.10"/>
		<updated>2026-09-19T04:26:38Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>https://mail.knoppix.net/wiki/Bootable_USB_Key</id>
		<title>Bootable USB Key</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Bootable_USB_Key"/>
				<updated>2008-08-27T01:04:10Z</updated>
		
		<summary type="html">&lt;p&gt;118.175.255.10: /* Preparation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Knoppix 5.0.1 boots rather nicely from a USB key. It's getting easier to get it working, as the USB bugs from the previous versions have been fixed.&lt;br /&gt;
&lt;br /&gt;
This is a &amp;quot;recipe&amp;quot; for creating a Knoppix bootable USB key.  It was originally posted to the forums: http://knoppix.net/forum/viewtopic.php?t=25402&lt;br /&gt;
&lt;br /&gt;
comment6,&lt;br /&gt;
&lt;br /&gt;
==Instructions==&lt;br /&gt;
&lt;br /&gt;
* Boot Knoppix 5.0.1 (or any later version) from CD, and make sure that it works.&lt;br /&gt;
&lt;br /&gt;
As soon as the title screen of Knoppix appears (the cheatcode entry screen), put in the USB key.&lt;br /&gt;
&lt;br /&gt;
Do this before Knoppix starts to load, so that your USB key is sure to be found by Knoppix's autodetection.&lt;br /&gt;
&lt;br /&gt;
Do not use the &amp;quot;toram&amp;quot; cheatcode when booting Knoppix. The RAM copy of the CD omits the /boot directory, but we require this directory, so we can't use the RAM copy.&lt;br /&gt;
&lt;br /&gt;
* Once Knoppix is up and running, open a root shell (from the penguin icon).&lt;br /&gt;
&lt;br /&gt;
Now, we need to find the drive letter of your USB key. It will be something like /dev/sda, /dev/sdb, /dev/sdc, and so on. Be very careful and make absolutely sure you have the drive letter correct, because you will be erasing the USB key, and you don't want to erase your hard drive by mistake!&lt;br /&gt;
&lt;br /&gt;
Examples of possible commands to try:&lt;br /&gt;
&lt;br /&gt;
 dmesg | grep -i scsi&lt;br /&gt;
&lt;br /&gt;
 dmesg | grep -i usb&lt;br /&gt;
&lt;br /&gt;
 cat /proc/partitions&lt;br /&gt;
&lt;br /&gt;
 fdisk -l&lt;br /&gt;
&lt;br /&gt;
Look at the sizes of the various drives you see here. Find your USB key, and do not get it confused with your hard drive! For the rest of this example, I'm going to be using ''/dev/sdz'', a fictional drive letter that nobody has, just to prevent bad mistakes from typing in commands blindly.&lt;br /&gt;
&lt;br /&gt;
; Note : If your USB stick is FAT-formatted and has enough free capacity, you can skip the following repartitioning phase and jump to installing SYSLINUX section. Just make sure your stick's partition has it's boot flag activated so the boot loader works properly. This can be done with the command fdisk /dev/sdz and subsequent commands (example: a 1 p w )&lt;br /&gt;
&lt;br /&gt;
; Note: If you're repeating your installation and have already zeroed your USB key at least once, then you can add ''count=1k'' to the line below.  It becomes ''dd if=/dev/zero of=/dev/sdz count=1k'' which will just zero out the first few sectors of your USB key.  This avoids wear and tear on your USB key, but still writes to enough sectors to clean out any existing formatting on your USB key.&lt;br /&gt;
&lt;br /&gt;
* Erase your entire USB key.&lt;br /&gt;
&lt;br /&gt;
 dd if=/dev/zero of=/dev/sdz&lt;br /&gt;
&lt;br /&gt;
Did you use the right drive letter? ''Did you?'' If not, you'll be crying, right about now....&lt;br /&gt;
&lt;br /&gt;
This command will take a while to finish. By writing to every block on the USB key, we are also testing it for bad blocks.&lt;br /&gt;
&lt;br /&gt;
You should get the &amp;quot;no space left on device&amp;quot; error message when it finishes erasing and reaches the end of the drive. Any other error messages might mean bad blocks: if you notice any, your key might be worn out and you'll need to buy another one (cheap keys are notorious for wearing out very quickly).&lt;br /&gt;
&lt;br /&gt;
* Run the mkdiskimage script, to automatically partition and format your USB key.&lt;br /&gt;
&lt;br /&gt;
Choose ''only one'' of these sections to try, based on the size of your USB key.&lt;br /&gt;
&lt;br /&gt;
If your USB key is exactly 1GB in size:&lt;br /&gt;
&lt;br /&gt;
 mkdiskimage -4 /dev/sdz 0 64 32&lt;br /&gt;
&lt;br /&gt;
Here are some alternatives you can try, for larger USB keys.  If the above command worked for your USB key, then you do not need to try these!  Simply proceed to the SYSLINUX step below.&lt;br /&gt;
&lt;br /&gt;
If your USB key is 2GB or less in size, but larger than 1GB:&lt;br /&gt;
&lt;br /&gt;
 mkdiskimage -4 /dev/sdz 0 128 32&lt;br /&gt;
&lt;br /&gt;
If your USB key is 8GB or less in size, but larger than 2GB:&lt;br /&gt;
&lt;br /&gt;
 mkdiskimage -F -4 /dev/sdz 0 255 63&lt;br /&gt;
&lt;br /&gt;
If your USB key is larger than 8GB in size (see cautions below):&lt;br /&gt;
&lt;br /&gt;
 mkdiskimage -F -4 /dev/sdz 1 255 63&lt;br /&gt;
 dd if=/dev/zero of=/dev/sdz bs=1 seek=446 count=64&lt;br /&gt;
 echo -e ',0\n,0\n,0\n,,C,*' | sfdisk /dev/sdz&lt;br /&gt;
 mkdosfs /dev/sdz4&lt;br /&gt;
&lt;br /&gt;
The final section above, for keys larger than 8GB, is rather tricky.  The mkdiskimage script can't handle partitions larger than 8GB, so I have to hack around it a bit.  What we are doing here is making a dummy partition of only 1MB(!) in size, so that mkdiskimage can prepare the MBR properly.  Then, we manually delete that partition, by doing some surgery in the partition table.  We then use sfdisk to re-create the partition properly, using the full size of your USB key as FAT32, and finally format it with mkdosfs.&lt;br /&gt;
&lt;br /&gt;
Please be very careful typing in the command(s) in your section above.  If using the final section for keys larger than 8GB, the 0's in the echo command above are zeroes, not the letter O, and please be sure to use single quotes instead of double quotes.  This should work for all USB storage devices, up to 2TB in size.  I tested this using a 320GB USB hard drive, and it worked.  Beyond 2TB, you're on your own....&lt;br /&gt;
&lt;br /&gt;
This lays down a new MBR and partition table on the drive, and partitions and formats the entire drive as one big partition, either FAT16 or FAT32. Even though I prefer FAT32, I'm still recommending FAT16 for smaller keys, for increased compatibility with some strange BIOS's.&lt;br /&gt;
&lt;br /&gt;
The mkdiskimage script is USB-ZIP compliant, which may help it boot on more systems than USB-HDD. It's nice that Knoppix now includes this script by default. Here's the webpage for mkdiskimage, for additional reference: &lt;br /&gt;
&lt;br /&gt;
http://syslinux.zytor.com/usbkey.php&lt;br /&gt;
&lt;br /&gt;
* Close KDE's popup window.&lt;br /&gt;
&lt;br /&gt;
KDE may throw a stupid popup window in your face, once it recognizes your new partition.&lt;br /&gt;
If this happens, close the window.&lt;br /&gt;
&lt;br /&gt;
* Run the SYSLINUX installer on your new partition.&lt;br /&gt;
&lt;br /&gt;
 syslinux -s /dev/sdz4&lt;br /&gt;
&lt;br /&gt;
This installs the SYSLINUX bootloader onto the newly-created partition, and includes a special file, ldlinux.sys. The -s option is for safety and additional compatibility, although if you want your USB key to boot a little faster, you can omit the -s option.  Notice the partition is the fourth partition on the drive, not the first. This is for USB-ZIP compliance.&lt;br /&gt;
&lt;br /&gt;
* Mount your new partition.&lt;br /&gt;
&lt;br /&gt;
 mount /dev/sdz4 /media/sdz4&lt;br /&gt;
&lt;br /&gt;
Although Knoppix should have autodetected the new partition and set up a fstab entry for it, Knoppix's fstab options are incorrect.  So, by giving both the device and the mountpoint directory on the command line, we mount it manually, with no options. The /media/sdz4 directory should now correspond to the /dev/sdz4 partition.&lt;br /&gt;
&lt;br /&gt;
 cd /media/sdz4&lt;br /&gt;
 ls&lt;br /&gt;
&lt;br /&gt;
You should notice one, and only one, file in this directory now: ''ldlinux.sys''&lt;br /&gt;
&lt;br /&gt;
If you don't see this, then something probably went wrong earlier. Go back and try again before continuing.&lt;br /&gt;
&lt;br /&gt;
* Copy the contents of the Knoppix CD's boot directory, onto your USB key.&lt;br /&gt;
&lt;br /&gt;
You should already be in the ''/media/sdz4'' directory, from the cd command above.&lt;br /&gt;
&lt;br /&gt;
 rsync -av /cdrom/boot/isolinux/ ./&lt;br /&gt;
 mv isolinux.cfg syslinux.cfg&lt;br /&gt;
 rm -f isolinux.bin&lt;br /&gt;
&lt;br /&gt;
This copies all files from /cdrom/boot/isolinux/ to the current directory (the rsync command is an improvement over the cp command for handling large amounts of files, as it is better at handling errors).  Ignore any warnings about &amp;quot;failed to preserve ownership&amp;quot;. This is normal, because we're using the FAT filesystem, which does not support file ownership. This is not a problem for us.&lt;br /&gt;
&lt;br /&gt;
What we're doing here is copying the Knoppix CD's /boot directory first. This increases reliability, by getting it as close to the beginning of the drive as possible. This should help on systems with buggy CHS handling of USB keys, which may become an issue as new USB keys get larger.&lt;br /&gt;
&lt;br /&gt;
We are renaming Knoppix's isolinux.cfg file to syslinux.cfg, and then removing the unnecessary isolinux.bin file. ISOLINUX (used to boot the CD) and SYSLINUX (what we just installed to your USB key) are really two different variations of the same bootloader program. They accept the same config file format, so we don't need to change anything at all, just rename.&lt;br /&gt;
&lt;br /&gt;
BTW, since ISOLINUX has isolinux.bin as its main program file, can you guess what is the equivalent file for SYSLINUX? If you guessed ldlinux.sys, the file you saw earlier, good job!&lt;br /&gt;
&lt;br /&gt;
* Finish copying the rest of the Knoppix CD.&lt;br /&gt;
&lt;br /&gt;
Again, you should still be in the ''/media/sdz4'' directory. Again, don't forget the dot on the end of the rsync command.&lt;br /&gt;
&lt;br /&gt;
 rsync -av /cdrom/ ./ --exclude boot&lt;br /&gt;
&lt;br /&gt;
This should take a while -- we are filling up the USB key with the contents of the Knoppix CD. The excluded &amp;quot;boot&amp;quot; directory was already copied earlier.&lt;br /&gt;
&lt;br /&gt;
If, during the copy, it asks if you want to overwrite the files ''cdrom.ico'' and ''index.html'', say Yes.  This message appears because in later Knoppix versions, these files were doubled-up on the Knoppix CD (possibly a bug).&lt;br /&gt;
&lt;br /&gt;
* You are now ready to boot!&lt;br /&gt;
&lt;br /&gt;
Cleanly unmount the USB key.&lt;br /&gt;
&lt;br /&gt;
 sync&lt;br /&gt;
 cd /&lt;br /&gt;
 umount /media/sdz4&lt;br /&gt;
 sync&lt;br /&gt;
&lt;br /&gt;
Shut down Knoppix, and remove the CD when it tells you to.&lt;br /&gt;
&lt;br /&gt;
* Reset your computer and fiddle with the BIOS until it sees the USB key.&lt;br /&gt;
&lt;br /&gt;
After unmounting above, the USB key can be removed. Some BIOS's require a removal and re-insertion before they will recognize it.&lt;br /&gt;
&lt;br /&gt;
Other things to try, if you're having trouble getting the BIOS to see your USB key and let you boot from it:&lt;br /&gt;
&lt;br /&gt;
# Try a different USB port. Some BIOS's only search a few ports, not all of them.  Avoid using a USB hub, if possible.&lt;br /&gt;
# Hit a special key to bring up a boot menu. Some BIOS's can only boot from USB when manually selected.&lt;br /&gt;
# Go into your BIOS's setup menu, and walk through the boot settings. Look under all menus, especially &amp;quot;hard drives&amp;quot; and &amp;quot;removable devices&amp;quot; and other things like that. Some BIOS's will not search for newly attached devices until you manually go through the menus again.&lt;br /&gt;
# Enable &amp;quot;USB Keyboard and Legacy Support&amp;quot; if it is disabled.&lt;br /&gt;
# Turn your computer completely off and on again. Some BIOS's require you to physically turn the computer off and on again, before they will see newly attached &amp;quot;hard drives&amp;quot;.&lt;br /&gt;
# If all else fails, try a different PC. It's still fairly rare these days to find a computer that has a good ability to boot from USB devices, and it's not something that motherboard makers advertise, so it takes a bit of luck to find a computer that can do this.&lt;br /&gt;
&lt;br /&gt;
* Boot into Knoppix from your USB key.&lt;br /&gt;
&lt;br /&gt;
The USB key will be slow to load at first, especially during the cheatcode screen, because most BIOS's will default to running USB devices in a very slow mode.  Once Knoppix detects and autoconfigures the USB port during booting, though, it will return to normal speed.&lt;br /&gt;
&lt;br /&gt;
If it works, that's great. Notice how much faster it is. There's zero seek time on a USB key, so even though it isn't very fast, it feels a lot faster than the CD. Programs are surprisingly quick to load.&lt;br /&gt;
&lt;br /&gt;
Find the drive letter for your USB key again. It should not change, but it might have.&lt;br /&gt;
&lt;br /&gt;
* Make the USB key writeable.&lt;br /&gt;
&lt;br /&gt;
Knoppix assumes that the &amp;quot;CD-ROM&amp;quot; that it booted from is impossible to write to, but we have a USB key now, not a CD-ROM. So, we must fool Knoppix into letting you write to it.&lt;br /&gt;
&lt;br /&gt;
 mount -o remount,rw /cdrom&lt;br /&gt;
 mount --bind /cdrom /media/sdz4&lt;br /&gt;
&lt;br /&gt;
* Optional step: Modify the Knoppix boot menu&lt;br /&gt;
&lt;br /&gt;
This is an optional step, for customization. We want Knoppix to autofind the persistent home directory (once we make it), and fix a few other things.&lt;br /&gt;
&lt;br /&gt;
 vi /media/sdz4/syslinux.cfg&lt;br /&gt;
&lt;br /&gt;
On line 3, the default timeout is 300. Lower this, to around 50 or so (5 seconds, since this counter is in tenths of seconds).&lt;br /&gt;
&lt;br /&gt;
It's nice to have it boot faster, without waiting for you to hit Enter, so you can put in the USB key and walk away, coming back in a few minutes to a fully booted system.&lt;br /&gt;
&lt;br /&gt;
On line 2, add a few more options to the end of the line.&lt;br /&gt;
&lt;br /&gt;
 noswap noeject noprompt dma home=scan&lt;br /&gt;
&lt;br /&gt;
Here's a little explanation of what each option does.&lt;br /&gt;
&lt;br /&gt;
; noswap : Security fix: assuming you're going to be using the USB key on a bunch of different computers you don't own, you don't want to be swapping your memory onto their hard drives.&lt;br /&gt;
; noeject : You can't physically eject a USB key.&lt;br /&gt;
; noprompt : Gets rid of the &amp;quot;remove CD and close drive door&amp;quot; prompt when shutting down, as this prompt is rather misleading when it's really a USB key instead.&lt;br /&gt;
; dma : Gets you a significant speed increase when dealing with many IDE drives, a good thing to have.&lt;br /&gt;
; home=scan : This will cause Knoppix to pick up your persistent home directory automatically the next time you boot up, asking you for the password as needed. You will get an extra menu during bootup, asking you if you want to mount your home directory or not.&lt;br /&gt;
&lt;br /&gt;
Save the file and quit the editor.&lt;br /&gt;
&lt;br /&gt;
* Optional step: Create a Knoppix persistent home directory&lt;br /&gt;
&lt;br /&gt;
Now, we can run the Knoppix persistent utility, to create something that will save your settings across a reboot.&lt;br /&gt;
&lt;br /&gt;
(It's under the penguin menu, Configure, Create Persistent.)&lt;br /&gt;
&lt;br /&gt;
Choose your drive from the menu that appears, and follow the instructions.&lt;br /&gt;
&lt;br /&gt;
When making your encrypted persistent home directory, choose a size that is a good balance.  I recommend not using the entire remaining space on the USB key.  It's handy to have some extra free space, for quick file copying and such.  Also, if you have a large USB key with roughly 260MB of free space or more, and need to also work under Windows, you can install PortableApps (see below).&lt;br /&gt;
&lt;br /&gt;
The program should complete without errors. If the program suddenly disappears midway through, check the kernel logs with &amp;quot;dmesg&amp;quot; again. If you see pagefuls of SCSI errors and such, beware, you might have a worn-out USB key!&lt;br /&gt;
&lt;br /&gt;
==You're done!==&lt;br /&gt;
&lt;br /&gt;
Now, you should be all set. Reboot again, to make sure it all works.&lt;br /&gt;
&lt;br /&gt;
Enjoy your Knoppix-on-a-keychain!&lt;br /&gt;
&lt;br /&gt;
Josh&lt;br /&gt;
&lt;br /&gt;
--[[User:Krellan|Krellan]] 00:43, 10 Sep 2006 (GMT)&lt;br /&gt;
&lt;br /&gt;
==Large USB keys==&lt;br /&gt;
&lt;br /&gt;
The mkdiskimage command is very sensitive to the size of your USB key.  I have included several variations to try, in the above article.  Here are some more alternatives, for completeness.&lt;br /&gt;
&lt;br /&gt;
These will break USB-ZIP compatibility, as it is a USB-ZIP requirement to have 64 heads and 32 sectors.  Unfortunately, there is no other way, as a valid cylinder count (less than 1024) is also a requirement.  So, try USB-HDD instead of USB-ZIP.  The tradeoff is that it won't be as compatible with as many BIOS's as USB-ZIP.&lt;br /&gt;
&lt;br /&gt;
 mkdiskimage -4 /dev/sdz 0 255 63&lt;br /&gt;
&lt;br /&gt;
This will allow you to partition a USB key up to 8GB in size.  You probably could also use 256 heads instead of 255, for a little more space, but 255 heads is recommended, as it's slightly more compatible.&lt;br /&gt;
&lt;br /&gt;
You may then run into the 2GB limit of the FAT16 partition.  Beyond 2GB, it is probably best to use FAT32 instead.  Supply the -F option to mkdiskimage.&lt;br /&gt;
&lt;br /&gt;
 mkdiskimage -F -4 /dev/sdz 0 255 63&lt;br /&gt;
&lt;br /&gt;
At first, I did recommend FAT32 for all users: http://www.knoppix.net/forum/viewtopic.php?t=25402&lt;br /&gt;
&lt;br /&gt;
However, it did not work on as many BIOS's, so I now recommend FAT16, unless you have a USB key that is larger than the 2GB limit of FAT16.&lt;br /&gt;
&lt;br /&gt;
The other instructions on the page above should still be valid.  Only the mkdiskimage command line needs to be changed, for use with large keys.&lt;br /&gt;
&lt;br /&gt;
--[[User:Krellan|Krellan]] 20:30, 19 Oct 2006 (GMT)&lt;br /&gt;
&lt;br /&gt;
==PortableApps==&lt;br /&gt;
&lt;br /&gt;
Here's also something great I found.  If you have roughly 260MB or more of free space remaining on your USB key, you might want to drop PortableApps on there.&lt;br /&gt;
&lt;br /&gt;
http://portableapps.com/suite&lt;br /&gt;
&lt;br /&gt;
http://portableapps.com/&lt;br /&gt;
&lt;br /&gt;
This is a suite of freeware Windows utilities, and will help you if you need to do work within Windows without being able to reboot into Knoppix.  Much better and cleaner than U3!&lt;br /&gt;
&lt;br /&gt;
When installing PortableApps to a USB key that already has Knoppix on it, PortableApps will complain about overwriting the autorun.inf file.  This is fine.  Say Yes to the overwrite.  This will allow the USB key to bring up the PortableApps menu, instead of the Knoppix homepage, when clicking on it from within Windows.&lt;br /&gt;
&lt;br /&gt;
With a 1GB key formatted as FAT16, as per the above instructions, there is, unfortunately, just barely not enough room for both Knoppix and the full PortableApps suite to coexist.  The workaround is to &amp;quot;install&amp;quot; PortableApps to a spare empty folder on your hard drive first.  Make edits to that folder as necessary, deleting some apps you can live without.  Then, copy the entire folder manually to your USB key from there.&lt;br /&gt;
&lt;br /&gt;
Formatting as FAT32 will work, as FAT32 is more efficient at cramming in the thousands of small files PortableApps creates.  A larger USB key will provide much more room for both Knoppix and PortableApps, and enough extra left over for a decently-sized Knoppix home directory as well.  See above for alternate mkdiskimage command lines you can try, when formatting larger USB keys or using FAT32.&lt;br /&gt;
&lt;br /&gt;
--[[User:Krellan|Krellan]] 19:23, 27 Nov 2006 (GMT)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
There is an another project based on PortableApps, with the addition of [http://tor.eff.org/ TOR-networking] enabled by default. This makes it possible to anonymize web surfing at the cost of speed.&lt;br /&gt;
&lt;br /&gt;
More info at http://www.democrakey.com/&lt;br /&gt;
&lt;br /&gt;
--[[User:Neva|Neva]] 18:54, 20 Jun 2007 (GMT)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
mkdiskimage won't set up a 2 gb USB device with the USB-ZIP format using the example given. According to other FAQ's this is an issue with too many cylinders. A 1 gb drive is supposed to work fine. You may be able to manually create two drives on the device and manually format it in order to set it up as USB-ZIP.&lt;br /&gt;
&lt;br /&gt;
Depending on the USB device, you can use fdisk to figure out the cylinders, heads and sectors and get mkdiskimage to work with these values. The one I used had 1015 cylinders, 64 heads and 62 sectors per track -- these values worked fine and I was able to create a bootable Knoppix USB key.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I was able to use this guide to setup and boot from Knoppix on a Creative Zen Vision:M MP3 player. Details here: http://www.francisshanahan.com/detail.aspx?cid=509&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
For the Cylinders/Head/Sectors issue, an easy way to find the information is simply type:&lt;br /&gt;
&amp;lt;code&amp;gt;hdparm /dev/sd?&amp;lt;/code&amp;gt;&lt;br /&gt;
Where '?' is the drive letter. It will output the &amp;quot;Geometry: x/y/z&amp;quot; where X=Cylinders, Y=Heads, Z=Sectors. Enter those in for the last three variables on the mkdiskimage command and you are all set.&lt;br /&gt;
&lt;br /&gt;
--[[User:Geekner|Geekner]] 18:53, 7 Oct 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
When running Knoppix 5.1.1, and booting from your USB key, sometimes udev hardware detection will fail, or lock up entirely.  This is strange, and I don't know why this happens.  This doesn't happen when booting from the original CD.&lt;br /&gt;
&lt;br /&gt;
The workaround is to use the &amp;quot;noudev&amp;quot; cheatcode.  However, when using this cheatcode, fewer of your peripherals will be detected correctly.  It's better than having the system lock up, though.  If this cheatcode is necessary for you, consider editing it into your ''syslinux.cfg'' file as described above, so that you won't need to enter it every time.&lt;br /&gt;
&lt;br /&gt;
--[[User:Krellan|Krellan]] 10:55, 18 Oct 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
[[Category:Booting]]&lt;/div&gt;</summary>
		<author><name>118.175.255.10</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Knoppix_Customizations</id>
		<title>Knoppix Customizations</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Knoppix_Customizations"/>
				<updated>2008-08-26T17:41:36Z</updated>
		
		<summary type="html">&lt;p&gt;118.175.255.10: erolocnacna&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Knoppix customizations that are available for download. These are unoffical knoppix modifications, that have changes such as reduced size, special media (like [http://www.wikipedia.org/wiki/keydrive USB keydrives]) and different languages.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
For function based LiveCD list, see: http://www.livecdlist.com/&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Rules''':&amp;lt;br&amp;gt;&lt;br /&gt;
1. This list is '''ONLY''' for Knoppix based LiveCD or LiveDVD&amp;lt;br&amp;gt;&lt;br /&gt;
This list is NOT for distros &amp;quot;based on Debian, but not based on Knoppix&amp;quot;.&amp;lt;br&amp;gt;&lt;br /&gt;
2. New entry: '''please''' use the following format:&amp;lt;br&amp;gt;&lt;br /&gt;
*a. Name, Knoppix version, main function / focus, country.&amp;lt;br&amp;gt;&lt;br /&gt;
*b. Features.&amp;lt;br&amp;gt;&lt;br /&gt;
*c. Content: Kernel version, Desktop environments, list of main applications.&amp;lt;br&amp;gt;&lt;br /&gt;
*d. URL for Homepage, Download, Forum, Tutorial, Howto, Readme.&amp;lt;br&amp;gt;&lt;br /&gt;
*e. Latest version, size of ISO, type of media (USB, Mini CD, LiveDVD), platform/CPU.&amp;lt;br&amp;gt;&lt;br /&gt;
*f. Supported languages.&amp;lt;br&amp;gt;&lt;br /&gt;
*g. Status: active, dormant, alpha, beta.&amp;lt;br&amp;gt;&lt;br /&gt;
*h. Name of the author, credits.&amp;lt;br&amp;gt;&lt;br /&gt;
3. '''Alphabetized'''. Please keep additions in order separated by a horizontal rule (4 dashes).&amp;lt;br&amp;gt;&lt;br /&gt;
4. Please use '''English''' language, but you can add information using other languages.&amp;lt;br&amp;gt;&lt;br /&gt;
Thank you.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
good post man thx&lt;br /&gt;
&lt;br /&gt;
== [http://forum.linux.org.ba/viewtopic.php?id=1184 BHLD] ==&lt;br /&gt;
BHLD is Knoppix based LiveCD dedicated for users in Bosnia and Herzegovina. The most of programs are localised&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Localised versions of KDE and OpenOffice.  &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://bhld.linux.org.ba&lt;br /&gt;
*Download: ftp://ftp.bih.net.ba/pub/BHLD/bhld_1.2.iso&lt;br /&gt;
*Latest version: 1.2 (May 2004)&lt;br /&gt;
*Size: 730890240&lt;br /&gt;
*Author: http://vljubovic.members.epn.ba/bhlddocs/bhld/docs/people.html&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://hwi.ath.cx/twiki/bin/view/Neuralyte/BristolMorphix Bristol Morphix] ==&lt;br /&gt;
Bristol Morphix is a Morphix based LiveCD with '''Video Editing''' and '''Playback''' support.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Cinelerra, Avide Mux, Kino, Cine Paint, and scripts: prepare_video_for_cinelerra, extract_clips_from_video, and rip_realplayer. &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://hwi.ath.cx/twiki/bin/view/Neuralyte/BristolMorphix&lt;br /&gt;
*Download: Please see homepage.&lt;br /&gt;
*Latest version: 0.38 (based on Morphix-0.4.1) (May 2004)&lt;br /&gt;
*Size: 719360000&lt;br /&gt;
*Author: Joey Twiddle&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.catux.org/catux-usb/index.php?idioma=en Catux-USB] ==&lt;br /&gt;
Catux-USB is a Knoppix based LiveCD bootable from USB pendrive / keys.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;following links do not work anymore (as of 4/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.catux.org/catux-usb/index.php?idioma=en&lt;br /&gt;
*Download: ftp://ftp.salleurl.edu/pub/Linux/Distributions/Catux-USB&lt;br /&gt;
*Mailing list: http://catux.org/cgi-bin/mailman/listinfo/catux-usb&lt;br /&gt;
*Language: '''English''', '''Spanish''', '''Catalan'''.&lt;br /&gt;
*Size: 100 MB (compressed), fits into USB keys / USB stick.&lt;br /&gt;
*MD5Sum: fb1376bccc364498436129c172d3a208  catuxusb-0.1a-128.tar.bz2&lt;br /&gt;
*MD5Sum: 2521beb2e1e3ae2bd3d5b2e26df2aeff  catuxusb-0.1a-256.tar.bz2&lt;br /&gt;
*Latest version: 0.1a&lt;br /&gt;
*Author: CaTuX, association of GNU/Linux user from '''Catalonia, Spain'''.&amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.damnsmalllinux.org Damn Small Linux] ==&lt;br /&gt;
Damn Small Linux is a Knoppix based Mini LiveCD for everyday use.&lt;br /&gt;
Content: Browser: Dillo, FireFox, Word Processor: Siag, Email: Sylpheed,&lt;br /&gt;
Picture Viewer: Xzgv, File Manager: emelFM, Window Manager: Flux Box,&lt;br /&gt;
Text Editor: Nedit, Spreadsheet: Siag, Music: XMMS, mp321, ogg123,&lt;br /&gt;
nVi (enhanced Vi), tinyIRC, XCalc, Ispell (US-EN), ssh, sshd,&lt;br /&gt;
Zile (EMACS clone), Xpacman (Pacman game), Sqlite (SQL database), xpdf. &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.damnsmalllinux.org/&lt;br /&gt;
*Download: http://www.damnsmalllinux.org/download.html&lt;br /&gt;
*Forum: http://damnsmalllinux.org/cgi-bin/forums/ikonboard.cgi&lt;br /&gt;
*Latest version: 4.4.4, 2008-08-10&lt;br /&gt;
c85ef251462ce1a694e5243c4cc563b5  dsl-4.4.4.iso&lt;br /&gt;
*Size: 49 MB, fits into '''business card''' size CD-ROM&lt;br /&gt;
*Author: Robert Shingledecker, John Andrews.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== Dance Dance Tux ==&lt;br /&gt;
Dance Dance Tux is a Knoppix based LiveCD.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: pyDance (Dance Dance Revolution), python 2.3, parallel mat drivers&amp;lt;br&amp;gt;&lt;br /&gt;
and more than 400 songs.&lt;br /&gt;
*Homepage: (none for now)&lt;br /&gt;
*Download: (looking for hosting space)&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.ceskylinux.org/ DaNiX] ==&lt;br /&gt;
[[DaNix]] is a Knoppix based LiveCD from '''The Czech Republic'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Kernel 2.6, freedos and grub boot items, as many free software as possible. hard disk installer.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.danix.cz/english_Info/whatisDanix&lt;br /&gt;
*Download: http://www.danix.cz/Members/ruzickap/Mirrors/view&lt;br /&gt;
*Bittorrent: http://danix.hladnov.osu.cz/torrents/DaNiX_latest.torrent&lt;br /&gt;
*Latest version: DaNiX-2004.11.13&lt;br /&gt;
*MD5Sum: 4444a7db1a824b9abae012a615467d9e&lt;br /&gt;
*Size: 703MB CD.&lt;br /&gt;
*Language: '''Czech''', '''Slovak''' and '''English'''&lt;br /&gt;
*Author: David Pravec.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://depdiknux.depdiknas.org/ DEPDIKnux] ==&lt;br /&gt;
DEPDIKnux is remastered from Knoppix-4.0.2 live-CD intended to be used by Indonesian ICT center (currently supporting government project - Indonesia's national education network ). &amp;lt;br&amp;gt;&lt;br /&gt;
DEPDIKnux aims the following : &amp;lt;br&amp;gt;&lt;br /&gt;
1. Bandwidth monitoring (we use cacti)&amp;lt;br&amp;gt;&lt;br /&gt;
2. Bandwidth limiting (HTB included) &amp;lt;br&amp;gt;&lt;br /&gt;
3. Network monitoring (ntop included)&amp;lt;br&amp;gt;&lt;br /&gt;
4. Additional script (depdiknux-setup) for easy configuration &amp;lt;br&amp;gt;&lt;br /&gt;
therefore we somewhat removed KDE and stuff .... &amp;lt;br&amp;gt;&lt;br /&gt;
translated knoppix-installer to Indonesian for easy installation ... &amp;lt;br&amp;gt;&lt;br /&gt;
default as installation disk ... but can be used for live-CD by typing linux 3 at boot option&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
currently trying to make the desktop version ....&amp;lt;br&amp;gt;&lt;br /&gt;
1.0-RC1 = 407 MB ...still wanted to get smaller though ..&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Current Version 1.0.1-RC1&amp;lt;br&amp;gt;&lt;br /&gt;
Current Size 388 MB iso (with documentation) &amp;lt;br&amp;gt;&lt;br /&gt;
Homepage: http://depdiknux.depdiknas.org/ &amp;lt;br&amp;gt;&lt;br /&gt;
Forum Homepage : http://depdiknux.depdiknas.org/forum &amp;lt;br&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://emknoppix.sarovar.org/ Em Knoppix] ==&lt;br /&gt;
emKnoppix is a distribution of Knoppix tailored for use in '''embedded systems'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Homepage: http://emknoppix.sarovar.org/&lt;br /&gt;
-----&lt;br /&gt;
== [http://featherlinux.berlios.de/ Feather Linux] ==&lt;br /&gt;
&lt;br /&gt;
This appears to be a discontinued project. There do not seem to be dates anywhere on the website apart from in the the forum (it wasn't an exhaustive search) particularly not in the CHANGELOG which would be the appropriate place, so it's hard to see when it dates from. It does mention the [http://www.kernel.org/pub/linux/kernel/v2.4/ 2.4.27 kernel] which dates from Aug 7th, 2004, so it could be over 4 years old now. The FTP download links to the CD-ROM ISO file and the USB drive .zip file give 550 errors (&amp;quot;access denied&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Feather Linux is a '''lightweight''', Knoppix based Linux distro which aims to have a wide range of applications that users would use every day on their desktop. Feather Linux can run from a CD or a USB pendrive.&amp;lt;br&amp;gt;&lt;br /&gt;
Applications:            Kernel 2.4.26, Abiword, siag, Dillo, Firefox, Captive-NTFS, gaim, ethereal, Thunderbird, XMMS and plugins, Imposter, IceWM, wavplay, mpg321, FreeNX, John the Ripper, Tcl, qemu, kismet, abcde, macchanger, screen, paketto, ogg123 and other Ogg Vorbis tools, axyFTP, fireftp, rox-filer, cdrecord, mkisofs, rdesktop, tcpdump, parted, partimage, dsniff, aircrack, madwifi, dnsmasq, foremost, antiword, e2undel, iftop, bbpager, utelnetd, minicom, index, gpart, socat, traceroute, SciTE, prozilla, Midnight Commander, Samba, elmo, tmsnc, apsfilter, gmplayer, mount.app, chntpw, zile, tinycc, nano, Xpaint, Xzgv, Xpdf, naim, hdparm, usbview, index, recoverdm, mtr, cdparanoia, betaftpd, Chipmunk Basic, gqcam, e3, lua, Ruby, cdparanoia, giFTcurs, mtools, emelfm2, vncdec, elhttp, quagga, ettercap, wavemon, iptables, recover, amap, hping2, cabextract, splitvt, pciutils, LinNeighborhood, nmap and nmapfe, portmap and nfs-common, aumix, CTorrent, VNCviewer, sqlite, SSH and SCP, DHCP client, xtdesktop, PPP and PPPoE support, NTFS resize support, an RSS reader, stress, cpuburn, the Monkey webserver, Xcalc, Fluxbox, evilwm, the XBase apps, and the various standard console and system tools.&lt;br /&gt;
&lt;br /&gt;
*Homepage:              http://featherlinux.berlios.de/&lt;br /&gt;
*Download CDROM-Distro: ftp://ftp.berlios.de/pub/featherlinux/feather-0.7.3.1.iso&lt;br /&gt;
*MD5Sum CDROM-Distro:   a4e7f83ec3013565da08c5b6377c0e8a  feather-0.7.3.1.iso&lt;br /&gt;
*Download USB-Distro:   ftp://ftp.berlios.de/pub/featherlinux/feather-0.7.3.1-usb.zip&lt;br /&gt;
*MD5Sum USB-Distro:     17b01cc54e4a304cb1c30098aa6c8192  feather-0.7.3.1-usb.zip&lt;br /&gt;
*Forum:                 http://featherlinux.berlios.de/phpBB2/index.php&lt;br /&gt;
*Latest version:        0.7.5, Nov 2005. Prev: 0.7.4 Feb 2005&lt;br /&gt;
*Size:                  121 MB, fits into '''business card''' size CD-ROM&lt;br /&gt;
*Author:                &lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.flonix.com/ Flonix] ==&lt;br /&gt;
Flonix USB Edition is a Knoppix based LiveCD bootable from USB keys.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;following links do not work anymore (as of 8/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Content: [[Open Office]], Mozilla Firefox, Mplayer, media center, cloop, hardware detection.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.flonix.com/&lt;br /&gt;
*Size: less than 128 MB. Fit into  USB keys / USB stick.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://intevation.de/cgi-bin/viewcvs-misc.cgi/freiesoftwareknoppix/ Freie software knoppix] ==&lt;br /&gt;
Freie Knoppix is a Knoppix based LiveCD with focus on '''Free Software'''.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://intevation.de/cgi-bin/viewcvs-misc.cgi/freie''software''knoppix/&lt;br /&gt;
*Download: none yet.&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.sourcepole.com/sources/software/gis-knoppix/ GIS-Knoppix] ==&lt;br /&gt;
GIS Knoppix is a Knoppix based LiveCD with focus on '''Geographic Information Systems''' software.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://www.sourcepole.com/sources/software/gis-knoppix/&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.agnix.org GNIX-Vivo] ==&lt;br /&gt;
GNIX-Vivo is a Morphix-0.4.1d based Live CD from '''Galicia, Spain'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: KDE-3.2.2,  [[Open Office]] version 1.1.1 galician, Evolution-1.4,&amp;lt;br&amp;gt;&lt;br /&gt;
Browser: Mozilla-1.6, Mozilla-Firefox-0.8, E-mail: Mozilla Thunderbird,&amp;lt;br&amp;gt;&lt;br /&gt;
Videoconference: Gnomemeeting-1.0,  IM: Kopete, K3b, Mplayer, Xine, games.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.agnix.org&lt;br /&gt;
*Download: http://www.agnix.org/index.php?option=com_docman&amp;amp;task=down&amp;amp;bid=35&lt;br /&gt;
*Latest version: 0''8''18&lt;br /&gt;
*Size: 552 MB&lt;br /&gt;
*MD5Sum: 5669fedff9bad5a00acab779309ab839&lt;br /&gt;
*Language: '''Spanish''', '''Galician'''&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.gnoppix.org Gnoppix] ==&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;latest version is from (2003-11-10) (as of 4/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Gnoppix is a Knoppix and Debian based LiveCD with '''Gnome''' 2.2 and 2.4.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.gnoppix.org&lt;br /&gt;
*Download: http://www.gnoppix.org/download.html&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.gnuab.org/ Gnu ABIX] ==&lt;br /&gt;
GnuABIX is a Knoppix 3.4 based LiveCD with Computer science software.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: easy access to free application software. &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.gnuab.org/&lt;br /&gt;
*Download: http://ftp.gnuab.org/pub/gnuab-cd/master/&lt;br /&gt;
*Language: '''Catalan''' and '''Spanish'''.&lt;br /&gt;
*Author: GnuAB (Free software group of the Universitat Autònoma de Barcelona).&lt;br /&gt;
-----&lt;br /&gt;
&amp;lt;!-- originally based on Knoppix; now based on Debian...&lt;br /&gt;
== [http://www.grml.org GRML] ==&lt;br /&gt;
GRML is a LiveCD based on Knoppix and Debian. &amp;lt;br&amp;gt;&lt;br /&gt;
Content: '''text tools''' and '''system administrators'''.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://www.grml.org/&lt;br /&gt;
*Download http://www.grml.org/download/&lt;br /&gt;
-----&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [http://www.e-fense.com/helix Helix] ==&lt;br /&gt;
Helix is a Knoppix based LiveCD and '''Rescue''' CD wtih focus on  '''Incident Response''' and  '''Forensics'''.&amp;lt;br&amp;gt;&lt;br /&gt;
* homepage: http://www.e-fense.com/helix&lt;br /&gt;
* forum: http://www.e-fense.com/helix/forum&lt;br /&gt;
* Language: '''English''' and '''German'''&lt;br /&gt;
* Version 1.9a 07-13-2007, 701MB. Previous 10-06-06&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://linux.hiweed.com/ Hiweed] ==&lt;br /&gt;
Hiweed is a Live CD based on Hiweed Desktop, Knoppix and Morphix.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: kernel: 2.6.9, lightweight xfce desktop, Poor Man Installer, '''Chinese''' character support.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://linux.hiweed.com/  (in chinese)&lt;br /&gt;
*Forum: http://linux.hiweed.com/forum (in chinese)&lt;br /&gt;
*Download: ISO ftp://distro:smth@distro.cn/pub/hiweed/hiweed055-livecd-w445.iso&lt;br /&gt;
*Latest version: W445&lt;br /&gt;
*Size: 250 MB&lt;br /&gt;
*MD5Sum :d86762a40cf15c121b3c9490ec5643eb&lt;br /&gt;
*Language: '''Chinese'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://knoppel.sourceforge.net/ KNOPPEL. Knoppix in Greek Language] ==&lt;br /&gt;
A customized Knoppix for supporting, read, write and &amp;quot;speak&amp;quot; '''Greek''' language.&lt;br /&gt;
* Homepage: http://knoppel.sourceforge.net/&lt;br /&gt;
* Language:  '''Greek''' as primary language but support English as well with (lang=en).&lt;br /&gt;
* Current version 0.5 (3 / Jan / 05)&lt;br /&gt;
* Based on knoppix 3.7&lt;br /&gt;
* kernels 2.4.27 and 2.6.9&lt;br /&gt;
* KDE 3.3.1&lt;br /&gt;
* Openoffice 1.1.3 with better integration to KDE.&lt;br /&gt;
* FreeNX 0.2.5 (from Fabian Franz).&lt;br /&gt;
* Firefox and Thunderbird.&lt;br /&gt;
* Support for &amp;quot;klik&amp;quot; (probono).&lt;br /&gt;
-----&lt;br /&gt;
== [http://jollix.berlios.de/ Jollix] ==&lt;br /&gt;
Jollix is a LiveCD based on Gentoo Linux, and Knoppix technology. &amp;lt;br&amp;gt;&lt;br /&gt;
Content: KDE 3.1.1a,  games and multimedia (xmms, mplayer, xine).&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;following links do not work anymore (as of 8/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://jollix.berlios.de/&lt;br /&gt;
*Download http://jollix.berlios.de/en/en_download.html&lt;br /&gt;
*Platform: '''i686''', Optimized for '''Athlon-CPU'''&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://julexlinux.sourceforge.net Julex] ==&lt;br /&gt;
Julex is a knoppix based LiveCD and Rescue CD distro. &amp;lt;br&amp;gt;&lt;br /&gt;
Feature: support for NTFS, lightweight,  suitable for older computers.&amp;lt;br&amp;gt;&lt;br /&gt;
Julex is designed for getting files back from a dead windows installation. &amp;lt;br&amp;gt;&lt;br /&gt;
User can save the recovered files to CD or send it to other computers.&amp;lt;br&amp;gt;&lt;br /&gt;
Julex can be used for [http://www.datasol.org/disaster-recovery.php quick recovery] and browse online to get help.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://julexlinux.sourceforge.net/&lt;br /&gt;
*Download http://julexlinux.sourceforge.net/download.html&lt;br /&gt;
*Latest version: JULEX0.5.2.26&lt;br /&gt;
*Size: Small, less than 120 MB&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.k-demar.org K-DEMar] ==&lt;br /&gt;
K-DEMar is a Knoppix 3.7 based LiveCD from '''Spain'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: DivX, aMule, Azureus, mount of HD in readwrite mode, MyPC icon on desktop, Xine, KDE, aMSN, OpenOffice&amp;lt;br&amp;gt;&lt;br /&gt;
CADI: python based graphical wizard to configure the system&lt;br /&gt;
*Homepage: http://www.k-demar.org&lt;br /&gt;
*Download:  http://www.k-demar.org/index.php?option=com_remository&amp;amp;Itemid=55&lt;br /&gt;
*Language: '''Catalan''', '''Spanish'''. and '''English'''&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.linux-kinneret.org Kinneret] ==&lt;br /&gt;
Kinneret is a Knoppix based distro for  '''Israeli''' students.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.linux-kinneret.org&lt;br /&gt;
*Language: '''Hebrew'''&lt;br /&gt;
-----&lt;br /&gt;
==  [http://cerlab.hpcf.upr.edu/Knochem.html KNOCHEM] ==&lt;br /&gt;
Knochem is for '''biochemistry, chemical education and computational chemistry'''. &amp;lt;br&amp;gt;&lt;br /&gt;
Based on KNOPPIX DVD 5.3.1&lt;br /&gt;
Content:&amp;lt;br&amp;gt;&lt;br /&gt;
Avogadro, Autodock, Babel, BKchem, ChemCalc, Chemnomparse, CN3D, Easychem, fityk-2, Gabedit,&amp;lt;br&amp;gt;&lt;br /&gt;
GChemPaint, GElemental, Ghemical, Gnome Crystal, Kalzium, Lennard Jones Gas Simulation, GIMP, MPQC,&amp;lt;br&amp;gt;&lt;br /&gt;
NJPlot, Open Babel, Octave, PSI3, PyMOL, Rasmol, Raster3D, SMILE,&amp;lt;br&amp;gt;&lt;br /&gt;
Openmol, Polyxmass, Pymol, Pyvib2, Viewmol, XCOmbust, Xmakemol, XDrawChem, OpenOffice.org, .&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://cerlab.hpcf.upr.edu/&lt;br /&gt;
*Download: http://cerlab.hpcf.upr.edu/Knochem.html&lt;br /&gt;
*Size: 3.2 GB.&lt;br /&gt;
*Country: Puerto Rico&lt;br /&gt;
*Language: '''English'''&lt;br /&gt;
*Authors: Kariluz Davila, Jose R. Ortiz Ubarri&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
== [http://knopils.linux.it knop ILS] ==&lt;br /&gt;
knopILS (KNOPPIX and ILS) is a Knoppix based LiveCD.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: Packages from '''Free Tree''' of GNU/Linux. The boot prompt, F2 help prompt, default keyboard, default language: all  '''Italian'''&lt;br /&gt;
*Homepage http://knopils.linux.it/&lt;br /&gt;
*Download http://ftp.linux.it/pub/knopils/&lt;br /&gt;
*Language: '''Italian'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://am.xs4all.nl/drupal/node.php?id=13 Knopnl and Knop Base] ==&lt;br /&gt;
Content: icewm desktop, phoenix, abiword, gnumeric, xchat, gaim, gftp, gimp, gedit, sylpheed, (g)mplayer, and synaptic package management, kewl debian-background&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://am.xs4all.nl/drupal/node.php?id=13&lt;br /&gt;
*Forum: http://www.knoppix.net/forum/viewtopic.php?p=724&lt;br /&gt;
*Size: Knopnl: 245 MB.&lt;br /&gt;
*Size: [[Knop Base]]: 87 MB&lt;br /&gt;
*Status: Dormant, discontinued in favor of Morphix.&lt;br /&gt;
*Language: '''English''' and '''Dutch'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://unit.aist.go.jp/it/knoppix/ Knoppix Japanese Edition] ==&lt;br /&gt;
Content: kernel 2.4.21,CLOOP,KDE, [[Open Office]], Wine, Mozilla, GIMP.&lt;br /&gt;
*Homepage: http://unit.aist.go.jp/it/knoppix/&lt;br /&gt;
*Translation: http://www.rytsolutions.com  (by Eric Standlee)&lt;br /&gt;
*Versions: ISO, Vmware 3.1, VirtualPC 5.0, Label Design, Educator.&lt;br /&gt;
*Language: '''Japanese'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://knoppixko.kldp.net/ Knoppix Ko] ==&lt;br /&gt;
Knoppix Korean Edition based on knoppix 4.0.2&lt;br /&gt;
*Project Homepage : http://knoppixko.kldp.net/&lt;br /&gt;
*ISO image Download : [ftp://ftp.kr.freebsd.org/pub/users/tcheun/Knoppix-V4.0.2-2005-12-04-KO.iso]&lt;br /&gt;
*Language: '''Korean'''&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.knoppix-math.org/ KNOPPIX/Math] ==&lt;br /&gt;
KNOPPIX/Math is a KNOPPIX-jp based LiveCD from Japan with focus on&lt;br /&gt;
'''Mathematical''' applications.&amp;lt;br&amp;gt;&lt;br /&gt;
*Content: Computer Algebra Systems and Visualization tools and TeX&lt;br /&gt;
*Homepage: http://www.knoppix-math.org/&lt;br /&gt;
*Download: [http://geom.math.metro-u.ac.jp/wiki/index.php?%5B%5BKNOPPIX%2FMath%2FEnglish%2FDownload%5D%5D KNOPPIX/Math/English/Download]&lt;br /&gt;
*Version: 20051115&lt;br /&gt;
*Language: '''Japanese''' and '''English''' and '''Korean'''&lt;br /&gt;
*Author: KNOPPIX/Math Project&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.bouissou.net/knoppix-mib/doc-html/Knoppix-Mib.html Knoppix MIB] ==&lt;br /&gt;
Knoppix MIB is a Knoppix based LiveCD with focus on '''privacy issues'''. &amp;lt;br&amp;gt;&lt;br /&gt;
Features: encrypts personal files to a USB storage device, &amp;lt;br&amp;gt;&lt;br /&gt;
automatically encrypts all data used on a hard drive swap space,&amp;lt;br&amp;gt;&lt;br /&gt;
automatic mount of persistent home directory at boot up,&amp;lt;br&amp;gt;&lt;br /&gt;
postfix MTA with TLS encryption, preconfigured with provided generic certificates,&lt;br /&gt;
automatic restoration of optional custom system configuration, without needing to type specific boot parameters.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.bouissou.net/knoppix-mib/doc-html/Knoppix-Mib.html&lt;br /&gt;
*Platform: X86, PowerPC&lt;br /&gt;
-----&lt;br /&gt;
== Knoppix PPC ==&lt;br /&gt;
KnoppixPPC is a Knoppix based LiveCD from '''German''' for  '''PowerPC''' machines.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: support Apple Macintosh, Pegasos.&lt;br /&gt;
*Homepage: http://debian.tu-bs.de/knoppix/powerPC/ (missing)&lt;br /&gt;
*Latest version: 2003-07-13_4&lt;br /&gt;
*Size: 507 MB&lt;br /&gt;
*MD5Sum: 988d08c22df54b0175d9a5a7196e4b97&lt;br /&gt;
*Platform: '''PowerPC'''.&lt;br /&gt;
*Language: '''German''', '''English'''&lt;br /&gt;
*Author: Fabian Franz.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://mysettopbox.tv/knoppmyth.html Knopp Myth] ==&lt;br /&gt;
[[Knopp Myth]] is a Knoppix based LiveCD with MythTV software. &amp;lt;br&amp;gt;&lt;br /&gt;
Feature: transform PC into  '''set-top box'''  (record programs, rewind/pause live tv).&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://mysettopbox.tv/knoppmyth.html&lt;br /&gt;
----&lt;br /&gt;
== [http://www.knoppix-es.org KNOPPIX-ES] ==&lt;br /&gt;
Knoppix ES is a Knoppix based LiveCD from Spain (Knoppix en español). &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage and Download: http://www.knoppix-es.org&lt;br /&gt;
*Changes from KNOPPIX: ftp://ftp.gui.uva.es/pub/ISOS/knoppix-spanish/KNOPPIX_V3.7-2004-12-08-ES-151204.leeme.txt&lt;br /&gt;
*Language: '''Spanish'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://guli.ispgaya.pt/knoppix-pt/html/ KnoppixPT] ==&lt;br /&gt;
KnoppixPT is a version of Knoppix in Portuguese from '''Portugal''', just from start.&lt;br /&gt;
*Homepage: http://guli.ispgaya.pt/knoppix-pt/html/&lt;br /&gt;
*Download: http://tux.cprm.net/pub/knoppix-pt/imagem/&lt;br /&gt;
*Version: 2004-01-31&lt;br /&gt;
*Size: 650 MB&lt;br /&gt;
*MD5Sum: 65171ea02c29891c15ec24c35a973981&lt;br /&gt;
*Language: '''Portuguese''', '''English'''&lt;br /&gt;
*Author: João Silva Neves&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://freshmeat.net/releases/108911/ Knoppi XMAME] ==&lt;br /&gt;
KnoppiXMAME is a Knoppix based arcade machine emulator.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: X-MAME, and gxmame.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://freshmeat.net/releases/108911/&lt;br /&gt;
* Download http://freshmeat.net/projects/knoppixmame/&lt;br /&gt;
-----&lt;br /&gt;
== [http://rz-obrian.rz.uni-karlsruhe.de/knoppix-usb/ Knoppix-USB] ==&lt;br /&gt;
Knoppix USB is a Knoppix based LiveCD bootable from USB keys.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;server not responding (as of 4/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;server not responding (as of 8/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://rz-obrian.rz.uni-karlsruhe.de/knoppix-usb/&lt;br /&gt;
*Download http://rz-obrian.rz.uni-karlsruhe.de/knoppix-usb/damnsmall-0.3.6-usb.tar&lt;br /&gt;
*Size: less than 128 MB, fits into USB keys / USB stick.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://sslmit.unibo.it/~baroni/welcome_to_knorpora.html Knorpora] ==&lt;br /&gt;
Knorpora is a Knoppix based LiveCD with focus on '''Corpus-based computational linguistics'''.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://sslmit.unibo.it/~baroni/welcome_to_knorpora.html&lt;br /&gt;
*Download: http://sslmit.unibo.it/~baroni/knorpora_pages/knorpora.html&lt;br /&gt;
*Contents: http://sslmit.unibo.it/~baroni/knorpora_pages/knorpora_software.html&lt;br /&gt;
*Version 1.0&lt;br /&gt;
*Author: Marco Baroni&lt;br /&gt;
-----&lt;br /&gt;
== [http://knopsterisk.com/ Knopsterisk] ==&lt;br /&gt;
Knopsterisk is Knoppix based LiveCD with '''Asterisk''' (open source PBX). &amp;lt;br&amp;gt;&lt;br /&gt;
Asterisk: transform regular PC into a phone switch and VoIP gateway.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: '''auto attendant''', '''voicemail''', '''music on hold''', '''answering machine'''.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://knopsterisk.com/&lt;br /&gt;
-----&lt;br /&gt;
== [http://kuliax.duniasemu.org Kuliax] ==&lt;br /&gt;
Kuliax is a Debian/KNOPPIX-based LiveCD for University Education, especially in Indonesia.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://kuliax.duniasemu.org&lt;br /&gt;
*Download: http://kuliax.duniasemu.org/download.html&lt;br /&gt;
*Size: 693 MB&lt;br /&gt;
*Version: 6.0&lt;br /&gt;
*Language: '''English'''&lt;br /&gt;
*Author: Kuliax Project&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.guiadohardware.net/linux/kurumin/ Kurumin] ==&lt;br /&gt;
Kurumin is a Knoppix based LiveCD from '''Brazil'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: &amp;quot;Entendendo e Dominando o Linux&amp;quot; ebook.&amp;lt;br&amp;gt;&lt;br /&gt;
KDE, Kword, Kontour, Acrobat Reader, Konqueror, X-CD-Roast, &amp;lt;br&amp;gt;&lt;br /&gt;
GFTP, xIRC, Bluefish, XMMS, Mplayer, Phoenix.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.guiadohardware.net/linux/kurumin/&lt;br /&gt;
*Download: http://www.ibiblio.org/pub/Linux/distributions/kurumin/&lt;br /&gt;
*Download: http://www.linorg.usp.br/ISO/debian/kurumim/&lt;br /&gt;
*Size: 196 MB&lt;br /&gt;
*Language: '''Portuguese'''&lt;br /&gt;
*Author: Carlos E. Morimoto&lt;br /&gt;
-----&lt;br /&gt;
== [http://lamppix.tinowagner.com/ LAMPPIX] ==&lt;br /&gt;
LAMPPIX is a KNOPPIX based Live CD with '''XAMPP web server'''. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;latest version is from (2004-08-31) (as of 4/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
User can burn PHP based web projects into a CD.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://lamppix.tinowagner.com/&lt;br /&gt;
*Download: http://www.ibiblio.org/pub/linux/distributions/lamppix/&lt;br /&gt;
*Latest version 1.1 (June 2004, mini version Aug 2004). This note updated Jan 2008&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.llgp.org Linux Live Game Project (LLGP)] ==&lt;br /&gt;
LLGP is a Knoppix based distro with various games.&amp;lt;br&amp;gt;&lt;br /&gt;
It contains deep changes in Knoppix startup scripts. It's completely based on hotplug and udev; kudzu was removed.&amp;lt;br&amp;gt;&lt;br /&gt;
Features: KDE 3.3 with Plastik theme and Nuvola icons, kernel 2.6.10, Nvidia drivers, TORCS, Wesnoth, SuperTux, TuxRacer and much more!&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.llgp.org&lt;br /&gt;
*Download: http://www.llgp.org/pub/current&lt;br /&gt;
*Download torrent: http://www.tlm-project.org/torrents/llgp/llgp-0.1pre0.iso.torrent&lt;br /&gt;
*Latest version: 0.1pre0&lt;br /&gt;
*Language: '''English''' and  '''Italian'''&lt;br /&gt;
*Forum: http://tuxgamers.altervista.org/forum/&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.flagar.com/en/software/linux/lm_minicd Linux Magazine mini CD 1.0 and 2.0] ==&lt;br /&gt;
Customized KNOPPIX  bundled with Linux Magazine (from Edizioni Master).&amp;lt;br&amp;gt;&lt;br /&gt;
Version 1.0: (number 35 - November 2003):&amp;lt;br&amp;gt;&lt;br /&gt;
''KDE 3.1.3'', ''Mozilla Firebird 0.6'', ''The GIMP 1.3.19'', ''Abiword 1.99.5'',&amp;lt;br&amp;gt;&lt;br /&gt;
''Gnumeric 1.1.9'', ''Scribus 1.0'', ''MySQL'', ''MySQLcc'', ''Gaim'', ''KMail'', &amp;lt;br&amp;gt;&lt;br /&gt;
''Konqueror'', ''gFTP'', ''K3B'', ''MPlayer'' and ''KPlayer'', ''Sodipodi''. &amp;lt;br&amp;gt;&lt;br /&gt;
Version 2.0: (number 38 - February 2004): &amp;lt;br&amp;gt;&lt;br /&gt;
additional software: ''GNOME 2.4'', ''Mozilla 1.6'', ''Evolution 1.4'', ''Totem 0.99.8''.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.flagar.com/en/software/linux/lm_minicd (English),&lt;br /&gt;
*Homepage: http://www.flagar.com/it/software/linux/lm_minicd (Italian),&lt;br /&gt;
*Homepage: http://www.flagar.com, http://www.edmaster.it&lt;br /&gt;
*Size: 183 MB (V. 1.0).&lt;br /&gt;
*Language: '''Italian'''&lt;br /&gt;
*Author: Flavio Gargiulo&lt;br /&gt;
-----&lt;br /&gt;
== [http://linux.ictwatch.com/ Linux-Sehat] ==&lt;br /&gt;
Linux-Sehat is a Knoppix 3.3 based LiveCD distro from '''Indonesia''' .&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://linux.ictwatch.com/&lt;br /&gt;
*Download ftp://ftp.ui.edu/bebas/ISO/LS-030618.iso&lt;br /&gt;
*Download http://kambing.ui.edu/debian-cd/linuxsehat/LS-030618.iso&lt;br /&gt;
*Latest version: 06-18-2003&lt;br /&gt;
*Language: '''Bahasa''' and  '''Malay'''.&lt;br /&gt;
*Status: dormant and no longer being developed.&lt;br /&gt;
-----&lt;br /&gt;
== [http://plone.org/newsitems/News_Item.2003-10-18.4551 Live Plone] ==&lt;br /&gt;
Live Plone is a Knoppix based LiveCD with '''Plone Content Management System'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Live Plone is based on methodology developed through the Live_OIO.Org.&lt;br /&gt;
Feature: a nice user-interface, submit-approve-publish workflow, and multiple document types ( News, Image, Discussion).&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Plone, OIO, Zope, PostgreSQL, PsycopgDA database adaptor, ParsedXML, and Calendar Tag.&lt;br /&gt;
*Homepage: http://plone.org/newsitems/News_Item.2003-10-18.4551&lt;br /&gt;
*Download: http://sourceforge.net/project/showfiles.php?group_id=9295&lt;br /&gt;
*Size: 650 MB.&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.zope.org/ Live Zope] ==&lt;br /&gt;
Live Zope is a Knoppix based [[LiveCD]] with '''ZOPE web application server'''.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;latest version is from (2003-08-27) (as of 4/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Zope-2.6.2b5, Python, Transactional object database. CAS,  3D&amp;lt;br&amp;gt;&lt;br /&gt;
Database feature: store content, custom data, dynamic HTML templates, scripts, a search engine, and Relational Database connections, code, and import/export (MySQL, PostgreSQL,&lt;br /&gt;
Gadfly). 3D packages: Blender, VPython.&amp;lt;br&amp;gt;&lt;br /&gt;
CAS: Octave, Maxima, R, gnuplot, QCL, graphviz, GCL, rlab&amp;lt;br&amp;gt;&lt;br /&gt;
Scientific document editor: Te Xmacs that can easily make technique documents with embedding output from CAS (various output format, postscript, pdf, html).&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.zope.org/Members/cchuang/Live%20Zope%20on%20Knoppix%20Linux%20CDROM&lt;br /&gt;
*Download ftp://ftp.texmacs.org/pub/TeXmacs/knoppix/&lt;br /&gt;
*Version: Live Zope-0.1&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.lnx-bbc.org/ LNX-BBC] ==&lt;br /&gt;
The LNX-BBC is a mini Linux '''Rescue CD''' and LiveCD.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature:  rescue, intrusion post-mortems, temporary workstation.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://lnx-bbc.com/&lt;br /&gt;
*Download: http://lnx-bbc.com/download.html&lt;br /&gt;
*Size: small, fits into business card sized CD-ROM.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://luitlinux.sarovar.org Luit Linux] ==&lt;br /&gt;
[[Luit Linux]] is a Knoppix based LiveCD.&lt;br /&gt;
Content: XFCE4, Abiword, ROX.&lt;br /&gt;
*Homepage : http://luitlinux.sarovar.org&lt;br /&gt;
*Size: '''Small''', 50 MB&lt;br /&gt;
------&lt;br /&gt;
&amp;lt;!-- distro not Knoppix-based, but Mandrake-based...&lt;br /&gt;
&lt;br /&gt;
== [http://minicd.berlios.de/ MDK Mini CD] ==&lt;br /&gt;
Bootable '''Mandrake(!)''' Mini-CD that uses Knoppix technology in part&lt;br /&gt;
*Homepage http://minicd.berlios.de/&lt;br /&gt;
*Download http://developer.berlios.de/project/showfiles.php?group''id=697&amp;amp;release''id=691&lt;br /&gt;
-----&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
relccapa&lt;br /&gt;
&lt;br /&gt;
== [http://www.mediainlinux.org Mediainlinux2] ==&lt;br /&gt;
Mediainlinux is a '''Multimedia''' LiveCD, based on Knoppix 3.3. &amp;lt;br&amp;gt;&lt;br /&gt;
Just received some specs about Rarewares .debs and waiting for Marillat ones for legal reasons.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.mediainlinux.org&lt;br /&gt;
*Latest version: 2.5 Beta&lt;br /&gt;
-----&lt;br /&gt;
acelel&lt;br /&gt;
&lt;br /&gt;
== [http://www.mepis.org/ MEPIS] ==&lt;br /&gt;
Mepis is a LiveCD set (2 CD), based on Knoppix.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: automatic hard disk installer.&lt;br /&gt;
*Homepage: http://www.mepis.org/&lt;br /&gt;
*Download: ftp://ftp.ibiblio.org/pub/linux/distributions/mepis&lt;br /&gt;
*Size: 2 ISO CD.&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.google.com Micro Knoppix] ==&lt;br /&gt;
Micro Knoppix ('''Model K''') is a Knoppix based mini LiveCD.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: (Unknown)&lt;br /&gt;
*Download: http://www.ibiblio.org/pub/Linux/distributions/modularity/ (dead link)&lt;br /&gt;
*Size: 51.8 MB&lt;br /&gt;
*Status: dormant and no longer being developed (see Damn Small Linux).&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.inittab.org/lite.html Mini Knoppix] ==&lt;br /&gt;
Mini Knoppix 2.0 (Knoppix Lite) is a Knoppix 3.3 based LiveCD and '''Rescue''' CD.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;bad download links (as of 8/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.inittab.org/lite.html&lt;br /&gt;
*Download: http://ftp.es.debian.org/pub/miniKnoppix/(DEADLINK)&lt;br /&gt;
*Download: ftp://ftp.es.debian.org/pub/miniKnoppix/(DEADLINK)&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://miolux.codigolivre.org.br Miolux Linux] ==&lt;br /&gt;
Miolux is a Knoppix based LiveCD from '''Brazil'''. &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://miolux.codigolivre.org.br&lt;br /&gt;
*Language: '''Portuguese'''&lt;br /&gt;
*Author: Vilson Cristiano Ga:rtner&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.morphix.org Morphix] ==&lt;br /&gt;
Morphix is a Knoppix-based Modular LiveCD distro designed to be easily modified and written to a new CD by the user. &amp;lt;br&amp;gt;&lt;br /&gt;
Morphix can be modified using CD-RW Multisession.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Boot-selection, GTK-based installer&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.morphix.org&lt;br /&gt;
*Download: http://sourceforge.net/project/showfiles.php?group''id=71814&amp;amp;package''id=71562&amp;amp;release_id=170724&lt;br /&gt;
*Size: 430 MB (Game, Icewm), 420 MB (Gnome or KDE 3.1)&lt;br /&gt;
*Size: 180 MB (Icewm), 24 MB (Bare/without GUI).&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== [http://www.lasolution.be/index.php?pageid=110 Morphix-BareFreevo] ==&lt;br /&gt;
Morphix-BareFreevo is a Morphix based LiveCD with Freevo '''Home Entertainment''' system.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Freevo, see: http://freevo.sourceforge.net/ &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.lasolution.be/index.php?pageid=110&lt;br /&gt;
*Download: http://www.lasolution.be/files/1/docs/Morphix Combined-Bare Freevo-0.4-1.iso&lt;br /&gt;
*Latest version: 0.4-1&lt;br /&gt;
*Size: 134.7 MB&lt;br /&gt;
*Language: '''French''' and '''English'''&lt;br /&gt;
----&lt;br /&gt;
== [http://morphix-nlp.berlios.de/ Morphix-NLP] ==&lt;br /&gt;
Morphix-NLP is a Morphix based LiveCD with focus on '''Natural Language Processing'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: collection of natural language processing applications.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://morphix-nlp.berlios.de/&lt;br /&gt;
*Download: http://download.berlios.de/morphix-nlp/&lt;br /&gt;
*Latest version: 1.1&lt;br /&gt;
*Size: 448 MB.&lt;br /&gt;
*MD5Sum: f0ae2e59e8cd724ace247eb07661d0f&lt;br /&gt;
*Author: Zhang Le&lt;br /&gt;
*Latest version: 1.1 (2003). This note updated Jan 2008&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== [http://www.musix.org.ar/ Musix GNU+Linux] ==&lt;br /&gt;
Musix is a 100% Free Operating system intended for musicians and all kind of users. It contains an enormous collection of free programs.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Ardour, Rosegarden, Hydrogen, Qsynth.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.musix.org.ar/&lt;br /&gt;
*Latest version: 1.0&lt;br /&gt;
*Size: 700 MB.&lt;br /&gt;
*Supported languages: Spanish, Galician, Catalan, Basque, English, Portuguese, French, Italian, Polish, Finnish.&amp;lt;br&amp;gt;&lt;br /&gt;
*Status: active.&amp;lt;br&amp;gt;&lt;br /&gt;
*Author: [http://www.musix.org.ar/en/acerca-de-nosotros.html Musix Team]&lt;br /&gt;
*Latest version: 1.0 R3 (2008-4-6). This note updated April 2008&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== [http://www.niode.nl/ NIOde] ==&lt;br /&gt;
NIOde is a Knoppix based LiveCD for the Dutch Olympiad Of Informatics. &amp;lt;br&amp;gt;&lt;br /&gt;
See:  &amp;lt;http://www.informaticaolympiade.nl/&amp;gt;.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: Without compression or big desktop environment.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.niode.nl/&lt;br /&gt;
*Language: '''Dutch'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.networkmultimedia.org/Status/NMM-Oppix/index.html NMM-Oppix] ==&lt;br /&gt;
[[NMM-Oppix]] is a KNOPPIX-based Live-CD and includes the [http://www.networkmultimedia.org/NMM/index.html Network-Integrated Multimedia Middleware (NMM)] binaries developed by the Computer Graphic Labs of the University of Saarland.&lt;br /&gt;
* Homepage: http://www.networkmultimedia.org/Status/NMM-Oppix/index.html&lt;br /&gt;
* Version: Beta 2 (release 2005-04-14)&lt;br /&gt;
* Size: 692.998 KB&lt;br /&gt;
-----&lt;br /&gt;
== [http://home.broadpark.no/~aklepp/newton/knoppix/NORDISKNOPPIX/nordisknoppix.html Nordisknoppix] ==&lt;br /&gt;
Nordisk is a Knoppix based LiveCD for Nordic users.&lt;br /&gt;
*Homepage: http://home.broadpark.no/~aklepp/newton/knoppix/NORDISKNOPPIX/nordisknoppix.html&lt;br /&gt;
*Mailing List (baltix-knoppix): https://lists.akl.lt/&lt;br /&gt;
*Download: http://files.akl.lt/knoppix/&lt;br /&gt;
*Download Mirror: ftp://ftp.funet.fi/pub/mirrors/files.akl.lt/knoppix/&lt;br /&gt;
*Language: '''Danish, Estonian, Finnish, Icelandic, Latvian, Lithuanian, Northern sami, Norwegian bokmal, Norwegian nynorsk, Swedish, English'''&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.opengroupware.org/en/knoppix/index.html Open Groupware Knoppix] ==&lt;br /&gt;
Open Groupware Knoppix is a LiveCD based on Knoppix 3.2.&lt;br /&gt;
&lt;br /&gt;
Content: [http://www.skyrix.com Open Groupware] (formerly known as Skyrix).&lt;br /&gt;
&lt;br /&gt;
*Homepage http://www.linet-services.de/knoppix_cds.html&lt;br /&gt;
*Language: '''German'''&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://linux.dell.com/files/openmanage-contributions/omsa-knoppix/ OMSA Knoppix] ==&lt;br /&gt;
OMSA Knoppix is a Knoppix 3.4 based LiveCD with '''Dell''' [[Open Manage]].&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Dell's [[Open Manage]], KDE, [http://www.datasol.org/recovery-solutions.php recovery tools]. &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://linux.dell.com/files/openmanage-contributions/omsa-knoppix/omsa_knoppix.txt&lt;br /&gt;
*Download: http://linux.dell.com/files/openmanage-contributions/omsa-knoppix&lt;br /&gt;
*Size: 614 MB and 300 MB.&lt;br /&gt;
*MD5Sum: 8ddd5754a2f74d92c7138eaa5a06d89c omsa''knoppix''614 MB&lt;br /&gt;
*MD5Sum: 6fe842aa50ce4a8e0bd863d979539af3 omsa''knoppix''300 MB&lt;br /&gt;
*Language: '''German''', '''English'''&lt;br /&gt;
*Author: Sven Hergenhahn&lt;br /&gt;
-----&lt;br /&gt;
== [http://oralux.org Oralux] ==&lt;br /&gt;
Oralux is a LiveCD that enable acess to Linux for the '''vision impaired''' users.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: free Text-To-Speech softwares:  Flite (English), EFM (English, French),&lt;br /&gt;
DECtalk (English, French, German or Spanish)&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.oralux.org&lt;br /&gt;
*Download: http://www.oralux.org/download.php&lt;br /&gt;
*Language: '''English''',  '''French''', '''German''', '''Spanish'''&lt;br /&gt;
*Language (future): '''Russian'''&lt;br /&gt;
*Version: 0.7. Development stopped in 2007. &amp;quot;Today, general distro such as Ubuntu Feisty offers eSpeak, the multilingual speech synthesis.&amp;quot; &lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.oss-watch.ac.uk/resources/osswatchknoppix.xml OSS Watch Knoppix] ==&lt;br /&gt;
OSS Watch Knoppix is a liveCD based on Knoppix 3.6.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Apache, PHP, Tomcat, PostgreSQL, live Moodle, Bodington VLE,&amp;lt;br&amp;gt;&lt;br /&gt;
XML writer and delivery tools. See http://www.tei-c.org &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.oss-watch.ac.uk/resources/osswatchknoppix.xml&lt;br /&gt;
*Download: http://www.oss-watch.ac.uk/downloads&lt;br /&gt;
-----&lt;br /&gt;
== [http://overclockix.octeams.com Overclockix] ==&lt;br /&gt;
Overclockix is a Knoppix 3.4 (Cebit) based LiveCD.&lt;br /&gt;
&lt;br /&gt;
*Content: Packages available for the SID (unstable) branch of Debian.&lt;br /&gt;
Captive-NTFS (write support), install on demand scripts, XFCE, Gnome 2.4,&lt;br /&gt;
Kernel: 2.4.23-xfs and 2.6.1 (selectable at boot),  KDE 3.2.2 with noia icons,&lt;br /&gt;
Fluxbox, Icewm, Enlightenment, Gimp 2.0, ml-donkey, BT, mplayer, karamba,&lt;br /&gt;
mozilla-firefox and thunderbird, stress-testers and DC clients, stylish desktop.&lt;br /&gt;
&lt;br /&gt;
OverclockixLTSP:  a Knoppix 3.3 LiveCD with folding@home script, and modified LTSP.&lt;br /&gt;
&lt;br /&gt;
You do have to use persistent home or hdd-install in order to fold@home with PXE-booted clients. This is a technical issue involving the dynamic ramdisk which prevents NFS or Samba from being able to mount the live CD filesystem unless there is a permanent, fixed-size medium for data. I did not include instructions but it is very simple. I suggest checking out the Overclockix Support Forum where I'll be happy to help you get started.&lt;br /&gt;
&lt;br /&gt;
*Homepage- http://overclockix.octeams.com&lt;br /&gt;
*Forum- http://overclockix-forum.theaog.com&lt;br /&gt;
*Screenshot-  [http://overclockix.octeams.com/snapshot19.jpg]&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://www.paflow.it PAFloppix] ==&lt;br /&gt;
Live PAFlow is a livecd of PAFlow. PAFlow is a document management system.&lt;br /&gt;
*Homepage http://www.paflow.it&lt;br /&gt;
*Download http://www.paflow.it/pafloppix (dead link)&lt;br /&gt;
*PAFlow version: PAFlow 2.3 RC5&lt;br /&gt;
*Knoppix version: Knoppix 3.6&lt;br /&gt;
*Status: active&lt;br /&gt;
*Size: 664 MB&lt;br /&gt;
*Language: Italian, English&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== [http://www.phlak.org/modules/news/ Phlak] ==&lt;br /&gt;
PHLAK is a Morphix based LiveCD with focus on '''security'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Function: security analysis, penetration testing, forensics, and security auditing.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: fluxbox, XFCE4, printing, publishing, multimedia, security tools,&amp;lt;br&amp;gt;&lt;br /&gt;
Security related documentations.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.phlak.org/modules/news/&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.pilotlinux.nl/licron/ Pilot Linux] ==&lt;br /&gt;
Pilot Linux is a Morphix based '''terminal client''' LiveCD.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;unmaintained and download broken (as of 4/2008)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Pilot Linux transforms a PC into a  '''Thin Client''' PC.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: user can link to a terminal server or enter the server address manually. &amp;lt;br&amp;gt;&lt;br /&gt;
Supported protocols: MS-Terminal Servers (RDP-5), VNC and X.&amp;lt;br&amp;gt;&lt;br /&gt;
Supported protocols (in the future): Citrix-ICA, NX.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.pilotlinux.nl/licron/ (not responding 30 Jan 2008)&lt;br /&gt;
*Latest version: Release Candidate for V. 2.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://dirk.eddelbuettel.com/quantian.html Quantian] ==&lt;br /&gt;
Quantian is a Cluster Knoppix based LiveCD with focus on '''quantitative, numerical, scientific''' applications. &amp;lt;br&amp;gt;&lt;br /&gt;
Content: openMosix,  R (CRAN packages), Octave (incl. add-on packages),&amp;lt;br&amp;gt;&lt;br /&gt;
Gambit,Gap, GiNaC, GMT, Grace, Gri, GSL, Kile, Latex, Lyx, Maxima, OpenDX, Pari, PDL, PSPP, Quantlib, Texmacs, Xlisp-stat, Yacas, and Yorick.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Homepage: http://dirk.eddelbuettel.com/quantian.html&lt;br /&gt;
*Latest version: 0.7.9.2, 26 February 2006. This note updated Jan 2008.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://pyrorobotics.org/pyro/?page=PyroLiveCD Robotics Knoppix] ==&lt;br /&gt;
Compilation of some of the more popular '''robotics software and simulators'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Player, Stage, Gazebo, Pyro Robotics, and Khepera simulator.&amp;lt;br&amp;gt;&lt;br /&gt;
Control system in Python for programming simulated robots, (incl. Open GL).&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://pyrorobotics.org/pyro/?page=PyroLiveCD&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.intrusion-lab.de/roca/ ro CA] ==&lt;br /&gt;
roCA is an '''X.509 certification authority''' on a Knoppix 3.7.&amp;lt;br&amp;gt;&lt;br /&gt;
The keys of the CA and the certificates are kept on USB memory (AES encrypted), so the keys are always secure. &amp;lt;br&amp;gt;&lt;br /&gt;
roCA uses [http://tinyca.sm-zone.net/ Tiny CA] as frontend to OpenSSL.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.intrusion-lab.de/roca/&lt;br /&gt;
*Download: ftp://concert.cert.dfn.de/pub/pca/tools/roca/&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.umftgm.ro/roslims/ ROSLIMS] ==&lt;br /&gt;
ROSLIMS 1.2 (Romanian Simple Linux for Medical Students) is a Knoppix 3.8.1 based LiveCD  with focus on '''Medical''' software for students and acting as an educational platform.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Medical Reference: Pybliographer, Medline Query Interface,&amp;lt;br&amp;gt;&lt;br /&gt;
molecule editors:XDrawChem,Chem Tool, Abi Word (text editor),&amp;lt;br&amp;gt;&lt;br /&gt;
truetype fonts with Eastern European character support,  (KDE 3.3.2)&amp;lt;br&amp;gt;&lt;br /&gt;
72 pages tutorial in Romanian Language.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.umftgm.ro/roslims/&lt;br /&gt;
*Download1: http://ftp.linux360.ro/distributii/roslims/&lt;br /&gt;
*Download2: http://roslims.tg-mures.roedu.net:8080/ (a faster connection via RoEduNet)&lt;br /&gt;
*Tutorial:http://ftp.linux360.ro/distributii/roslims/tutorialKnop34.pdf&lt;br /&gt;
*Language: '''Romanian''' and '''English'''&lt;br /&gt;
*Author: Dr. Marius Stefan MARUSTERI, ro_knoppix '''AT''' umftgm '''DOT''' ro&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.skolelinux.no/ Skole KNOPPIX] ==&lt;br /&gt;
Based on the Skolelinux project.&lt;br /&gt;
*Homepage: http://www.skolelinux.no/&lt;br /&gt;
*Download: ftp://ftp.skolelinux.no/skolelinux/knoppixes/skoleknoppix/&lt;br /&gt;
*Download: ftp://ftp.nvg.ntnu.no/pub/linux/skoleknoppix/&lt;br /&gt;
*Language: '''Norwegian'''.&lt;br /&gt;
-----&lt;br /&gt;
== [http://slix.ljudmila.org/ Slix] ==&lt;br /&gt;
Slix is a Knoppix based LiveCD from '''Slovenia'''&lt;br /&gt;
Content: productivity applications: Open Office, browser.&lt;br /&gt;
*Homepage http://slix.ljudmila.org/&lt;br /&gt;
*Language: '''Slovenian'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.skolelinux.org/~conrad/snofrix.html Snøfrix] ==&lt;br /&gt;
Emphasis on education, entertainment, and multimedia.  Many games included.&lt;br /&gt;
*Content:  http://www.skolelinux.org/~conrad/snofrix/html/us/programs.html&lt;br /&gt;
*Homepage: http://www.skolelinux.org/~conrad/snofrix.html&lt;br /&gt;
*Download: http://www.skolelinux.org/~conrad/snofrix/html/us/download.html&lt;br /&gt;
*Language: Multiple CD images, with most European languages&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.linet-services.de/knoppix_cds.html SQL-Ledger Knoppix] ==&lt;br /&gt;
SQL-Ledger Knoppix is a liveCD based on Knoppix 3.2.&amp;lt;br&amp;gt;&lt;br /&gt;
Content: Accounting software SQL-Ledger (http://www.sql-ledger.org).&lt;br /&gt;
*Homepage http://www.linet-services.de/knoppix_cds.html&lt;br /&gt;
*Language: '''German'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://gpstudio.com/stux/ STUX 0.7] ==&lt;br /&gt;
Knoppix LiveCD that uses Slackware 9.1 packages.&lt;br /&gt;
*Homepage: http://gpstudio.com/stux/&lt;br /&gt;
*Download: http://gpstudio.com/stux/downloads.html&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
== [http://sulix.homelinux.net/ Sulix] ==&lt;br /&gt;
*Homepage: http://sulix.homelinux.net/&lt;br /&gt;
*Download: http://sulix.homelinux.net/stuff/&lt;br /&gt;
*Language: '''Hungarian'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.slynux.co.nr SLYNUX] ==&lt;br /&gt;
SLYNUX is a User friendly GNU/Linux LiveCD from Kerala, India.&amp;lt;br&amp;gt;&lt;br /&gt;
This can also be installed to hard disk using simple steps. &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.slynux.co.nr&lt;br /&gt;
*Status: Anyone can help me for further developments... &amp;lt;br&amp;gt;&lt;br /&gt;
*Contacts: sarathlakshman@gmail.com&lt;br /&gt;
*Language:  '''English''', '''Malayalam'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://sourceforge.net/projects/texnix/ TeXnix] ==&lt;br /&gt;
TeXnix is a Knoppix-Live-CD without the package openoffice-de-en, but instead with a lot of Latex-packages (based on texlive).&lt;br /&gt;
For example: texlive, tex-common, texlive-base, texlive-base-bin, texlive-common, texlive-doc-base, texlive-fonts-recommended, texlive-latex-base, texlive-latex-recommended, latex-beamer, latex-xcolor, preview-latex-style, texlive-generic-recommended, texlive-lang-german, texlive-latex-extra, texlive-pictures, texlive-pstricks and so on...&lt;br /&gt;
*Download: http://sourceforge.net/projects/texnix/&lt;br /&gt;
*Latest Version: 1.1.5&lt;br /&gt;
*Language: German&lt;br /&gt;
*Status: active&lt;br /&gt;
*License: GPL&lt;br /&gt;
*Author: ETTER EDV- und IT-Dienstleistungen&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.tina-vision.net TiNA Knoppix] ==&lt;br /&gt;
TiNA Knoppix is a Knoppix based live CD designed for machine vision and image analysis researchers. &amp;lt;br&amp;gt;&lt;br /&gt;
Features: the University of Manchester's TiNA open-source machine vision libraries and archive of &lt;br /&gt;
our published papers and in-house memos on machine vision, medical images analysis and statistics,&lt;br /&gt;
together with some related software (e.g. ddd, gnuplot, xgobi, maxima). &amp;lt;br&amp;gt;&lt;br /&gt;
* Homepage: http://www.tina-vision.net&lt;br /&gt;
* Download: http://www.tina-vision.net/tina-knoppix/iso&lt;br /&gt;
* Latest version: 1.0.2 (based on Knoppix 3.7)&lt;br /&gt;
* Size: 655 MB&lt;br /&gt;
* Langauge: English&lt;br /&gt;
* Author: Dr. Paul A. Bromiley&lt;br /&gt;
-----&lt;br /&gt;
== [http://home.iae.nl/users/reinc/dxpedition_disk.html TLF-Morphix] ==&lt;br /&gt;
TLF-Morphix is a Morphix based LiveCD with focus on '''Ham Radio'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: a combination of LiveCD, TLF, and USB keys / pendisk.&amp;lt;br&amp;gt;&lt;br /&gt;
See: [http://www.iae.nl/users/reinc/TLF-0.2.html TLF].&amp;lt;br&amp;gt;&lt;br /&gt;
Content: TLF-0.9.13,  cwdaemon-0.8,  KDE 3.1, ax25-apps''0.0.6-4,  ax25-tools''0.0.8-4.1,&lt;br /&gt;
ftpd''0.17-16, netcat''1.10-23, tcpdump''3.7.2-2, xconvers''0.8.2, xdx, xconvers,&lt;br /&gt;
hamlib1''1.1.4, libax25''0.0.11-2, driver for wireless cards  (802.11b).&lt;br /&gt;
*Homepage: http://home.iae.nl/users/reinc/dxpedition_disk.html&lt;br /&gt;
*Download: http://www.wwns.com/tlf/tlf-morphix/&lt;br /&gt;
*Latest Version: 0.20.live, and 0.20.USB (fits inside USB keys)&lt;br /&gt;
*Size: 397 MB (LiveCD), 1.45 MB (USB)&lt;br /&gt;
*Language: '''Dutch''' and '''English'''&lt;br /&gt;
*Author: Rein Couperus&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.markpreston.co.uk Toophpix] ==&lt;br /&gt;
Based on Knoppix 3.3. with some added files, a LAMP server, and modifiable form templates for dentists. By loading a MySQL database into RAM it allows users to enter data. The input patient details can then be saved to, and restored from, USB sticks or floppy disks by clicking desktop icons. United Kingdom based distro. &lt;br /&gt;
*Latest Version: 0412&lt;br /&gt;
*Introduction and Screenshots&amp;lt;br&amp;gt;&lt;br /&gt;
http://truth.positive-internet.com/~mpreston/tp/tp0412intro.html&amp;lt;br&amp;gt;&lt;br /&gt;
*Download: http://truth.positive-internet.com/~mpreston/toophpix0412.iso&lt;br /&gt;
*md5sum http://truth.positive-internet.com/~mpreston/toophpix0412.iso.md5&lt;br /&gt;
*Size: 718 MB&lt;br /&gt;
You might find the following commands useful as well to burn the CD to a&lt;br /&gt;
700 MB disc under Linux:&amp;lt;br&amp;gt;&lt;br /&gt;
cdrecord -scanbus&amp;lt;br&amp;gt;&lt;br /&gt;
cdrecord -overburn dev=0,0,0 toophpix0412.iso&amp;lt;br&amp;gt;&lt;br /&gt;
the three numbers (0,0,0) are those returned from the scanbus command.&lt;br /&gt;
*Language: English&lt;br /&gt;
*Author: Mark Preston&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.trxlinux.org/ Tr X] ==&lt;br /&gt;
Content: KDE 3.1.1, router and firewall. &amp;lt;br&amp;gt;&lt;br /&gt;
Configuration data stored on a floppy disk, hard disk, or USB keys.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage http://www.trxlinux.org/&lt;br /&gt;
*Screenshots http://www.trxlinux.org/shots.html&lt;br /&gt;
*Package List http://www.trxlinux.org/list.txt&lt;br /&gt;
*Download http://www.trxlinux.org/download/&lt;br /&gt;
*Language: '''Turkish'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.vigyaancd.org/ Vigyaan CD] ==&lt;br /&gt;
VigyaanCD is suitable for '''bioinformatics, computational biology and computational chemistry'''. &amp;lt;br&amp;gt;&lt;br /&gt;
Content:&amp;lt;br&amp;gt;&lt;br /&gt;
Artemis, Bioperl, BLAST (NCBI-tools), ClustalX, Cn3D, EMBOSS tools, Garlic,&amp;lt;br&amp;gt;&lt;br /&gt;
GROMACS, Ghemical, GNU R, Gnuplot, GIMP, Image Magick, JMol, MPQC,&amp;lt;br&amp;gt;&lt;br /&gt;
NJPlot, Open Babel, Octave, PSI3, PyMOL, Rasmol, Raster3D, SMILE,&amp;lt;br&amp;gt;&lt;br /&gt;
TINKER, XDrawChem, Xmgr, Xfig and GNU C/C++/Fortran compilers.&amp;lt;br&amp;gt;&lt;br /&gt;
Genomes from ''Eschercia coli'' (K 12) and Synechococcus sp. WH 8102.&amp;lt;br&amp;gt;&lt;br /&gt;
12 demos and tutorials for beginners.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.vigyaancd.org/&lt;br /&gt;
*Screenshots: http://www.vigyaancd.org/sample.html&lt;br /&gt;
*Download: http://www.vigyaancd.org/download.html (several mirrors around the world)&lt;br /&gt;
*Size: 647 MB.&lt;br /&gt;
*Latest version: 0.1&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.decurauma.cl/wendyx Wendyx Linux] ==&lt;br /&gt;
Wendyx is a Knoppix based LiveCD from '''Chile'''.&amp;lt;br /&amp;gt;&lt;br /&gt;
Content: Only one applications for type&amp;lt;br /&amp;gt;&lt;br /&gt;
Customizacion de Knoppix Chilena en español hecha por Enrique Herrera Noya. Basada en Knoppix-es, orientada a estaciones de trabajo.&amp;lt;br /&amp;gt;&lt;br /&gt;
*Homepage: http://www.decurauma.cl/wendyx/ (Site in spanish)&lt;br /&gt;
*Download: http://buscando.hosting.aun&lt;br /&gt;
*Size: 200 MB. (intentando)&lt;br /&gt;
*Latest version: Beta&lt;br /&gt;
*Language: '''Spanish'''&lt;br /&gt;
*Author: Enrique Herera Noya&lt;br /&gt;
-----&lt;br /&gt;
&amp;lt;!-- this distro became WHAX, then was folded into the BackTrack distro - which now runs on Slackware&lt;br /&gt;
&lt;br /&gt;
== [http://whoppix.net Whoppix] ==&lt;br /&gt;
White Hat Knoppix (WHoppix) is a Knoppix 3.6 based LiveCD with focus on '''security penetration testing'''.&amp;lt;br&amp;gt;&lt;br /&gt;
* Homepage: http://whoppix.net&lt;br /&gt;
* Homepage: http://www.whitehat.co.il&lt;br /&gt;
* Download: http://whoppix.net/download.html&lt;br /&gt;
* Language: '''Hebrew''' and '''English'''&lt;br /&gt;
-----&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [http://www.x-evian.org X-evian] ==&lt;br /&gt;
X-evian is a Debian and Knoppix based Live-CD.&amp;lt;br&amp;gt;&lt;br /&gt;
Feature: automatic hard disk installer.&amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.x-evian.org&lt;br /&gt;
*English version: http://www.sindominio.net/metabolik/x-evian/en/x-evian.html&lt;br /&gt;
*Download: http://sourceforge.net/project/showfiles.php?group_id=84034&lt;br /&gt;
*Language: '''Spanish'''&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.xfld.org XFLD] ==&lt;br /&gt;
Xfld is a Knoppix based LiveCD with '''Xfce''' desktop environment. &amp;lt;br&amp;gt;&lt;br /&gt;
*Homepage: http://www.xfld.org/&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.yalst.de/democd.php yalst LiveSupportTool] ==&lt;br /&gt;
yalst LiveSupportTool live demo CD based on Knoppix 3.6&amp;lt;br&amp;gt;&lt;br /&gt;
Browser based live support solution to chat with website visitors, monitor traffic, track users and many more&lt;br /&gt;
features. This CD starts Apache and MySQL at boot time and launches the Mozilla browser with a local website&lt;br /&gt;
where you can test this live support software from the visitor and the operators side.&lt;br /&gt;
*Homepage: http://www.yalst.de&lt;br /&gt;
*Download: http://www.yalst.de/democd.php&lt;br /&gt;
*Size: 696 MB&lt;br /&gt;
*Version: 2.0 (yalst 3.06)&lt;br /&gt;
*Language: '''German'''&lt;br /&gt;
*Status: active&lt;br /&gt;
*Authors: Andreas Beckmann, Markus Jasinski&lt;br /&gt;
-----&lt;br /&gt;
== [http://www.yoper.com YLive] ==&lt;br /&gt;
Ylive is a live CD of Yoper. Yoper is a high performance operating system.&lt;br /&gt;
*Homepage http://www.yoper.com/&lt;br /&gt;
*Download http://www.yoper.com/download.html&lt;br /&gt;
*Status: Not available yet, under development.&lt;br /&gt;
*Platform:  '''Optimized''' for '''i686'''&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wishlist for Knoppix Customisations ==&lt;br /&gt;
You can enter your fancy ideas into this [[Wish List]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
* other list: http://www.frozentech.com/content/livecd.php&lt;br /&gt;
* general linux distro: http://lwn.net/Distributions/&lt;/div&gt;</summary>
		<author><name>118.175.255.10</name></author>	</entry>

	</feed>