<?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=Kyle</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=Kyle"/>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Special:Contributions/Kyle"/>
		<updated>2026-09-18T09:59:24Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>https://mail.knoppix.net/wiki/Knoppix_Remastering_Howto</id>
		<title>Knoppix Remastering Howto</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Knoppix_Remastering_Howto"/>
				<updated>2005-02-03T02:32:15Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* See also : */ I thought I killed all the ['s and ]'s everywhere...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Translations: ==&lt;br /&gt;
* German Version: [[Knoppix Remastering Howto Deutsch]]&lt;br /&gt;
* Spanish Version: [[Knoppix Remastering Howto Spanish]]  en español&lt;br /&gt;
* French Version: [[Knoppix Remastering Howto French]]&lt;br /&gt;
* Indonesian Version : [[Knoppix Remastering Howto Indonesian]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== See also : ==&lt;br /&gt;
* If you want to add a custom kernel, check out the [[Knoppix Custom Kernel Howto]]&lt;br /&gt;
* There also a guide at O'Reilly on the same topic : [http://linux.oreillynet.com/lpt/a/4323 Using and Customizing Knoppix]&lt;br /&gt;
----&lt;br /&gt;
=== This is a guide that will show you how to remaster KNOPPIX ===&lt;br /&gt;
(Notes : commands should appear on one line, so please maximize the window. If you have any comments/suggestions please post below.)&lt;br /&gt;
&lt;br /&gt;
You may wish to start from an already customized Knoppix, so you don't have to do as much work (such as removing programs). If so, see [[Knoppix Customizations]].&lt;br /&gt;
&lt;br /&gt;
==== System Requirements: ====&lt;br /&gt;
*CD-ISO&lt;br /&gt;
** at least 1 GB of FREE RAM+Swap total (e.g. 256M ram, and 750M swap AVAILABLE) (unless you use a different compression program - look in this page for compressloop)&lt;br /&gt;
** 3 GB free on a '''Linux filesystem (ext2/3, xfs, etc.)''' formatted disk partition&lt;br /&gt;
*DVD-ISO&lt;br /&gt;
** 5 GB free RAM + swap (for fullsized DVD)&lt;br /&gt;
** 15 GB free on a '''Linux filesystem (ext2/3, xfs, etc.)''' formatted disk partition&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Bold text'''==== Instructions: ====&lt;br /&gt;
&lt;br /&gt;
# Boot from the ''Knoppix CD''&lt;br /&gt;
# Open a root shell:&lt;br /&gt;
** Menu: Kmenu-&amp;gt;Knoppix-&amp;gt;Root Shell&lt;br /&gt;
** Note: All commands below are run from this root shell.&lt;br /&gt;
# Configure your Internet connection (we'll need this later). If you use DHCP, it should already be configured.&lt;br /&gt;
** Note: Run '''ifconfig''' to check.&lt;br /&gt;
# Find the partition you will use to work on. In this example it is called '''hda1''' . The partition should have a minimum of 3 GB free space&lt;br /&gt;
# Mount the partition:&lt;br /&gt;
** '''mount -rw /dev/hda1 /mnt/hda1'''&lt;br /&gt;
** Note: Make sure that it is read/write or you will get errors when you later chroot. To check: run '''mount'''&lt;br /&gt;
# Create a root directory to work in:&lt;br /&gt;
** '''mkdir /mnt/hda1/knx'''&lt;br /&gt;
** If you put all your files here and it will be easy to clean up&lt;br /&gt;
# If you don't have 1 GB RAM ('''cat /proc/meminfo''' (physical+swap)) then you will need a swapfile:&lt;br /&gt;
** '''cd /mnt/hda1/knx ; dd if=/dev/zero of=swapfile bs=1M count=750 ; mkswap swapfile ; swapon swapfile'''&lt;br /&gt;
# Make 2 directories, one for your new Master CD, one for the source, on a disk partition. Also, make additional directories under these named KNOPPIX:&lt;br /&gt;
** '''mkdir -p /mnt/hda1/knx/master/KNOPPIX'''&lt;br /&gt;
** '''mkdir -p /mnt/hda1/knx/source/KNOPPIX'''&lt;br /&gt;
# Now, copy the KNOPPIX files to your source directory :&lt;br /&gt;
'''cp -Rp /KNOPPIX/*''' '''/mnt/hda1/knx/source/KNOPPIX '''&lt;br /&gt;
** Note: This will take a little while&lt;br /&gt;
# Copy the main HTML page for the startup page:&lt;br /&gt;
** '''cp /cdrom/index.html /mnt/hda1/knx/master/ '''&lt;br /&gt;
# Copy everything necessary files except the ~700 Mb KNOPPIX file.&lt;br /&gt;
** &amp;lt; 3.4: '''cd /cdrom/KNOPPIX;find . -size -10000k -type f -exec cp -p --parents '{}' /mnt/hda1/knx/master/KNOPPIX/ \;'''&lt;br /&gt;
** 3.4: '''cd /cdrom;find . -size -10000k -type f -exec cp -p --parents '{}' /mnt/hda1/knx/master/ \;'''&lt;br /&gt;
# Now you can &amp;quot;chroot&amp;quot; into the copied KNOPPIX:&lt;br /&gt;
** '''chroot /mnt/hda1/knx/source/KNOPPIX'''&lt;br /&gt;
&lt;br /&gt;
If you get a whole lot of '''/dev/null permission denied'''&lt;br /&gt;
errors,  you should do the following. This can happen if you save your Knoppix configure data to the same partition that you are using here, AND if you start with Knoppix with '''knoppix home=scan'''.&lt;br /&gt;
&lt;br /&gt;
Check your mount status if you met the problem: '''mount /dev/hdaX on /mnt/hdaX type ext3 (rw,nosuid,nodev)''' (replace X with your partiton number ) where &amp;quot;nodev&amp;quot; means that you are not accessible on mounted filesystem  and you can not access /dev/null. And some scripts get output redirect&lt;br /&gt;
to /dev/null... To solve this you should mount the target partition before you do chroot&lt;br /&gt;
like this:&lt;br /&gt;
 ^d  # control+d will exit the chroot&lt;br /&gt;
 mount /dev/hda1 /mnt/hda1&lt;br /&gt;
You should then see:&lt;br /&gt;
 mount /dev/hda1 on /mnt/hda1 type ext3 (rw)&lt;br /&gt;
&lt;br /&gt;
If the /dev/null warnings persist then before the chroot do :&lt;br /&gt;
 mkdir /mnt/hda1/knx/source/KNOPPIX/KNOPPIX&lt;br /&gt;
 mount --bind /KNOPPIX /mnt/hda1/knx/source/KNOPPIX&lt;br /&gt;
 mount --bind /dev /mnt/hda1/knx/source/KNOPPIX/dev&lt;br /&gt;
'''Better to reboot your box or you have to umount /mnt/hda1/knx/source/KNOPPIX/dev and rm /mnt/hda1/knx/source/KNOPPIX/KNOPPIX before building the CD image or your /dev directory on the CD will be messed up! &lt;br /&gt;
then you can carry on and chroot.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* You are now chrooted. &amp;quot;/&amp;quot; is actually &amp;quot;/mnt/hda1/knx/source/KNOPPIX&amp;quot;&lt;br /&gt;
* To use the internet you need to mount proc '''mount -t proc /proc proc'''&lt;br /&gt;
* Now edit /etc/resolv.conf and add your nameserver or &amp;quot;exit&amp;quot; chroot and copy the resolve.conf into the chroot folder: '''cp /etc/dhcpc/resolv.conf to /mnt/hda1/knx/source/KNOPPIX/etc/dhcpc/resolv.conf'''&lt;br /&gt;
* Also change smb.conf to your MS group if you want smbd support (MSHOME is XP Home ed. usually, and WORKGROUP is 9x Windows.&lt;br /&gt;
* check your chrooted internet connection : '''ping google.com'''&lt;br /&gt;
* Update your package list with '''apt-get update'''&lt;br /&gt;
* Now you can change stuff.&lt;br /&gt;
* '''Warning''': apt-get upgrade is a BAD IDEA. It will, quite probably, render your KNOPPIX remaster unbootable, or broken in some way. A far safer method is to only upgrade packages as necessary&lt;br /&gt;
** Before you can add stuff, you will probably need to remove some packages.  To get a list of packages installed, type this:&lt;br /&gt;
'''*''' '''dpkg-query -l'''&lt;br /&gt;
** If you want that list sorted by size (this way you can get rid of the biggies), type this:&lt;br /&gt;
'''*''' '''dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -n'''&lt;br /&gt;
** To remove a package (and all packages dependant on it), type this:&lt;br /&gt;
'''*''' '''apt-get remove --purge &amp;lt;name-of-package-to-remove&amp;gt;'''&lt;br /&gt;
** To check for orphaned packages, type this:&lt;br /&gt;
'''*''' '''deborphan'''&lt;br /&gt;
** Want to save more space by getting rid of those pesky orphans (how cruel!), type this ('''Warning''', you won't be prompted yes/no to remove these packages.  When you press Enter after this command, those packages '''will be gone'''):&lt;br /&gt;
'''*''' '''deborphan | xargs apt-get -y remove'''&lt;br /&gt;
** If you're uncertain about the previous command and want to see what will happen without making any changes, just add the '''-s''' option to the apt-get command like this (you can do this with all of the apt-get commands, and it's a good habit to use this option before mass operations like this one):&lt;br /&gt;
'''*''' '''deborphan | xargs apt-get -s -y remove'''&lt;br /&gt;
** Now the good stuff.  If you wish to add a package, type this:&lt;br /&gt;
'''*''' '''apt-get install &amp;lt;name-of-package-to-install&amp;gt;'''&lt;br /&gt;
** What, don't know what packages to install?  Type this.  When the list appears, you can peruse (over 13k lines!) or search for things using '''/&amp;lt;search-term&amp;gt;''':&lt;br /&gt;
'''*''' '''apt-cache search .* | sort | less'''&lt;br /&gt;
** When you're done removing and adding packages, a good way to clean up is by typing this:&lt;br /&gt;
'''*''' '''COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' | xargs dpkg -P'''&lt;br /&gt;
** Also, because the Debian package system keeps a cache of downloaded packages, you may want to run the following to clear out those spare files:&lt;br /&gt;
'''*''' '''apt-get clean'''&lt;br /&gt;
** user settings are in /etc/skel&lt;br /&gt;
** tip: don't put files in /root they will be only available (at runtime) in /KNOPPIX/root&lt;br /&gt;
* Unmount /proc - very important! '''umount /proc'''&lt;br /&gt;
* Press '''CTRL+D''' to leave being chrooted.&lt;br /&gt;
&lt;br /&gt;
==== Notes : ====&lt;br /&gt;
&lt;br /&gt;
When testing X-based programs, you will have to '''export DISPLAY=localhost:0.0'''&lt;br /&gt;
&lt;br /&gt;
When you want to autorun some programs, one can create a script and put it in the directory /etc/rc5.d/ (This only loads items before X loads)&lt;br /&gt;
&lt;br /&gt;
interesting stuff in /etc/init.d/knoppix-autoconfig :&lt;br /&gt;
&lt;br /&gt;
* The X background file is /cdrom/KNOPPIX/background.gif '''(in knoppix 3.4: background.jpg)'''&lt;br /&gt;
* As well as floppyconfig, there is cdromconfig which will run cdrom/KNOPPIX/knoppix.sh&lt;br /&gt;
&lt;br /&gt;
interesting stuff in /etc/init.d/xsession :&lt;br /&gt;
* it ALSO sets background as /usr/local/lib/knoppix.gif&lt;br /&gt;
&lt;br /&gt;
Now, onto creating the ISO file :&lt;br /&gt;
&lt;br /&gt;
* we've finished customizing and ready to burn!&lt;br /&gt;
* first do some cleanup : ''' remove .bash_history files, tmp files etc '''&lt;br /&gt;
* '''rm -rf /mnt/hda1/knx/source/KNOPPIX/.rr_moved'''&lt;br /&gt;
* Now we'll make the big KNOPPIX file which is a cloop compressed ISO 9660 filesystem : '''mkisofs -R -U -V &amp;quot;KNOPPIX.net filesystem&amp;quot; -publisher &amp;quot;KNOPPIX www.knoppix.net&amp;quot; -hide-rr-moved -cache-inodes -no-bak -pad /mnt/hda1/knx/source/KNOPPIX | nice -5 /usr/bin/create_compressed_fs - 65536 &amp;gt; /mnt/hda1/knx/master/KNOPPIX/KNOPPIX'''&lt;br /&gt;
&lt;br /&gt;
the &amp;quot;www.knoppix.net&amp;quot; and &amp;quot;Knoppix.net filesystem&amp;quot; can be changed to what you want to call the file. You will get an error that it doesn't conform to ISO standards, you can ignore this.&lt;br /&gt;
&lt;br /&gt;
In Knoppix 3.4 the create_compressed_fs script has been updated so be sure to use it to obtain the best result.&lt;br /&gt;
It has a new option '''-b''' (best), which enables the best compression by using&lt;br /&gt;
different compression schemes and tries to optimize that way, but be careful, because that option is slow (10x slower).&lt;br /&gt;
&lt;br /&gt;
* if all went well, onto making the final CD-ROM Image :&lt;br /&gt;
* '''cd /mnt/hda1/knx/master'''&lt;br /&gt;
* '''rm -f KNOPPIX/md5sums; find -type f -not -name md5sums -not -name boot.cat -not -name isolinux.bin -exec md5sum '{}' \; &amp;gt;&amp;gt; KNOPPIX/md5sums''' (this will update the md5 hashes of the files included in the ISO, used for integrity checking)&lt;br /&gt;
* for Knoppix &amp;lt;= 3.3: '''mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -b KNOPPIX/boot.img -c KNOPPIX/boot.cat -hide-rr-moved -o /mnt/hda1/knx/knoppix.iso /mnt/hda1/knx/master''' (the ISO is stored in /mnt/hda1/knx/knoppix.iso)&lt;br /&gt;
* For Knoppix &amp;gt;= 3.4 or other isolinux based distributions do:&lt;br /&gt;
'''mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o /mnt/hda1/knx/knoppix.iso /mnt/hda1/knx/master''' (the ISO is stored in /mnt/hda1/knx/knoppix.iso)&lt;br /&gt;
* all done!&lt;br /&gt;
&lt;br /&gt;
=== Tips ===&lt;br /&gt;
If you are looking for big installed packages then the command&lt;br /&gt;
: dpkg-awk &amp;quot;Status: .* installed$&amp;quot; -- Package Installed-Size | \&lt;br /&gt;
: awk '{print $2}' | egrep -v '^$' | xargs -n2 echo | \&lt;br /&gt;
: perl -pe 's/(\S+)\s(\S+)/$2 $1/' | sort -rg&lt;br /&gt;
will list the  packages  with size in descending order.&lt;br /&gt;
At least ten times faster is the command&lt;br /&gt;
&lt;br /&gt;
: dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -n&lt;br /&gt;
&lt;br /&gt;
and you don't need dpkg-awk or awk or perl.&lt;br /&gt;
&lt;br /&gt;
If you have trouble with the above sort command, try using KPackage, expanded all the trees and sorted by the size column to find big packages.&lt;br /&gt;
&lt;br /&gt;
Check out the program &amp;quot;deborphan&amp;quot;, it will list orphaned packages that you can remove, these packages were used by packages that are now removed.&lt;br /&gt;
&lt;br /&gt;
I have had good results remastering working from the cd as root working from fluxbox. Just say &amp;quot;knoppix 2&amp;quot; at the boot prompt and it will boot you to a root prompt where you can then say &amp;quot;startx /usr/bin/fluxbox&amp;quot;. I like to use the xterm unicode shell.&lt;br /&gt;
&lt;br /&gt;
While working chroot doing the remastering I like to use &amp;quot;apt-get remove --purge pkg-name&amp;quot; to remove packages because before it does anything it will stop and show detials on what it is fixing to remove and let you say &amp;quot;yes or no&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
If you don't use the above &amp;quot;apt-get&amp;quot; instructions and have a lot to cleanup and purge, here's the easy way to do it: &amp;quot;COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' &amp;gt;topurge&amp;quot;. That will make a list of all removed packages to purge and then you just say &amp;quot;dpkg -P `cat topurge `&amp;quot; and your all done. &amp;quot;COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' | xargs dpkg -P&amp;quot; is a one-line version of this.&lt;br /&gt;
Also use &amp;quot;deborphan &amp;gt;orphaned&amp;quot; then &amp;quot;dpkg -P `cat orphaned `&amp;quot;. &amp;quot;deborphan | xargs dpkg -P &amp;quot; is a one line version for that.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thats it. This is an updated version of my previous howto. This is not meant for linux beginners, you will need to know your way around linux to get this to work. I'll update this as corrections/improvements/etc come through.&lt;br /&gt;
&lt;br /&gt;
Thanks to aay, charan, Tech2k, and #knoppix for some corrections and tips and ideas.  Feel free to edit or add to this howto.&lt;br /&gt;
Note about swap:&amp;lt;br&amp;gt;&lt;br /&gt;
You don't really need 1G swap as there are two new tools to create compressed filesystems. Here are some candidates to make''compressed''fs:&lt;br /&gt;
* Valentijn's rewrite [http://projects.openoffice.nl/downloads/compressloop/]&lt;br /&gt;
* Quozl's port of compressloop for Knoppix 3.4 [http://quozl.linux.org.au/compressloop-1.9-64bit.c]&lt;br /&gt;
* Quozl's distributed compressloop (use more than one processor to speed things up) [http://quozl.linux.org.au/knoppix/compressloop/] or [http://quozl.netrek.org/knoppix/compressloop/]&lt;br /&gt;
* Justin's patch [http://s.bouncybouncy.net/~justin/code/] (link broken) I also just wrote a distributed cloop compressor(or for smp)  It's in that same directory.&lt;br /&gt;
&lt;br /&gt;
==== Tip, test cd-image without recording cd ====&lt;br /&gt;
&lt;br /&gt;
If you have a spare partition with at least 700MB free space formatted with ext2, ext3 or Vfat, you can use this for test by booting from a floppy disk. A floppy boot will look for a partiton with /KNOPPIX/ in the root, and the compressed image /KNOPPIX/KNOPPIX. Instead of using the sub-directory /mnt/hda1/knx/master/KNOPPIX/ as described above, it should be called /mnt/hda2/KNOPPIX/ . The root index.html will then be located at /mnt/hda2/index.html and the compressed image will be at /mnt/hda2/KNOPPIX/KNOPPIX . Now you can boot from floppy and use /mnt/hda2 as your image. For further information see [[Hd BasedHowTo]].&lt;br /&gt;
&lt;br /&gt;
If you don't have an extra partition or you don't want to do so much for it, you can use Qemu ( see [http://fabrice.bellard.free.fr/qemu/] ) with the ISO image like this:&lt;br /&gt;
'''qemu -m 128 -cdrom /temp/knoppix-custom.iso -boot d -user-net'''&lt;br /&gt;
You even do not have to build a hard disk image before, just install Qemu and try this. Amazing!&lt;br /&gt;
&lt;br /&gt;
==== Booting Knoppix images with GRUB ====&lt;br /&gt;
* First copy /boot of the Knoppix cd to your boot partition (or even your dos partition). I named mine boot.knoppix&lt;br /&gt;
''' Copy the /KNOPPIX directory to your '''root directory* of any hard disk. You may place it somewhere other than the boot partition. (ext2/3, reiserfs, vfat are supported)&lt;br /&gt;
* put the following in your /boot/grub/menu.lst:&lt;br /&gt;
 title           KNOPPIX&lt;br /&gt;
 root            (hd0,0)&lt;br /&gt;
 kernel  /boot.knoppix/vmlinuz 2 fromhd=/dev/hda4 lang=us&lt;br /&gt;
 initrd  /boot.knoppix/miniroot.gz&lt;br /&gt;
* notice the fromhd parameter: it's the location of the /KNOPPIX directory&lt;br /&gt;
* reboot and have fun.&lt;br /&gt;
&lt;br /&gt;
If my howto is too confusing, or you'd like a second opinion, check out charan's very nice remastering howto : http://gnubox.dyndns.org:8080/~sunil/knoppix.php .&lt;br /&gt;
Another Howto is at  http://www.stirnimann.com/mystuff/doc/knoppix.txt&lt;br /&gt;
&lt;br /&gt;
There is a wizard, which knows all the unpacking, compressing and CD-recording steps mentioned here. It also shows a shell where you can update the uncompressed KNOPPIX system using debian's standard software installation tools. It is called mmkcdrom and part of the plugscript package: [http://rcswww.urz.tu-dresden.de/~holzhey/plugscript]&lt;br /&gt;
&lt;br /&gt;
Yet another HOWTO, for shell freaks, is at http://quozl.linux.org.au/knoppix/&lt;br /&gt;
&lt;br /&gt;
Be sure to check out the [http://knoppix.net/forum/viewforum.php?f=2 Knoppix Customization Forum] for ideas and help with remastering.&lt;br /&gt;
----&lt;br /&gt;
This is the recommended directory layout for remastering KNOPPIX:&lt;br /&gt;
 . (invoke ../remaster from here)&lt;br /&gt;
 |-- master (invoke ../../[[u]]mountbootimage from here)&lt;br /&gt;
 |   |-- KNOPPIX&lt;br /&gt;
 |   |   |-- KNOPPIX (compressed image)&lt;br /&gt;
 |   |   |-- boot.img (boot floppy image)&lt;br /&gt;
 |   |   `-- (other files snipped)&lt;br /&gt;
 |   `-- index.html&lt;br /&gt;
 `-- source&lt;br /&gt;
 `-- KNOPPIX (this directory can be chrooted into)&lt;br /&gt;
 |-- bin&lt;br /&gt;
 |-- boot&lt;br /&gt;
 |-- cdrom&lt;br /&gt;
 |-- dev&lt;br /&gt;
 |-- etc&lt;br /&gt;
 |-- floppy&lt;br /&gt;
 |-- home&lt;br /&gt;
 |-- initrd&lt;br /&gt;
 |-- lib&lt;br /&gt;
 |-- mnt&lt;br /&gt;
 |-- none&lt;br /&gt;
 |-- opt&lt;br /&gt;
 |-- proc&lt;br /&gt;
 |-- root&lt;br /&gt;
 |-- sbin&lt;br /&gt;
 |-- tmp -&amp;gt; /var/tmp&lt;br /&gt;
 |-- usr&lt;br /&gt;
 |-- var&lt;br /&gt;
 `-- vmlinuz -&amp;gt; boot/vmlinuz-2.4.22-xfs&lt;br /&gt;
----&lt;br /&gt;
the following script &amp;quot;remaster&amp;quot; will do the remaster process for you. Use as root, or you will end up with wrong access rights in the image.&lt;br /&gt;
&lt;br /&gt;
The script has last been tried out on Debian sid on 2004-04-02.&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash -x&lt;br /&gt;
 # This script builds a new KNOPPIX ISO image.&lt;br /&gt;
 # Copyright (C) 2004 by Marc Haber &amp;lt;mh+knoppix-remaster@zugschlus.de&amp;gt;&lt;br /&gt;
 # License: GPL V2&lt;br /&gt;
 &lt;br /&gt;
 ROOT=&amp;quot;$PWD&amp;quot;&lt;br /&gt;
 SOURCE=&amp;quot;$ROOT/source/KNOPPIX&amp;quot;&lt;br /&gt;
 MASTER=&amp;quot;$ROOT/master&amp;quot;&lt;br /&gt;
 CLOOPTARGET=&amp;quot;$ROOT/master/KNOPPIX/KNOPPIX&amp;quot;&lt;br /&gt;
 TARGET=&amp;quot;$ROOT&amp;quot;&lt;br /&gt;
 EXCLUDELIST=&amp;quot;$ROOT/source/excludelist&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 rm -rf $SOURCE/.rr_moved&lt;br /&gt;
 &lt;br /&gt;
 cd $SOURCE&lt;br /&gt;
 mkisofs -R -U -V &amp;quot;KNOPPIX.net filesystem&amp;quot; \&lt;br /&gt;
 -P &amp;quot;KNOPPIX www.knoppix.net&amp;quot; \&lt;br /&gt;
 -hide-rr-moved -cache-inodes -no-bak -pad \&lt;br /&gt;
 -exclude-list $EXCLUDELIST \&lt;br /&gt;
 . | nice -5 /usr/bin/create''compressed''fs - 65536 &amp;gt; $CLOOPTARGET&lt;br /&gt;
 &lt;br /&gt;
 cd $MASTER&lt;br /&gt;
 rm -f KNOPPIX/md5sums&lt;br /&gt;
 find -type f -not -name md5sums -not -name boot.cat -exec md5sum {} \; &amp;gt;&amp;gt; KNOPPIX/md5sums&lt;br /&gt;
 mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -b KNOPPIX/boot.img \&lt;br /&gt;
 -c KNOPPIX/boot.cat -hide-rr-moved -o $TARGET/knoppix.iso $MASTER&lt;br /&gt;
----&lt;br /&gt;
The following script will loop-mount boot floppy image and initrd image for modification. The umount function will build a new initrd image and put it back on the boot floppy image.&lt;br /&gt;
&lt;br /&gt;
The script has last been tried out on Debian sid on 2004-01-13.&lt;br /&gt;
&amp;lt;!-- lines starting with space a preformatted --&amp;gt;&lt;br /&gt;
 #!/bin/bash -x&lt;br /&gt;
 # This script will loop-mount boot floppy and initrd image&lt;br /&gt;
 # Copyright (C) 2004 by Marc Haber &amp;lt;mh+knoppix-remaster@zugschlus.de&amp;gt;&lt;br /&gt;
 # License: GPL V2&lt;br /&gt;
 unset CDPATH || true&lt;br /&gt;
 &lt;br /&gt;
 # if not root, re-invoke self as root&lt;br /&gt;
 if [[ &amp;quot;`id -u`&amp;quot; -ne 0 ]]; then&lt;br /&gt;
 export LOCUSER=&amp;quot;$USER&amp;quot;&lt;br /&gt;
 export LOCHOME=&amp;quot;$HOME&amp;quot;&lt;br /&gt;
 if [[ &amp;quot;${SHELLOPTS/xtrace/}&amp;quot; != &amp;quot;$SHELLOPTS&amp;quot; ]]; then&lt;br /&gt;
 sudo bash -x $0 $@&lt;br /&gt;
 exit $?&lt;br /&gt;
 else&lt;br /&gt;
 sudo $0 $@&lt;br /&gt;
 exit $?&lt;br /&gt;
 fi&lt;br /&gt;
 else&lt;br /&gt;
 LOCUSER=&amp;quot;${LOCUSER:-$USER}&amp;quot;&lt;br /&gt;
 LOCHOME=&amp;quot;${LOCHOME:-$HOME}&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 set -e&lt;br /&gt;
 &lt;br /&gt;
 KNOPPIXDIR=&amp;quot;KNOPPIX&amp;quot;&lt;br /&gt;
 BOOTIMGFILE=&amp;quot;$KNOPPIXDIR/boot.img&amp;quot;&lt;br /&gt;
 BOOTIMGFS=&amp;quot;vfat&amp;quot;&lt;br /&gt;
 BOOTIMGDIR=&amp;quot;boot.img&amp;quot;&lt;br /&gt;
 INITRDGZ=&amp;quot;$BOOTIMGDIR/miniroot.gz&amp;quot;&lt;br /&gt;
 INITRDFILE=&amp;quot;$KNOPPIXDIR/miniroot&amp;quot;&lt;br /&gt;
 INITRDFS=&amp;quot;ext2&amp;quot;&lt;br /&gt;
 INITRDDIR=&amp;quot;miniroot&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 mountbootimage() {&lt;br /&gt;
 if ! modprobe loop; then&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: cannot load loop module&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if ! [[ -e &amp;quot;$BOOTIMGFILE&amp;quot; ]]; then&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: no $BOOTIMGFILE found&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 for nofile in $BOOTIMGDIR $INITRDGZ $INITRDFILE $INITRDDIR; do&lt;br /&gt;
 if [[ -e &amp;quot;$nofile&amp;quot; ]]; then&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: $nofile already exists&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 done&lt;br /&gt;
 &lt;br /&gt;
 mkdir -p $BOOTIMGDIR&lt;br /&gt;
 mount -o loop,uid=$LOCUSER -t $BOOTIMGFS $BOOTIMGFILE $BOOTIMGDIR&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt; $INITRDGZ gunzip &amp;gt; $INITRDFILE&lt;br /&gt;
 mkdir -p $INITRDDIR&lt;br /&gt;
 mount -o loop -t $INITRDFS $INITRDFILE $INITRDDIR&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 umountbootimage() {&lt;br /&gt;
 dd if=/dev/zero of=$INITRDDIR/nullfile || true&lt;br /&gt;
 sync&lt;br /&gt;
 rm $INITRDDIR/nullfile&lt;br /&gt;
 umount $INITRDDIR&lt;br /&gt;
 rmdir $INITRDDIR&lt;br /&gt;
 &amp;lt; $INITRDFILE gzip --best &amp;gt; $INITRDGZ&lt;br /&gt;
 rm -f $INITRDFILE&lt;br /&gt;
 &lt;br /&gt;
 umount $BOOTIMGDIR&lt;br /&gt;
 rmdir $BOOTIMGDIR&lt;br /&gt;
 &lt;br /&gt;
 syslinux KNOPPIX/boot.img&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 case &amp;quot;`basename $0`&amp;quot; in&lt;br /&gt;
 mountbootimage)&lt;br /&gt;
 mountbootimage&lt;br /&gt;
 ;;&lt;br /&gt;
 umountbootimage)&lt;br /&gt;
 umountbootimage&lt;br /&gt;
 ;;&lt;br /&gt;
 *)&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: called with unknown name `basename $0`&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 ;;&lt;br /&gt;
 esac&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Bittorrent</id>
		<title>Bittorrent</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Bittorrent"/>
				<updated>2005-01-19T04:48:55Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: add clicky link to azureus.sourceforge.net&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bittorrent is a swarming downloading method which allows for large files to be distributed far quicker and more bandwidth efficiently than simply many users downloading from one server.   When you use a torrent to download a file, you are also contributing to the files distribution. As you recieve sections of the file (which are individually verified) you will also start to send those sections of the file to other users who need them, similarly you will be receving the file from numerous other users.   The more people who are attempting to download a file, the quicker it will spread.&lt;br /&gt;
&lt;br /&gt;
What does all of this have to do with Knoppix?   Well Knoppix is large download (700MB) and can have extremely large numbers of people looking to download it in a short space of time (when a major new version is released).   Due to the load this places on the server hosting the download, Knoppix can be slow to get around onto the network of mirrors.&lt;br /&gt;
&lt;br /&gt;
Knoppix 3.4 was different, in fact it was released first via Bittorrent at http://torrent.unix-ag.uni-kl.de/ .   Things weren't completely smooth sailing at first as the demand was staggering but since then the setup has been refined and seems to have no problems coping with the loads thrown at it.&lt;br /&gt;
&lt;br /&gt;
To top it all off, you will often see mention of people having problems with Knoppix where ultimately it is down to a broken download.   If you don't have the bandwidth to not care about having to redownload a copy of Knoppix if something goes funny (and if you do can you give some to the rest of us please), then Bittorrent is the answer.  If Bittorrent is happy, you can be sure the file you have is identical to the original, for modem users who may have to reconnect many times to finish the download, this is a godsend (one crash could destroy the past 30 hours downloading by http/ftp, but bittorrent will fix the download without having to duplicate any significant amount of downloading).&lt;br /&gt;
&lt;br /&gt;
Now for the downside, in certain circumstances you just won't be able to use Bittorrent.   If you are behind a firewall you do not control you will either not be able to use Bittorrent at all or your download speeds will be appalling.   If you can control the firewall, then you should be able to open Bittorrent traffic to your computer and get maximimum download speeds.&lt;br /&gt;
&lt;br /&gt;
The official Bittorrent Client is available from http://bittorrent.com/download.html though personally I prefer [http://bittornado.com/ Bit Tornado] (primarily as it  has a nice pause button for when you need to do something else quickly).&lt;br /&gt;
&lt;br /&gt;
If you are using the CD-based Knoppix right now, the Java-based [http://azureus.sourceforge.net/ Azureus] client can be installed to a hard disk or USB key and it will work properly.&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Cheat_Codes</id>
		<title>Cheat Codes</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Cheat_Codes"/>
				<updated>2005-01-15T04:57:08Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Options */ adding mention of mem=16320K working just in case I forget.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;German Version: [[Cheat Codes Deutsch]] / French Version: [[Cheat Codes French]] /&lt;br /&gt;
Versión español: [[Cheat Codes Spanish]]&lt;br /&gt;
----&lt;br /&gt;
'''Cheatcodes''' are used to pass values to KNOPPIX, to help with getting it working on difficult hardware. You type them into the boot screen, shown to the left, and press enter/return. The format is &amp;quot;kernel opt opt opt ...&amp;quot;. Usually &amp;quot;'''knoppix'''&amp;quot; is the right selection for the &amp;quot;kernel&amp;quot;, options as listed below (in [[Gnoppix]] is Credativ).&lt;br /&gt;
&lt;br /&gt;
Example: &amp;quot;knoppix xvrefresh=60 noscsi floppyconfig&amp;quot;&lt;br /&gt;
&lt;br /&gt;
You can type more than one cheatcode before pressing enter (i.e. knoppix lang=us knoppix xmodule=fbdev).&lt;br /&gt;
&lt;br /&gt;
==== Options ====&lt;br /&gt;
;lang=bg|be|ch|cn|cs|cz|da|de|dk|es|fi|fr|ie|it|ja|nl|pl|ru|sk|tr|tw|uk|us : specify language/keyboard&lt;br /&gt;
&lt;br /&gt;
You can click on http://www.w3.org/WAI/ER/IG/ert/iso639.htm to see the two-letters code meanings.&lt;br /&gt;
&lt;br /&gt;
For example, typing knoppix lang=us you change the keyboard/language to US english.&lt;br /&gt;
&lt;br /&gt;
If you don´t change the keyboard, in the default DE-bootimage, Knoppix boots with the [http://en.wikipedia.org/wiki/International_keyboard_layouts#Germany_and_Austria_.28but_not_Switzerland.29 german keyboard layout] (i.e. '=' letter is located at Shift-0 at this keyboard). Print the german keyboard layout for your reference.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;keyboard=us : specify only [[console]] keyboard&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;xkeyboard=us : specify [Xfree86 X] keyboard&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;atapicd  :Do NOT use SCSI-Emulation for IDE CD-Roms - Knoppix V3.4 and later&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;desktop=fluxbox|icewm|kde|larswm|twm|wmaker|xfce : Use specified WM instead of KDE&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;screen=1280x1024 :Use specified Screen resolution for X&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;xvrefresh=60 or vsync=60 : Use 60 Hz vertical refresh rate for X&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;xhrefresh=80 or hsync=80 : Use 80 kHz horizontal refresh rate for X&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;xserver=XFree86|XF86_SVGA : Use specified X-Server&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;xmodule=ati|radeon|[[fbdev]]|vesa|savage|s3|nv|i810|mga|svga|tseng : Use specified XFree4-Module&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;wheelmouse : The mouse is a wheelmouse - not needed since 2003-04-15&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;nowheelmouse : Regular PS/2 mouse - 2003-04-15 and after.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;2 : Runlevel 2, Textmode only&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;myconfig=scan or floppyconfig or floppyconf (in recent versions) : Run '''knoppix.sh''' from a floppy. The &amp;quot;floppyconfig&amp;quot; option allows you to reconfigure the system after autoconfig, or install your own config files, by mounting a floppy disk and running a bourne shell script called '''knoppix.sh''' from the root directory on this floppy. There is a GUI to create such a configuration floppy disk calles &amp;quot;saveconfig&amp;quot; (also located in the KDE menu under &amp;quot;KNOPPIX&amp;quot;, but experts also know how to do this by creating their own shellscripts. The configuration with network and graphics setup are stored in '''configs.tbz'''. A file called ''knoppix.sh'', if located in the toplevel KNOPPIX directory on CD, will also be executed at startup. This makes it easier to create customized versions without having to change anything on the compressed filesystem KNOPPIX/KNOPPIX.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;myconf=/dev/sda1  :Run &amp;quot;knoppix.sh&amp;quot; from a partition - Knoppix V3.4&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;myconf=scan (or config=scan) :Try to find &amp;quot;knoppix.sh&amp;quot; automatically - Knoppix V3.4&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;noapic noagp noapm nodma nomce nofirewire nopcmcia noscsi noswap nousb nosmp noaudio : Skip parts of Hardware-detection, In case of a failing hardware autodetection, try booting with any of the &amp;quot;no-&amp;quot; options as shown in the table above, like in knoppix noagp noapm noapic nodma nopcmcia noscsi nousb to skip some critical parts of the autodetection system. The &amp;quot;noswap&amp;quot; option is useful for a forensic analysis without touching existing swap partitions.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;pci=irqmask=0x0e98 : Notebook if PS/2 mouse doesn't work,  Try &amp;quot;knoppix pci=irqmask=0x0e98&amp;quot; if (you have a notebook and) your PS/2 mouse doesn't work. (Possibly caused by a BIOS-flaw on your board.)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;ide2=0x180 nopcmia : boot from PCMIA-CD (Transmeta notebooks)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;pci=biosirq : Will force the use of the BIOS assigned '''I'''nterrupt '''R'''e'''Q'''uests on the PCI bus. Possible cure for non-functioning hardware. Very handy for unruly IRQ conflicts. Look at '''dmesg''' and '''cat /proc/pci''' to find out if you have any such troubles..&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;mem=128M : Specify Memory size in MByte, Some Boards apparently don't pass the proper memory size to the linux-kernel. It may cause the message &amp;quot;Panic cannot mount root file system&amp;quot; and the system hangs. Use &amp;quot;knoppix mem=128M&amp;quot; to solve that problem if your system has 128MByte memory for example (caution you MUST use a capital &amp;quot;M&amp;quot; here). Stuff like mem=16320K also works.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;noeject : Do NOT eject CD after halt&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;noprompt : Its especially useful in combination with noeject. With noprompt, Knopix won't eject the CD and ask for a keypress. It was a much asked feature some time ago. Version 2003-09-22 and later.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;nodhcp : skip dhcp/network broadcast detection&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;splash : It shows the upper half of the KDE splash-screen, while booting up. You can press Esc anytime to see all the messages. Ever wanted to hide those cryptic messages? Version 2003-09-22 and later.&lt;br /&gt;
* New in 3.4: Animations (see for yourself) and the ability to press ''any'' key.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;modules-disk : This cheatcode allows you to insert a floppy disk with additional modules, for example USB-stick or similar. Yes, its also possible with &amp;quot;expert&amp;quot;, but there you loose the automatic configuration afterwards. Version 2003-09-22 and later.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;toram : Copy CD to RAM and run from there. Version 2003-09-05 and later.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;tohd : You can now do a &amp;quot;poor mans install&amp;quot; on vfat and ext2-Partitions with, '''knoppix tohd=/dev/hda1''' Version 2003-09-22 and later.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;fromhd : With this cheatcode the CD-Roms are ignored, so you can finally boot your &amp;quot;poor mans install&amp;quot; with just the original cdrom. Version 2003-09-05 and later. note - Cheatcode &amp;quot;toram&amp;quot; and &amp;quot;fromhd&amp;quot; work now together. Usage fromhd=/dev/hda1.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;bootfrom=/dev/hda1 : Access Image then boot from previously              copied CD-Image (enables booting from  NTFS / ReiserFS) - Knoppix V3.4&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;bootfrom=/dev/hda1/KNX.iso : Access image, boot from ISO-Image. - Knoppix V3.4&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
NOTE: bootfrom needs access to a running Knoppix-System with the same Kernel as the Bootkernel, before it is able to mount the partition / ISO-Image.&lt;br /&gt;
This should allow a poor mans install from NTFS-Partitions and makes it&lt;br /&gt;
also possible to boot an ISO-Image directly. You can also use wildcards&lt;br /&gt;
in the ISO-Filename, but it must be unique. So: If you have just one&lt;br /&gt;
KNOPPIX.iso on /dev/hda1 you can access it as: bootfrom=/dev/hda1/K*.iso,&lt;br /&gt;
but if there are several, you need to make clear, which one you want.&lt;br /&gt;
(Feature added by Fabian Franz.)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
CAUTION: The 2.4 kernel that is in the KNOPPIX 3.4 CD does not support the ext3 filesystem so make sure that the ISO is stored in an ext2 filesystem.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;gmt|uce : Hardware clock is set to GMT/UCE&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;vga=normal : No-framebuffer mode, but X&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;vga=ext : 50-line TEXT mode&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;dma : enable DMA for all IDE drives&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;home=scan :Set home directory. 'scan' will search for knoppix.img in the root of all partitions. To create a home directory, go K-menu -&amp;gt; Knoppix -&amp;gt; Configure -&amp;gt; Create persistant home directory. Be carefull when creating the home-dir, Do NOT use the entire partition unless you know what you are doing. Other options could be, home=/dev/hda1/knoppix.img home=/mnt/hda1/knoppix.img . If you are using a USB memory stick type home=/dev/sda1/knoppix.img but home=scan will probably do.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;blind :Start Braille-Terminal (no X)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;brltty=type,port,table :Parameters for Braille device.&lt;br /&gt;
For more information on brltty parameters see http://mielke.cc/brltty/guidelines.html&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;alsa :Autoconfigure alsa for an pci-soundcard&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;alsa=es1938 :Configure alsa for the snd-es1938.o-module pci-soundcard&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;testcd : Check CD data integrity, If your KNOPPIX CD makes strange noises during boot, or you see frequent errors like &amp;quot;cloop read error&amp;quot;, or programs on your KDE desktop keep crashing randomly, then your CD image is probably defective or incomplete, or your CD-burner created a defective CD due to wrong writing speed or bad media. This is the most common error reported. Please boot with &amp;quot;knoppix testcd&amp;quot; to check if the CD is OK, and/or even better, verify the MD5 checksums that are present on the mirrors before writing the CD. Also, please read the KNOPPIX-FAQ.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;pnpbios=off : No PnP Bios initialization&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;acpi=off  : Disable ACPI Bios completely&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;pci=bios : Workaround for bad PCI controllers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;knoppix_dir=KNOPPIX  : Directory to search for on the CD.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;knoppix_name=KNOPPIX : Cloop-File to search for on the CD.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Kernels ====&lt;br /&gt;
;knoppix : Default settings&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;knoppix26 : Boot the 2.6 kernel for use with the new Knoppix 3.4 and 3.4 c't Edition.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;knoppix26 acpi=off : Disable ACPI configuration in Kernel 2.6&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;knoppix-txt : No framebuffer at startup&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;fb1280x1024 or fb1024x768 or fb800x600 : Use fixed framebuffer graphics&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;failsafe : Boot with (almost) no hardware detection&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;expert : Interactive setup for experts, The &amp;quot;expert&amp;quot; mode provides a very simple and not yet well tested interface to loading additional Kernel modules from floppy disks (ext2 or vfat), plus interactive configuration of mouse/keyboard/soundcard/xserver. &amp;quot;expert&amp;quot; mode supports the same boot options as &amp;quot;knoppix&amp;quot;.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;expert26 : The same as above only with 2.6 kernel - Knoppix V3.4&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;knoppix -b : Quick-n-dirty boot, almost no HW detection, only 1 VT; hit enter at root-password prompt and start typing commands. Good if you just need to fdisk IDE devices, activate a different partition for booting, DD stuff, and you are planning on rebooting '''Real Fast''' after you're done. You can actually Alt-SysRQ-B safely ie. immediate reboot w/o worrying about shutting down nicely or anything, because nothing is mounted r/w at ALL - not even swap. Also works on other Linux distros.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
;memtest : Run memtest86 instead of Linux - Knoppix V3.4&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Tips&amp;amp;Tricks ====&lt;br /&gt;
If you have an old (VGA) monitor and get only flickering with the defaults, try &amp;quot;knoppix-txt xvrefresh=60&amp;quot; or &amp;quot;fb800x600&amp;quot;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Most of the boot options are parsed in /etc/init.d/knoppix-autoconfig and the rest is found in /KNOPPIX/boot.img -&amp;gt; miniroot.gz -&amp;gt; linuxrc.&lt;br /&gt;
&lt;br /&gt;
==== updates:&amp;lt;br&amp;gt; ====&lt;br /&gt;
Updated for Knoppix 3.1 2003-01-05&amp;lt;br&amp;gt;&lt;br /&gt;
;Updated for Knoppix 3.2 : desktop=gnome is no longer available... (use [[Gnoppix]]).&lt;br /&gt;
&lt;br /&gt;
See also:&lt;br /&gt;
*http://download.linuxtag.org/knoppix/knoppix-cheatcodes.txt Cheatcode last version.&lt;br /&gt;
*http://www.tldp.org/HOWTO/Boot Prompt-HOWTO.html&lt;br /&gt;
*http://www.wlug.org.nz/bootparam%287%29&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Win_Partition</id>
		<title>Win Partition</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Win_Partition"/>
				<updated>2005-01-13T08:36:48Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Windows Partition PMI */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Windows Partition PMI ===&lt;br /&gt;
&lt;br /&gt;
Much Credit here is due to the Japanese Knoppix Group for developing an NTFS compatible boot setup, to the various Grub patches authors, and to Ruymbeke for the easy setup and for the adaptation to the domestic versions of Knoppix on DOS/NT/XP machines.&lt;br /&gt;
&lt;br /&gt;
''This how-to was originally written by J. Drake to synthesize [http://www.knoppix.net/forum/viewtopic.php?p=52847#52847  this thread] and make it simpler for new users to follow.''&lt;br /&gt;
&lt;br /&gt;
This version of a poor man's installation goes beyond the basics, and utilizes the GRUB bootloader to install Knoppix from a Windows partition (including NTFS).  The advantages of this version over the [[Basic Poor Mans]] PMI are as follows:&lt;br /&gt;
&lt;br /&gt;
* 1.  No CD, USB, diskette, or any other device are required to boot.  You can choose to boot either Windows or Linux from a simple boot menu.&lt;br /&gt;
&lt;br /&gt;
* 2.  All setup and installation can be done from within Windows.  No prior Linux experience is required to have the function and versatility of a Linux HD install.  For new users especially, this option is very attractive.&lt;br /&gt;
&lt;br /&gt;
* 3.  In many cases, upgrading is as simple as downloading a new release to the appropriate Windows folder.&lt;br /&gt;
&lt;br /&gt;
* 4.  No partitioning is needed to run HD based Linux off of the typical single-partition factory-built computer, unless the user wants to save data to the hard disk.  New users who don't wish to partition their drives can save data on a separate disk or USB drive, while those desiring the enhanced function of a persistent home can create as few as one additional non-NTFS partition.  Plus, users willing to experiment with Captive NTFS might potentially experiment with persistent homes in their NTFS partitions (not me).&lt;br /&gt;
&lt;br /&gt;
Be sure to read and understand the introductory information on the WIKI page [[Poor Mans Install]].&lt;br /&gt;
&lt;br /&gt;
Note: If you have ever tried any other kind of [[Poor Mans Install]] as described in [[Hd Based HowTo]], please remove or rename the KNOPPIX directory on harddisk.&lt;br /&gt;
&lt;br /&gt;
==== Steps: ====&lt;br /&gt;
&lt;br /&gt;
* 1.  Within Windows, download [http://s94592085.onlinehome.us/grub/grubd.zip  Ruymbeke's files], and extract them to a folder on the Windows desktop.&lt;br /&gt;
&lt;br /&gt;
* 2.  Copy the files and folders from the &amp;quot;Root''Of''NTFS&amp;quot; folder into the root of your C: drive, ''except for boot.ini''.  Use boot.ini from the zip as a template for modifying your boot.ini.&lt;br /&gt;
&lt;br /&gt;
* 3.  While you're in the root of your C: drive, find the boot.ini file and copy it to boot.old, then open boot.ini with notepad.  At the end of the file, add the following line:  c:\grldr=&amp;quot;Start Grub&amp;quot; . . . or whatever title you want to put in the quotes.  Check to make sure that the timeout gives you enough time (in seconds) to make a choice.  You can refer to the boot.ini in the zip as an example.  Save as Boot.ini and exit.&lt;br /&gt;
Notes:&lt;br /&gt;
-With Win2000 computers you may add an alternate boot option in the boot.ini file: c:\bootgrub=&amp;quot;Start Grub (old method)&amp;quot;&lt;br /&gt;
-To work with Windows 9x copy GRUB.EXE from &amp;quot;Root''Of''NTFS&amp;quot; folder to C:\ then edit your CONFIG.SYS file adding the line ''SHELL=GRUB.EXE'' (to return to booting to Windows 9x you will have to edit config.sys again as grub.exe will not allow booting to Windows/Msdos AFAIK).&lt;br /&gt;
&lt;br /&gt;
* 4.  Find the ISO file you originally downloaded, and copy it to the c:\boot\knoppix.36 folder.&lt;br /&gt;
&lt;br /&gt;
* 5.  Now, open Notepad, and load the file C:/BOOT/GRUB/menu.lst.  Check to make sure that each step matches your HD configuration.  Exammine the boot stanzas and add any cheatcodes for persistent home, saved configuration, or whatever you may use.  Up at the top, I would recommend changing the timeout from 5 seconds to 15.  Save and exit.&lt;br /&gt;
&lt;br /&gt;
* 6.  Restart, and wait for a menu prompt which gives you a choice between Windows and Start Grub.  Cursor down to Start Grub and enter.  Then choose among the options in the same manner.  You should be launching Knoppix now.&lt;br /&gt;
&lt;br /&gt;
==== Tweaks: ====&lt;br /&gt;
&lt;br /&gt;
* 1.  Note that in GRUB, the first disk or first partition are numbered zero.  So, if your C: drive is the first partition of your first disk the C: drive will be hd(0,0), and hdb3 would be hd(1,2).  On newer stock HP Pavilions, C: is actually the ''second'' partition of the first drive (hda2), which equates to hd(0,1) in grubspeak.&lt;br /&gt;
&lt;br /&gt;
* 2.  If you're really new and haven't set up a persistent home yet or saved your configuration, you can set this up later, once you boot into Knoppix.  Just click the penguin icon on the toolbar and choose Configure, and follow the instructions to set up a persistent home.&lt;br /&gt;
&lt;br /&gt;
* 3. The easiest way to install programs is by using Klik. Open Konqueror (not Mozilla or any other browser), and type in the following URL: http://klik.berlios.de/ then follow the instructions to install Klik. You will see a number of programs available to you for automatic installation. If you don't see the one you want listed, you can try the following command klik://softwarename into the address block of Konqueror.&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Main_Page</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Main_Page"/>
				<updated>2005-01-11T23:07:39Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am glad to help out. I will look around to see if there is an obvious starting point, otherwise drop me a line for a hint. NYC8600&lt;br /&gt;
&lt;br /&gt;
Starting point? Seems to be find page on old wiki thats not in the new one, and pastey pastey edit edit&lt;br /&gt;
--[[User:Kyle|Kyle]] 2:09 December 30th (PST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Jjolly|Jjolly]] said on 13:53, 16 Dec 2004 (EST)&lt;br /&gt;
:Does it matter how the wikinames are formatted?  I noticed that the converter tends to separate the Knoppix away from the rest of the wikiname, but does no other formatting.  I note that you show the example of '''Knoppix Customisation''', but how would you handle '''KnoppixRemasterHowtoSpanish'''?&lt;br /&gt;
&lt;br /&gt;
:If it were me (and we all know it's not ;-), I would take this time to reformat the wikinames to be more readable.  In other words, '''KnoppixRemasterHowtoSpanish''' would become '''Spanish Remaster Knoppix HowTo''' so it would work well in a sentence such as: Come visit the &amp;lt;u&amp;gt;Spanish Remaster Knoppix HowTo&amp;lt;/u&amp;gt; for more information&lt;br /&gt;
&lt;br /&gt;
:Yes?&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I certainly hope the pagenames are supposed to look like &amp;quot;Hd Based HowTo&amp;quot; instead of &amp;quot;Hd BasedHowTo&amp;quot; or there'll be some editing to do :)&lt;br /&gt;
--[[User:Markus|Markus]] 18:23, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
Good decision! I tried many wiki software and mediawiki is my final choice also.&lt;br /&gt;
&lt;br /&gt;
--[[User:Liao|Liao]] 21:13, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
Yep it makes sence to have Knoppix Remaster HowTo Spanish etc.. not all bunched up words!  --[[User:Eadz|Eadz]] 22:48, 2 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
Hmmm, almost everything in recent changes appears to be marked minor, even some page additions to the new wiki are marked minor, odd. I'm marking my changes minor as I'm just deleting square brackets mostly. --[[User:Kyle|Kyle]] Tue Jan  4 07:48:57 UTC 2005&lt;br /&gt;
&lt;br /&gt;
Hmm, from me too as it's probably me. Forgot to set &amp;quot;default minor&amp;quot; when I started so too much was marked &amp;quot;major&amp;quot;?&lt;br /&gt;
Anyway, I'm also marking most as minor now as I don't really add much content, just edit what's there.&lt;br /&gt;
PS: Any idea why my name is in red?&lt;br /&gt;
--[[User:Markus|Markus]] 08:16, 4 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
The red links are for when theres a link to a page but the page doesn't exist in the wiki, last night I clicked on my page and threw in some text to make my name not red. --[[User:Kyle|Kyle]] Tue Jan  4 19:12:05 UTC 2005&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Customisations]] this page uses the word spelt with a z instead of an s inside, I notice this of course after I post to [[Customising FAQ]] blindly, hopefully someone can rename pages in the wiki --[[User:Kyle|Kyle]] Tue Jan  4 19:29:05 UTC 2005&lt;br /&gt;
&lt;br /&gt;
You can move the page to a new name but it seems the old one doesn't quite dissapear. And the red name is ofcourse obvious now that you've said it :) --[[User:Markus|Markus]] 21:37, 4 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;if [[ -e /proc/net/hostap ]]; then&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
showing nowiki tag for bash scripts, as I forgot where they are :)&lt;br /&gt;
--[[User:Kyle|Kyle]] Tue Jan 11 23:08:07 UTC 2005&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Knoppix_Remastering_Howto_Spanish</id>
		<title>Knoppix Remastering Howto Spanish</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Knoppix_Remastering_Howto_Spanish"/>
				<updated>2005-01-11T23:04:58Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: trying out nowiki  for bash lines with if  -e file &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Traducciones: ==&lt;br /&gt;
* Versión en inglés: [[Knoppix Remastering Howto]]&lt;br /&gt;
* Versión en alemán: [[Knoppix Remastering Howto Deutsch]]&lt;br /&gt;
----== Vea también : ==&lt;br /&gt;
* Si desea crear un kernel personalizado, compruebe [[Knoppix Custom Kernel Howto]]&lt;br /&gt;
* También hay una guía sobre el mismo asunto en O'Reilly: [http://linux.oreillynet.com/lpt/a/4323 Using and Customizing Knoppix]&lt;br /&gt;
----&lt;br /&gt;
=== Esta guía le mostrará cómo remasterizar KNOPPIX ===&lt;br /&gt;
(Notas : las órdenes deberían aparecer en una sóla línea, por favor maximice su ventana del navegador. Si tiene cualquier comentario o sugerencia, por favor envíe el formulario que hay al final.)&lt;br /&gt;
&lt;br /&gt;
Puede que desee personalizar un Knoppix ya adaptado, de forma que no tenga que hacer tanto esfuerzo (tal como eliminar programas). Si es así, vea  [[Knoppix Customizations]].&lt;br /&gt;
&lt;br /&gt;
==== Requisitos del sistema: ====&lt;br /&gt;
*CD-ISO&lt;br /&gt;
** por lo menos 1 GB de memoria libre total FREE RAM+Swap (ej. 256M ram, y 750M swap DISPONIBLE) (a menos que use un programa de compresión diferente - busque compressloop en esta página)&lt;br /&gt;
** 3 GB libres en una partición de disco formateada con '''sistema de ficheros Linux (ext2/3, xfs, etc.)'''&lt;br /&gt;
*DVD-ISO&lt;br /&gt;
** 5 GB libres de RAM + swap (para un DVD de tamaño completo)&lt;br /&gt;
** 15 GB libres en una partición de disco formateada con '''sistema de ficheros Linux (ext2/3, xfs, etc.)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Instrucciones: ====&lt;br /&gt;
&lt;br /&gt;
# Arranque desde el ''CD de Knoppix''&lt;br /&gt;
# Abra una consola de root:&lt;br /&gt;
** Menú: Kmenu-&amp;gt;Knoppix-&amp;gt;Consola de Root&lt;br /&gt;
** Nota: Todas las órdenes a continuación son ejecutadas desde la consola de root.&lt;br /&gt;
# Configure su conexión a Internet (lo necesitará más adelante). Si usa DHCP, ya debería estar configurada.&lt;br /&gt;
** Nota: Ejecute '''ifconfig''' para comprobarlo.&lt;br /&gt;
# Busque la partición en la que va a trabajar. En este ejemplo será '''hda1''' . La partición debería tenes al menos 3 GB libres&lt;br /&gt;
# Monte la partición:&lt;br /&gt;
** '''mount -rw /dev/hda1 /mnt/hda1'''&lt;br /&gt;
** Nota: Asegúrese que es de lectura/escritura u obtendrá errores más adelante cuando cambie la raíz del sistema. Para comprobarlo, teclee '''mount'''&lt;br /&gt;
# Cree un directorio raíz donde trabajar:&lt;br /&gt;
** '''mkdir /mnt/hda1/knx'''&lt;br /&gt;
** Si coloca todos sus ficheros aquí, será fácil borrarlos todos después&lt;br /&gt;
# Si no tiene 1 GB de RAM ('''cat /proc/meminfo''' (physical+swap)) entonces necesitará un fichero de intercambio (swap):&lt;br /&gt;
** '''cd /mnt/hda1/knx ; dd if=/dev/zero of=swapfile bs=1M count=750 ; mkswap swapfile ; swapon swapfile'''&lt;br /&gt;
# Cree 2 directorios, uno para su nuevo CD maestro, y otro para los fuentes, en una partición del disco. También, cree directorios adicionales en ellos llamados KNOPPIX:&lt;br /&gt;
** '''mkdir -p /mnt/hda1/knx/master/KNOPPIX'''&lt;br /&gt;
** '''mkdir -p /mnt/hda1/knx/source/KNOPPIX'''&lt;br /&gt;
# Ahora copie los ficheros de KNOPPIX a su directorio fuente:&lt;br /&gt;
'''* '''cp -Rp /KNOPPIX/''' /mnt/hda1/knx/source/KNOPPIX &amp;amp;'''&lt;br /&gt;
** Nota: Esto tardará unos minutos&lt;br /&gt;
# Copie la página HTML principal de inicio:&lt;br /&gt;
** '''cp /cdrom/index.html /mnt/hda1/knx/master/ '''&lt;br /&gt;
# Copie todos los ficheros necesarios excepto el fichero KNOPPIX, de unos 700 Mb.&lt;br /&gt;
** &amp;lt; 3.4: '''cd /cdrom/KNOPPIX;find . -size -10000k -type f -exec cp -p --parents {} /mnt/hda1/knx/master/KNOPPIX/ \;'''&lt;br /&gt;
** 3.4: '''cd /cdrom;find . -size -10000k -type f -exec cp -p --parents {} /mnt/hda1/knx/master/ \;'''&lt;br /&gt;
# Ahora puede cambiar la raíz del sistema &amp;quot;chroot&amp;quot; al KNOPPIX copiado en su partición:&lt;br /&gt;
** '''chroot /mnt/hda1/knx/source/KNOPPIX'''&lt;br /&gt;
&lt;br /&gt;
Si obtiene un montón de mensajes de error '''/dev/null permission denied''',  debería hacer los siguiente. Esto puede pasar si guarda sus datos de configuración de Knoppix en la misma partición que está usando para la remasterización, Y arranca Knoppix con '''knoppix home=scan'''.&lt;br /&gt;
&lt;br /&gt;
Compruebe el estado de montado si obtuvo el problema: '''mount /dev/hdaX on /mnt/hdaX type ext3 (rw,nosuid,nodev)''' (reemplace la X con su número de partición ) donde &amp;quot;nodev&amp;quot; significa que no puede acceder al sistema de ficheros montado y que no puede acceder a /dev/null. Y algunos scripts redirigen la salida a /dev/null... Para solventar esto debería montar la partición de destino antes de cambiar la raíz del sistema (chroot) de esta forma:&lt;br /&gt;
 ^d  # control+d saldrá del entorno chroot&lt;br /&gt;
 mount /dev/hda1 /mnt/hda1&lt;br /&gt;
Entonces debería obtener:&lt;br /&gt;
 mount /dev/hda1 on /mnt/hda1 type ext3 (rw)&lt;br /&gt;
&lt;br /&gt;
Si persisten los avisos de /dev/null entonces, antes de hacer chroot, haga:&lt;br /&gt;
 mount --bind /dev /mnt/hda1/knx/source/KNOPPIX/dev&lt;br /&gt;
¡Tiene que desmontar umount /mnt/hda1/knx/source/KNOPPIX/dev antes de construir la imagen del CD o el directorio /dev del CD se hará un lío!&lt;br /&gt;
&lt;br /&gt;
entonces puede seguir y hacer el chroot.&lt;br /&gt;
&lt;br /&gt;
* Ahora ha cambiado su direcotio raíz. &amp;quot;/&amp;quot; es en estos en realidad &amp;quot;/mnt/hda1/knx/source/KNOPPIX&amp;quot;&lt;br /&gt;
* Para acceder a Internet necesitará montar proc '''mount -t proc /proc proc'''&lt;br /&gt;
* Ahora edite /etc/resolv.conf y añada su servidor de nombres o &amp;quot;salga&amp;quot; del chroot y copie su fichero resolve.conf en el directorio fuente correspondiente: '''cp /etc/dhcpc/resolv.conf /mnt/hda1/knx/source/KNOPPIX/etc/dhcpc/resolv.conf'''&lt;br /&gt;
* Cambie también su grupo MS en smb.conf si desea soporte smbd (MSHOME es normalmente Home en XP y WORKGROUP en Windows 9x .&lt;br /&gt;
* Compruebe su conexión a Internet desde la nueva raíz : '''ping google.com'''&lt;br /&gt;
* Actualice su lista de paquetes con '''apt-get update'''&lt;br /&gt;
* Ahora puede realizar cambios.&lt;br /&gt;
* '''Aviso''': apt-get upgrade es una MALA IDEA. Muy probablemente, hará que su remasterización de KNOPPIX no sea arrancable o se corrompa en alguna forma. Un método más seguro consiste en actualizar sólo los paquetes necesarios&lt;br /&gt;
** Antes de poder añadir programas, probablemente tendrá que eliminar algunos paquetes.  Para obtener una lista de los paquetes instalados, teclee esto:&lt;br /&gt;
'''*''' '''dpkg-query -l'''&lt;br /&gt;
** Si quiere tener esa lista ordenada por tamaño (de esta forma podrá eliminar los que más ocupan), teclee esto:&lt;br /&gt;
'''*''' '''dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -n'''&lt;br /&gt;
** Para eliminar un paquete (y todos los paquetes que dependen de él), teclee esto:&lt;br /&gt;
'''*''' '''apt-get remove &amp;lt;nombre-del-paquete-a-eliminar&amp;gt;'''&lt;br /&gt;
** Para comprobar paquetes huérfanos, teclee esto:&lt;br /&gt;
'''*''' '''deborphan'''&lt;br /&gt;
** Si desea ahorrar más espacio eliminando esos molestos huérfanos(¡Qué cruel!), teclee esto ('''Aviso''', no se le preguntará sí/no para eliminar estos paquetes.  Cuando pulse Intro después de esta orden, los paquetes '''habrán desaparecido'''):&lt;br /&gt;
'''*''' '''deborphan | xargs apt-get -y remove'''&lt;br /&gt;
** Si no está seguro acerca del comando anterior y quiere ver qué pasará sin hacer ningún cambio, simplemente añada la opción '''-s''' a la orden apt-get de esta forma (puede hacer esto con todas las órdenes apt-get, y es un buen hábito usar esta opción antes de operaciones masivas como ésta):&lt;br /&gt;
'''*''' '''deborphan | xargs apt-get -s -y remove'''&lt;br /&gt;
** Ahora las buenas obras.  Si desea añadir un paquete, teclee esto:&lt;br /&gt;
'''*''' '''apt-get install &amp;lt;nombre-del-paquete-a-instalar&amp;gt;'''&lt;br /&gt;
** ¿Que no sabe qué paquetes instalar?  Teclee esto.  Cuando aparezca la lista, puede examinarla (¡unas 13000 líneas!) o buscar cosas usando '''/&amp;lt;search-term&amp;gt;''':&lt;br /&gt;
'''*''' '''apt-cache search .* | sort | less'''&lt;br /&gt;
** Cuando haya terminado de eliminar y añadir paquetes, una buena forma de hacer limpieza es tecleando los siguiente:&lt;br /&gt;
'''*''' '''COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' | xargs dpkg -P'''&lt;br /&gt;
** También, como el sistema de paquetes Debian guarda en caché los paquetes descargados, querrá ejecutar lo siguiente para eliminar esos ficheros inútiles:&lt;br /&gt;
'''*''' '''apt-get clean'''&lt;br /&gt;
** las configuraciones de usuario están en /etc/skel&lt;br /&gt;
** consejo: no cloque ficheros en /root sólo estarán disponibles en tiempo de ejecucuón en /KNOPPIX/root&lt;br /&gt;
* Desmonte /proc - ¡muy importante! '''umount /proc'''&lt;br /&gt;
* Pulse '''CTRL+D''' para volve a la raíz original (no chrooted).&lt;br /&gt;
&lt;br /&gt;
==== Notas : ====&lt;br /&gt;
&lt;br /&gt;
Cuando compruebe programas gráficos basados en X, tendrá que hacer '''export DISPLAY=localhost:0.0'''&lt;br /&gt;
&lt;br /&gt;
Cuando quiera autoejecutar algunos programas, puede crear un script y ponerlo en el directorio /etc/rc5.d/ (Esto sólo carga elementos antes de cargar las X)&lt;br /&gt;
&lt;br /&gt;
hay material interesante en /etc/init.d/knoppix-autoconfig :&lt;br /&gt;
&lt;br /&gt;
* El fichero de fondo X background está en /cdrom/KNOPPIX/background.gif '''(en knoppix 3.4: background.jpg)'''&lt;br /&gt;
* Al igual que con floppyconfig, está cdromconfig que ejecutará cdrom/KNOPPIX/knoppix.sh&lt;br /&gt;
&lt;br /&gt;
hay material interesante en /etc/init.d/xsession :&lt;br /&gt;
* TAMBIÉN establece el fondo /usr/local/lib/knoppix.gif&lt;br /&gt;
&lt;br /&gt;
Ahora la creación del fichero ISO :&lt;br /&gt;
&lt;br /&gt;
* ya hemos terminado de personalizarlo y ¡queremos quemar!&lt;br /&gt;
* primero haga algo de limpieza : ''' elimine los ficheros .bash_history, ficheros temporales etc '''&lt;br /&gt;
* '''rm -rf /mnt/hda1/knx/source/KNOPPIX/.rr_moved'''&lt;br /&gt;
* Ahora crearemos el fichero enorme que es un sistema de ficheros ISO 9660 cloop comprimido : '''mkisofs -R -U -V &amp;quot;KNOPPIX.net filesystem&amp;quot; -publisher &amp;quot;KNOPPIX www.knoppix-es.org&amp;quot; -hide-rr-moved -cache-inodes -no-bak -pad /mnt/hda1/knx/source/KNOPPIX | nice -5 /usr/bin/create_compressed_fs - 65536 &amp;gt; /mnt/hda1/knx/master/KNOPPIX/KNOPPIX'''&lt;br /&gt;
&lt;br /&gt;
el &amp;quot;www.knoppix-es.org&amp;quot; y &amp;quot;Knoppix.net filesystem&amp;quot; pueden ser modificados a lo que quiera que nombre el fichero. Obtendrá un error diciendo que no cumple los estándars ISO, puede ignorarlo.&lt;br /&gt;
&lt;br /&gt;
En Knoppix 3.4 el scrip create_compressed_fs ha sido actualizado así que asegúrese de usarlo para obtener los mejores resultados.&lt;br /&gt;
Tiene una nueva opción '''-b''' (best), que activa la mejor compresión usando diferentes esquemas de compresión e intenta optimizarlo de esa forma, pero sea cautao, porque esa opción es ralentiza (10 veces más lento).&lt;br /&gt;
&lt;br /&gt;
* si todo fue bien, para crear la imagen del CD-ROM final :&lt;br /&gt;
* '''cd /mnt/hda1/knx/master'''&lt;br /&gt;
* '''rm -f KNOPPIX/md5sums; find -type f -not -name md5sums -not -name boot.cat -not -name isolinux.bin -exec md5sum {} \; &amp;gt;&amp;gt; KNOPPIX/md5sums''' (esto actualizará las sumas de verificación md5 de los ficheros incluidos, se usa para comprobar la integridad)&lt;br /&gt;
* para Knoppix &amp;lt;= 3.3: '''mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -b KNOPPIX/boot.img -c KNOPPIX/boot.cat -hide-rr-moved -o /mnt/hda1/knx/knoppix.iso /mnt/hda1/knx/master''' (la ISO se guardará en /mnt/hda1/knx/knoppix.iso)&lt;br /&gt;
* Para Knoppix &amp;gt;= 3.4 u otras distribuciones basadas en isolinux haga:&lt;br /&gt;
'''mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o /mnt/hda1/knx/knoppix.iso /mnt/hda1/knx/master''' (la ISO se guardará en /mnt/hda1/knx/knoppix.iso)&lt;br /&gt;
* ¡y eso es todo!&lt;br /&gt;
&lt;br /&gt;
=== Trucos/consejos ===&lt;br /&gt;
Si está buscando paquetes grandes instalados teclee&lt;br /&gt;
: dpkg-awk &amp;quot;Status: .* installed$&amp;quot; -- Package Installed-Size | \&lt;br /&gt;
: awk '{print $2}' | egrep -v '^$' | xargs -n2 echo | \&lt;br /&gt;
: perl -pe 's/(\S+)\s(\S+)/$2 $1/' | sort -rg&lt;br /&gt;
listará los paquetes en orden de tamaño descendente.&lt;br /&gt;
Por lo menos diez veces más rápido es el comando&lt;br /&gt;
&lt;br /&gt;
: dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -n&lt;br /&gt;
&lt;br /&gt;
y no necesita dpkg-awk o awk o perl.&lt;br /&gt;
&lt;br /&gt;
Si tiene algún problema con el comando de ordenación anterior, pruebe a usar KPackage, expanda todas las ramas y ordene por la columan de tamaño para encontrar los paquetes mayores.&lt;br /&gt;
&lt;br /&gt;
Compruebe la salida del programa &amp;quot;deborphan&amp;quot;, listará los paquetes huérfanos que pueden ser eliminados, estos paquetes eran usados por otros paquetes que ahora han sido borrados.&lt;br /&gt;
&lt;br /&gt;
Yo he obtenido buenos resultados remasterizando trabajando desde el cd como root y desde fluxbox. Sólo teclee &amp;quot;knoppix 2&amp;quot; en el prompt de arranque y arrancará en una consola de texto como root, donde puede teclear &amp;quot;startx /usr/bin/fluxbox&amp;quot;. Me gusta usar la consola unicode xterm.&lt;br /&gt;
&lt;br /&gt;
Mientras trabajo desde chroot creando la remasterización me gusta usar &amp;quot;apt-get remove --purge pkg-name&amp;quot; para eliminar paquetes porque antes de hacer nada se detendrá y mostrará los detalles de lo que va a ajustar para eliminar y le permitirá decir &amp;quot;sí o no&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Si no usa la instrucción &amp;quot;apt-get&amp;quot; y tiene que limpiar y ùrgar mucho, aquí tiene la forma de hacerlo: &amp;quot;COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' &amp;gt;topurge&amp;quot;. Lo que creará una lista de los paquetes eliminados a purgar y entonces puede hacer &amp;quot;dpkg -P `cat topurge `&amp;quot; y ya está. &amp;quot;COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' | xargs dpkg -P&amp;quot; es la versión en una sola línea de esto.&lt;br /&gt;
Use también &amp;quot;deborphan &amp;gt;orphaned&amp;quot; y luego &amp;quot;dpkg -P `cat orphaned `&amp;quot;. &amp;quot;deborphan | xargs dpkg -P &amp;quot; es una versión en una sola línea para lo miso.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Eso es todo. Esta es una versión actualizada de mi howto pevio. No es para novatos en Linux, necesitará buscarse la vida para hacerlo trabajar. Actualizaré esto con correcciones/mejoras/etc a medida que las tenga.&lt;br /&gt;
&lt;br /&gt;
Gracias a aay, charan, Tech2k, y #knoppix por algunas correcciones, trucos e ideas.  Es libre de editar o añadir a este howto.&lt;br /&gt;
Nota cerca de swap:&amp;lt;br&amp;gt;&lt;br /&gt;
No necesita realmente 1G de swap ya que hay dos nuevas herramientaspara crear sistemas de ficehros comprimidos. Aquí hay algunis candidatos para crear sistemas de ficheros ''comprimidos'':&lt;br /&gt;
* Valentijn's rewrite [http://projects.openoffice.nl/downloads/compressloop/]&lt;br /&gt;
* Quozl's port of compressloop for Knoppix 3.4 [http://quozl.linux.org.au/compressloop-1.9-64bit.c]&lt;br /&gt;
* Quozl's distributed compressloop (use more than one processor to speed things up) [http://quozl.linux.org.au/knoppix/compressloop/] or [http://quozl.netrek.org/knoppix/compressloop/]&lt;br /&gt;
* Justin's patch [http://s.bouncybouncy.net/~justin/code/] (link broken) I also just wrote a distributed cloop compressor(or for smp)  It's in that same directory.&lt;br /&gt;
&lt;br /&gt;
==== Truco, compruebe la imagen del cd sin grabarla en un cd ====&lt;br /&gt;
&lt;br /&gt;
Si tiene una partición de sobra con al menos 700MB de espacio libre formateada con ext2, ext3 o Vfat, puede usarla para comprobaciones arrancando desde un disquete. Un disquete de arranque buscará una partición con el directorio /KNOPPIX/ en la raíz, y la imagen comprimida /KNOPPIX/KNOPPIX. En lugar de usar el subdirectorio /mnt/hda1/knx/master/KNOPPIX/ como se describió anteriormente, se debería llamar /mnt/hda2/KNOPPIX/ . Entonces el index.html estaría en /mnt/hda2/index.html y la imagen comprimida estaría en /mnt/hda2/KNOPPIX/KNOPPIX . Ahora puede arrancar desde un disquete y usar /mnt/hda2 como imagen. Para más infomración lea [[Hd BasedHowTo]].&lt;br /&gt;
&lt;br /&gt;
Si no tiene una partición extra o no quiere hacerlo, puede usar Qemu ( lea [http://fabrice.bellard.free.fr/qemu/] ) con la imagen ISO de esta forma:&lt;br /&gt;
'''qemu -m 128 -cdrom /temp/knoppix-custom.iso -boot d -user-net'''&lt;br /&gt;
Ni siquiera necesita construir imagen de disco antes, simplemente instale Qemu y pruebe esto. ¡Asombroso!&lt;br /&gt;
&lt;br /&gt;
==== Arranque de imágenes de Knoppix con GRUB ====&lt;br /&gt;
* Primero copie /boot del cd de Knoppix a su partición de arranque (o incluso a su partición dos). Yo nombré el mío boot.knoppix&lt;br /&gt;
''' Copie el directorio /KNOPPIX a su '''directorio raíz* de cualquir disco duro. Puede colocarlo en cualquier otra partición distinta a la de arranque. (puede ser ext2/3, reiserfs o vfat)&lt;br /&gt;
* Coloque los siguiente en el fichero /boot/grub/menu.lst:&lt;br /&gt;
 title           KNOPPIX&lt;br /&gt;
 root            (hd0,0)&lt;br /&gt;
 kernel  /boot.knoppix/vmlinuz 2 fromhd=/dev/hda4 lang=us&lt;br /&gt;
 initrd  /boot.knoppix/miniroot.gz&lt;br /&gt;
* tenga en cuenta que el parámetro fromhd: es el lugar donde está el directorio /KNOPPIX&lt;br /&gt;
* reinicie y disfrute.&lt;br /&gt;
&lt;br /&gt;
Si mi howto (cómo) es demasiado confuso, o le gustaría una segunda opinión, mire el bonito howto de charan : http://gnubox.dyndns.org:8080/~sunil/knoppix.php .&lt;br /&gt;
Otro Howto en http://www.stirnimann.com/mystuff/doc/knoppix.txt&lt;br /&gt;
&lt;br /&gt;
Hay un asistente, que utiliza todos los pasos de desempaquetado, compresión y grabación de CD mencionados aquí. También muestra una consola donde puede actualizar el sistema KNOPPIX descomprimido usando herramientas de estándar de instalación de software Debian. Se llama mmkcdrom y part del paquete de scripts: [http://rcswww.urz.tu-dresden.de/~holzhey/plugscript]&lt;br /&gt;
&lt;br /&gt;
Otro HOWTO más, para los freaks de la consola, en http://quozl.linux.org.au/knoppix/&lt;br /&gt;
&lt;br /&gt;
Asegúrese de que echa un vistazo a [http://knoppix.net/forum/viewforum.php?f=2 Knoppix Customization Forum] para ideas y ayuda con la remasterización.&lt;br /&gt;
----&lt;br /&gt;
Este es el esquema de directorios recomendado para remasterizar KNOPPIX:&lt;br /&gt;
 . (invoque ../remaster desde aquí)&lt;br /&gt;
 |-- master (invoke ../../[[u]]mountbootimage from here)&lt;br /&gt;
 |   |-- KNOPPIX&lt;br /&gt;
 |   |   |-- KNOPPIX (compressed image)&lt;br /&gt;
 |   |   |-- boot.img (boot floppy image)&lt;br /&gt;
 |   |   `-- (other files snipped)&lt;br /&gt;
 |   `-- index.html&lt;br /&gt;
 `-- source&lt;br /&gt;
 `-- KNOPPIX (se puede hacer chroot sobre este directorio)&lt;br /&gt;
 |-- bin&lt;br /&gt;
 |-- boot&lt;br /&gt;
 |-- cdrom&lt;br /&gt;
 |-- dev&lt;br /&gt;
 |-- etc&lt;br /&gt;
 |-- floppy&lt;br /&gt;
 |-- home&lt;br /&gt;
 |-- initrd&lt;br /&gt;
 |-- lib&lt;br /&gt;
 |-- mnt&lt;br /&gt;
 |-- none&lt;br /&gt;
 |-- opt&lt;br /&gt;
 |-- proc&lt;br /&gt;
 |-- root&lt;br /&gt;
 |-- sbin&lt;br /&gt;
 |-- tmp -&amp;gt; /var/tmp&lt;br /&gt;
 |-- usr&lt;br /&gt;
 |-- var&lt;br /&gt;
 `-- vmlinuz -&amp;gt; boot/vmlinuz-2.4.22-xfs&lt;br /&gt;
----&lt;br /&gt;
el siguiente script &amp;quot;remaster&amp;quot; hará el proceso de remasterización por usted. Úselo como root, u obtendrá derechos de acceso incorrectos en la imagen.&lt;br /&gt;
&lt;br /&gt;
El script ha sido probado con Debian sid del 2004-04-02.&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash -x&lt;br /&gt;
 # This script builds a new KNOPPIX ISO image.&lt;br /&gt;
 # Copyright (C) 2004 by Marc Haber &amp;lt;mh+knoppix-remaster@zugschlus.de&amp;gt;&lt;br /&gt;
 # License: GPL V2&lt;br /&gt;
 &lt;br /&gt;
 ROOT=&amp;quot;$PWD&amp;quot;&lt;br /&gt;
 SOURCE=&amp;quot;$ROOT/source/KNOPPIX&amp;quot;&lt;br /&gt;
 MASTER=&amp;quot;$ROOT/master&amp;quot;&lt;br /&gt;
 CLOOPTARGET=&amp;quot;$ROOT/master/KNOPPIX/KNOPPIX&amp;quot;&lt;br /&gt;
 TARGET=&amp;quot;$ROOT&amp;quot;&lt;br /&gt;
 EXCLUDELIST=&amp;quot;$ROOT/source/excludelist&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 rm -rf $SOURCE/.rr_moved&lt;br /&gt;
 &lt;br /&gt;
 cd $SOURCE&lt;br /&gt;
 mkisofs -R -U -V &amp;quot;KNOPPIX.net filesystem&amp;quot; \&lt;br /&gt;
 -P &amp;quot;KNOPPIX www.knoppix.net&amp;quot; \&lt;br /&gt;
 -hide-rr-moved -cache-inodes -no-bak -pad \&lt;br /&gt;
 -exclude-list $EXCLUDELIST \&lt;br /&gt;
 . | nice -5 /usr/bin/create''compressed''fs - 65536 &amp;gt; $CLOOPTARGET&lt;br /&gt;
 &lt;br /&gt;
 cd $MASTER&lt;br /&gt;
 rm -f KNOPPIX/md5sums&lt;br /&gt;
 find -type f -not -name md5sums -not -name boot.cat -exec md5sum {} \; &amp;gt;&amp;gt; KNOPPIX/md5sums&lt;br /&gt;
 mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -b KNOPPIX/boot.img \&lt;br /&gt;
 -c KNOPPIX/boot.cat -hide-rr-moved -o $TARGET/knoppix.iso $MASTER&lt;br /&gt;
----&lt;br /&gt;
El siguiente script montará la imagen de arranque de disquete y la imagen initrd para su modificación. La función umount construirá una nueva imagen initrd y la pondrá de vuelta en la imagen de arranque del disquete.&lt;br /&gt;
&lt;br /&gt;
El script ha sido probado con Debian sid del 2004-01-13.&lt;br /&gt;
&amp;lt;!-- lines starting with space a preformatted --&amp;gt;&lt;br /&gt;
 #!/bin/bash -x&lt;br /&gt;
 # This script will loop-mount boot floppy and initrd image&lt;br /&gt;
 # Copyright (C) 2004 by Marc Haber &amp;lt;mh+knoppix-remaster@zugschlus.de&amp;gt;&lt;br /&gt;
 # License: GPL V2&lt;br /&gt;
 unset CDPATH || true&lt;br /&gt;
 &lt;br /&gt;
 # if not root, re-invoke self as root&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;if [[ &amp;quot;`id -u`&amp;quot; -ne 0 ]]; then&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 export LOCUSER=&amp;quot;$USER&amp;quot;&lt;br /&gt;
 export LOCHOME=&amp;quot;$HOME&amp;quot;&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;if [[ &amp;quot;${SHELLOPTS/xtrace/}&amp;quot; != &amp;quot;$SHELLOPTS&amp;quot; ]]; then&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 sudo bash -x $0 $@&lt;br /&gt;
 exit $?&lt;br /&gt;
 else&lt;br /&gt;
 sudo $0 $@&lt;br /&gt;
 exit $?&lt;br /&gt;
 fi&lt;br /&gt;
 else&lt;br /&gt;
 LOCUSER=&amp;quot;${LOCUSER:-$USER}&amp;quot;&lt;br /&gt;
 LOCHOME=&amp;quot;${LOCHOME:-$HOME}&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 set -e&lt;br /&gt;
 &lt;br /&gt;
 KNOPPIXDIR=&amp;quot;KNOPPIX&amp;quot;&lt;br /&gt;
 BOOTIMGFILE=&amp;quot;$KNOPPIXDIR/boot.img&amp;quot;&lt;br /&gt;
 BOOTIMGFS=&amp;quot;vfat&amp;quot;&lt;br /&gt;
 BOOTIMGDIR=&amp;quot;boot.img&amp;quot;&lt;br /&gt;
 INITRDGZ=&amp;quot;$BOOTIMGDIR/miniroot.gz&amp;quot;&lt;br /&gt;
 INITRDFILE=&amp;quot;$KNOPPIXDIR/miniroot&amp;quot;&lt;br /&gt;
 INITRDFS=&amp;quot;ext2&amp;quot;&lt;br /&gt;
 INITRDDIR=&amp;quot;miniroot&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 mountbootimage() {&lt;br /&gt;
 if ! modprobe loop; then&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: cannot load loop module&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;nowiki&amp;gt;if ! [[ -e &amp;quot;$BOOTIMGFILE&amp;quot; ]]; then&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: no $BOOTIMGFILE found&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 for nofile in $BOOTIMGDIR $INITRDGZ $INITRDFILE $INITRDDIR; do&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;if [[ -e &amp;quot;$nofile&amp;quot; ]]; then&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: $nofile already exists&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 done&lt;br /&gt;
 &lt;br /&gt;
 mkdir -p $BOOTIMGDIR&lt;br /&gt;
 mount -o loop,uid=$LOCUSER -t $BOOTIMGFS $BOOTIMGFILE $BOOTIMGDIR&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt; $INITRDGZ gunzip &amp;gt; $INITRDFILE&lt;br /&gt;
 mkdir -p $INITRDDIR&lt;br /&gt;
 mount -o loop -t $INITRDFS $INITRDFILE $INITRDDIR&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 umountbootimage() {&lt;br /&gt;
 dd if=/dev/zero of=$INITRDDIR/nullfile || true&lt;br /&gt;
 sync&lt;br /&gt;
 rm $INITRDDIR/nullfile&lt;br /&gt;
 umount $INITRDDIR&lt;br /&gt;
 rmdir $INITRDDIR&lt;br /&gt;
 &amp;lt; $INITRDFILE gzip --best &amp;gt; $INITRDGZ&lt;br /&gt;
 rm -f $INITRDFILE&lt;br /&gt;
 &lt;br /&gt;
 umount $BOOTIMGDIR&lt;br /&gt;
 rmdir $BOOTIMGDIR&lt;br /&gt;
 &lt;br /&gt;
 syslinux KNOPPIX/boot.img&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 case &amp;quot;`basename $0`&amp;quot; in&lt;br /&gt;
 mountbootimage)&lt;br /&gt;
 mountbootimage&lt;br /&gt;
 ;;&lt;br /&gt;
 umountbootimage)&lt;br /&gt;
 umountbootimage&lt;br /&gt;
 ;;&lt;br /&gt;
 *)&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: called with unknown name `basename $0`&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 ;;&lt;br /&gt;
 esac&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/USB_Based_FAQ</id>
		<title>USB Based FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/USB_Based_FAQ"/>
				<updated>2005-01-11T10:09:16Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: mornin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What you'll need :&lt;br /&gt;
&lt;br /&gt;
* Knoppix or an already stripped down version with a kernel with [[cloop]]-support (i.e. [[Debian]]).&lt;br /&gt;
&lt;br /&gt;
;:If you want to boot Knoppix from USB stick, you must also modify miniroot.gz to include usb-uhci.o, usb-ohci.o and usb-storage.o, otherwise /linuxrc can't mount the stick and find the cloop image.&lt;br /&gt;
&lt;br /&gt;
* bootable [[USB]] [http://www.wikipedia.org/wiki/keydrive keydrive].&lt;br /&gt;
* Computer with [http://www.wikipedia.org/wiki/BIOS BIOS] capable of booting from USB keydrive (select USB-ZIP).&lt;br /&gt;
* [http://www.wikipedia.org/wiki/syslinux syslinux] or grub for booting.&lt;br /&gt;
&lt;br /&gt;
You can see how in:&lt;br /&gt;
&lt;br /&gt;
*http://rz-obrian.rz.uni-karlsruhe.de/knoppix-usb/&lt;br /&gt;
*Another way from [[Gnoppix]]: [[Gnoppix BootMedia]].&lt;br /&gt;
*[http://transcendusa.com Bootable keydrive]&lt;br /&gt;
*http://am.xs4all.nl/phpwiki/index.php/UsbMorphix&lt;br /&gt;
*http://gentoo-wiki.com/HOWTO_Small_Footprint_Gentoo_on_USB&lt;br /&gt;
&lt;br /&gt;
Full method using Knoppix 3.6:&lt;br /&gt;
*http://www.knoppix.net/forum/viewtopic.php?p=64999#64999&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Poor Man's USB Based Boot (Boot from USB flash memory stick and then continue boot with Knoppix image stored on a harddisk or a CD or an external USB harddisk ) How To:&lt;br /&gt;
&lt;br /&gt;
What you will need:&lt;br /&gt;
&lt;br /&gt;
* Computer with [http://www.wikipedia.org/wiki/BIOS BIOS] capable of booting from USB keydrive (select USB-HDD). (Unfortunately, some buggy BIOS just wont boot from my USB stick, such as all versions up to F9 for the Gigabyte GA-8IEXP motherboard).&lt;br /&gt;
* USB keydrive that can boot as USB-HDD device. Make sure you read the product specification, only some USB flash sticks support this feature.&lt;br /&gt;
* Linux with [http://en.wikipedia.org/wiki/GRUB GRUB] grub boot loader already installed. I just use Knoppix.&lt;br /&gt;
* Read [[Win Partition]] Poor Man Installation for the more versatile boot mechanism we gonna utilize here.&lt;br /&gt;
&lt;br /&gt;
Steps:&lt;br /&gt;
(Cautions: Unmount usb stick before you remove it from USB slot to avoid data loss. Backup the MBR of harddisk and USB stick, see the [http://www.knoppix.net/forum/viewtopic.php?p=64999#64999 link] above)&lt;br /&gt;
&lt;br /&gt;
# Insert the USB stick, use cfdisk to create a partition with boot flag on this device ( cfdisk /dev/sda ). Create a file system on the newly created partition.(eg. mke2fs -m0 /dev/sda1)&lt;br /&gt;
# Mount the partition and install grub boot loader on this device ( mount /dev/sda1 /mnt/usb &amp;amp;&amp;amp; grub-install --root-directory=/mnt/usb /dev/sda ). Now the USB stick is already bootable, you will enter the interactive GRUB shell enviroment if you boot with it.&lt;br /&gt;
# Copy kernel and initrd to USB stick. To continue boot from an knoppix 3.6 ISO image stored on a NTFS/FAT harddisk partition, you will need the kernel and miniroot.gz files from [http://s94592085.onlinehome.us/grub/grubc.zip Ruymbeke's files].&lt;br /&gt;
# Create a file ''menu.lst'' under dir ''/mnt/usb/boot/grub'', I just copied the one from [http://s94592085.onlinehome.us/grub/grubc.zip Ruymbeke's files] pasted in [[Win Partition]] PMI. Specify the location of the newly copied kernel and minirt files in this file, note (hd0,0) is the first partition on USB stick when you boot from it, and the first harddisk likes to be hd1. To find out how GRUB map devices, press key '''c''' when you see GRUB boot menu at boot time, then type ''root ('' and press '''''TAB''''' key, see the GRUB texinfo for detail.&lt;br /&gt;
&lt;br /&gt;
DONE.&lt;br /&gt;
&lt;br /&gt;
I have created a 32M boot partition on a 128M USB flash stick, and use it to boot Knoppix ISO image stored in a FAT32 partition shared by Windows, or to boot ubuntu live CD (basemodule is Morphix) already copied to another partition. The purpose is to reduce the time to burn these Linux Live CDs and less CDs to carry with.&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Knoppix_Remastering_Howto_Spanish</id>
		<title>Knoppix Remastering Howto Spanish</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Knoppix_Remastering_Howto_Spanish"/>
				<updated>2005-01-11T09:59:47Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Traducciones: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Traducciones: ==&lt;br /&gt;
* Versión en inglés: [[Knoppix Remastering Howto]]&lt;br /&gt;
* Versión en alemán: [[Knoppix Remastering Howto Deutsch]]&lt;br /&gt;
----== Vea también : ==&lt;br /&gt;
* Si desea crear un kernel personalizado, compruebe [[Knoppix Custom Kernel Howto]]&lt;br /&gt;
* También hay una guía sobre el mismo asunto en O'Reilly: [http://linux.oreillynet.com/lpt/a/4323 Using and Customizing Knoppix]&lt;br /&gt;
----&lt;br /&gt;
=== Esta guía le mostrará cómo remasterizar KNOPPIX ===&lt;br /&gt;
(Notas : las órdenes deberían aparecer en una sóla línea, por favor maximice su ventana del navegador. Si tiene cualquier comentario o sugerencia, por favor envíe el formulario que hay al final.)&lt;br /&gt;
&lt;br /&gt;
Puede que desee personalizar un Knoppix ya adaptado, de forma que no tenga que hacer tanto esfuerzo (tal como eliminar programas). Si es así, vea  [[Knoppix Customizations]].&lt;br /&gt;
&lt;br /&gt;
==== Requisitos del sistema: ====&lt;br /&gt;
*CD-ISO&lt;br /&gt;
** por lo menos 1 GB de memoria libre total FREE RAM+Swap (ej. 256M ram, y 750M swap DISPONIBLE) (a menos que use un programa de compresión diferente - busque compressloop en esta página)&lt;br /&gt;
** 3 GB libres en una partición de disco formateada con '''sistema de ficheros Linux (ext2/3, xfs, etc.)'''&lt;br /&gt;
*DVD-ISO&lt;br /&gt;
** 5 GB libres de RAM + swap (para un DVD de tamaño completo)&lt;br /&gt;
** 15 GB libres en una partición de disco formateada con '''sistema de ficheros Linux (ext2/3, xfs, etc.)'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Instrucciones: ====&lt;br /&gt;
&lt;br /&gt;
# Arranque desde el ''CD de Knoppix''&lt;br /&gt;
# Abra una consola de root:&lt;br /&gt;
** Menú: Kmenu-&amp;gt;Knoppix-&amp;gt;Consola de Root&lt;br /&gt;
** Nota: Todas las órdenes a continuación son ejecutadas desde la consola de root.&lt;br /&gt;
# Configure su conexión a Internet (lo necesitará más adelante). Si usa DHCP, ya debería estar configurada.&lt;br /&gt;
** Nota: Ejecute '''ifconfig''' para comprobarlo.&lt;br /&gt;
# Busque la partición en la que va a trabajar. En este ejemplo será '''hda1''' . La partición debería tenes al menos 3 GB libres&lt;br /&gt;
# Monte la partición:&lt;br /&gt;
** '''mount -rw /dev/hda1 /mnt/hda1'''&lt;br /&gt;
** Nota: Asegúrese que es de lectura/escritura u obtendrá errores más adelante cuando cambie la raíz del sistema. Para comprobarlo, teclee '''mount'''&lt;br /&gt;
# Cree un directorio raíz donde trabajar:&lt;br /&gt;
** '''mkdir /mnt/hda1/knx'''&lt;br /&gt;
** Si coloca todos sus ficheros aquí, será fácil borrarlos todos después&lt;br /&gt;
# Si no tiene 1 GB de RAM ('''cat /proc/meminfo''' (physical+swap)) entonces necesitará un fichero de intercambio (swap):&lt;br /&gt;
** '''cd /mnt/hda1/knx ; dd if=/dev/zero of=swapfile bs=1M count=750 ; mkswap swapfile ; swapon swapfile'''&lt;br /&gt;
# Cree 2 directorios, uno para su nuevo CD maestro, y otro para los fuentes, en una partición del disco. También, cree directorios adicionales en ellos llamados KNOPPIX:&lt;br /&gt;
** '''mkdir -p /mnt/hda1/knx/master/KNOPPIX'''&lt;br /&gt;
** '''mkdir -p /mnt/hda1/knx/source/KNOPPIX'''&lt;br /&gt;
# Ahora copie los ficheros de KNOPPIX a su directorio fuente:&lt;br /&gt;
'''* '''cp -Rp /KNOPPIX/''' /mnt/hda1/knx/source/KNOPPIX &amp;amp;'''&lt;br /&gt;
** Nota: Esto tardará unos minutos&lt;br /&gt;
# Copie la página HTML principal de inicio:&lt;br /&gt;
** '''cp /cdrom/index.html /mnt/hda1/knx/master/ '''&lt;br /&gt;
# Copie todos los ficheros necesarios excepto el fichero KNOPPIX, de unos 700 Mb.&lt;br /&gt;
** &amp;lt; 3.4: '''cd /cdrom/KNOPPIX;find . -size -10000k -type f -exec cp -p --parents {} /mnt/hda1/knx/master/KNOPPIX/ \;'''&lt;br /&gt;
** 3.4: '''cd /cdrom;find . -size -10000k -type f -exec cp -p --parents {} /mnt/hda1/knx/master/ \;'''&lt;br /&gt;
# Ahora puede cambiar la raíz del sistema &amp;quot;chroot&amp;quot; al KNOPPIX copiado en su partición:&lt;br /&gt;
** '''chroot /mnt/hda1/knx/source/KNOPPIX'''&lt;br /&gt;
&lt;br /&gt;
Si obtiene un montón de mensajes de error '''/dev/null permission denied''',  debería hacer los siguiente. Esto puede pasar si guarda sus datos de configuración de Knoppix en la misma partición que está usando para la remasterización, Y arranca Knoppix con '''knoppix home=scan'''.&lt;br /&gt;
&lt;br /&gt;
Compruebe el estado de montado si obtuvo el problema: '''mount /dev/hdaX on /mnt/hdaX type ext3 (rw,nosuid,nodev)''' (reemplace la X con su número de partición ) donde &amp;quot;nodev&amp;quot; significa que no puede acceder al sistema de ficheros montado y que no puede acceder a /dev/null. Y algunos scripts redirigen la salida a /dev/null... Para solventar esto debería montar la partición de destino antes de cambiar la raíz del sistema (chroot) de esta forma:&lt;br /&gt;
 ^d  # control+d saldrá del entorno chroot&lt;br /&gt;
 mount /dev/hda1 /mnt/hda1&lt;br /&gt;
Entonces debería obtener:&lt;br /&gt;
 mount /dev/hda1 on /mnt/hda1 type ext3 (rw)&lt;br /&gt;
&lt;br /&gt;
Si persisten los avisos de /dev/null entonces, antes de hacer chroot, haga:&lt;br /&gt;
 mount --bind /dev /mnt/hda1/knx/source/KNOPPIX/dev&lt;br /&gt;
¡Tiene que desmontar umount /mnt/hda1/knx/source/KNOPPIX/dev antes de construir la imagen del CD o el directorio /dev del CD se hará un lío!&lt;br /&gt;
&lt;br /&gt;
entonces puede seguir y hacer el chroot.&lt;br /&gt;
&lt;br /&gt;
* Ahora ha cambiado su direcotio raíz. &amp;quot;/&amp;quot; es en estos en realidad &amp;quot;/mnt/hda1/knx/source/KNOPPIX&amp;quot;&lt;br /&gt;
* Para acceder a Internet necesitará montar proc '''mount -t proc /proc proc'''&lt;br /&gt;
* Ahora edite /etc/resolv.conf y añada su servidor de nombres o &amp;quot;salga&amp;quot; del chroot y copie su fichero resolve.conf en el directorio fuente correspondiente: '''cp /etc/dhcpc/resolv.conf /mnt/hda1/knx/source/KNOPPIX/etc/dhcpc/resolv.conf'''&lt;br /&gt;
* Cambie también su grupo MS en smb.conf si desea soporte smbd (MSHOME es normalmente Home en XP y WORKGROUP en Windows 9x .&lt;br /&gt;
* Compruebe su conexión a Internet desde la nueva raíz : '''ping google.com'''&lt;br /&gt;
* Actualice su lista de paquetes con '''apt-get update'''&lt;br /&gt;
* Ahora puede realizar cambios.&lt;br /&gt;
* '''Aviso''': apt-get upgrade es una MALA IDEA. Muy probablemente, hará que su remasterización de KNOPPIX no sea arrancable o se corrompa en alguna forma. Un método más seguro consiste en actualizar sólo los paquetes necesarios&lt;br /&gt;
** Antes de poder añadir programas, probablemente tendrá que eliminar algunos paquetes.  Para obtener una lista de los paquetes instalados, teclee esto:&lt;br /&gt;
'''*''' '''dpkg-query -l'''&lt;br /&gt;
** Si quiere tener esa lista ordenada por tamaño (de esta forma podrá eliminar los que más ocupan), teclee esto:&lt;br /&gt;
'''*''' '''dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -n'''&lt;br /&gt;
** Para eliminar un paquete (y todos los paquetes que dependen de él), teclee esto:&lt;br /&gt;
'''*''' '''apt-get remove &amp;lt;nombre-del-paquete-a-eliminar&amp;gt;'''&lt;br /&gt;
** Para comprobar paquetes huérfanos, teclee esto:&lt;br /&gt;
'''*''' '''deborphan'''&lt;br /&gt;
** Si desea ahorrar más espacio eliminando esos molestos huérfanos(¡Qué cruel!), teclee esto ('''Aviso''', no se le preguntará sí/no para eliminar estos paquetes.  Cuando pulse Intro después de esta orden, los paquetes '''habrán desaparecido'''):&lt;br /&gt;
'''*''' '''deborphan | xargs apt-get -y remove'''&lt;br /&gt;
** Si no está seguro acerca del comando anterior y quiere ver qué pasará sin hacer ningún cambio, simplemente añada la opción '''-s''' a la orden apt-get de esta forma (puede hacer esto con todas las órdenes apt-get, y es un buen hábito usar esta opción antes de operaciones masivas como ésta):&lt;br /&gt;
'''*''' '''deborphan | xargs apt-get -s -y remove'''&lt;br /&gt;
** Ahora las buenas obras.  Si desea añadir un paquete, teclee esto:&lt;br /&gt;
'''*''' '''apt-get install &amp;lt;nombre-del-paquete-a-instalar&amp;gt;'''&lt;br /&gt;
** ¿Que no sabe qué paquetes instalar?  Teclee esto.  Cuando aparezca la lista, puede examinarla (¡unas 13000 líneas!) o buscar cosas usando '''/&amp;lt;search-term&amp;gt;''':&lt;br /&gt;
'''*''' '''apt-cache search .* | sort | less'''&lt;br /&gt;
** Cuando haya terminado de eliminar y añadir paquetes, una buena forma de hacer limpieza es tecleando los siguiente:&lt;br /&gt;
'''*''' '''COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' | xargs dpkg -P'''&lt;br /&gt;
** También, como el sistema de paquetes Debian guarda en caché los paquetes descargados, querrá ejecutar lo siguiente para eliminar esos ficheros inútiles:&lt;br /&gt;
'''*''' '''apt-get clean'''&lt;br /&gt;
** las configuraciones de usuario están en /etc/skel&lt;br /&gt;
** consejo: no cloque ficheros en /root sólo estarán disponibles en tiempo de ejecucuón en /KNOPPIX/root&lt;br /&gt;
* Desmonte /proc - ¡muy importante! '''umount /proc'''&lt;br /&gt;
* Pulse '''CTRL+D''' para volve a la raíz original (no chrooted).&lt;br /&gt;
&lt;br /&gt;
==== Notas : ====&lt;br /&gt;
&lt;br /&gt;
Cuando compruebe programas gráficos basados en X, tendrá que hacer '''export DISPLAY=localhost:0.0'''&lt;br /&gt;
&lt;br /&gt;
Cuando quiera autoejecutar algunos programas, puede crear un script y ponerlo en el directorio /etc/rc5.d/ (Esto sólo carga elementos antes de cargar las X)&lt;br /&gt;
&lt;br /&gt;
hay material interesante en /etc/init.d/knoppix-autoconfig :&lt;br /&gt;
&lt;br /&gt;
* El fichero de fondo X background está en /cdrom/KNOPPIX/background.gif '''(en knoppix 3.4: background.jpg)'''&lt;br /&gt;
* Al igual que con floppyconfig, está cdromconfig que ejecutará cdrom/KNOPPIX/knoppix.sh&lt;br /&gt;
&lt;br /&gt;
hay material interesante en /etc/init.d/xsession :&lt;br /&gt;
* TAMBIÉN establece el fondo /usr/local/lib/knoppix.gif&lt;br /&gt;
&lt;br /&gt;
Ahora la creación del fichero ISO :&lt;br /&gt;
&lt;br /&gt;
* ya hemos terminado de personalizarlo y ¡queremos quemar!&lt;br /&gt;
* primero haga algo de limpieza : ''' elimine los ficheros .bash_history, ficheros temporales etc '''&lt;br /&gt;
* '''rm -rf /mnt/hda1/knx/source/KNOPPIX/.rr_moved'''&lt;br /&gt;
* Ahora crearemos el fichero enorme que es un sistema de ficheros ISO 9660 cloop comprimido : '''mkisofs -R -U -V &amp;quot;KNOPPIX.net filesystem&amp;quot; -publisher &amp;quot;KNOPPIX www.knoppix-es.org&amp;quot; -hide-rr-moved -cache-inodes -no-bak -pad /mnt/hda1/knx/source/KNOPPIX | nice -5 /usr/bin/create_compressed_fs - 65536 &amp;gt; /mnt/hda1/knx/master/KNOPPIX/KNOPPIX'''&lt;br /&gt;
&lt;br /&gt;
el &amp;quot;www.knoppix-es.org&amp;quot; y &amp;quot;Knoppix.net filesystem&amp;quot; pueden ser modificados a lo que quiera que nombre el fichero. Obtendrá un error diciendo que no cumple los estándars ISO, puede ignorarlo.&lt;br /&gt;
&lt;br /&gt;
En Knoppix 3.4 el scrip create_compressed_fs ha sido actualizado así que asegúrese de usarlo para obtener los mejores resultados.&lt;br /&gt;
Tiene una nueva opción '''-b''' (best), que activa la mejor compresión usando diferentes esquemas de compresión e intenta optimizarlo de esa forma, pero sea cautao, porque esa opción es ralentiza (10 veces más lento).&lt;br /&gt;
&lt;br /&gt;
* si todo fue bien, para crear la imagen del CD-ROM final :&lt;br /&gt;
* '''cd /mnt/hda1/knx/master'''&lt;br /&gt;
* '''rm -f KNOPPIX/md5sums; find -type f -not -name md5sums -not -name boot.cat -not -name isolinux.bin -exec md5sum {} \; &amp;gt;&amp;gt; KNOPPIX/md5sums''' (esto actualizará las sumas de verificación md5 de los ficheros incluidos, se usa para comprobar la integridad)&lt;br /&gt;
* para Knoppix &amp;lt;= 3.3: '''mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -b KNOPPIX/boot.img -c KNOPPIX/boot.cat -hide-rr-moved -o /mnt/hda1/knx/knoppix.iso /mnt/hda1/knx/master''' (la ISO se guardará en /mnt/hda1/knx/knoppix.iso)&lt;br /&gt;
* Para Knoppix &amp;gt;= 3.4 u otras distribuciones basadas en isolinux haga:&lt;br /&gt;
'''mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -hide-rr-moved -o /mnt/hda1/knx/knoppix.iso /mnt/hda1/knx/master''' (la ISO se guardará en /mnt/hda1/knx/knoppix.iso)&lt;br /&gt;
* ¡y eso es todo!&lt;br /&gt;
&lt;br /&gt;
=== Trucos/consejos ===&lt;br /&gt;
Si está buscando paquetes grandes instalados teclee&lt;br /&gt;
: dpkg-awk &amp;quot;Status: .* installed$&amp;quot; -- Package Installed-Size | \&lt;br /&gt;
: awk '{print $2}' | egrep -v '^$' | xargs -n2 echo | \&lt;br /&gt;
: perl -pe 's/(\S+)\s(\S+)/$2 $1/' | sort -rg&lt;br /&gt;
listará los paquetes en orden de tamaño descendente.&lt;br /&gt;
Por lo menos diez veces más rápido es el comando&lt;br /&gt;
&lt;br /&gt;
: dpkg-query -W --showformat='${Installed-Size} ${Package}\n' | sort -n&lt;br /&gt;
&lt;br /&gt;
y no necesita dpkg-awk o awk o perl.&lt;br /&gt;
&lt;br /&gt;
Si tiene algún problema con el comando de ordenación anterior, pruebe a usar KPackage, expanda todas las ramas y ordene por la columan de tamaño para encontrar los paquetes mayores.&lt;br /&gt;
&lt;br /&gt;
Compruebe la salida del programa &amp;quot;deborphan&amp;quot;, listará los paquetes huérfanos que pueden ser eliminados, estos paquetes eran usados por otros paquetes que ahora han sido borrados.&lt;br /&gt;
&lt;br /&gt;
Yo he obtenido buenos resultados remasterizando trabajando desde el cd como root y desde fluxbox. Sólo teclee &amp;quot;knoppix 2&amp;quot; en el prompt de arranque y arrancará en una consola de texto como root, donde puede teclear &amp;quot;startx /usr/bin/fluxbox&amp;quot;. Me gusta usar la consola unicode xterm.&lt;br /&gt;
&lt;br /&gt;
Mientras trabajo desde chroot creando la remasterización me gusta usar &amp;quot;apt-get remove --purge pkg-name&amp;quot; para eliminar paquetes porque antes de hacer nada se detendrá y mostrará los detalles de lo que va a ajustar para eliminar y le permitirá decir &amp;quot;sí o no&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Si no usa la instrucción &amp;quot;apt-get&amp;quot; y tiene que limpiar y ùrgar mucho, aquí tiene la forma de hacerlo: &amp;quot;COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' &amp;gt;topurge&amp;quot;. Lo que creará una lista de los paquetes eliminados a purgar y entonces puede hacer &amp;quot;dpkg -P `cat topurge `&amp;quot; y ya está. &amp;quot;COLUMNS=200 dpkg -l |grep ^rc |awk '{print $2} ' | xargs dpkg -P&amp;quot; es la versión en una sola línea de esto.&lt;br /&gt;
Use también &amp;quot;deborphan &amp;gt;orphaned&amp;quot; y luego &amp;quot;dpkg -P `cat orphaned `&amp;quot;. &amp;quot;deborphan | xargs dpkg -P &amp;quot; es una versión en una sola línea para lo miso.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Eso es todo. Esta es una versión actualizada de mi howto pevio. No es para novatos en Linux, necesitará buscarse la vida para hacerlo trabajar. Actualizaré esto con correcciones/mejoras/etc a medida que las tenga.&lt;br /&gt;
&lt;br /&gt;
Gracias a aay, charan, Tech2k, y #knoppix por algunas correcciones, trucos e ideas.  Es libre de editar o añadir a este howto.&lt;br /&gt;
Nota cerca de swap:&amp;lt;br&amp;gt;&lt;br /&gt;
No necesita realmente 1G de swap ya que hay dos nuevas herramientaspara crear sistemas de ficehros comprimidos. Aquí hay algunis candidatos para crear sistemas de ficheros ''comprimidos'':&lt;br /&gt;
* Valentijn's rewrite [http://projects.openoffice.nl/downloads/compressloop/]&lt;br /&gt;
* Quozl's port of compressloop for Knoppix 3.4 [http://quozl.linux.org.au/compressloop-1.9-64bit.c]&lt;br /&gt;
* Quozl's distributed compressloop (use more than one processor to speed things up) [http://quozl.linux.org.au/knoppix/compressloop/] or [http://quozl.netrek.org/knoppix/compressloop/]&lt;br /&gt;
* Justin's patch [http://s.bouncybouncy.net/~justin/code/] (link broken) I also just wrote a distributed cloop compressor(or for smp)  It's in that same directory.&lt;br /&gt;
&lt;br /&gt;
==== Truco, compruebe la imagen del cd sin grabarla en un cd ====&lt;br /&gt;
&lt;br /&gt;
Si tiene una partición de sobra con al menos 700MB de espacio libre formateada con ext2, ext3 o Vfat, puede usarla para comprobaciones arrancando desde un disquete. Un disquete de arranque buscará una partición con el directorio /KNOPPIX/ en la raíz, y la imagen comprimida /KNOPPIX/KNOPPIX. En lugar de usar el subdirectorio /mnt/hda1/knx/master/KNOPPIX/ como se describió anteriormente, se debería llamar /mnt/hda2/KNOPPIX/ . Entonces el index.html estaría en /mnt/hda2/index.html y la imagen comprimida estaría en /mnt/hda2/KNOPPIX/KNOPPIX . Ahora puede arrancar desde un disquete y usar /mnt/hda2 como imagen. Para más infomración lea [[Hd BasedHowTo]].&lt;br /&gt;
&lt;br /&gt;
Si no tiene una partición extra o no quiere hacerlo, puede usar Qemu ( lea [http://fabrice.bellard.free.fr/qemu/] ) con la imagen ISO de esta forma:&lt;br /&gt;
'''qemu -m 128 -cdrom /temp/knoppix-custom.iso -boot d -user-net'''&lt;br /&gt;
Ni siquiera necesita construir imagen de disco antes, simplemente instale Qemu y pruebe esto. ¡Asombroso!&lt;br /&gt;
&lt;br /&gt;
==== Arranque de imágenes de Knoppix con GRUB ====&lt;br /&gt;
* Primero copie /boot del cd de Knoppix a su partición de arranque (o incluso a su partición dos). Yo nombré el mío boot.knoppix&lt;br /&gt;
''' Copie el directorio /KNOPPIX a su '''directorio raíz* de cualquir disco duro. Puede colocarlo en cualquier otra partición distinta a la de arranque. (puede ser ext2/3, reiserfs o vfat)&lt;br /&gt;
* Coloque los siguiente en el fichero /boot/grub/menu.lst:&lt;br /&gt;
 title           KNOPPIX&lt;br /&gt;
 root            (hd0,0)&lt;br /&gt;
 kernel  /boot.knoppix/vmlinuz 2 fromhd=/dev/hda4 lang=us&lt;br /&gt;
 initrd  /boot.knoppix/miniroot.gz&lt;br /&gt;
* tenga en cuenta que el parámetro fromhd: es el lugar donde está el directorio /KNOPPIX&lt;br /&gt;
* reinicie y disfrute.&lt;br /&gt;
&lt;br /&gt;
Si mi howto (cómo) es demasiado confuso, o le gustaría una segunda opinión, mire el bonito howto de charan : http://gnubox.dyndns.org:8080/~sunil/knoppix.php .&lt;br /&gt;
Otro Howto en http://www.stirnimann.com/mystuff/doc/knoppix.txt&lt;br /&gt;
&lt;br /&gt;
Hay un asistente, que utiliza todos los pasos de desempaquetado, compresión y grabación de CD mencionados aquí. También muestra una consola donde puede actualizar el sistema KNOPPIX descomprimido usando herramientas de estándar de instalación de software Debian. Se llama mmkcdrom y part del paquete de scripts: [http://rcswww.urz.tu-dresden.de/~holzhey/plugscript]&lt;br /&gt;
&lt;br /&gt;
Otro HOWTO más, para los freaks de la consola, en http://quozl.linux.org.au/knoppix/&lt;br /&gt;
&lt;br /&gt;
Asegúrese de que echa un vistazo a [http://knoppix.net/forum/viewforum.php?f=2 Knoppix Customization Forum] para ideas y ayuda con la remasterización.&lt;br /&gt;
----&lt;br /&gt;
Este es el esquema de directorios recomendado para remasterizar KNOPPIX:&lt;br /&gt;
 . (invoque ../remaster desde aquí)&lt;br /&gt;
 |-- master (invoke ../../[[u]]mountbootimage from here)&lt;br /&gt;
 |   |-- KNOPPIX&lt;br /&gt;
 |   |   |-- KNOPPIX (compressed image)&lt;br /&gt;
 |   |   |-- boot.img (boot floppy image)&lt;br /&gt;
 |   |   `-- (other files snipped)&lt;br /&gt;
 |   `-- index.html&lt;br /&gt;
 `-- source&lt;br /&gt;
 `-- KNOPPIX (se puede hacer chroot sobre este directorio)&lt;br /&gt;
 |-- bin&lt;br /&gt;
 |-- boot&lt;br /&gt;
 |-- cdrom&lt;br /&gt;
 |-- dev&lt;br /&gt;
 |-- etc&lt;br /&gt;
 |-- floppy&lt;br /&gt;
 |-- home&lt;br /&gt;
 |-- initrd&lt;br /&gt;
 |-- lib&lt;br /&gt;
 |-- mnt&lt;br /&gt;
 |-- none&lt;br /&gt;
 |-- opt&lt;br /&gt;
 |-- proc&lt;br /&gt;
 |-- root&lt;br /&gt;
 |-- sbin&lt;br /&gt;
 |-- tmp -&amp;gt; /var/tmp&lt;br /&gt;
 |-- usr&lt;br /&gt;
 |-- var&lt;br /&gt;
 `-- vmlinuz -&amp;gt; boot/vmlinuz-2.4.22-xfs&lt;br /&gt;
----&lt;br /&gt;
el siguiente script &amp;quot;remaster&amp;quot; hará el proceso de remasterización por usted. Úselo como root, u obtendrá derechos de acceso incorrectos en la imagen.&lt;br /&gt;
&lt;br /&gt;
El script ha sido probado con Debian sid del 2004-04-02.&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash -x&lt;br /&gt;
 # This script builds a new KNOPPIX ISO image.&lt;br /&gt;
 # Copyright (C) 2004 by Marc Haber &amp;lt;mh+knoppix-remaster@zugschlus.de&amp;gt;&lt;br /&gt;
 # License: GPL V2&lt;br /&gt;
 &lt;br /&gt;
 ROOT=&amp;quot;$PWD&amp;quot;&lt;br /&gt;
 SOURCE=&amp;quot;$ROOT/source/KNOPPIX&amp;quot;&lt;br /&gt;
 MASTER=&amp;quot;$ROOT/master&amp;quot;&lt;br /&gt;
 CLOOPTARGET=&amp;quot;$ROOT/master/KNOPPIX/KNOPPIX&amp;quot;&lt;br /&gt;
 TARGET=&amp;quot;$ROOT&amp;quot;&lt;br /&gt;
 EXCLUDELIST=&amp;quot;$ROOT/source/excludelist&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 rm -rf $SOURCE/.rr_moved&lt;br /&gt;
 &lt;br /&gt;
 cd $SOURCE&lt;br /&gt;
 mkisofs -R -U -V &amp;quot;KNOPPIX.net filesystem&amp;quot; \&lt;br /&gt;
 -P &amp;quot;KNOPPIX www.knoppix.net&amp;quot; \&lt;br /&gt;
 -hide-rr-moved -cache-inodes -no-bak -pad \&lt;br /&gt;
 -exclude-list $EXCLUDELIST \&lt;br /&gt;
 . | nice -5 /usr/bin/create''compressed''fs - 65536 &amp;gt; $CLOOPTARGET&lt;br /&gt;
 &lt;br /&gt;
 cd $MASTER&lt;br /&gt;
 rm -f KNOPPIX/md5sums&lt;br /&gt;
 find -type f -not -name md5sums -not -name boot.cat -exec md5sum {} \; &amp;gt;&amp;gt; KNOPPIX/md5sums&lt;br /&gt;
 mkisofs -pad -l -r -J -v -V &amp;quot;KNOPPIX&amp;quot; -b KNOPPIX/boot.img \&lt;br /&gt;
 -c KNOPPIX/boot.cat -hide-rr-moved -o $TARGET/knoppix.iso $MASTER&lt;br /&gt;
----&lt;br /&gt;
El siguiente script montará la imagen de arranque de disquete y la imagen initrd para su modificación. La función umount construirá una nueva imagen initrd y la pondrá de vuelta en la imagen de arranque del disquete.&lt;br /&gt;
&lt;br /&gt;
El script ha sido probado con Debian sid del 2004-01-13.&lt;br /&gt;
&amp;lt;!-- lines starting with space a preformatted --&amp;gt;&lt;br /&gt;
 #!/bin/bash -x&lt;br /&gt;
 # This script will loop-mount boot floppy and initrd image&lt;br /&gt;
 # Copyright (C) 2004 by Marc Haber &amp;lt;mh+knoppix-remaster@zugschlus.de&amp;gt;&lt;br /&gt;
 # License: GPL V2&lt;br /&gt;
 unset CDPATH || true&lt;br /&gt;
 &lt;br /&gt;
 # if not root, re-invoke self as root&lt;br /&gt;
 if [[ &amp;quot;`id -u`&amp;quot; -ne 0 ]]; then&lt;br /&gt;
 export LOCUSER=&amp;quot;$USER&amp;quot;&lt;br /&gt;
 export LOCHOME=&amp;quot;$HOME&amp;quot;&lt;br /&gt;
 if [[ &amp;quot;${SHELLOPTS/xtrace/}&amp;quot; != &amp;quot;$SHELLOPTS&amp;quot; ]]; then&lt;br /&gt;
 sudo bash -x $0 $@&lt;br /&gt;
 exit $?&lt;br /&gt;
 else&lt;br /&gt;
 sudo $0 $@&lt;br /&gt;
 exit $?&lt;br /&gt;
 fi&lt;br /&gt;
 else&lt;br /&gt;
 LOCUSER=&amp;quot;${LOCUSER:-$USER}&amp;quot;&lt;br /&gt;
 LOCHOME=&amp;quot;${LOCHOME:-$HOME}&amp;quot;&lt;br /&gt;
 fi&lt;br /&gt;
 set -e&lt;br /&gt;
 &lt;br /&gt;
 KNOPPIXDIR=&amp;quot;KNOPPIX&amp;quot;&lt;br /&gt;
 BOOTIMGFILE=&amp;quot;$KNOPPIXDIR/boot.img&amp;quot;&lt;br /&gt;
 BOOTIMGFS=&amp;quot;vfat&amp;quot;&lt;br /&gt;
 BOOTIMGDIR=&amp;quot;boot.img&amp;quot;&lt;br /&gt;
 INITRDGZ=&amp;quot;$BOOTIMGDIR/miniroot.gz&amp;quot;&lt;br /&gt;
 INITRDFILE=&amp;quot;$KNOPPIXDIR/miniroot&amp;quot;&lt;br /&gt;
 INITRDFS=&amp;quot;ext2&amp;quot;&lt;br /&gt;
 INITRDDIR=&amp;quot;miniroot&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 mountbootimage() {&lt;br /&gt;
 if ! modprobe loop; then&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: cannot load loop module&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if ! [[ -e &amp;quot;$BOOTIMGFILE&amp;quot; ]]; then&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: no $BOOTIMGFILE found&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 for nofile in $BOOTIMGDIR $INITRDGZ $INITRDFILE $INITRDDIR; do&lt;br /&gt;
 if [[ -e &amp;quot;$nofile&amp;quot; ]]; then&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: $nofile already exists&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 done&lt;br /&gt;
 &lt;br /&gt;
 mkdir -p $BOOTIMGDIR&lt;br /&gt;
 mount -o loop,uid=$LOCUSER -t $BOOTIMGFS $BOOTIMGFILE $BOOTIMGDIR&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt; $INITRDGZ gunzip &amp;gt; $INITRDFILE&lt;br /&gt;
 mkdir -p $INITRDDIR&lt;br /&gt;
 mount -o loop -t $INITRDFS $INITRDFILE $INITRDDIR&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 umountbootimage() {&lt;br /&gt;
 dd if=/dev/zero of=$INITRDDIR/nullfile || true&lt;br /&gt;
 sync&lt;br /&gt;
 rm $INITRDDIR/nullfile&lt;br /&gt;
 umount $INITRDDIR&lt;br /&gt;
 rmdir $INITRDDIR&lt;br /&gt;
 &amp;lt; $INITRDFILE gzip --best &amp;gt; $INITRDGZ&lt;br /&gt;
 rm -f $INITRDFILE&lt;br /&gt;
 &lt;br /&gt;
 umount $BOOTIMGDIR&lt;br /&gt;
 rmdir $BOOTIMGDIR&lt;br /&gt;
 &lt;br /&gt;
 syslinux KNOPPIX/boot.img&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 case &amp;quot;`basename $0`&amp;quot; in&lt;br /&gt;
 mountbootimage)&lt;br /&gt;
 mountbootimage&lt;br /&gt;
 ;;&lt;br /&gt;
 umountbootimage)&lt;br /&gt;
 umountbootimage&lt;br /&gt;
 ;;&lt;br /&gt;
 *)&lt;br /&gt;
 echo &amp;gt;&amp;amp;2 &amp;quot;ERR: called with unknown name `basename $0`&amp;quot;&lt;br /&gt;
 exit 1&lt;br /&gt;
 ;;&lt;br /&gt;
 esac&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Mailing_List_Deutsch</id>
		<title>Mailing List Deutsch</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Mailing_List_Deutsch"/>
				<updated>2005-01-04T21:29:37Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Englische Version: [[Mailing List]]&lt;br /&gt;
----&lt;br /&gt;
Die Debian-Knoppix Mailingliste ist der Ort wo die Diskussionen rund um die Entwicklung von Knoppix stattfinden.&lt;br /&gt;
Die Diskussionen finden in Deutsch und Englisch statt.&lt;br /&gt;
&lt;br /&gt;
Die Homepage der Mailingliste findet man unter:&lt;br /&gt;
http://mailman.linuxtag.org/mailman/listinfo/debian-knoppix&lt;br /&gt;
&lt;br /&gt;
und die Archive sind hier:&lt;br /&gt;
http://mailman.linuxtag.org/pipermail/debian-knoppix/&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Downloading_FAQ</id>
		<title>Downloading FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Downloading_FAQ"/>
				<updated>2005-01-04T21:20:11Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Faq DownloadingDeutsch]]&lt;br /&gt;
*Spanish:[[Faq Descarga]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix Faq]]&lt;br /&gt;
----&lt;br /&gt;
:Tip: Use CD-RWs instead of CD-Rs every time you can - save your budget and our environment!&lt;br /&gt;
&lt;br /&gt;
==Q: How do I get the CD/current beta?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities:&lt;br /&gt;
*  Download from one of the mirrors listed at [http://www.knoppix.net/get.php The Knoppix Download Page] . Try to choose the mirror nearest you for best results.&lt;br /&gt;
*  Download with [[Bittorrent]] from [http://torrent.unix-ag.uni-kl.de/ The Unix-AG BitTorrent Tracker]&lt;br /&gt;
*  If a 700Mb download is too much for your bandwidth capabilities,  you can order the newest CD from a retailer on [http://knoppix.net/get.php The Knoppix Order Page]&lt;br /&gt;
&lt;br /&gt;
==Q: Can you download Knoppix in parts if you have a low bandwith (28.8 Kbps) such a pausing the download and continue it another day?==&lt;br /&gt;
&lt;br /&gt;
A: Yes, [[Bittorrent]] supports resume, and so does many ftp clients such as wget ( use wget -c ) or ncftp.&lt;br /&gt;
You can use other [http://www.wikipedia.org/wiki/download download managers] too.&lt;br /&gt;
&lt;br /&gt;
==Q: What are these strange MD5 files that accompany the ISO CD images?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .md5 extension contain checksums for the actual CD [http://www.wikipedia.org/wiki/iso ISO images]. A checksum is a &amp;quot;matching number&amp;quot; for checking files. One can verify that the file matches its original down to the smallest detail. When you download both the ISO image for the CD and its corresponding .md5 file, you can verify that your download was complete and that the contents are unchanged by typing &amp;quot;md5sum -c filename.md5&amp;quot; under Linux/Unix.&lt;br /&gt;
&lt;br /&gt;
Further information about MD5 and programs for various OS's can be found at [http://www.linuxiso.org/viewdoc.php/verifyiso.html LinuxISO.org] and [http://www.fourmilab.ch/md5/ The MD5 Protocol Documentation]. You can download a Windows&amp;amp;trade; version at [http://www.toast442.org/md5gui.shtml this site].&lt;br /&gt;
&lt;br /&gt;
==Q: What are the ASC files that accompany the CD ISO images and MD5 files?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .asc extension are PGP-signed messages that contain the md5sum used for verifying the ISO CD images. With this you can be sure the ISO image and accompanying MD5 file are genuine, because the .asc file containing the MD5 is signed with Klaus Knopper's PGP key. This could only be compromised if someone got hold of the secret key used to sign the message. To verify the file, you need to import PGP key ID 0xBA8F038D from your favorite keyserver, then in Linux you can type &amp;quot;gpg --verify KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso.md5.asc&amp;quot;. Then you must check that the MD5 checksum in the .asc file is the same that the MD5 checksum in the .md5 file.&lt;br /&gt;
&lt;br /&gt;
If you want to verify the signed md5 file and the ISO file in one step, you can type:&lt;br /&gt;
 gpg --decrypt  KNOPPIX_Vxxxxxxxxxxxx.iso.md5.asc | md5sum -c -&lt;br /&gt;
&lt;br /&gt;
==Q: I have downloaded the ISO file, now what ?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities again:&lt;br /&gt;
&lt;br /&gt;
*Linux: you can use the command:&lt;br /&gt;
 cdrecord -v speed=4 dev=0,3,0 filename&lt;br /&gt;
:where dev=0,3,0 is your cdwriter&lt;br /&gt;
&lt;br /&gt;
:('''Attention''', use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to be sure that dev=0,3,0 is you cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controler,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
*Windows quick answer: You will need one 700M blank cd. Use a program such as Nero burning rom. You can get a [http://www.nero.com/en/index.html free trial of Nero from their site].  To burn with this program, skip the wizard and choose File&amp;gt;Burn Image.  Select KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso file,&amp;gt;Burn. (Notice, Nero 6 has a bug preventing it from burning large images, for a patch see: [http://www.knoppix.net/forum/viewtopic.php?t=4974#23520 this forum discussion])&lt;br /&gt;
&lt;br /&gt;
*Windows long answer: Of course the answer depends on the individual program you are using to burn CDs, but all common CD-Writing programs should support the option of burning bootable ISO-Images, you probably just have to find the right menu option. At the address [http://www.knopper.net/knoppix/docs/ for Knoppix documentation] and on some of the KNOPPIX-Mirrors in a directory with the same name, you may find some examples written as short step-by-step documentations from users who successfully completed the procedure. KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso -files are ISO-Images, which uses  &amp;quot;El Torito&amp;quot;-Specification  ([http://www.phoenix.com/resources/specs-cdrom.pdf documented here]).&lt;br /&gt;
&lt;br /&gt;
In the ISO-Image there is not only user-data, but also information about the file structure of the CD itself. If you want to see the file structure, have a look at [http://www.isobuster.com/ Isobuster].&lt;br /&gt;
&lt;br /&gt;
To get the image-file on CD use RAW-Mode of your burning-software (have a look at Bild 1 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
*Select the KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso as filename of the image.&lt;br /&gt;
*Select 2048 Bytes/Sector as the correct data format (see Bild 2 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
Burn your CD as a '''&amp;quot;Single Session CD&amp;quot; or select finalize'''.&lt;br /&gt;
The Mode '''&amp;quot;Disk at once&amp;quot;''' or '''&amp;quot;Track at once&amp;quot;''' should be irrelevant for a&lt;br /&gt;
data-CD (have a look at the Online-Help of your burning software).&lt;br /&gt;
If the CD boots, but they are read errors, try '''&amp;quot;Disk at once&amp;quot;'''.&lt;br /&gt;
&lt;br /&gt;
==== Q: My computer won't boot from CD. What should I do? ====&lt;br /&gt;
&lt;br /&gt;
A: Look in your computer's [http://www.wikipedia.org/wiki/BIOS BIOS] (on many computers you need to push the &amp;quot;delete&amp;quot; or F1 key during the POST) to see whether it is set to boot from CD. If this is already set, your computer may not be able to read the CD (some notebooks have problems with black-coated CD's, for example). Some computers will only use the new BIOS settings after a hard reset.&lt;br /&gt;
&lt;br /&gt;
A: If your computer doesn't support booting from CD, you can create a bootfloppy using the [http://www.wikipedia.org/wiki/rawrite &amp;quot;rawrite&amp;quot;] or better yet the mkfloppy.bat file program in the &amp;quot;KNOPPIX&amp;quot; directory on the CD.&lt;br /&gt;
&lt;br /&gt;
A: Get the Smart Boot Manager, and install to floppy, this should let you boot from any bootable CD. http://btmgr.sourceforge.net/ . If you want to install from windows, download the sbminst.exe and run it from the Command Prompt like :&lt;br /&gt;
'''sbminst.exe -d 0''' to install to floppy drive.&lt;br /&gt;
&lt;br /&gt;
==== Q: I downloaded KNOPPIX via WWW/FTP or got a downloaded version from a friend. My PC will boot off of it, but the bootup stalls after a bit or I only see the background picture, and nothing else happens. What's going on? ====&lt;br /&gt;
&lt;br /&gt;
A: You possibly only got a partial download, or the download was (silently) interrupted. If this is the case the ISO image is defective, and the data in the missing parts cannot be accessed (sometimes one can even &amp;quot;hear&amp;quot; this because of the sound the CD-ROM drive makes due to repeated read attempts). This is fatal because the directory tree is written at the beginning of the CD, so it is usually complete. Thus, you can correctly read the directory tree of the CD. However, reading the actual contents of the missing parts is impossible (in other words, accessing the contents fails). Some possible solutions can be found in the section &amp;quot;What are MD5 files?&amp;quot; and &amp;quot;How can I get the CD?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: After I've used KNOPPIX, my &amp;quot;other&amp;quot; OS suddenly shows a blue screen with the message &amp;quot;File kernel.exe not found or defective&amp;quot; and &amp;quot;reinstall...&amp;quot; shortly after boot. ====&lt;br /&gt;
&lt;br /&gt;
A: Simply take the KNOPPIX CD out of the CD-Rom drive and restart the computer.&lt;br /&gt;
&lt;br /&gt;
==== Q: I see the partitions from my hard disk on the desktop and can access their contents when I click on them, but if I try to write to them I always get the error message &amp;quot;access denied&amp;quot;. How can I write to my existing partitions? ====&lt;br /&gt;
&lt;br /&gt;
A: The general philosophy of KNOPPIX is to allow as little write access as possible. For this reason, existing partitions are either not mounted or only mounted &amp;quot;read only&amp;quot;. If you click with your right mouse button on an icon, the &amp;quot;read-only&amp;quot; attribute under item &amp;quot;device&amp;quot; can be un-checked. After this, the partition can be mounted &amp;quot;read-write&amp;quot; (for already mounted partitions, first click on &amp;quot;unmount&amp;quot;!). CAUTION: writing to NTFS partitions can lead to data loss, since Linux does not really support this file system! However, DOS and FAT32 file systems are safe for write access. Tip: In the shell the command &amp;quot;mount -o remount,rw /mnt/&amp;quot; can allow already-mounted file systems to be &amp;quot;made writeable&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: I have a fast access to a Knoppix-mirror. How can I burn with GNU/Linux this ISO file directly to CD-RW? ====&lt;br /&gt;
&lt;br /&gt;
: - mkfifo KNOPPIX.fifo  # mkfifo create a fifo file&lt;br /&gt;
: - screen ftp mirror ....# screen creates multiple shells in one terminal (handy!) ftp connect to your mirror...&lt;br /&gt;
: get KNOPPIX-3.10-EN.iso KNOPPIX.fifo #command to copy inside your ftp-session&lt;br /&gt;
: - C-a C-c # screen will make a new shell&lt;br /&gt;
: - cdrecord dev=(your burner) speed=4 KNOPPIX.fifo # ftp starts to get data when cdrecord starts to read from fifo&lt;br /&gt;
: wait; exit; rm KNOPPIX.fifo; exit&lt;br /&gt;
(Attention, use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to find the correct device of your cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controller,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
=== OR ===&lt;br /&gt;
''This works well and is much simpler:''&lt;br /&gt;
wget -O - URL''OF''IMAGE | cdrecord -v speed=4 -eject -&lt;br /&gt;
&lt;br /&gt;
==== Q: Must I burn Knoppix on CD-RW to be able to test it? ====&lt;br /&gt;
A: When you run another GNU/Linux system, you can copy the content of the Iso-file to your hd and boot it directly from hd. See [[Hd Based HowTo]].&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I burn an image on to a CD using B's Recorder Gold from BHA? ====&lt;br /&gt;
A: Close the Wizard dialog if it pops up when you start the application. Drag the KNOPPIX-'''*'''.iso file to the lower RIGHT region of the app window. It is shaded in yellow and has the title &amp;quot;Track Type&amp;quot;(The icon with a musical note and a folder will be seen in the middle panel). Right click the left region where it says  &amp;quot;)1 DATA -mode1 and from the popup menu choose properties. Choose &amp;quot;ISO compatible&amp;quot; and &amp;quot;create from standard bootable disk image&amp;quot; in the two selection boxes. Then press the record button (Upper left), pick your options, and Voila - one KNOPPIX bootable CD is yours.&lt;br /&gt;
&lt;br /&gt;
==== Q:Why do 750 MB fit onto an audio CD but only 650 MB onto a data CD? ====&lt;br /&gt;
&lt;br /&gt;
A: A sector of a CD consists of 2352 bytes. With an audio CD, these are used completely for audio information. With data CDs, an additional fault correction is inserted, and the usable capacity shrinks to 2048 bytes. A 74 minute CD consists of 74x60x75 = 333000 sectors. With 2048 bytes per sector, this gives a usable capacity of around 650.1 MB, with 2352 bytes per sector it gives around 746.6 MB. This therefore also produces a difference in data rates for reading/writing: 172 kbps with audio and 150 kbps for data.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why does my writer/software not accept to write to my 80 minute CD-R? ====&lt;br /&gt;
&lt;br /&gt;
A:Some older writers or older versions of writer software cannot recognise the new playing lengths, because the groove is laid more narrowly. Check with your hardware and software manufacturer to see if these newer media are supported. In most cases, updating the writer software's current firmware (check out the web site of the software manufacturer) will solve these problems.&lt;br /&gt;
&lt;br /&gt;
*http://www.cdmediaworld.com/hardware/cdrom/cd_firmwares.shtml&lt;br /&gt;
&lt;br /&gt;
==== Q: What to do if I haven´t got enough space in the CD to burn Knoppix on it?- ====&lt;br /&gt;
A: You can overburn it (http://www.wikipedia.org/wiki/CD ).&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Downloading_FAQ</id>
		<title>Downloading FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Downloading_FAQ"/>
				<updated>2005-01-04T21:19:47Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: wiki should be clean of []&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Faq DownloadingDeutsch]]&lt;br /&gt;
*Spanish:[[Faq Descarga]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix Faq]]&lt;br /&gt;
----&lt;br /&gt;
:Tip: Use CD-RWs instead of CD-Rs every time you can - save your budget and our environment!&lt;br /&gt;
&lt;br /&gt;
==Q: How do I get the CD/current beta?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities:&lt;br /&gt;
*  Download from one of the mirrors listed at [http://www.knoppix.net/get.php The Knoppix Download Page] . Try to choose the mirror nearest you for best results.&lt;br /&gt;
*  Download with [[Bittorrent]] from [http://torrent.unix-ag.uni-kl.de/ The Unix-AG BitTorrent Tracker]&lt;br /&gt;
*  If a 700Mb download is too much for your bandwidth capabilities,  you can order the newest CD from a retailer on [http://knoppix.net/get.php The Knoppix Order Page]&lt;br /&gt;
&lt;br /&gt;
==Q: Can you download Knoppix in parts if you have a low bandwith (28.8 Kbps) such a pausing the download and continue it another day?==&lt;br /&gt;
&lt;br /&gt;
A: Yes, [[Bittorrent]] supports resume, and so does many ftp clients such as wget ( use wget -c ) or ncftp.&lt;br /&gt;
You can use other [http://www.wikipedia.org/wiki/download download managers] too.&lt;br /&gt;
&lt;br /&gt;
==Q: What are these strange MD5 files that accompany the ISO CD images?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .md5 extension contain checksums for the actual CD [http://www.wikipedia.org/wiki/iso ISO images]. A checksum is a &amp;quot;matching number&amp;quot; for checking files. One can verify that the file matches its original down to the smallest detail. When you download both the ISO image for the CD and its corresponding .md5 file, you can verify that your download was complete and that the contents are unchanged by typing &amp;quot;md5sum -c filename.md5&amp;quot; under Linux/Unix.&lt;br /&gt;
&lt;br /&gt;
Further information about MD5 and programs for various OS's can be found at [http://www.linuxiso.org/viewdoc.php/verifyiso.html LinuxISO.org] and [http://www.fourmilab.ch/md5/ The MD5 Protocol Documentation]. You can download a Windows&amp;amp;trade; version at [http://www.toast442.org/md5gui.shtml this site].&lt;br /&gt;
&lt;br /&gt;
==Q: What are the ASC files that accompany the CD ISO images and MD5 files?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .asc extension are PGP-signed messages that contain the md5sum used for verifying the ISO CD images. With this you can be sure the ISO image and accompanying MD5 file are genuine, because the .asc file containing the MD5 is signed with Klaus Knopper's PGP key. This could only be compromised if someone got hold of the secret key used to sign the message. To verify the file, you need to import PGP key ID 0xBA8F038D from your favorite keyserver, then in Linux you can type &amp;quot;gpg --verify KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso.md5.asc&amp;quot;. Then you must check that the MD5 checksum in the .asc file is the same that the MD5 checksum in the .md5 file.&lt;br /&gt;
&lt;br /&gt;
If you want to verify the signed md5 file and the ISO file in one step, you can type:&lt;br /&gt;
 gpg --decrypt  KNOPPIX_Vxxxxxxxxxxxx.iso.md5.asc | md5sum -c -&lt;br /&gt;
&lt;br /&gt;
==Q: I have downloaded the ISO file, now what ?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities again:&lt;br /&gt;
&lt;br /&gt;
*Linux: you can use the command:&lt;br /&gt;
 cdrecord -v speed=4 dev=0,3,0 filename&lt;br /&gt;
:where dev=0,3,0 is your cdwriter&lt;br /&gt;
&lt;br /&gt;
:('''Attention''', use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to be sure that dev=0,3,0 is you cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controler,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
*Windows quick answer: You will need one 700M blank cd. Use a program such as Nero burning rom. You can get a [http://www.nero.com/en/index.html free trial of Nero from their site].  To burn with this program, skip the wizard and choose File&amp;gt;Burn Image.  Select KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso file,&amp;gt;Burn. (Notice, Nero 6 has a bug preventing it from burning large images, for a patch see: [http://www.knoppix.net/forum/viewtopic.php?t=4974#23520 this forum discussion])&lt;br /&gt;
&lt;br /&gt;
*Windows long answer: Of course the answer depends on the individual program you are using to burn CDs, but all common CD-Writing programs should support the option of burning bootable ISO-Images, you probably just have to find the right menu option. At the address [http://www.knopper.net/knoppix/docs/ for Knoppix documentation] and on some of the KNOPPIX-Mirrors in a directory with the same name, you may find some examples written as short step-by-step documentations from users who successfully completed the procedure. KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso -files are ISO-Images, which uses  &amp;quot;El Torito&amp;quot;-Specification  ([http://www.phoenix.com/resources/specs-cdrom.pdf documented here]).&lt;br /&gt;
&lt;br /&gt;
In the ISO-Image there is not only user-data, but also information about the file structure of the CD itself. If you want to see the file structure, have a look at [http://www.isobuster.com/ Isobuster].&lt;br /&gt;
&lt;br /&gt;
To get the image-file on CD use RAW-Mode of your burning-software (have a look at Bild 1 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
*Select the KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso as filename of the image.&lt;br /&gt;
*Select 2048 Bytes/Sector as the correct data format (see Bild 2 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
Burn your CD as a '''&amp;quot;Single Session CD&amp;quot; or select finalize'''.&lt;br /&gt;
The Mode '''&amp;quot;Disk at once&amp;quot;''' or '''&amp;quot;Track at once&amp;quot;''' should be irrelevant for a&lt;br /&gt;
data-CD (have a look at the Online-Help of your burning software).&lt;br /&gt;
If the CD boots, but they are read errors, try '''&amp;quot;Disk at once&amp;quot;'''.&lt;br /&gt;
&lt;br /&gt;
==== Q: My computer won't boot from CD. What should I do? ====&lt;br /&gt;
&lt;br /&gt;
A: Look in your computer's [http://www.wikipedia.org/wiki/BIOS BIOS] (on many computers you need to push the &amp;quot;delete&amp;quot; or F1 key during the POST) to see whether it is set to boot from CD. If this is already set, your computer may not be able to read the CD (some notebooks have problems with black-coated CD's, for example). Some computers will only use the new BIOS settings after a hard reset.&lt;br /&gt;
&lt;br /&gt;
A: If your computer doesn't support booting from CD, you can create a bootfloppy using the [http://www.wikipedia.org/wiki/rawrite &amp;quot;rawrite&amp;quot;] or better yet the mkfloppy.bat file program in the &amp;quot;KNOPPIX&amp;quot; directory on the CD.&lt;br /&gt;
&lt;br /&gt;
A: Get the Smart Boot Manager, and install to floppy, this should let you boot from any bootable CD. http://btmgr.sourceforge.net/ . If you want to install from windows, download the sbminst.exe and run it from the Command Prompt like :&lt;br /&gt;
'''sbminst.exe -d 0''' to install to floppy drive.&lt;br /&gt;
&lt;br /&gt;
==== Q: I downloaded KNOPPIX via WWW/FTP or got a downloaded version from a friend. My PC will boot off of it, but the bootup stalls after a bit or I only see the background picture, and nothing else happens. What's going on? ====&lt;br /&gt;
&lt;br /&gt;
A: You possibly only got a partial download, or the download was (silently) interrupted. If this is the case the ISO image is defective, and the data in the missing parts cannot be accessed (sometimes one can even &amp;quot;hear&amp;quot; this because of the sound the CD-ROM drive makes due to repeated read attempts). This is fatal because the directory tree is written at the beginning of the CD, so it is usually complete. Thus, you can correctly read the directory tree of the CD. However, reading the actual contents of the missing parts is impossible (in other words, accessing the contents fails). Some possible solutions can be found in the section &amp;quot;What are MD5 files?&amp;quot; and &amp;quot;How can I get the CD?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: After I've used KNOPPIX, my &amp;quot;other&amp;quot; OS suddenly shows a blue screen with the message &amp;quot;File kernel.exe not found or defective&amp;quot; and &amp;quot;reinstall...&amp;quot; shortly after boot. ====&lt;br /&gt;
&lt;br /&gt;
A: Simply take the KNOPPIX CD out of the CD-Rom drive and restart the computer.&lt;br /&gt;
&lt;br /&gt;
==== Q: I see the partitions from my hard disk on the desktop and can access their contents when I click on them, but if I try to write to them I always get the error message &amp;quot;access denied&amp;quot;. How can I write to my existing partitions? ====&lt;br /&gt;
&lt;br /&gt;
A: The general philosophy of KNOPPIX is to allow as little write access as possible. For this reason, existing partitions are either not mounted or only mounted &amp;quot;read only&amp;quot;. If you click with your right mouse button on an icon, the &amp;quot;read-only&amp;quot; attribute under item &amp;quot;device&amp;quot; can be un-checked. After this, the partition can be mounted &amp;quot;read-write&amp;quot; (for already mounted partitions, first click on &amp;quot;unmount&amp;quot;!). CAUTION: writing to NTFS partitions can lead to data loss, since Linux does not really support this file system! However, DOS and FAT32 file systems are safe for write access. Tip: In the shell the command &amp;quot;mount -o remount,rw /mnt/&amp;quot; can allow already-mounted file systems to be &amp;quot;made writeable&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: I have a fast access to a Knoppix-mirror. How can I burn with GNU/Linux this ISO file directly to CD-RW? ====&lt;br /&gt;
&lt;br /&gt;
: - mkfifo KNOPPIX.fifo  # mkfifo create a fifo file&lt;br /&gt;
: - screen ftp mirror ....# screen creates multiple shells in one terminal (handy!) ftp connect to your mirror...&lt;br /&gt;
: get KNOPPIX-3.10-EN.iso KNOPPIX.fifo #command to copy inside your ftp-session&lt;br /&gt;
: - C-a C-c # screen will make a new shell&lt;br /&gt;
: - cdrecord dev=(your burner) speed=4 KNOPPIX.fifo # ftp starts to get data when cdrecord starts to read from fifo&lt;br /&gt;
: wait; exit; rm KNOPPIX.fifo; exit&lt;br /&gt;
(Attention, use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to find the correct device of your cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controller,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
=== OR ===&lt;br /&gt;
''This works well and is much simpler:''&lt;br /&gt;
wget -O - URL''OF''IMAGE | cdrecord -v speed=4 -eject -&lt;br /&gt;
&lt;br /&gt;
==== Q: Must I burn Knoppix on CD-RW to be able to test it? ====&lt;br /&gt;
A: When you run another GNU/Linux system, you can copy the content of the Iso-file to your hd and boot it directly from hd. See [[Hd Based HowTo]].&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I burn an image on to a CD using B's Recorder Gold from BHA? ====&lt;br /&gt;
A: Close the Wizard dialog if it pops up when you start the application. Drag the KNOPPIX-'''*'''.iso file to the lower RIGHT region of the app window. It is shaded in yellow and has the title &amp;quot;Track Type&amp;quot;(The icon with a musical note and a folder will be seen in the middle panel). Right click the left region where it says  &amp;quot;)1 DATA -mode1 and from the popup menu choose properties. Choose &amp;quot;ISO compatible&amp;quot; and &amp;quot;create from standard bootable disk image&amp;quot; in the two selection boxes. Then press the record button (Upper left), pick your options, and Voila - one KNOPPIX bootable CD is yours.&lt;br /&gt;
&lt;br /&gt;
==== Q:Why do 750 MB fit onto an audio CD but only 650 MB onto a data CD? ====&lt;br /&gt;
&lt;br /&gt;
A: A sector of a CD consists of 2352 bytes. With an audio CD, these are used completely for audio information. With data CDs, an additional fault correction is inserted, and the usable capacity shrinks to 2048 bytes. A 74 minute CD consists of 74x60x75 = 333000 sectors. With 2048 bytes per sector, this gives a usable capacity of around 650.1 MB, with 2352 bytes per sector it gives around 746.6 MB. This therefore also produces a difference in data rates for reading/writing: 172 kbps with audio and 150 kbps for data.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why does my writer/software not accept to write to my 80 minute CD-R? ====&lt;br /&gt;
&lt;br /&gt;
A:Some older writers or older versions of writer software cannot recognise the new playing lengths, because the groove is laid more narrowly. Check with your hardware and software manufacturer to see if these newer media are supported. In most cases, updating the writer software's current firmware (check out the web site of the software manufacturer) will solve these problems.&lt;br /&gt;
&lt;br /&gt;
*http://www.cdmediaworld.com/hardware/cdrom/cd_firmwares.shtml&lt;br /&gt;
&lt;br /&gt;
==== Q: What to do if I haven´t got enough space in the CD to burn Knoppix on it?- ====&lt;br /&gt;
A: You can overburn it (http://www.wikipedia.org/wiki/CD).&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Downloading_FAQ</id>
		<title>Downloading FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Downloading_FAQ"/>
				<updated>2005-01-04T21:19:23Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: Why does my writer/software not accept to write to my 80 minute CD-R? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Faq DownloadingDeutsch]]&lt;br /&gt;
*Spanish:[[Faq Descarga]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix Faq]]&lt;br /&gt;
----&lt;br /&gt;
:Tip: Use CD-RWs instead of CD-Rs every time you can - save your budget and our environment!&lt;br /&gt;
&lt;br /&gt;
==Q: How do I get the CD/current beta?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities:&lt;br /&gt;
*  Download from one of the mirrors listed at [http://www.knoppix.net/get.php The Knoppix Download Page] . Try to choose the mirror nearest you for best results.&lt;br /&gt;
*  Download with [[Bittorrent]] from [http://torrent.unix-ag.uni-kl.de/ The Unix-AG BitTorrent Tracker]&lt;br /&gt;
*  If a 700Mb download is too much for your bandwidth capabilities,  you can order the newest CD from a retailer on [http://knoppix.net/get.php The Knoppix Order Page]&lt;br /&gt;
&lt;br /&gt;
==Q: Can you download Knoppix in parts if you have a low bandwith (28.8 Kbps) such a pausing the download and continue it another day?==&lt;br /&gt;
&lt;br /&gt;
A: Yes, [[Bittorrent]] supports resume, and so does many ftp clients such as wget ( use wget -c ) or ncftp.&lt;br /&gt;
You can use other [http://www.wikipedia.org/wiki/download download managers] too.&lt;br /&gt;
&lt;br /&gt;
==Q: What are these strange MD5 files that accompany the ISO CD images?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .md5 extension contain checksums for the actual CD [http://www.wikipedia.org/wiki/iso ISO images]. A checksum is a &amp;quot;matching number&amp;quot; for checking files. One can verify that the file matches its original down to the smallest detail. When you download both the ISO image for the CD and its corresponding .md5 file, you can verify that your download was complete and that the contents are unchanged by typing &amp;quot;md5sum -c filename.md5&amp;quot; under Linux/Unix.&lt;br /&gt;
&lt;br /&gt;
Further information about MD5 and programs for various OS's can be found at [http://www.linuxiso.org/viewdoc.php/verifyiso.html LinuxISO.org] and [http://www.fourmilab.ch/md5/ The MD5 Protocol Documentation]. You can download a Windows&amp;amp;trade; version at [http://www.toast442.org/md5gui.shtml this site].&lt;br /&gt;
&lt;br /&gt;
==Q: What are the ASC files that accompany the CD ISO images and MD5 files?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .asc extension are PGP-signed messages that contain the md5sum used for verifying the ISO CD images. With this you can be sure the ISO image and accompanying MD5 file are genuine, because the .asc file containing the MD5 is signed with Klaus Knopper's PGP key. This could only be compromised if someone got hold of the secret key used to sign the message. To verify the file, you need to import PGP key ID 0xBA8F038D from your favorite keyserver, then in Linux you can type &amp;quot;gpg --verify KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso.md5.asc&amp;quot;. Then you must check that the MD5 checksum in the .asc file is the same that the MD5 checksum in the .md5 file.&lt;br /&gt;
&lt;br /&gt;
If you want to verify the signed md5 file and the ISO file in one step, you can type:&lt;br /&gt;
 gpg --decrypt  KNOPPIX_Vxxxxxxxxxxxx.iso.md5.asc | md5sum -c -&lt;br /&gt;
&lt;br /&gt;
==Q: I have downloaded the ISO file, now what ?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities again:&lt;br /&gt;
&lt;br /&gt;
*Linux: you can use the command:&lt;br /&gt;
 cdrecord -v speed=4 dev=0,3,0 filename&lt;br /&gt;
:where dev=0,3,0 is your cdwriter&lt;br /&gt;
&lt;br /&gt;
:('''Attention''', use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to be sure that dev=0,3,0 is you cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controler,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
*Windows quick answer: You will need one 700M blank cd. Use a program such as Nero burning rom. You can get a [http://www.nero.com/en/index.html free trial of Nero from their site].  To burn with this program, skip the wizard and choose File&amp;gt;Burn Image.  Select KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso file,&amp;gt;Burn. (Notice, Nero 6 has a bug preventing it from burning large images, for a patch see: [http://www.knoppix.net/forum/viewtopic.php?t=4974#23520 this forum discussion])&lt;br /&gt;
&lt;br /&gt;
*Windows long answer: Of course the answer depends on the individual program you are using to burn CDs, but all common CD-Writing programs should support the option of burning bootable ISO-Images, you probably just have to find the right menu option. At the address [http://www.knopper.net/knoppix/docs/ for Knoppix documentation] and on some of the KNOPPIX-Mirrors in a directory with the same name, you may find some examples written as short step-by-step documentations from users who successfully completed the procedure. KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso -files are ISO-Images, which uses  &amp;quot;El Torito&amp;quot;-Specification  ([http://www.phoenix.com/resources/specs-cdrom.pdf documented here]).&lt;br /&gt;
&lt;br /&gt;
In the ISO-Image there is not only user-data, but also information about the file structure of the CD itself. If you want to see the file structure, have a look at [http://www.isobuster.com/ Isobuster].&lt;br /&gt;
&lt;br /&gt;
To get the image-file on CD use RAW-Mode of your burning-software (have a look at Bild 1 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
*Select the KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso as filename of the image.&lt;br /&gt;
*Select 2048 Bytes/Sector as the correct data format (see Bild 2 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
Burn your CD as a '''&amp;quot;Single Session CD&amp;quot; or select finalize'''.&lt;br /&gt;
The Mode '''&amp;quot;Disk at once&amp;quot;''' or '''&amp;quot;Track at once&amp;quot;''' should be irrelevant for a&lt;br /&gt;
data-CD (have a look at the Online-Help of your burning software).&lt;br /&gt;
If the CD boots, but they are read errors, try '''&amp;quot;Disk at once&amp;quot;'''.&lt;br /&gt;
&lt;br /&gt;
==== Q: My computer won't boot from CD. What should I do? ====&lt;br /&gt;
&lt;br /&gt;
A: Look in your computer's [http://www.wikipedia.org/wiki/BIOS BIOS] (on many computers you need to push the &amp;quot;delete&amp;quot; or F1 key during the POST) to see whether it is set to boot from CD. If this is already set, your computer may not be able to read the CD (some notebooks have problems with black-coated CD's, for example). Some computers will only use the new BIOS settings after a hard reset.&lt;br /&gt;
&lt;br /&gt;
A: If your computer doesn't support booting from CD, you can create a bootfloppy using the [http://www.wikipedia.org/wiki/rawrite &amp;quot;rawrite&amp;quot;] or better yet the mkfloppy.bat file program in the &amp;quot;KNOPPIX&amp;quot; directory on the CD.&lt;br /&gt;
&lt;br /&gt;
A: Get the Smart Boot Manager, and install to floppy, this should let you boot from any bootable CD. http://btmgr.sourceforge.net/ . If you want to install from windows, download the sbminst.exe and run it from the Command Prompt like :&lt;br /&gt;
'''sbminst.exe -d 0''' to install to floppy drive.&lt;br /&gt;
&lt;br /&gt;
==== Q: I downloaded KNOPPIX via WWW/FTP or got a downloaded version from a friend. My PC will boot off of it, but the bootup stalls after a bit or I only see the background picture, and nothing else happens. What's going on? ====&lt;br /&gt;
&lt;br /&gt;
A: You possibly only got a partial download, or the download was (silently) interrupted. If this is the case the ISO image is defective, and the data in the missing parts cannot be accessed (sometimes one can even &amp;quot;hear&amp;quot; this because of the sound the CD-ROM drive makes due to repeated read attempts). This is fatal because the directory tree is written at the beginning of the CD, so it is usually complete. Thus, you can correctly read the directory tree of the CD. However, reading the actual contents of the missing parts is impossible (in other words, accessing the contents fails). Some possible solutions can be found in the section &amp;quot;What are MD5 files?&amp;quot; and &amp;quot;How can I get the CD?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: After I've used KNOPPIX, my &amp;quot;other&amp;quot; OS suddenly shows a blue screen with the message &amp;quot;File kernel.exe not found or defective&amp;quot; and &amp;quot;reinstall...&amp;quot; shortly after boot. ====&lt;br /&gt;
&lt;br /&gt;
A: Simply take the KNOPPIX CD out of the CD-Rom drive and restart the computer.&lt;br /&gt;
&lt;br /&gt;
==== Q: I see the partitions from my hard disk on the desktop and can access their contents when I click on them, but if I try to write to them I always get the error message &amp;quot;access denied&amp;quot;. How can I write to my existing partitions? ====&lt;br /&gt;
&lt;br /&gt;
A: The general philosophy of KNOPPIX is to allow as little write access as possible. For this reason, existing partitions are either not mounted or only mounted &amp;quot;read only&amp;quot;. If you click with your right mouse button on an icon, the &amp;quot;read-only&amp;quot; attribute under item &amp;quot;device&amp;quot; can be un-checked. After this, the partition can be mounted &amp;quot;read-write&amp;quot; (for already mounted partitions, first click on &amp;quot;unmount&amp;quot;!). CAUTION: writing to NTFS partitions can lead to data loss, since Linux does not really support this file system! However, DOS and FAT32 file systems are safe for write access. Tip: In the shell the command &amp;quot;mount -o remount,rw /mnt/&amp;quot; can allow already-mounted file systems to be &amp;quot;made writeable&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: I have a fast access to a Knoppix-mirror. How can I burn with GNU/Linux this ISO file directly to CD-RW? ====&lt;br /&gt;
&lt;br /&gt;
: - mkfifo KNOPPIX.fifo  # mkfifo create a fifo file&lt;br /&gt;
: - screen ftp mirror ....# screen creates multiple shells in one terminal (handy!) ftp connect to your mirror...&lt;br /&gt;
: get KNOPPIX-3.10-EN.iso KNOPPIX.fifo #command to copy inside your ftp-session&lt;br /&gt;
: - C-a C-c # screen will make a new shell&lt;br /&gt;
: - cdrecord dev=(your burner) speed=4 KNOPPIX.fifo # ftp starts to get data when cdrecord starts to read from fifo&lt;br /&gt;
: wait; exit; rm KNOPPIX.fifo; exit&lt;br /&gt;
(Attention, use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to find the correct device of your cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controller,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
=== OR ===&lt;br /&gt;
''This works well and is much simpler:''&lt;br /&gt;
wget -O - URL''OF''IMAGE | cdrecord -v speed=4 -eject -&lt;br /&gt;
&lt;br /&gt;
==== Q: Must I burn Knoppix on CD-RW to be able to test it? ====&lt;br /&gt;
A: When you run another GNU/Linux system, you can copy the content of the Iso-file to your hd and boot it directly from hd. See [[Hd Based HowTo]].&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I burn an image on to a CD using B's Recorder Gold from BHA? ====&lt;br /&gt;
A: Close the Wizard dialog if it pops up when you start the application. Drag the KNOPPIX-'''*'''.iso file to the lower RIGHT region of the app window. It is shaded in yellow and has the title &amp;quot;Track Type&amp;quot;(The icon with a musical note and a folder will be seen in the middle panel). Right click the left region where it says  &amp;quot;)1 DATA -mode1 and from the popup menu choose properties. Choose &amp;quot;ISO compatible&amp;quot; and &amp;quot;create from standard bootable disk image&amp;quot; in the two selection boxes. Then press the record button (Upper left), pick your options, and Voila - one KNOPPIX bootable CD is yours.&lt;br /&gt;
&lt;br /&gt;
==== Q:Why do 750 MB fit onto an audio CD but only 650 MB onto a data CD? ====&lt;br /&gt;
&lt;br /&gt;
A: A sector of a CD consists of 2352 bytes. With an audio CD, these are used completely for audio information. With data CDs, an additional fault correction is inserted, and the usable capacity shrinks to 2048 bytes. A 74 minute CD consists of 74x60x75 = 333000 sectors. With 2048 bytes per sector, this gives a usable capacity of around 650.1 MB, with 2352 bytes per sector it gives around 746.6 MB. This therefore also produces a difference in data rates for reading/writing: 172 kbps with audio and 150 kbps for data.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why does my writer/software not accept to write to my 80 minute CD-R? ====&lt;br /&gt;
&lt;br /&gt;
A:Some older writers or older versions of writer software cannot recognise the new playing lengths, because the groove is laid more narrowly. Check with your hardware and software manufacturer to see if these newer media are supported. In most cases, updating the writer software's current firmware (check out the web site of the software manufacturer) will solve these problems.&lt;br /&gt;
&lt;br /&gt;
*http://www.cdmediaworld.com/hardware/cdrom/cd_firmwares.shtml&lt;br /&gt;
&lt;br /&gt;
==== Q: What to do if I haven´t got enough space in the CD to burn Knoppix on it?- ====&lt;br /&gt;
A: You can overburn it ([http://www.wikipedia.org/wiki/CD).]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Downloading_FAQ</id>
		<title>Downloading FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Downloading_FAQ"/>
				<updated>2005-01-04T21:16:55Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: My computer won't boot from CD. What should I do? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Faq DownloadingDeutsch]]&lt;br /&gt;
*Spanish:[[Faq Descarga]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix Faq]]&lt;br /&gt;
----&lt;br /&gt;
:Tip: Use CD-RWs instead of CD-Rs every time you can - save your budget and our environment!&lt;br /&gt;
&lt;br /&gt;
==Q: How do I get the CD/current beta?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities:&lt;br /&gt;
*  Download from one of the mirrors listed at [http://www.knoppix.net/get.php The Knoppix Download Page] . Try to choose the mirror nearest you for best results.&lt;br /&gt;
*  Download with [[Bittorrent]] from [http://torrent.unix-ag.uni-kl.de/ The Unix-AG BitTorrent Tracker]&lt;br /&gt;
*  If a 700Mb download is too much for your bandwidth capabilities,  you can order the newest CD from a retailer on [http://knoppix.net/get.php The Knoppix Order Page]&lt;br /&gt;
&lt;br /&gt;
==Q: Can you download Knoppix in parts if you have a low bandwith (28.8 Kbps) such a pausing the download and continue it another day?==&lt;br /&gt;
&lt;br /&gt;
A: Yes, [[Bittorrent]] supports resume, and so does many ftp clients such as wget ( use wget -c ) or ncftp.&lt;br /&gt;
You can use other [http://www.wikipedia.org/wiki/download download managers] too.&lt;br /&gt;
&lt;br /&gt;
==Q: What are these strange MD5 files that accompany the ISO CD images?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .md5 extension contain checksums for the actual CD [http://www.wikipedia.org/wiki/iso ISO images]. A checksum is a &amp;quot;matching number&amp;quot; for checking files. One can verify that the file matches its original down to the smallest detail. When you download both the ISO image for the CD and its corresponding .md5 file, you can verify that your download was complete and that the contents are unchanged by typing &amp;quot;md5sum -c filename.md5&amp;quot; under Linux/Unix.&lt;br /&gt;
&lt;br /&gt;
Further information about MD5 and programs for various OS's can be found at [http://www.linuxiso.org/viewdoc.php/verifyiso.html LinuxISO.org] and [http://www.fourmilab.ch/md5/ The MD5 Protocol Documentation]. You can download a Windows&amp;amp;trade; version at [http://www.toast442.org/md5gui.shtml this site].&lt;br /&gt;
&lt;br /&gt;
==Q: What are the ASC files that accompany the CD ISO images and MD5 files?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .asc extension are PGP-signed messages that contain the md5sum used for verifying the ISO CD images. With this you can be sure the ISO image and accompanying MD5 file are genuine, because the .asc file containing the MD5 is signed with Klaus Knopper's PGP key. This could only be compromised if someone got hold of the secret key used to sign the message. To verify the file, you need to import PGP key ID 0xBA8F038D from your favorite keyserver, then in Linux you can type &amp;quot;gpg --verify KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso.md5.asc&amp;quot;. Then you must check that the MD5 checksum in the .asc file is the same that the MD5 checksum in the .md5 file.&lt;br /&gt;
&lt;br /&gt;
If you want to verify the signed md5 file and the ISO file in one step, you can type:&lt;br /&gt;
 gpg --decrypt  KNOPPIX_Vxxxxxxxxxxxx.iso.md5.asc | md5sum -c -&lt;br /&gt;
&lt;br /&gt;
==Q: I have downloaded the ISO file, now what ?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities again:&lt;br /&gt;
&lt;br /&gt;
*Linux: you can use the command:&lt;br /&gt;
 cdrecord -v speed=4 dev=0,3,0 filename&lt;br /&gt;
:where dev=0,3,0 is your cdwriter&lt;br /&gt;
&lt;br /&gt;
:('''Attention''', use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to be sure that dev=0,3,0 is you cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controler,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
*Windows quick answer: You will need one 700M blank cd. Use a program such as Nero burning rom. You can get a [http://www.nero.com/en/index.html free trial of Nero from their site].  To burn with this program, skip the wizard and choose File&amp;gt;Burn Image.  Select KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso file,&amp;gt;Burn. (Notice, Nero 6 has a bug preventing it from burning large images, for a patch see: [http://www.knoppix.net/forum/viewtopic.php?t=4974#23520 this forum discussion])&lt;br /&gt;
&lt;br /&gt;
*Windows long answer: Of course the answer depends on the individual program you are using to burn CDs, but all common CD-Writing programs should support the option of burning bootable ISO-Images, you probably just have to find the right menu option. At the address [http://www.knopper.net/knoppix/docs/ for Knoppix documentation] and on some of the KNOPPIX-Mirrors in a directory with the same name, you may find some examples written as short step-by-step documentations from users who successfully completed the procedure. KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso -files are ISO-Images, which uses  &amp;quot;El Torito&amp;quot;-Specification  ([http://www.phoenix.com/resources/specs-cdrom.pdf documented here]).&lt;br /&gt;
&lt;br /&gt;
In the ISO-Image there is not only user-data, but also information about the file structure of the CD itself. If you want to see the file structure, have a look at [http://www.isobuster.com/ Isobuster].&lt;br /&gt;
&lt;br /&gt;
To get the image-file on CD use RAW-Mode of your burning-software (have a look at Bild 1 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
*Select the KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso as filename of the image.&lt;br /&gt;
*Select 2048 Bytes/Sector as the correct data format (see Bild 2 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
Burn your CD as a '''&amp;quot;Single Session CD&amp;quot; or select finalize'''.&lt;br /&gt;
The Mode '''&amp;quot;Disk at once&amp;quot;''' or '''&amp;quot;Track at once&amp;quot;''' should be irrelevant for a&lt;br /&gt;
data-CD (have a look at the Online-Help of your burning software).&lt;br /&gt;
If the CD boots, but they are read errors, try '''&amp;quot;Disk at once&amp;quot;'''.&lt;br /&gt;
&lt;br /&gt;
==== Q: My computer won't boot from CD. What should I do? ====&lt;br /&gt;
&lt;br /&gt;
A: Look in your computer's [http://www.wikipedia.org/wiki/BIOS BIOS] (on many computers you need to push the &amp;quot;delete&amp;quot; or F1 key during the POST) to see whether it is set to boot from CD. If this is already set, your computer may not be able to read the CD (some notebooks have problems with black-coated CD's, for example). Some computers will only use the new BIOS settings after a hard reset.&lt;br /&gt;
&lt;br /&gt;
A: If your computer doesn't support booting from CD, you can create a bootfloppy using the [http://www.wikipedia.org/wiki/rawrite &amp;quot;rawrite&amp;quot;] or better yet the mkfloppy.bat file program in the &amp;quot;KNOPPIX&amp;quot; directory on the CD.&lt;br /&gt;
&lt;br /&gt;
A: Get the Smart Boot Manager, and install to floppy, this should let you boot from any bootable CD. http://btmgr.sourceforge.net/ . If you want to install from windows, download the sbminst.exe and run it from the Command Prompt like :&lt;br /&gt;
'''sbminst.exe -d 0''' to install to floppy drive.&lt;br /&gt;
&lt;br /&gt;
==== Q: I downloaded KNOPPIX via WWW/FTP or got a downloaded version from a friend. My PC will boot off of it, but the bootup stalls after a bit or I only see the background picture, and nothing else happens. What's going on? ====&lt;br /&gt;
&lt;br /&gt;
A: You possibly only got a partial download, or the download was (silently) interrupted. If this is the case the ISO image is defective, and the data in the missing parts cannot be accessed (sometimes one can even &amp;quot;hear&amp;quot; this because of the sound the CD-ROM drive makes due to repeated read attempts). This is fatal because the directory tree is written at the beginning of the CD, so it is usually complete. Thus, you can correctly read the directory tree of the CD. However, reading the actual contents of the missing parts is impossible (in other words, accessing the contents fails). Some possible solutions can be found in the section &amp;quot;What are MD5 files?&amp;quot; and &amp;quot;How can I get the CD?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: After I've used KNOPPIX, my &amp;quot;other&amp;quot; OS suddenly shows a blue screen with the message &amp;quot;File kernel.exe not found or defective&amp;quot; and &amp;quot;reinstall...&amp;quot; shortly after boot. ====&lt;br /&gt;
&lt;br /&gt;
A: Simply take the KNOPPIX CD out of the CD-Rom drive and restart the computer.&lt;br /&gt;
&lt;br /&gt;
==== Q: I see the partitions from my hard disk on the desktop and can access their contents when I click on them, but if I try to write to them I always get the error message &amp;quot;access denied&amp;quot;. How can I write to my existing partitions? ====&lt;br /&gt;
&lt;br /&gt;
A: The general philosophy of KNOPPIX is to allow as little write access as possible. For this reason, existing partitions are either not mounted or only mounted &amp;quot;read only&amp;quot;. If you click with your right mouse button on an icon, the &amp;quot;read-only&amp;quot; attribute under item &amp;quot;device&amp;quot; can be un-checked. After this, the partition can be mounted &amp;quot;read-write&amp;quot; (for already mounted partitions, first click on &amp;quot;unmount&amp;quot;!). CAUTION: writing to NTFS partitions can lead to data loss, since Linux does not really support this file system! However, DOS and FAT32 file systems are safe for write access. Tip: In the shell the command &amp;quot;mount -o remount,rw /mnt/&amp;quot; can allow already-mounted file systems to be &amp;quot;made writeable&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: I have a fast access to a Knoppix-mirror. How can I burn with GNU/Linux this ISO file directly to CD-RW? ====&lt;br /&gt;
&lt;br /&gt;
: - mkfifo KNOPPIX.fifo  # mkfifo create a fifo file&lt;br /&gt;
: - screen ftp mirror ....# screen creates multiple shells in one terminal (handy!) ftp connect to your mirror...&lt;br /&gt;
: get KNOPPIX-3.10-EN.iso KNOPPIX.fifo #command to copy inside your ftp-session&lt;br /&gt;
: - C-a C-c # screen will make a new shell&lt;br /&gt;
: - cdrecord dev=(your burner) speed=4 KNOPPIX.fifo # ftp starts to get data when cdrecord starts to read from fifo&lt;br /&gt;
: wait; exit; rm KNOPPIX.fifo; exit&lt;br /&gt;
(Attention, use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to find the correct device of your cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controller,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
=== OR ===&lt;br /&gt;
''This works well and is much simpler:''&lt;br /&gt;
wget -O - URL''OF''IMAGE | cdrecord -v speed=4 -eject -&lt;br /&gt;
&lt;br /&gt;
==== Q: Must I burn Knoppix on CD-RW to be able to test it? ====&lt;br /&gt;
A: When you run another GNU/Linux system, you can copy the content of the Iso-file to your hd and boot it directly from hd. See [[Hd Based HowTo]].&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I burn an image on to a CD using B's Recorder Gold from BHA? ====&lt;br /&gt;
A: Close the Wizard dialog if it pops up when you start the application. Drag the KNOPPIX-'''*'''.iso file to the lower RIGHT region of the app window. It is shaded in yellow and has the title &amp;quot;Track Type&amp;quot;(The icon with a musical note and a folder will be seen in the middle panel). Right click the left region where it says  &amp;quot;)1 DATA -mode1 and from the popup menu choose properties. Choose &amp;quot;ISO compatible&amp;quot; and &amp;quot;create from standard bootable disk image&amp;quot; in the two selection boxes. Then press the record button (Upper left), pick your options, and Voila - one KNOPPIX bootable CD is yours.&lt;br /&gt;
&lt;br /&gt;
==== Q:Why do 750 MB fit onto an audio CD but only 650 MB onto a data CD? ====&lt;br /&gt;
&lt;br /&gt;
A: A sector of a CD consists of 2352 bytes. With an audio CD, these are used completely for audio information. With data CDs, an additional fault correction is inserted, and the usable capacity shrinks to 2048 bytes. A 74 minute CD consists of 74x60x75 = 333000 sectors. With 2048 bytes per sector, this gives a usable capacity of around 650.1 MB, with 2352 bytes per sector it gives around 746.6 MB. This therefore also produces a difference in data rates for reading/writing: 172 kbps with audio and 150 kbps for data.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why does my writer/software not accept to write to my 80 minute CD-R? ====&lt;br /&gt;
&lt;br /&gt;
A:Some older writers or older versions of writer software cannot recognise the new playing lengths, because the groove is laid more narrowly. Check with your hardware and software manufacturer to see if these newer media are supported. In most cases, updating the writer software's current firmware (check out the web site of the software manufacturer) will solve these problems.&lt;br /&gt;
&lt;br /&gt;
*[http://www.cdmediaworld.com/hardware/cdrom/cd_firmwares.shtml]&lt;br /&gt;
&lt;br /&gt;
==== Q: What to do if I haven´t got enough space in the CD to burn Knoppix on it?- ====&lt;br /&gt;
A: You can overburn it ([http://www.wikipedia.org/wiki/CD).]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Downloading_FAQ</id>
		<title>Downloading FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Downloading_FAQ"/>
				<updated>2005-01-04T21:15:29Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: Must I burn Knoppix on CD-RW to be able to test it? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Faq DownloadingDeutsch]]&lt;br /&gt;
*Spanish:[[Faq Descarga]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix Faq]]&lt;br /&gt;
----&lt;br /&gt;
:Tip: Use CD-RWs instead of CD-Rs every time you can - save your budget and our environment!&lt;br /&gt;
&lt;br /&gt;
==Q: How do I get the CD/current beta?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities:&lt;br /&gt;
*  Download from one of the mirrors listed at [http://www.knoppix.net/get.php The Knoppix Download Page] . Try to choose the mirror nearest you for best results.&lt;br /&gt;
*  Download with [[Bittorrent]] from [http://torrent.unix-ag.uni-kl.de/ The Unix-AG BitTorrent Tracker]&lt;br /&gt;
*  If a 700Mb download is too much for your bandwidth capabilities,  you can order the newest CD from a retailer on [http://knoppix.net/get.php The Knoppix Order Page]&lt;br /&gt;
&lt;br /&gt;
==Q: Can you download Knoppix in parts if you have a low bandwith (28.8 Kbps) such a pausing the download and continue it another day?==&lt;br /&gt;
&lt;br /&gt;
A: Yes, [[Bittorrent]] supports resume, and so does many ftp clients such as wget ( use wget -c ) or ncftp.&lt;br /&gt;
You can use other [http://www.wikipedia.org/wiki/download download managers] too.&lt;br /&gt;
&lt;br /&gt;
==Q: What are these strange MD5 files that accompany the ISO CD images?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .md5 extension contain checksums for the actual CD [http://www.wikipedia.org/wiki/iso ISO images]. A checksum is a &amp;quot;matching number&amp;quot; for checking files. One can verify that the file matches its original down to the smallest detail. When you download both the ISO image for the CD and its corresponding .md5 file, you can verify that your download was complete and that the contents are unchanged by typing &amp;quot;md5sum -c filename.md5&amp;quot; under Linux/Unix.&lt;br /&gt;
&lt;br /&gt;
Further information about MD5 and programs for various OS's can be found at [http://www.linuxiso.org/viewdoc.php/verifyiso.html LinuxISO.org] and [http://www.fourmilab.ch/md5/ The MD5 Protocol Documentation]. You can download a Windows&amp;amp;trade; version at [http://www.toast442.org/md5gui.shtml this site].&lt;br /&gt;
&lt;br /&gt;
==Q: What are the ASC files that accompany the CD ISO images and MD5 files?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .asc extension are PGP-signed messages that contain the md5sum used for verifying the ISO CD images. With this you can be sure the ISO image and accompanying MD5 file are genuine, because the .asc file containing the MD5 is signed with Klaus Knopper's PGP key. This could only be compromised if someone got hold of the secret key used to sign the message. To verify the file, you need to import PGP key ID 0xBA8F038D from your favorite keyserver, then in Linux you can type &amp;quot;gpg --verify KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso.md5.asc&amp;quot;. Then you must check that the MD5 checksum in the .asc file is the same that the MD5 checksum in the .md5 file.&lt;br /&gt;
&lt;br /&gt;
If you want to verify the signed md5 file and the ISO file in one step, you can type:&lt;br /&gt;
 gpg --decrypt  KNOPPIX_Vxxxxxxxxxxxx.iso.md5.asc | md5sum -c -&lt;br /&gt;
&lt;br /&gt;
==Q: I have downloaded the ISO file, now what ?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities again:&lt;br /&gt;
&lt;br /&gt;
*Linux: you can use the command:&lt;br /&gt;
 cdrecord -v speed=4 dev=0,3,0 filename&lt;br /&gt;
:where dev=0,3,0 is your cdwriter&lt;br /&gt;
&lt;br /&gt;
:('''Attention''', use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to be sure that dev=0,3,0 is you cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controler,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
*Windows quick answer: You will need one 700M blank cd. Use a program such as Nero burning rom. You can get a [http://www.nero.com/en/index.html free trial of Nero from their site].  To burn with this program, skip the wizard and choose File&amp;gt;Burn Image.  Select KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso file,&amp;gt;Burn. (Notice, Nero 6 has a bug preventing it from burning large images, for a patch see: [http://www.knoppix.net/forum/viewtopic.php?t=4974#23520 this forum discussion])&lt;br /&gt;
&lt;br /&gt;
*Windows long answer: Of course the answer depends on the individual program you are using to burn CDs, but all common CD-Writing programs should support the option of burning bootable ISO-Images, you probably just have to find the right menu option. At the address [http://www.knopper.net/knoppix/docs/ for Knoppix documentation] and on some of the KNOPPIX-Mirrors in a directory with the same name, you may find some examples written as short step-by-step documentations from users who successfully completed the procedure. KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso -files are ISO-Images, which uses  &amp;quot;El Torito&amp;quot;-Specification  ([http://www.phoenix.com/resources/specs-cdrom.pdf documented here]).&lt;br /&gt;
&lt;br /&gt;
In the ISO-Image there is not only user-data, but also information about the file structure of the CD itself. If you want to see the file structure, have a look at [http://www.isobuster.com/ Isobuster].&lt;br /&gt;
&lt;br /&gt;
To get the image-file on CD use RAW-Mode of your burning-software (have a look at Bild 1 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
*Select the KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso as filename of the image.&lt;br /&gt;
*Select 2048 Bytes/Sector as the correct data format (see Bild 2 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
Burn your CD as a '''&amp;quot;Single Session CD&amp;quot; or select finalize'''.&lt;br /&gt;
The Mode '''&amp;quot;Disk at once&amp;quot;''' or '''&amp;quot;Track at once&amp;quot;''' should be irrelevant for a&lt;br /&gt;
data-CD (have a look at the Online-Help of your burning software).&lt;br /&gt;
If the CD boots, but they are read errors, try '''&amp;quot;Disk at once&amp;quot;'''.&lt;br /&gt;
&lt;br /&gt;
==== Q: My computer won't boot from CD. What should I do? ====&lt;br /&gt;
&lt;br /&gt;
A: Look in your computer's [http://www.wikipedia.org/wiki/BIOS BIOS] (on many computers you need to push the &amp;quot;delete&amp;quot; or F1 key during the POST) to see whether it is set to boot from CD. If this is already set, your computer may not be able to read the CD (some notebooks have problems with black-coated CD's, for example). Some computers will only use the new BIOS settings after a hard reset.&lt;br /&gt;
&lt;br /&gt;
A: If your computer doesn't support booting from CD, you can create a [[http://www.wikipedia.org/wiki/rawrite [bootfloppy]] using the [&amp;quot;rawrite&amp;quot;]] or better yet the mkfloppy.bat file program in the &amp;quot;KNOPPIX&amp;quot; directory on the CD.&lt;br /&gt;
&lt;br /&gt;
A: Get the Smart Boot Manager, and install to floppy, this should let you boot from any bootable CD. http://btmgr.sourceforge.net/ . If you want to install from windows, download the sbminst.exe and run it from the Command Prompt like :&lt;br /&gt;
'''sbminst.exe -d 0''' to install to floppy drive.&lt;br /&gt;
&lt;br /&gt;
==== Q: I downloaded KNOPPIX via WWW/FTP or got a downloaded version from a friend. My PC will boot off of it, but the bootup stalls after a bit or I only see the background picture, and nothing else happens. What's going on? ====&lt;br /&gt;
&lt;br /&gt;
A: You possibly only got a partial download, or the download was (silently) interrupted. If this is the case the ISO image is defective, and the data in the missing parts cannot be accessed (sometimes one can even &amp;quot;hear&amp;quot; this because of the sound the CD-ROM drive makes due to repeated read attempts). This is fatal because the directory tree is written at the beginning of the CD, so it is usually complete. Thus, you can correctly read the directory tree of the CD. However, reading the actual contents of the missing parts is impossible (in other words, accessing the contents fails). Some possible solutions can be found in the section &amp;quot;What are MD5 files?&amp;quot; and &amp;quot;How can I get the CD?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: After I've used KNOPPIX, my &amp;quot;other&amp;quot; OS suddenly shows a blue screen with the message &amp;quot;File kernel.exe not found or defective&amp;quot; and &amp;quot;reinstall...&amp;quot; shortly after boot. ====&lt;br /&gt;
&lt;br /&gt;
A: Simply take the KNOPPIX CD out of the CD-Rom drive and restart the computer.&lt;br /&gt;
&lt;br /&gt;
==== Q: I see the partitions from my hard disk on the desktop and can access their contents when I click on them, but if I try to write to them I always get the error message &amp;quot;access denied&amp;quot;. How can I write to my existing partitions? ====&lt;br /&gt;
&lt;br /&gt;
A: The general philosophy of KNOPPIX is to allow as little write access as possible. For this reason, existing partitions are either not mounted or only mounted &amp;quot;read only&amp;quot;. If you click with your right mouse button on an icon, the &amp;quot;read-only&amp;quot; attribute under item &amp;quot;device&amp;quot; can be un-checked. After this, the partition can be mounted &amp;quot;read-write&amp;quot; (for already mounted partitions, first click on &amp;quot;unmount&amp;quot;!). CAUTION: writing to NTFS partitions can lead to data loss, since Linux does not really support this file system! However, DOS and FAT32 file systems are safe for write access. Tip: In the shell the command &amp;quot;mount -o remount,rw /mnt/&amp;quot; can allow already-mounted file systems to be &amp;quot;made writeable&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: I have a fast access to a Knoppix-mirror. How can I burn with GNU/Linux this ISO file directly to CD-RW? ====&lt;br /&gt;
&lt;br /&gt;
: - mkfifo KNOPPIX.fifo  # mkfifo create a fifo file&lt;br /&gt;
: - screen ftp mirror ....# screen creates multiple shells in one terminal (handy!) ftp connect to your mirror...&lt;br /&gt;
: get KNOPPIX-3.10-EN.iso KNOPPIX.fifo #command to copy inside your ftp-session&lt;br /&gt;
: - C-a C-c # screen will make a new shell&lt;br /&gt;
: - cdrecord dev=(your burner) speed=4 KNOPPIX.fifo # ftp starts to get data when cdrecord starts to read from fifo&lt;br /&gt;
: wait; exit; rm KNOPPIX.fifo; exit&lt;br /&gt;
(Attention, use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to find the correct device of your cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controller,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
=== OR ===&lt;br /&gt;
''This works well and is much simpler:''&lt;br /&gt;
wget -O - URL''OF''IMAGE | cdrecord -v speed=4 -eject -&lt;br /&gt;
&lt;br /&gt;
==== Q: Must I burn Knoppix on CD-RW to be able to test it? ====&lt;br /&gt;
A: When you run another GNU/Linux system, you can copy the content of the Iso-file to your hd and boot it directly from hd. See [[Hd Based HowTo]].&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I burn an image on to a CD using B's Recorder Gold from BHA? ====&lt;br /&gt;
A: Close the Wizard dialog if it pops up when you start the application. Drag the KNOPPIX-'''*'''.iso file to the lower RIGHT region of the app window. It is shaded in yellow and has the title &amp;quot;Track Type&amp;quot;(The icon with a musical note and a folder will be seen in the middle panel). Right click the left region where it says  &amp;quot;)1 DATA -mode1 and from the popup menu choose properties. Choose &amp;quot;ISO compatible&amp;quot; and &amp;quot;create from standard bootable disk image&amp;quot; in the two selection boxes. Then press the record button (Upper left), pick your options, and Voila - one KNOPPIX bootable CD is yours.&lt;br /&gt;
&lt;br /&gt;
==== Q:Why do 750 MB fit onto an audio CD but only 650 MB onto a data CD? ====&lt;br /&gt;
&lt;br /&gt;
A: A sector of a CD consists of 2352 bytes. With an audio CD, these are used completely for audio information. With data CDs, an additional fault correction is inserted, and the usable capacity shrinks to 2048 bytes. A 74 minute CD consists of 74x60x75 = 333000 sectors. With 2048 bytes per sector, this gives a usable capacity of around 650.1 MB, with 2352 bytes per sector it gives around 746.6 MB. This therefore also produces a difference in data rates for reading/writing: 172 kbps with audio and 150 kbps for data.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why does my writer/software not accept to write to my 80 minute CD-R? ====&lt;br /&gt;
&lt;br /&gt;
A:Some older writers or older versions of writer software cannot recognise the new playing lengths, because the groove is laid more narrowly. Check with your hardware and software manufacturer to see if these newer media are supported. In most cases, updating the writer software's current firmware (check out the web site of the software manufacturer) will solve these problems.&lt;br /&gt;
&lt;br /&gt;
*[http://www.cdmediaworld.com/hardware/cdrom/cd_firmwares.shtml]&lt;br /&gt;
&lt;br /&gt;
==== Q: What to do if I haven´t got enough space in the CD to burn Knoppix on it?- ====&lt;br /&gt;
A: You can overburn it ([http://www.wikipedia.org/wiki/CD).]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Downloading_FAQ</id>
		<title>Downloading FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Downloading_FAQ"/>
				<updated>2005-01-04T21:14:55Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: My computer won't boot from CD. What should I do? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Faq DownloadingDeutsch]]&lt;br /&gt;
*Spanish:[[Faq Descarga]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix Faq]]&lt;br /&gt;
----&lt;br /&gt;
:Tip: Use CD-RWs instead of CD-Rs every time you can - save your budget and our environment!&lt;br /&gt;
&lt;br /&gt;
==Q: How do I get the CD/current beta?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities:&lt;br /&gt;
*  Download from one of the mirrors listed at [http://www.knoppix.net/get.php The Knoppix Download Page] . Try to choose the mirror nearest you for best results.&lt;br /&gt;
*  Download with [[Bittorrent]] from [http://torrent.unix-ag.uni-kl.de/ The Unix-AG BitTorrent Tracker]&lt;br /&gt;
*  If a 700Mb download is too much for your bandwidth capabilities,  you can order the newest CD from a retailer on [http://knoppix.net/get.php The Knoppix Order Page]&lt;br /&gt;
&lt;br /&gt;
==Q: Can you download Knoppix in parts if you have a low bandwith (28.8 Kbps) such a pausing the download and continue it another day?==&lt;br /&gt;
&lt;br /&gt;
A: Yes, [[Bittorrent]] supports resume, and so does many ftp clients such as wget ( use wget -c ) or ncftp.&lt;br /&gt;
You can use other [http://www.wikipedia.org/wiki/download download managers] too.&lt;br /&gt;
&lt;br /&gt;
==Q: What are these strange MD5 files that accompany the ISO CD images?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .md5 extension contain checksums for the actual CD [http://www.wikipedia.org/wiki/iso ISO images]. A checksum is a &amp;quot;matching number&amp;quot; for checking files. One can verify that the file matches its original down to the smallest detail. When you download both the ISO image for the CD and its corresponding .md5 file, you can verify that your download was complete and that the contents are unchanged by typing &amp;quot;md5sum -c filename.md5&amp;quot; under Linux/Unix.&lt;br /&gt;
&lt;br /&gt;
Further information about MD5 and programs for various OS's can be found at [http://www.linuxiso.org/viewdoc.php/verifyiso.html LinuxISO.org] and [http://www.fourmilab.ch/md5/ The MD5 Protocol Documentation]. You can download a Windows&amp;amp;trade; version at [http://www.toast442.org/md5gui.shtml this site].&lt;br /&gt;
&lt;br /&gt;
==Q: What are the ASC files that accompany the CD ISO images and MD5 files?==&lt;br /&gt;
&lt;br /&gt;
A: The files with the .asc extension are PGP-signed messages that contain the md5sum used for verifying the ISO CD images. With this you can be sure the ISO image and accompanying MD5 file are genuine, because the .asc file containing the MD5 is signed with Klaus Knopper's PGP key. This could only be compromised if someone got hold of the secret key used to sign the message. To verify the file, you need to import PGP key ID 0xBA8F038D from your favorite keyserver, then in Linux you can type &amp;quot;gpg --verify KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso.md5.asc&amp;quot;. Then you must check that the MD5 checksum in the .asc file is the same that the MD5 checksum in the .md5 file.&lt;br /&gt;
&lt;br /&gt;
If you want to verify the signed md5 file and the ISO file in one step, you can type:&lt;br /&gt;
 gpg --decrypt  KNOPPIX_Vxxxxxxxxxxxx.iso.md5.asc | md5sum -c -&lt;br /&gt;
&lt;br /&gt;
==Q: I have downloaded the ISO file, now what ?==&lt;br /&gt;
&lt;br /&gt;
A: Several possibilities again:&lt;br /&gt;
&lt;br /&gt;
*Linux: you can use the command:&lt;br /&gt;
 cdrecord -v speed=4 dev=0,3,0 filename&lt;br /&gt;
:where dev=0,3,0 is your cdwriter&lt;br /&gt;
&lt;br /&gt;
:('''Attention''', use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to be sure that dev=0,3,0 is you cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controler,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
*Windows quick answer: You will need one 700M blank cd. Use a program such as Nero burning rom. You can get a [http://www.nero.com/en/index.html free trial of Nero from their site].  To burn with this program, skip the wizard and choose File&amp;gt;Burn Image.  Select KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso file,&amp;gt;Burn. (Notice, Nero 6 has a bug preventing it from burning large images, for a patch see: [http://www.knoppix.net/forum/viewtopic.php?t=4974#23520 this forum discussion])&lt;br /&gt;
&lt;br /&gt;
*Windows long answer: Of course the answer depends on the individual program you are using to burn CDs, but all common CD-Writing programs should support the option of burning bootable ISO-Images, you probably just have to find the right menu option. At the address [http://www.knopper.net/knoppix/docs/ for Knoppix documentation] and on some of the KNOPPIX-Mirrors in a directory with the same name, you may find some examples written as short step-by-step documentations from users who successfully completed the procedure. KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso -files are ISO-Images, which uses  &amp;quot;El Torito&amp;quot;-Specification  ([http://www.phoenix.com/resources/specs-cdrom.pdf documented here]).&lt;br /&gt;
&lt;br /&gt;
In the ISO-Image there is not only user-data, but also information about the file structure of the CD itself. If you want to see the file structure, have a look at [http://www.isobuster.com/ Isobuster].&lt;br /&gt;
&lt;br /&gt;
To get the image-file on CD use RAW-Mode of your burning-software (have a look at Bild 1 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
*Select the KNOPPIX_Vxxxxxxxxxxxxxxxxx.iso as filename of the image.&lt;br /&gt;
*Select 2048 Bytes/Sector as the correct data format (see Bild 2 WinOnCD German Edition).&lt;br /&gt;
&lt;br /&gt;
Burn your CD as a '''&amp;quot;Single Session CD&amp;quot; or select finalize'''.&lt;br /&gt;
The Mode '''&amp;quot;Disk at once&amp;quot;''' or '''&amp;quot;Track at once&amp;quot;''' should be irrelevant for a&lt;br /&gt;
data-CD (have a look at the Online-Help of your burning software).&lt;br /&gt;
If the CD boots, but they are read errors, try '''&amp;quot;Disk at once&amp;quot;'''.&lt;br /&gt;
&lt;br /&gt;
==== Q: My computer won't boot from CD. What should I do? ====&lt;br /&gt;
&lt;br /&gt;
A: Look in your computer's [http://www.wikipedia.org/wiki/BIOS BIOS] (on many computers you need to push the &amp;quot;delete&amp;quot; or F1 key during the POST) to see whether it is set to boot from CD. If this is already set, your computer may not be able to read the CD (some notebooks have problems with black-coated CD's, for example). Some computers will only use the new BIOS settings after a hard reset.&lt;br /&gt;
&lt;br /&gt;
A: If your computer doesn't support booting from CD, you can create a [[http://www.wikipedia.org/wiki/rawrite [bootfloppy]] using the [&amp;quot;rawrite&amp;quot;]] or better yet the mkfloppy.bat file program in the &amp;quot;KNOPPIX&amp;quot; directory on the CD.&lt;br /&gt;
&lt;br /&gt;
A: Get the Smart Boot Manager, and install to floppy, this should let you boot from any bootable CD. http://btmgr.sourceforge.net/ . If you want to install from windows, download the sbminst.exe and run it from the Command Prompt like :&lt;br /&gt;
'''sbminst.exe -d 0''' to install to floppy drive.&lt;br /&gt;
&lt;br /&gt;
==== Q: I downloaded KNOPPIX via WWW/FTP or got a downloaded version from a friend. My PC will boot off of it, but the bootup stalls after a bit or I only see the background picture, and nothing else happens. What's going on? ====&lt;br /&gt;
&lt;br /&gt;
A: You possibly only got a partial download, or the download was (silently) interrupted. If this is the case the ISO image is defective, and the data in the missing parts cannot be accessed (sometimes one can even &amp;quot;hear&amp;quot; this because of the sound the CD-ROM drive makes due to repeated read attempts). This is fatal because the directory tree is written at the beginning of the CD, so it is usually complete. Thus, you can correctly read the directory tree of the CD. However, reading the actual contents of the missing parts is impossible (in other words, accessing the contents fails). Some possible solutions can be found in the section &amp;quot;What are MD5 files?&amp;quot; and &amp;quot;How can I get the CD?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: After I've used KNOPPIX, my &amp;quot;other&amp;quot; OS suddenly shows a blue screen with the message &amp;quot;File kernel.exe not found or defective&amp;quot; and &amp;quot;reinstall...&amp;quot; shortly after boot. ====&lt;br /&gt;
&lt;br /&gt;
A: Simply take the KNOPPIX CD out of the CD-Rom drive and restart the computer.&lt;br /&gt;
&lt;br /&gt;
==== Q: I see the partitions from my hard disk on the desktop and can access their contents when I click on them, but if I try to write to them I always get the error message &amp;quot;access denied&amp;quot;. How can I write to my existing partitions? ====&lt;br /&gt;
&lt;br /&gt;
A: The general philosophy of KNOPPIX is to allow as little write access as possible. For this reason, existing partitions are either not mounted or only mounted &amp;quot;read only&amp;quot;. If you click with your right mouse button on an icon, the &amp;quot;read-only&amp;quot; attribute under item &amp;quot;device&amp;quot; can be un-checked. After this, the partition can be mounted &amp;quot;read-write&amp;quot; (for already mounted partitions, first click on &amp;quot;unmount&amp;quot;!). CAUTION: writing to NTFS partitions can lead to data loss, since Linux does not really support this file system! However, DOS and FAT32 file systems are safe for write access. Tip: In the shell the command &amp;quot;mount -o remount,rw /mnt/&amp;quot; can allow already-mounted file systems to be &amp;quot;made writeable&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== Q: I have a fast access to a Knoppix-mirror. How can I burn with GNU/Linux this ISO file directly to CD-RW? ====&lt;br /&gt;
&lt;br /&gt;
: - mkfifo KNOPPIX.fifo  # mkfifo create a fifo file&lt;br /&gt;
: - screen ftp mirror ....# screen creates multiple shells in one terminal (handy!) ftp connect to your mirror...&lt;br /&gt;
: get KNOPPIX-3.10-EN.iso KNOPPIX.fifo #command to copy inside your ftp-session&lt;br /&gt;
: - C-a C-c # screen will make a new shell&lt;br /&gt;
: - cdrecord dev=(your burner) speed=4 KNOPPIX.fifo # ftp starts to get data when cdrecord starts to read from fifo&lt;br /&gt;
: wait; exit; rm KNOPPIX.fifo; exit&lt;br /&gt;
(Attention, use &amp;quot;cdrecord -scanbus&amp;quot; before cdrecord to find the correct device of your cd-writer. If you own SCSI hds, you could lose all data of one hd when you use cdrecord with a wrong dev=(controller,id,partiton) !)&lt;br /&gt;
&lt;br /&gt;
=== OR ===&lt;br /&gt;
''This works well and is much simpler:''&lt;br /&gt;
wget -O - URL''OF''IMAGE | cdrecord -v speed=4 -eject -&lt;br /&gt;
&lt;br /&gt;
==== Q: Must I burn Knoppix on CD-RW to be able to test it? ====&lt;br /&gt;
A: When you run another GNU/Linux system, you can copy the content of the Iso-file to your hd and boot it directly from hd. See [[Hd BasedHowTo]].&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I burn an image on to a CD using B's Recorder Gold from BHA? ====&lt;br /&gt;
A: Close the Wizard dialog if it pops up when you start the application. Drag the KNOPPIX-'''*'''.iso file to the lower RIGHT region of the app window. It is shaded in yellow and has the title &amp;quot;Track Type&amp;quot;(The icon with a musical note and a folder will be seen in the middle panel). Right click the left region where it says  &amp;quot;)1 DATA -mode1 and from the popup menu choose properties. Choose &amp;quot;ISO compatible&amp;quot; and &amp;quot;create from standard bootable disk image&amp;quot; in the two selection boxes. Then press the record button (Upper left), pick your options, and Voila - one KNOPPIX bootable CD is yours.&lt;br /&gt;
&lt;br /&gt;
==== Q:Why do 750 MB fit onto an audio CD but only 650 MB onto a data CD? ====&lt;br /&gt;
&lt;br /&gt;
A: A sector of a CD consists of 2352 bytes. With an audio CD, these are used completely for audio information. With data CDs, an additional fault correction is inserted, and the usable capacity shrinks to 2048 bytes. A 74 minute CD consists of 74x60x75 = 333000 sectors. With 2048 bytes per sector, this gives a usable capacity of around 650.1 MB, with 2352 bytes per sector it gives around 746.6 MB. This therefore also produces a difference in data rates for reading/writing: 172 kbps with audio and 150 kbps for data.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why does my writer/software not accept to write to my 80 minute CD-R? ====&lt;br /&gt;
&lt;br /&gt;
A:Some older writers or older versions of writer software cannot recognise the new playing lengths, because the groove is laid more narrowly. Check with your hardware and software manufacturer to see if these newer media are supported. In most cases, updating the writer software's current firmware (check out the web site of the software manufacturer) will solve these problems.&lt;br /&gt;
&lt;br /&gt;
*[http://www.cdmediaworld.com/hardware/cdrom/cd_firmwares.shtml]&lt;br /&gt;
&lt;br /&gt;
==== Q: What to do if I haven´t got enough space in the CD to burn Knoppix on it?- ====&lt;br /&gt;
A: You can overburn it ([http://www.wikipedia.org/wiki/CD).]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Hd_Install_HowTo</id>
		<title>Hd Install HowTo</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Hd_Install_HowTo"/>
				<updated>2005-01-04T21:11:37Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You CAN install newer versions of Knoppix on harddisk, if you wish,&lt;br /&gt;
though installation is not required for productive use. If you want to&lt;br /&gt;
do this, you should just make sure there is some empty space on your&lt;br /&gt;
harddrive so you can create at least 2 Linux partitions, one for the&lt;br /&gt;
System (for Knoppix, minimal approx. 3 GB) and about minimal 200MB for [http://www.wikipedia.org/wiki/Virtual_memory Swap] during the&lt;br /&gt;
installation process. It is VERY important that the swap space partition is of type &amp;quot;Linux Swap space&amp;quot; (or equivelent&amp;quot;). A partitioning program is integrated in the knoppix-installer.&lt;br /&gt;
&lt;br /&gt;
It´s recommend to use 5 GB for root partition and 400 MB for swap partition.&lt;br /&gt;
&lt;br /&gt;
''(NOTE: Be sure the root partition is the first partition on the drive, is formatted with ext2 or ext3, and is set to &amp;quot;active.&amp;quot; The swap partition must be formatted with &amp;quot;linux-swap.&amp;quot; Installation and subsequent booting will not continue otherwise.)''&lt;br /&gt;
&lt;br /&gt;
You should get Knoppix version 3.4 or later and type '''sudo knoppix-installer''' in the shell if you want to do this.&lt;br /&gt;
Please ALWAYS make sure that you have a working backup of your important data prior to&lt;br /&gt;
experimenting with ANY new software, no matter if Windows, Linux or&lt;br /&gt;
anything else. Have a look here for more info about [http://en.wikipedia.org/wiki/Sudo sudo].&lt;br /&gt;
&lt;br /&gt;
In knoppix-installer, arrow keys move focus and space bar selects options.&lt;br /&gt;
&lt;br /&gt;
Note: Do '''not''' use &amp;quot;knx-hdinstall&amp;quot; anymore. &amp;quot;knx-hdinstall&amp;quot; is no longer maintained, use &amp;quot;knoppix-installer&amp;quot; instead.&lt;br /&gt;
&lt;br /&gt;
Or the [http://download.linuxtag.org/knoppix/KNOPPIX-FAQ-EN.txt Knopper FAQ] on doing it manually.&lt;br /&gt;
Once knoppix is installed on a hard disk, it's no longer a Knoppix;-) it's a&lt;br /&gt;
uncompressed complete Debian GNU/Linux.&lt;br /&gt;
&lt;br /&gt;
=== Blind Installation ===&lt;br /&gt;
It's possible to install Knoppix on a PC's hd without a monitor, see [[Hd Install Without a Monitor HowTo]]&lt;br /&gt;
&lt;br /&gt;
=== Updating HD installation ===&lt;br /&gt;
&lt;br /&gt;
You can do a&lt;br /&gt;
&lt;br /&gt;
 for i in $(COLUMNS=240 dpkg -l | awk '{print $2}')&lt;br /&gt;
 do:&lt;br /&gt;
 echo dpkg-repack --root=/KNOPPIX &amp;quot;$i&amp;quot;&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
to create packages from a running KNOPPIX CD to a writable harddisk&lt;br /&gt;
partition, and install/update these packages with dpkg -i.&lt;br /&gt;
&lt;br /&gt;
See:&lt;br /&gt;
&lt;br /&gt;
* http://freshmeat.net/projects/dpkg/&lt;br /&gt;
* http://www.tldp.org/LDP/linuxcookbook/html/cookbook_4.html#SEC42&lt;br /&gt;
* http://www.debian.org/doc/packaging-manuals/dpkg-internals/&lt;br /&gt;
* http://www.debian.org/doc/manuals/apt-howto/index.en.html&lt;br /&gt;
&lt;br /&gt;
Using the Knoppix repository at http://developer.linuxtag.net/knoppix/&lt;br /&gt;
plus the standard debian mirrors is easier, though.&lt;br /&gt;
See also : http://jaqque.sbih.org/kplug/apt-pinning.html&lt;br /&gt;
&lt;br /&gt;
=== Installing Gnome ===&lt;br /&gt;
&lt;br /&gt;
To install [[http://en.wikipedia.org/wiki/Gnome Gnome]], you have to type '''apt-get install gnome-bin gdm'''.&amp;lt;br&amp;gt;&lt;br /&gt;
Then execute '''update-alternatives --config x-window-manager''' and select '''[[http://en.wikipedia.org/wiki/Gdm gdm]]'''.&lt;br /&gt;
&lt;br /&gt;
See also : http://wiki.debian.net/index.cgi?DebianGnome&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Main_Page"/>
				<updated>2005-01-04T21:10:41Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Pages finished */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= New Wiki! =&lt;br /&gt;
&lt;br /&gt;
* PHPWiki has a nasty security hole. &lt;br /&gt;
* Had to reinstall the server to be sure all the nasties are gone&lt;br /&gt;
* To upgrade to the latest version of PHPWiki requires this same process ( copy and pasting ) as the syntax is different&lt;br /&gt;
* So the oppunity is taken to upgrade to MediaWiki, the software that powers wikipedia.org and is unquestionably going to be more stable and supported becasue of this. Also supports better spam prevention due to logins. &lt;br /&gt;
* Also a few people had commented that the wiki was a mess and it was getting a bit that way so a chance to clean it up&lt;br /&gt;
* I've paid a developer to write a [http://www.webforce.co.nz/phpwiki2mediawiki/ phpwiki  2 mediawiki syntax converter]. It's not perfect and you will need to clean up the output. ( if you are good at php and regex and want to try to make it work better email me! )&lt;br /&gt;
* The list of old pages and a link to their old content and an automatically converted ( but will need fixing ) is at [http://www.knoppix.net/oldwiki/ www.knoppix.net/oldwiki/]&lt;br /&gt;
* The list of new pages is [[Special:Allpages]]&lt;br /&gt;
* The page names will be different. E.g. KnoppixCustomisations will become [[Knoppix Customisations]]&lt;br /&gt;
* The syntax of mediawiki is different to phpwiki. For help: http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page&lt;br /&gt;
* Obviously some of the pages do not need to be converted, e.g. the PHPwiki specific pages, or plugin pages. &lt;br /&gt;
* Keep the list below in alphabetical order and sign your name by typing &amp;lt;nowiki&amp;gt;--~~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We'll do the homepage of the wiki last, once all the pages are done. &lt;br /&gt;
&lt;br /&gt;
== Pages in progress: ==&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Remastering Howto]]&lt;br /&gt;
--[[User:Eadz|Eadz]] 19:09, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Screen Shots]] --[[User:Kyle|Kyle]] 14:26, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
== Pages todo ==&lt;br /&gt;
see http://www.knoppix.net/oldwiki/&lt;br /&gt;
&lt;br /&gt;
== Pages finished ==&lt;br /&gt;
&lt;br /&gt;
[[Basic Poor Mans]] --[[User:Markus|Markus]] 19:59, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Bittorrent]] --[[User:Kyle|Kyle]] 07:13, 04 Jan 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Cheat Codes]] --[[User:Kyle|Kyle]] 07:13, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
[[Cheat Codes Deutsch ]] --[[User:Kyle|Kyle]] 16:37, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
[[Customizing FAQ]] --[[User:Kyle|Kyle]] &lt;br /&gt;
&lt;br /&gt;
[[Deutsch Knoppix FAQ]] --[[User:Kyle|Kyle]] &lt;br /&gt;
&lt;br /&gt;
[[Downloading FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 19:22, 18 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[FTP FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:24, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[General FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 14:31, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Hardware FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 14:28, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Based HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 21:30, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Install HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:34, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Install Without a Monitor HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:54, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Headless Knoppix]]&lt;br /&gt;
--[[User:Markus|Markus]] 14:44, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Install FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 15:14, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Install Over Net HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:38, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Installation Ueber Netz]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:57, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Kernel]] --[[User:Kyle|Kyle]] &lt;br /&gt;
&lt;br /&gt;
[[Knoppix FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 14:24, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Customisations]]&lt;br /&gt;
--[[User:Eadz|Eadz]] 19:44, 20 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Hard Disk Scripts]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:34, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Installer]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:18, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Versions]] --[[User:Kyle|Kyle]] &lt;br /&gt;
&lt;br /&gt;
[[Lilo]]&lt;br /&gt;
--[[User:Markus|Markus]] 12:48, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lin Neighborhood]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:42, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lissetup.sh]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:46, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Mailing List]]&lt;br /&gt;
--[[User:Kyle|Kyle]] 8:50, 21 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Network FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] &lt;br /&gt;
&lt;br /&gt;
[[Partition Managers]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:30, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Pivot Root Install]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:22, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Poor Mans Install]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:04, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[PXE FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:10, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Remaster From Hd Install HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:06, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Rescue FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:36, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Root]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:25, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Smb Client HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 18:57, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Using FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 19:22, 18 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Win Partition]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:10, 26 Dec 2004 (GMT)&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Deutsch_Knoppix_FAQ</id>
		<title>Deutsch Knoppix FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Deutsch_Knoppix_FAQ"/>
				<updated>2005-01-04T21:09:06Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: Kyle doesn't actually spechen sie deutsch&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Knoppix FAQ ===&lt;br /&gt;
Englische Version: [[Knoppix FAQ]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== Kategorien : ====&lt;br /&gt;
&lt;br /&gt;
- [[Deutsch General FAQ]] - Wer, Was, Warum, usw&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Downloading FAQ]] - Knoppix herunterladen und brennen&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Using FAQ]] - Knoppix verwenden&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Hardware FAQ]]- Hardwareunterstützung und Verwendung von [[Deutsch Cheat Codes]]&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Install FAQ]] - Knoppix auf Festplatte installieren&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Rescue FAQ]] - Knoppix als Systemrettungs-CD verwenden&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Network FAQ]] - Netzwerk- und Einwahlkonfiguration (ETH, ISDN, ADSL, etc...)&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Samba Quick FAQ]] - Knoppixfilesystem von Windowsnetz lesen&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Network Software FAQ]] - TCP/IP einrichten und vorstellung von Netzwerktools&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Deutsch Knoppix Emu FAQ]] - Knoppix unter Emulatoren betreiben&amp;lt;br&amp;gt;&lt;br /&gt;
- [[New Questions FAQ]] - Neue Fragen stellen, beantworten oder in die FAQ übernehmen&amp;lt;br&amp;gt;&lt;br /&gt;
- [[Customizing FAQ]] - Knoppix durch &amp;quot;Remastern&amp;quot; anpassen&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Knoppix liefert natürlich auch eine eigene FAQ mit. Diese befindet sich im KNOPPIX Verzeichnis auf der KNOPPIX CD unter dem Namen &amp;quot;KNOPPIX-FAQ.txt&amp;quot; (KNOPPIX-FAQ-EN.txt&amp;quot; für die Englische Version).&lt;br /&gt;
Weitere Sprachen sind auf den jeweiligen Mirrors abgelegt (derzeit spanisch und französisch). Eine Liste der Mirrors findet man unter http://www.knopper.net/knoppix/ eine Mirrorliste&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Install_FAQ</id>
		<title>Install FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Install_FAQ"/>
				<updated>2005-01-04T20:51:18Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: Why is DMA disabled by default and how do I enable it? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Install FAQ Deutsch]]&lt;br /&gt;
&lt;br /&gt;
*Versión española: [[Instalación FAQ]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;br /&gt;
----&lt;br /&gt;
Also see the [[http://www.freenet.org.nz/misc/knoppix-install.html Knoppix Hard Disk Installation HOWTO]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General Installation Information ===&lt;br /&gt;
==== Sudoing ====&lt;br /&gt;
First of all for security reason all accounts are blocked - ie you can't log in to any account.  To run things as a root the user 'knoppix' is allowed to sudo - ie to run things as a root.&lt;br /&gt;
==== Script ====&lt;br /&gt;
Christian Perle provided us a script to copy and define knoppix to a &amp;quot;prepared partition&amp;quot; in your disk. But first we have to set an empty partition on our disk.  (With the new script, knoppix-installer, by Fabian Franz this changed a bit.)&lt;br /&gt;
==== Preparing a New Partition ====&lt;br /&gt;
Before partitioning the disk backup any data you don't want erased!  To partition your drive use &amp;quot;parted /dev/DESIRED_DISK(hda,hdb...)&amp;quot;.  The ? key to get a list of commands for resizing partitions and making a new ext3 partition.&lt;br /&gt;
==== Activating the script ====&lt;br /&gt;
From Knoppix 3.3 and onward open a terminal and enter:&lt;br /&gt;
*'''sudo knoppix-installer&lt;br /&gt;
For Knoppix before 3.3 enter:&lt;br /&gt;
*'''sudo knx-hdinstall&lt;br /&gt;
Simply follow the instructions on screen.&lt;br /&gt;
&lt;br /&gt;
You also might want to check: http://debian.tu-bs.de/knoppix/installer/&lt;br /&gt;
for a newer version or use the script '''knoppix-installer-latest-web'''&lt;br /&gt;
&lt;br /&gt;
=== Questions ===&lt;br /&gt;
==== Q: Why does &amp;quot;df&amp;quot; not list my root partition (&amp;quot;/&amp;quot;)? ====&lt;br /&gt;
A: The entry for &amp;quot;/&amp;quot; is somehow missing in /etc/mtab. Either edit that file and add a correct line for &amp;quot;/&amp;quot; or better replace /etc/mtab with a link to /proc/mounts, thn everything should be shown.&lt;br /&gt;
*'''su -c &amp;quot;ln -sf /proc/mounts /etc/mtab&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==== Q: Why is DMA disabled by default and how do I enable it? ====&lt;br /&gt;
A: Some chipsets and/or harddiscs are broken or buggy. Using DMA would cause problems on such systems. If your system works properly with DMA, you can enable it with it by typing &amp;quot;/sbin/hdparm -c3 -d1 -m16 -k1 /dev/hda&amp;quot; or by editing the &amp;quot;/etc/init.d/bootmisc.sh&amp;quot; startup script and uncommenting the hdparm -qd1 /dev/hda line to have it permanently on at reboot, if the line is not there add it.&lt;br /&gt;
Read more at: http://linux.oreillynet.com/pub/a/linux/2000/06/29/hdparm.html&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I test the downloaded ISO file? ====&lt;br /&gt;
A: You can use md5sum -c filename.md5 in Linux  or [http://www.toast442.org/md5gui.shtml md5gui] for windows.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I install Knoppix over a Network? ====&lt;br /&gt;
&lt;br /&gt;
A: [[Install Over Net HowTo]]&lt;br /&gt;
&lt;br /&gt;
==== Q: Is there a way that does not use so much space? ====&lt;br /&gt;
&lt;br /&gt;
A: There is the &amp;quot;[[Poor Mans Install]]&amp;quot;, where you can copy some files from the CD to the harddisk. It will run like from CD, but the CDROM is free for other use and its a bit faster. Although you'll need a bootfloppy or change the  [http://en.wikipedia.org/wiki/Bios Bios] options to boot first the hard disk with Knoppix (i.e. the second hard disk or d: unit).&lt;br /&gt;
&lt;br /&gt;
==== Q: Is there other way that does not use so much space? Perhaps by having a compressed file system? ====&lt;br /&gt;
&lt;br /&gt;
A: Yes, you can install Knoppix in 700 megs instead of 2.3 gigs for the real install, but it will run as if it were from a physical CD, so you cannot install anything, unless you do a 'normal' install. Each time you boot your hardware will need to be redetected. This is not for novices. For more information see the HOWTO for the [[Hd Based HowTo]] hard drive based install.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why doesn't my sound work? ====&lt;br /&gt;
&lt;br /&gt;
A: Just run &amp;quot;/etc/init.d/alsa-autoconfig&amp;quot; as [[root]] once and you'll be fixed up nicely. To have the sound levels set at boot (alsa defaults to muted) edit the file &amp;quot;/etc/init.d/bootmisc.sh&amp;quot; and add '''aumix -w 75 -v 75''' to the bottom of the file.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I install the latest Gnome? ====&lt;br /&gt;
&lt;br /&gt;
A: Comment all the lines in /etc/apt/sources.list except by the unstable ones.&lt;br /&gt;
*'''apt-get update&lt;br /&gt;
*'''apt-get install gnome&lt;br /&gt;
&lt;br /&gt;
In order to have gnome-session working you must exec the following and choose metacity&lt;br /&gt;
*'''update-alternatives --config x-window-manager&lt;br /&gt;
&lt;br /&gt;
Optionally you can also install gdm, galeon, evolution, etc.&lt;br /&gt;
&lt;br /&gt;
==== Q: how to install knoppix-terminalserver and/or knoppix-terminalopenmosixserver ??? ====&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Install_FAQ</id>
		<title>Install FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Install_FAQ"/>
				<updated>2005-01-04T20:50:23Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Activating the script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Install FAQ Deutsch]]&lt;br /&gt;
&lt;br /&gt;
*Versión española: [[Instalación FAQ]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;br /&gt;
----&lt;br /&gt;
Also see the [[http://www.freenet.org.nz/misc/knoppix-install.html Knoppix Hard Disk Installation HOWTO]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General Installation Information ===&lt;br /&gt;
==== Sudoing ====&lt;br /&gt;
First of all for security reason all accounts are blocked - ie you can't log in to any account.  To run things as a root the user 'knoppix' is allowed to sudo - ie to run things as a root.&lt;br /&gt;
==== Script ====&lt;br /&gt;
Christian Perle provided us a script to copy and define knoppix to a &amp;quot;prepared partition&amp;quot; in your disk. But first we have to set an empty partition on our disk.  (With the new script, knoppix-installer, by Fabian Franz this changed a bit.)&lt;br /&gt;
==== Preparing a New Partition ====&lt;br /&gt;
Before partitioning the disk backup any data you don't want erased!  To partition your drive use &amp;quot;parted /dev/DESIRED_DISK(hda,hdb...)&amp;quot;.  The ? key to get a list of commands for resizing partitions and making a new ext3 partition.&lt;br /&gt;
==== Activating the script ====&lt;br /&gt;
From Knoppix 3.3 and onward open a terminal and enter:&lt;br /&gt;
*'''sudo knoppix-installer&lt;br /&gt;
For Knoppix before 3.3 enter:&lt;br /&gt;
*'''sudo knx-hdinstall&lt;br /&gt;
Simply follow the instructions on screen.&lt;br /&gt;
&lt;br /&gt;
You also might want to check: http://debian.tu-bs.de/knoppix/installer/&lt;br /&gt;
for a newer version or use the script '''knoppix-installer-latest-web'''&lt;br /&gt;
&lt;br /&gt;
=== Questions ===&lt;br /&gt;
==== Q: Why does &amp;quot;df&amp;quot; not list my root partition (&amp;quot;/&amp;quot;)? ====&lt;br /&gt;
A: The entry for &amp;quot;/&amp;quot; is somehow missing in /etc/mtab. Either edit that file and add a correct line for &amp;quot;/&amp;quot; or better replace /etc/mtab with a link to /proc/mounts, thn everything should be shown.&lt;br /&gt;
*'''su -c &amp;quot;ln -sf /proc/mounts /etc/mtab&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==== Q: Why is DMA disabled by default and how do I enable it? ====&lt;br /&gt;
A: Some chipsets and/or harddiscs are broken or buggy. Using DMA would cause problems on such systems. If your system works properly with DMA, you can enable it with it by typing &amp;quot;/sbin/hdparm -c3 -d1 -m16 -k1 /dev/hda&amp;quot; or by editing the &amp;quot;/etc/init.d/bootmisc.sh&amp;quot; startup script and uncommenting the hdparm -qd1 /dev/hda line to have it permanently on at reboot, if the line is not there add it.&lt;br /&gt;
Read more: [http://linux.oreillynet.com/pub/a/linux/2000/06/29/hdparm.html]&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I test the downloaded ISO file? ====&lt;br /&gt;
A: You can use md5sum -c filename.md5 in Linux  or [http://www.toast442.org/md5gui.shtml md5gui] for windows.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I install Knoppix over a Network? ====&lt;br /&gt;
&lt;br /&gt;
A: [[Install Over Net HowTo]]&lt;br /&gt;
&lt;br /&gt;
==== Q: Is there a way that does not use so much space? ====&lt;br /&gt;
&lt;br /&gt;
A: There is the &amp;quot;[[Poor Mans Install]]&amp;quot;, where you can copy some files from the CD to the harddisk. It will run like from CD, but the CDROM is free for other use and its a bit faster. Although you'll need a bootfloppy or change the  [http://en.wikipedia.org/wiki/Bios Bios] options to boot first the hard disk with Knoppix (i.e. the second hard disk or d: unit).&lt;br /&gt;
&lt;br /&gt;
==== Q: Is there other way that does not use so much space? Perhaps by having a compressed file system? ====&lt;br /&gt;
&lt;br /&gt;
A: Yes, you can install Knoppix in 700 megs instead of 2.3 gigs for the real install, but it will run as if it were from a physical CD, so you cannot install anything, unless you do a 'normal' install. Each time you boot your hardware will need to be redetected. This is not for novices. For more information see the HOWTO for the [[Hd Based HowTo]] hard drive based install.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why doesn't my sound work? ====&lt;br /&gt;
&lt;br /&gt;
A: Just run &amp;quot;/etc/init.d/alsa-autoconfig&amp;quot; as [[root]] once and you'll be fixed up nicely. To have the sound levels set at boot (alsa defaults to muted) edit the file &amp;quot;/etc/init.d/bootmisc.sh&amp;quot; and add '''aumix -w 75 -v 75''' to the bottom of the file.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I install the latest Gnome? ====&lt;br /&gt;
&lt;br /&gt;
A: Comment all the lines in /etc/apt/sources.list except by the unstable ones.&lt;br /&gt;
*'''apt-get update&lt;br /&gt;
*'''apt-get install gnome&lt;br /&gt;
&lt;br /&gt;
In order to have gnome-session working you must exec the following and choose metacity&lt;br /&gt;
*'''update-alternatives --config x-window-manager&lt;br /&gt;
&lt;br /&gt;
Optionally you can also install gdm, galeon, evolution, etc.&lt;br /&gt;
&lt;br /&gt;
==== Q: how to install knoppix-terminalserver and/or knoppix-terminalopenmosixserver ??? ====&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Knoppix_Customisations</id>
		<title>Knoppix Customisations</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Knoppix_Customisations"/>
				<updated>2005-01-04T19:33:31Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: Knoppix Customisations moved to Knoppix Customizations&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Knoppix Customizations]]&lt;br /&gt;
&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Knoppix_FAQ</id>
		<title>Knoppix FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Knoppix_FAQ"/>
				<updated>2005-01-04T19:31:52Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Categories : */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Knoppix FAQs ===&lt;br /&gt;
*German Version: [[Deutsch Knoppix FAQ]]&lt;br /&gt;
*Spanish Version: [[Spanish Knoppix FAQ]]&lt;br /&gt;
----&lt;br /&gt;
==== Categories : ====&lt;br /&gt;
&lt;br /&gt;
*[[General FAQ]] - who, what, why etc&lt;br /&gt;
&lt;br /&gt;
*[[Downloading FAQ]] - Downloading and burning Knoppix&lt;br /&gt;
&lt;br /&gt;
*[[Using FAQ]] - Using Knoppix&lt;br /&gt;
&lt;br /&gt;
*[[Hardware FAQ]] - Hardware support and using [[Cheat Codes]]&lt;br /&gt;
&lt;br /&gt;
*[[Install FAQ]] - Installing Knoppix&lt;br /&gt;
&lt;br /&gt;
*[[Hard Drive Install FAQ]] - Configuring Knoppix after install. (ie. dual boot, sound problems, etc..)&lt;br /&gt;
&lt;br /&gt;
*[[Customizing FAQ]] - Customising knoppix by remastering&lt;br /&gt;
&lt;br /&gt;
*[[Rescue FAQ]] - Using Knoppix as a rescue disk (File System Supported?? ntfs)&lt;br /&gt;
&lt;br /&gt;
*[[Samba Quick FAQ]] - read Knoppix filesystem from windows&lt;br /&gt;
&lt;br /&gt;
*[[Network FAQ]] - Network and Dialin configuration (ETH, ISDN, ADSL, etc...)&lt;br /&gt;
&lt;br /&gt;
*[[PXE FAQ]] - How to use the network boot feature (terminal server) on Knoppix.&lt;br /&gt;
&lt;br /&gt;
*[[New Questions FAQ]] - Add new questions, answers or move them to the real FAQ&lt;br /&gt;
&lt;br /&gt;
*[[FTP FAQ]] -  How to use FTP/ssh&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Customising_FAQ</id>
		<title>Customising FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Customising_FAQ"/>
				<updated>2005-01-04T19:30:35Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: Customising FAQ moved to Customizing FAQ&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Customizing FAQ]]&lt;br /&gt;
&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Main_Page</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Main_Page"/>
				<updated>2005-01-04T19:29:35Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am glad to help out. I will look around to see if there is an obvious starting point, otherwise drop me a line for a hint. NYC8600&lt;br /&gt;
&lt;br /&gt;
Starting point? Seems to be find page on old wiki thats not in the new one, and pastey pastey edit edit&lt;br /&gt;
--[[User:Kyle|Kyle]] 2:09 December 30th (PST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Jjolly|Jjolly]] said on 13:53, 16 Dec 2004 (EST)&lt;br /&gt;
:Does it matter how the wikinames are formatted?  I noticed that the converter tends to separate the Knoppix away from the rest of the wikiname, but does no other formatting.  I note that you show the example of '''Knoppix Customisation''', but how would you handle '''KnoppixRemasterHowtoSpanish'''?&lt;br /&gt;
&lt;br /&gt;
:If it were me (and we all know it's not ;-), I would take this time to reformat the wikinames to be more readable.  In other words, '''KnoppixRemasterHowtoSpanish''' would become '''Spanish Remaster Knoppix HowTo''' so it would work well in a sentence such as: Come visit the &amp;lt;u&amp;gt;Spanish Remaster Knoppix HowTo&amp;lt;/u&amp;gt; for more information&lt;br /&gt;
&lt;br /&gt;
:Yes?&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I certainly hope the pagenames are supposed to look like &amp;quot;Hd Based HowTo&amp;quot; instead of &amp;quot;Hd BasedHowTo&amp;quot; or there'll be some editing to do :)&lt;br /&gt;
--[[User:Markus|Markus]] 18:23, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
Good decision! I tried many wiki software and mediawiki is my final choice also.&lt;br /&gt;
&lt;br /&gt;
--[[User:Liao|Liao]] 21:13, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
Yep it makes sence to have Knoppix Remaster HowTo Spanish etc.. not all bunched up words!  --[[User:Eadz|Eadz]] 22:48, 2 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
Hmmm, almost everything in recent changes appears to be marked minor, even some page additions to the new wiki are marked minor, odd. I'm marking my changes minor as I'm just deleting square brackets mostly. --[[User:Kyle|Kyle]] Tue Jan  4 07:48:57 UTC 2005&lt;br /&gt;
&lt;br /&gt;
Hmm, from me too as it's probably me. Forgot to set &amp;quot;default minor&amp;quot; when I started so too much was marked &amp;quot;major&amp;quot;?&lt;br /&gt;
Anyway, I'm also marking most as minor now as I don't really add much content, just edit what's there.&lt;br /&gt;
PS: Any idea why my name is in red?&lt;br /&gt;
--[[User:Markus|Markus]] 08:16, 4 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
The red links are for when theres a link to a page but the page doesn't exist in the wiki, last night I clicked on my page and threw in some text to make my name not red. --[[User:Kyle|Kyle]] Tue Jan  4 19:12:05 UTC 2005&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Customisations]] this page uses the word spelt with a z instead of an s inside, I notice this of course after I post to [[Customising FAQ]] blindly, hopefully someone can rename pages in the wiki --[[User:Kyle|Kyle]] Tue Jan  4 19:29:05 UTC 2005&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Customizing_FAQ</id>
		<title>Customizing FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Customizing_FAQ"/>
				<updated>2005-01-04T19:20:39Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Versión en español: [[Faq Configuración]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;br /&gt;
----&lt;br /&gt;
== Howto ==&lt;br /&gt;
General [[Knoppix Remastering Howto]] / [[Knoppix Remastering Howto Deutsch]]&lt;br /&gt;
&lt;br /&gt;
== KNOPPIX CD-Customizer Script ==&lt;br /&gt;
http://www.ing-buero-unger.de/prj/knx/index.html&lt;br /&gt;
&lt;br /&gt;
== Speed Optimization ==&lt;br /&gt;
The original Knoppix is speed optimized (you can think of it as &amp;quot;defragmenting for CD&amp;quot;). The most Remastering FAQs and scripts do NOT speed optimize the remaster. Therefore, the original Knoppix runs faster from the CD than most remasters! http://mailman.linuxtag.org/pipermail/debian-knoppix/2003-January/001593.html&lt;br /&gt;
&lt;br /&gt;
== Frequently Asked Questions ==&lt;br /&gt;
&lt;br /&gt;
# I've read the HOWTO, but it doesn't tell how to customize the KDE desktop, panel, and startup programs. I've found that after I chroot, I can see my KDE changes in '''/ramdisk/home/knoppix/.kde/''' and I copied those to '''/etc/skel/.kde/''' and to '''/home/knoppix/.kde/''' but they seem to be ignored. What do I need to do?&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
See also:&lt;br /&gt;
* Already customized Knoppix cds for download on [[Knoppix Customizations]]&lt;br /&gt;
* http://www.linuxdevcenter.com/pub/a/linux/2003/11/20/knoppix.html?page=2&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Main_Page</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Main_Page"/>
				<updated>2005-01-04T19:13:37Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am glad to help out. I will look around to see if there is an obvious starting point, otherwise drop me a line for a hint. NYC8600&lt;br /&gt;
&lt;br /&gt;
Starting point? Seems to be find page on old wiki thats not in the new one, and pastey pastey edit edit&lt;br /&gt;
--[[User:Kyle|Kyle]] 2:09 December 30th (PST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Jjolly|Jjolly]] said on 13:53, 16 Dec 2004 (EST)&lt;br /&gt;
:Does it matter how the wikinames are formatted?  I noticed that the converter tends to separate the Knoppix away from the rest of the wikiname, but does no other formatting.  I note that you show the example of '''Knoppix Customisation''', but how would you handle '''KnoppixRemasterHowtoSpanish'''?&lt;br /&gt;
&lt;br /&gt;
:If it were me (and we all know it's not ;-), I would take this time to reformat the wikinames to be more readable.  In other words, '''KnoppixRemasterHowtoSpanish''' would become '''Spanish Remaster Knoppix HowTo''' so it would work well in a sentence such as: Come visit the &amp;lt;u&amp;gt;Spanish Remaster Knoppix HowTo&amp;lt;/u&amp;gt; for more information&lt;br /&gt;
&lt;br /&gt;
:Yes?&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I certainly hope the pagenames are supposed to look like &amp;quot;Hd Based HowTo&amp;quot; instead of &amp;quot;Hd BasedHowTo&amp;quot; or there'll be some editing to do :)&lt;br /&gt;
--[[User:Markus|Markus]] 18:23, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
Good decision! I tried many wiki software and mediawiki is my final choice also.&lt;br /&gt;
&lt;br /&gt;
--[[User:Liao|Liao]] 21:13, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
Yep it makes sence to have Knoppix Remaster HowTo Spanish etc.. not all bunched up words!  --[[User:Eadz|Eadz]] 22:48, 2 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
Hmmm, almost everything in recent changes appears to be marked minor, even some page additions to the new wiki are marked minor, odd. I'm marking my changes minor as I'm just deleting square brackets mostly. --[[User:Kyle|Kyle]] Tue Jan  4 07:48:57 UTC 2005&lt;br /&gt;
&lt;br /&gt;
Hmm, from me too as it's probably me. Forgot to set &amp;quot;default minor&amp;quot; when I started so too much was marked &amp;quot;major&amp;quot;?&lt;br /&gt;
Anyway, I'm also marking most as minor now as I don't really add much content, just edit what's there.&lt;br /&gt;
PS: Any idea why my name is in red?&lt;br /&gt;
--[[User:Markus|Markus]] 08:16, 4 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
The red links are for when theres a link to a page but the page doesn't exist in the wiki, last night I clicked on my page and threw in some text to make my name not red. --[[User:Kyle|Kyle]] Tue Jan  4 19:12:05 UTC 2005&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Main_Page"/>
				<updated>2005-01-04T08:12:43Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Pages finished */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= New Wiki! =&lt;br /&gt;
&lt;br /&gt;
* PHPWiki has a nasty security hole. &lt;br /&gt;
* Had to reinstall the server to be sure all the nasties are gone&lt;br /&gt;
* To upgrade to the latest version of PHPWiki requires this same process ( copy and pasting ) as the syntax is different&lt;br /&gt;
* So the oppunity is taken to upgrade to MediaWiki, the software that powers wikipedia.org and is unquestionably going to be more stable and supported becasue of this. Also supports better spam prevention due to logins. &lt;br /&gt;
* Also a few people had commented that the wiki was a mess and it was getting a bit that way so a chance to clean it up&lt;br /&gt;
* I've paid a developer to write a [http://www.webforce.co.nz/phpwiki2mediawiki/ phpwiki  2 mediawiki syntax converter]. It's not perfect and you will need to clean up the output. ( if you are good at php and regex and want to try to make it work better email me! )&lt;br /&gt;
* The list of old pages and a link to their old content and an automatically converted ( but will need fixing ) is at [http://www.knoppix.net/oldwiki/ www.knoppix.net/oldwiki/]&lt;br /&gt;
* The list of new pages is [[Special:Allpages]]&lt;br /&gt;
* The page names will be different. E.g. KnoppixCustomisations will become [[Knoppix Customisations]]&lt;br /&gt;
* The syntax of mediawiki is different to phpwiki. For help: http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page&lt;br /&gt;
* Obviously some of the pages do not need to be converted, e.g. the PHPwiki specific pages, or plugin pages. &lt;br /&gt;
* Keep the list below in alphabetical order and sign your name by typing &amp;lt;nowiki&amp;gt;--~~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We'll do the homepage of the wiki last, once all the pages are done. &lt;br /&gt;
&lt;br /&gt;
== Pages in progress: ==&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Remastering Howto]]&lt;br /&gt;
--[[User:Eadz|Eadz]] 19:09, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Screen Shots]] --[[User:Kyle|Kyle]] 14:26, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
== Pages todo ==&lt;br /&gt;
see http://www.knoppix.net/oldwiki/&lt;br /&gt;
&lt;br /&gt;
== Pages finished ==&lt;br /&gt;
&lt;br /&gt;
[[Basic Poor Mans]] --[[User:Markus|Markus]] 19:59, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Bittorrent]] --[[User:Kyle|Kyle]] 07:13, 04 Jan 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Cheat Codes]] --[[User:Kyle|Kyle]] 07:13, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
[[Cheat Codes Deutsch ]] --[[User:Kyle|Kyle]] 16:37, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
[[Downloading FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 19:22, 18 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[FTP FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:24, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[General FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 14:31, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Hardware FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 14:28, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Based HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 21:30, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Install HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:34, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Install Without a Monitor HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:54, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Headless Knoppix]]&lt;br /&gt;
--[[User:Markus|Markus]] 14:44, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Install FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 15:14, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Install Over Net HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:38, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Installation Ueber Netz]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:57, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Kernel]]&lt;br /&gt;
&lt;br /&gt;
[[Knoppix FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 14:24, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Customisations]]&lt;br /&gt;
--[[User:Eadz|Eadz]] 19:44, 20 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Hard Disk Scripts]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:34, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Installer]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:18, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Versions]]&lt;br /&gt;
&lt;br /&gt;
[[Lilo]]&lt;br /&gt;
--[[User:Markus|Markus]] 12:48, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lin Neighborhood]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:42, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lissetup.sh]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:46, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Mailing List]]&lt;br /&gt;
--[[User:Kyle|Kyle]] 8:50, 21 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Network FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] &lt;br /&gt;
&lt;br /&gt;
[[Partition Managers]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:30, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Pivot Root Install]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:22, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Poor Mans Install]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:04, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[PXE FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:10, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Remaster From Hd Install HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:06, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Rescue FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:36, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Root]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:25, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Smb Client HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 18:57, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Using FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 19:22, 18 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Win Partition]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:10, 26 Dec 2004 (GMT)&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Kernel</id>
		<title>Kernel</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Kernel"/>
				<updated>2005-01-04T08:11:18Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Kernel Version Numbering ==&lt;br /&gt;
&lt;br /&gt;
All Linux kernel version numbers contain three numbers separated by periods (dots). The first number is the kernel version. We are now on the third kernel version, 2. Some of you may be running a version 1 kernel, and I am aware of at least one running version 0 kernel.&lt;br /&gt;
&lt;br /&gt;
The second number is the kernel major number. Major numbers which are '''even''' numbers (0 is considered an even number) are said to be '''stable'''. That is, these kernels should not have any crippling bugs, as they have been fairly heavily tested. While some contain small bugs, they can usually be upgraded for hardware compatibility or to armor the kernel against system crackers. For example, kernel 2.0.30, shunned by some in favor of 2.0.29 because of reported bugs, contains several patches including one to protect against SYN denial of service attacks. The kernels with odd major numbers are developmental kernels. These have not been tested and often as not will break any software packages you may be running. Occasionally, one works well enough that it will be adopted by users needing the latest and greatest support before the next stable release. This is the exception rather than the rule, and it requires substantial changes to a system.&lt;br /&gt;
&lt;br /&gt;
The last number is the minor number and is increased by one for each release. If you see kernel version 2.0.8, you know it's a kernel 2.0, stable kernel, and it is the ninth release (we begin counting with 0).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See&lt;br /&gt;
&lt;br /&gt;
* [[Last Kernel]]&lt;br /&gt;
* http://wiki.debian.net/index.cgi?Kernel&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Knoppix_Versions</id>
		<title>Knoppix Versions</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Knoppix_Versions"/>
				<updated>2005-01-04T08:09:21Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I feel this information is important.  Please, those of you with encylopedic knowledge of knoppix history, fill out the information.&lt;br /&gt;
&lt;br /&gt;
I wonder whats wrong with the [http://mirror.csit.fsu.edu/knoppix/KNOPPIX-CHANGELOG.txt ChangeLog]? --[[User:Kyle|Kyle]]&lt;br /&gt;
&lt;br /&gt;
I obtained the dates from a mirror using following url exactly:(http://mirror.csit.fsu.edu/knoppix/md5-old/?M=A ).&lt;br /&gt;
&lt;br /&gt;
For each date, i believe the following should be supplied:&lt;br /&gt;
*kernel version (and older backup kernels that are also included)&lt;br /&gt;
*number of packages&lt;br /&gt;
*reason (s) that this update was created.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And maybe theres some other important information that each entry should have?&lt;br /&gt;
maybe x version, glib version, apt version. dunno?&lt;br /&gt;
&lt;br /&gt;
The link [[Last Knoppix]] includes information about the (number) of the last Knoppix version  and the link [[Last Kernel]] about the last Linux Kernel.&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-10-09-2002b&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-01-10-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-04-10-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-07-10-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-08-10-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-10-10-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-22-10-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-23-10-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-31-10-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-08-11-2002&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-2002-12-07&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-2002-12-10&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-2002-12-11&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-2002-12-12&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-2003-01-01&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.1-2003-01-20&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-03-21&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-03-21b&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-03-23&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-03-24&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-03-26&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-03-28&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-03-30&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-04-09&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-04-10&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-04-15&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-04-18&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-04-28&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-05-03&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-05-16&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-05-20&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-06-06&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-07-24&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-07-25&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-07-26&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.2-2003-09-05&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.3-2003-09-22&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.3-2003-09-24&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.3-2003-11-03&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.3-2003-11-14&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.3-2003-11-19&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.3-2004-02-09&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.3-2004-02-16&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.4-2004-05-04&lt;br /&gt;
*[[Kernel]] 2.6.5 (2.4.26)&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.4-2004-05-04-EN-fix1.iso.md5     08-May-2004&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.4-2004-05-10&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.4-2004-05-16&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.4-2004-05-17&lt;br /&gt;
*[[Kernel]] 2.6.6 (2.4.26)&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.6-2004-08-16&lt;br /&gt;
*[[Kernel]] 2.6.7 (2.4.27)&lt;br /&gt;
&lt;br /&gt;
KNOPPIX_V3.7-2004-12-08&lt;br /&gt;
*[[Kernel]] 2.6.9 (2.4.27)&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Main_Page"/>
				<updated>2005-01-04T07:56:15Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Pages finished */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= New Wiki! =&lt;br /&gt;
&lt;br /&gt;
* PHPWiki has a nasty security hole. &lt;br /&gt;
* Had to reinstall the server to be sure all the nasties are gone&lt;br /&gt;
* To upgrade to the latest version of PHPWiki requires this same process ( copy and pasting ) as the syntax is different&lt;br /&gt;
* So the oppunity is taken to upgrade to MediaWiki, the software that powers wikipedia.org and is unquestionably going to be more stable and supported becasue of this. Also supports better spam prevention due to logins. &lt;br /&gt;
* Also a few people had commented that the wiki was a mess and it was getting a bit that way so a chance to clean it up&lt;br /&gt;
* I've paid a developer to write a [http://www.webforce.co.nz/phpwiki2mediawiki/ phpwiki  2 mediawiki syntax converter]. It's not perfect and you will need to clean up the output. ( if you are good at php and regex and want to try to make it work better email me! )&lt;br /&gt;
* The list of old pages and a link to their old content and an automatically converted ( but will need fixing ) is at [http://www.knoppix.net/oldwiki/ www.knoppix.net/oldwiki/]&lt;br /&gt;
* The list of new pages is [[Special:Allpages]]&lt;br /&gt;
* The page names will be different. E.g. KnoppixCustomisations will become [[Knoppix Customisations]]&lt;br /&gt;
* The syntax of mediawiki is different to phpwiki. For help: http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page&lt;br /&gt;
* Obviously some of the pages do not need to be converted, e.g. the PHPwiki specific pages, or plugin pages. &lt;br /&gt;
* Keep the list below in alphabetical order and sign your name by typing &amp;lt;nowiki&amp;gt;--~~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We'll do the homepage of the wiki last, once all the pages are done. &lt;br /&gt;
&lt;br /&gt;
== Pages in progress: ==&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Remastering Howto]]&lt;br /&gt;
--[[User:Eadz|Eadz]] 19:09, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Screen Shots]] --[[User:Kyle|Kyle]] 14:26, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
== Pages todo ==&lt;br /&gt;
see http://www.knoppix.net/oldwiki/&lt;br /&gt;
&lt;br /&gt;
== Pages finished ==&lt;br /&gt;
&lt;br /&gt;
[[Basic Poor Mans]] --[[User:Markus|Markus]] 19:59, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Bittorrent]] --[[User:Kyle|Kyle]] 07:13, 04 Jan 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Cheat Codes]] --[[User:Kyle|Kyle]] 07:13, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
[[Cheat Codes Deutsch ]] --[[User:Kyle|Kyle]] 16:37, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
[[Downloading FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 19:22, 18 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[FTP FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:24, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[General FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 14:31, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Hardware FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 14:28, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Based HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 21:30, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Install HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:34, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Install Without a Monitor HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:54, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Headless Knoppix]]&lt;br /&gt;
--[[User:Markus|Markus]] 14:44, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Install FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 15:14, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Install Over Net HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:38, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Installation Ueber Netz]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:57, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 14:24, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Customisations]]&lt;br /&gt;
--[[User:Eadz|Eadz]] 19:44, 20 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Hard Disk Scripts]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:34, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Installer]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:18, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lilo]]&lt;br /&gt;
--[[User:Markus|Markus]] 12:48, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lin Neighborhood]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:42, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lissetup.sh]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:46, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Mailing List]]&lt;br /&gt;
--[[User:Kyle|Kyle]] 8:50, 21 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Network FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] &lt;br /&gt;
&lt;br /&gt;
[[Partition Managers]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:30, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Pivot Root Install]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:22, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Poor Mans Install]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:04, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[PXE FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:10, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Remaster From Hd Install HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:06, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Rescue FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:36, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Root]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:25, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Smb Client HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 18:57, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Using FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 19:22, 18 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Win Partition]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:10, 26 Dec 2004 (GMT)&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Bittorrent</id>
		<title>Bittorrent</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Bittorrent"/>
				<updated>2005-01-04T07:54:51Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bittorrent is a swarming downloading method which allows for large files to be distributed far quicker and more bandwidth efficiently than simply many users downloading from one server.   When you use a torrent to download a file, you are also contributing to the files distribution. As you recieve sections of the file (which are individually verified) you will also start to send those sections of the file to other users who need them, similarly you will be receving the file from numerous other users.   The more people who are attempting to download a file, the quicker it will spread.&lt;br /&gt;
&lt;br /&gt;
What does all of this have to do with Knoppix?   Well Knoppix is large download (700MB) and can have extremely large numbers of people looking to download it in a short space of time (when a major new version is released).   Due to the load this places on the server hosting the download, Knoppix can be slow to get around onto the network of mirrors.&lt;br /&gt;
&lt;br /&gt;
Knoppix 3.4 was different, in fact it was released first via Bittorrent at http://torrent.unix-ag.uni-kl.de/ .   Things weren't completely smooth sailing at first as the demand was staggering but since then the setup has been refined and seems to have no problems coping with the loads thrown at it.&lt;br /&gt;
&lt;br /&gt;
To top it all off, you will often see mention of people having problems with Knoppix where ultimately it is down to a broken download.   If you don't have the bandwidth to not care about having to redownload a copy of Knoppix if something goes funny (and if you do can you give some to the rest of us please), then Bittorrent is the answer.  If Bittorrent is happy, you can be sure the file you have is identical to the original, for modem users who may have to reconnect many times to finish the download, this is a godsend (one crash could destroy the past 30 hours downloading by http/ftp, but bittorrent will fix the download without having to duplicate any significant amount of downloading).&lt;br /&gt;
&lt;br /&gt;
Now for the downside, in certain circumstances you just won't be able to use Bittorrent.   If you are behind a firewall you do not control you will either not be able to use Bittorrent at all or your download speeds will be appalling.   If you can control the firewall, then you should be able to open Bittorrent traffic to your computer and get maximimum download speeds.&lt;br /&gt;
&lt;br /&gt;
The official Bittorrent Client is available from http://bittorrent.com/download.html though personally I prefer [http://bittornado.com/ Bit Tornado] (primarily as it  has a nice pause button for when you need to do something else quickly).&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Main_Page"/>
				<updated>2005-01-04T07:50:04Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Pages finished */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= New Wiki! =&lt;br /&gt;
&lt;br /&gt;
* PHPWiki has a nasty security hole. &lt;br /&gt;
* Had to reinstall the server to be sure all the nasties are gone&lt;br /&gt;
* To upgrade to the latest version of PHPWiki requires this same process ( copy and pasting ) as the syntax is different&lt;br /&gt;
* So the oppunity is taken to upgrade to MediaWiki, the software that powers wikipedia.org and is unquestionably going to be more stable and supported becasue of this. Also supports better spam prevention due to logins. &lt;br /&gt;
* Also a few people had commented that the wiki was a mess and it was getting a bit that way so a chance to clean it up&lt;br /&gt;
* I've paid a developer to write a [http://www.webforce.co.nz/phpwiki2mediawiki/ phpwiki  2 mediawiki syntax converter]. It's not perfect and you will need to clean up the output. ( if you are good at php and regex and want to try to make it work better email me! )&lt;br /&gt;
* The list of old pages and a link to their old content and an automatically converted ( but will need fixing ) is at [http://www.knoppix.net/oldwiki/ www.knoppix.net/oldwiki/]&lt;br /&gt;
* The list of new pages is [[Special:Allpages]]&lt;br /&gt;
* The page names will be different. E.g. KnoppixCustomisations will become [[Knoppix Customisations]]&lt;br /&gt;
* The syntax of mediawiki is different to phpwiki. For help: http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page&lt;br /&gt;
* Obviously some of the pages do not need to be converted, e.g. the PHPwiki specific pages, or plugin pages. &lt;br /&gt;
* Keep the list below in alphabetical order and sign your name by typing &amp;lt;nowiki&amp;gt;--~~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We'll do the homepage of the wiki last, once all the pages are done. &lt;br /&gt;
&lt;br /&gt;
== Pages in progress: ==&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Remastering Howto]]&lt;br /&gt;
--[[User:Eadz|Eadz]] 19:09, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Screen Shots]] --[[User:Kyle|Kyle]] 14:26, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
== Pages todo ==&lt;br /&gt;
see http://www.knoppix.net/oldwiki/&lt;br /&gt;
&lt;br /&gt;
== Pages finished ==&lt;br /&gt;
&lt;br /&gt;
[[Basic Poor Mans]] --[[User:Markus|Markus]] 19:59, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Cheat Codes]] --[[User:Kyle|Kyle]] 07:13, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
[[Cheat Codes Deutsch ]] --[[User:Kyle|Kyle]] 16:37, 21 Dec 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
[[Downloading FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 19:22, 18 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[FTP FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:24, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[General FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 14:31, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Hardware FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 14:28, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Based HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 21:30, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Install HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:34, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Hd Install Without a Monitor HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:54, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Headless Knoppix]]&lt;br /&gt;
--[[User:Markus|Markus]] 14:44, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Install FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 15:14, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Install Over Net HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:38, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Installation Ueber Netz]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:57, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 14:24, 16 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Customisations]]&lt;br /&gt;
--[[User:Eadz|Eadz]] 19:44, 20 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Hard Disk Scripts]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:34, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Knoppix Installer]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:18, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lilo]]&lt;br /&gt;
--[[User:Markus|Markus]] 12:48, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lin Neighborhood]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:42, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Lissetup.sh]]&lt;br /&gt;
--[[User:Markus|Markus]] 19:46, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Mailing List]]&lt;br /&gt;
--[[User:Kyle|Kyle]] 8:50, 21 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Network FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] &lt;br /&gt;
&lt;br /&gt;
[[Partition Managers]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:30, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Pivot Root Install]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:22, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Poor Mans Install]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:04, 26 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[PXE FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:10, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Remaster From Hd Install HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 17:06, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Rescue FAQ]]&lt;br /&gt;
--[[User:Markus|Markus]] 16:36, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Root]]&lt;br /&gt;
--[[User:Markus|Markus]] 13:25, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Smb Client HowTo]]&lt;br /&gt;
--[[User:Markus|Markus]] 18:57, 3 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
[[Using FAQ]]&lt;br /&gt;
--[[User:Jjolly|Jjolly]] 19:22, 18 Dec 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
[[Win Partition]]&lt;br /&gt;
--[[User:Markus|Markus]] 20:10, 26 Dec 2004 (GMT)&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Main_Page</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Main_Page"/>
				<updated>2005-01-04T07:49:07Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am glad to help out. I will look around to see if there is an obvious starting point, otherwise drop me a line for a hint. NYC8600&lt;br /&gt;
&lt;br /&gt;
Starting point? Seems to be find page on old wiki thats not in the new one, and pastey pastey edit edit&lt;br /&gt;
--[[User:Kyle|Kyle]] 2:09 December 30th (PST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Jjolly|Jjolly]] said on 13:53, 16 Dec 2004 (EST)&lt;br /&gt;
:Does it matter how the wikinames are formatted?  I noticed that the converter tends to separate the Knoppix away from the rest of the wikiname, but does no other formatting.  I note that you show the example of '''Knoppix Customisation''', but how would you handle '''KnoppixRemasterHowtoSpanish'''?&lt;br /&gt;
&lt;br /&gt;
:If it were me (and we all know it's not ;-), I would take this time to reformat the wikinames to be more readable.  In other words, '''KnoppixRemasterHowtoSpanish''' would become '''Spanish Remaster Knoppix HowTo''' so it would work well in a sentence such as: Come visit the &amp;lt;u&amp;gt;Spanish Remaster Knoppix HowTo&amp;lt;/u&amp;gt; for more information&lt;br /&gt;
&lt;br /&gt;
:Yes?&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I certainly hope the pagenames are supposed to look like &amp;quot;Hd Based HowTo&amp;quot; instead of &amp;quot;Hd BasedHowTo&amp;quot; or there'll be some editing to do :)&lt;br /&gt;
--[[User:Markus|Markus]] 18:23, 27 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
---&lt;br /&gt;
Good decision! I tried many wiki software and mediawiki is my final choice also.&lt;br /&gt;
&lt;br /&gt;
--[[User:Liao|Liao]] 21:13, 28 Dec 2004 (GMT)&lt;br /&gt;
&lt;br /&gt;
Yep it makes sence to have Knoppix Remaster HowTo Spanish etc.. not all bunched up words!  --[[User:Eadz|Eadz]] 22:48, 2 Jan 2005 (GMT)&lt;br /&gt;
&lt;br /&gt;
Hmmm, almost everything in recent changes appears to be marked minor, even some page additions to the new wiki are marked minor, odd. I'm marking my changes minor as I'm just deleting square brackets mostly. --[[User:Kyle|Kyle]] Tue Jan  4 07:48:57 UTC 2005&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Pivot_Root_Install</id>
		<title>Pivot Root Install</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Pivot_Root_Install"/>
				<updated>2005-01-04T07:43:31Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Pivot Root Install */ square brackets twapped&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Pivot Root Install===&lt;br /&gt;
&lt;br /&gt;
This is an alternative installation technique that overcomes limitations of the [[Poor Mans Install]] and a regular hard drive install.  You can have a complete system on your drive (you can use apt-get to update it, etc.), plus it can be on a drive that is not bootable (such as an external drive connected via a usb2 or firewire card).  You can swap your drive to any other computer and still boot to your system using the Knoppix CD.&lt;br /&gt;
&lt;br /&gt;
What you basically do is boot up with the CD and then use pivot_root to load up your hard-drive based system.&lt;br /&gt;
&lt;br /&gt;
The downsides are that you still need to use the Knoppix CD to boot up, and you have to type some commands by hand to start up your system.  Hopefully we can create a script to automate this in the future.&lt;br /&gt;
&lt;br /&gt;
Instructions are based on [http://www.knoppix.net/forum/viewtopic.php?t=6463 this forum thread]&lt;br /&gt;
&lt;br /&gt;
Post there if you have any problems or suggestions.&lt;br /&gt;
&lt;br /&gt;
==== Step 1 ====&lt;br /&gt;
&lt;br /&gt;
Do a regular hard drive install (see [[Hd Install HowTo]]) wherever you want to install it.&lt;br /&gt;
&lt;br /&gt;
Basically you just type &amp;quot;sudo knoppix-installer&amp;quot; from the terminal command line and follow the instructions.&lt;br /&gt;
&lt;br /&gt;
Do not install a boot loader to your MBR if you installed to a non-bootable drive or partition.&lt;br /&gt;
&lt;br /&gt;
==== Step 2 ====&lt;br /&gt;
&lt;br /&gt;
Start you computer with the Knoppix CD.  Then type these commands: (replace &amp;quot;/dev/sda7&amp;quot; with the location of your installed system)&lt;br /&gt;
&lt;br /&gt;
* knoppix26 single (at boot prompt, or just &amp;quot;knoppix single&amp;quot; for 2.4 kernel)&lt;br /&gt;
* sudo su&lt;br /&gt;
* mkdir /mnt/new_root&lt;br /&gt;
* mount /dev/sda7 /mnt/new_root&lt;br /&gt;
* mkdir /mnt/new''root/mnt/old''root (only necessary 1st time)&lt;br /&gt;
* cd /mnt/new_root&lt;br /&gt;
* pivot''root . /mnt/new''root/mnt/old_root&lt;br /&gt;
* mount /proc /proc -t proc&lt;br /&gt;
* init 5&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Hd_Install_Without_a_Monitor_HowTo</id>
		<title>Hd Install Without a Monitor HowTo</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Hd_Install_Without_a_Monitor_HowTo"/>
				<updated>2005-01-04T07:42:48Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Warning, this is only for people, who know how to play with GNU/Linux!'''&lt;br /&gt;
&lt;br /&gt;
If you have no (or no free) monitor to install a new GNU/Linux server/firewall... but you have a laptop (or a PC with a monitor) - run knx-hdinstall unblind ;)&lt;br /&gt;
; You can use [[Headless Knoppix]] and run a script to be able to use ssh, or connect a keyboard and type the first commands blind : Connect on of the blackbox's netadapter with your Laptop by a cross-link cable or via a hub/switch. Put in the Knoppix CD and hope that the BIOS is set to CD-Boot first.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When now Knoppix is booted - you know after loading the bootloader you can&lt;br /&gt;
use [[Cheat Codes]], type blind &amp;quot;'''knoppix 2'''&amp;quot; and return and Knoppix will boot.&lt;br /&gt;
From now on, everytime you may make a typo, don't correct it, use&lt;br /&gt;
Ctrl-C and type it again.&lt;br /&gt;
&lt;br /&gt;
'''Switch to one root shell with'''&lt;br /&gt;
 Alt-Ctrl-F2&lt;br /&gt;
&lt;br /&gt;
'''Change the rootpassword and remember to type it twice(!)'''&lt;br /&gt;
 blind@blackbox#passwd root&lt;br /&gt;
 test&lt;br /&gt;
 test&lt;br /&gt;
&lt;br /&gt;
'''Setup the network, for example:'''&lt;br /&gt;
 blind@blackbox# ifconfig eth0 192.168.0.5 netmask 255.255.255.0 up&lt;br /&gt;
 blind@blackbox# route add default gw 192.168.0.3 eth0&lt;br /&gt;
&lt;br /&gt;
'''Knoppix has an active firewall, stop it:'''&lt;br /&gt;
 blind@blackbox# rm /etc/hosts.deny&lt;br /&gt;
 blind@blackbox# rm /etc/hosts.allow&lt;br /&gt;
 blind@blackbox# /etc/init.d/inetd restart&lt;br /&gt;
&lt;br /&gt;
'''Warning - I can't explain how to make your system safe - hope that somebody will add this ;)'''&lt;br /&gt;
&lt;br /&gt;
'''Start ssh:'''&lt;br /&gt;
 blind@blackbox# /etc/init.d/ssh start&lt;br /&gt;
&lt;br /&gt;
'''Now go to your Laptop and when you can ping'''&lt;br /&gt;
 user@laptop# ping 192.168.0.5&lt;br /&gt;
&lt;br /&gt;
'''then your network is ok, and you can start a ssh connection:'''&lt;br /&gt;
  user@laptop# ssh root@192.168.0.5&lt;br /&gt;
&lt;br /&gt;
(if you got problems it is likely that your laptop has&lt;br /&gt;
an active firewall.)&lt;br /&gt;
&lt;br /&gt;
'''Via the ssh conection you can now start a VNC connection on your blackbox:'''&lt;br /&gt;
 root@0[[/]]vncserver&lt;br /&gt;
 root@0[[/]]vncviewer localhost:1&lt;br /&gt;
&lt;br /&gt;
'''Now you can follow [[Hd Install HowTo]] ;)'''&lt;br /&gt;
&lt;br /&gt;
After the Knoppix HD-install update your Debian(unstable). When you laptop has two networkcards, an internetconnection and I hope a firewall, you can use it as router/firewall for secure your blackbox during you update it. Be root on your laptop:&lt;br /&gt;
&lt;br /&gt;
 root@laptop# modprobe iptable_nat&amp;lt;br&amp;gt;&lt;br /&gt;
 root@laptop# iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE&amp;lt;br&amp;gt;&lt;br /&gt;
 root@laptop# echo 1 &amp;gt; /proc/sys/net/ipv4/ip_forward&lt;br /&gt;
&lt;br /&gt;
'''Using a KVM switch:'''&lt;br /&gt;
A [http://en.wikipedia.org/wiki/KVM_switch KVM switch] is a fairly simple apparatus to which you connect cables from your monitor, keyboard, mouse and sometimes loudspeakers and USB which then connects to two or more computers.&lt;br /&gt;
Switching between computers varies between manufacturers, with some you double-tap Scroll Lock.&lt;br /&gt;
&lt;br /&gt;
'''You are welcome to make this How To better!'''&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Hd_Based_HowTo</id>
		<title>Hd Based HowTo</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Hd_Based_HowTo"/>
				<updated>2005-01-04T07:41:39Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* 1.2.2. Knoppix &amp;lt; */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== HOWTO copy the Knoppix file to harddisk and Boot it. ===&lt;br /&gt;
&lt;br /&gt;
The option of running Knoppix from a copy of the compressed file system has been around for years.  Numerous contributors have suggested numerous methods for accomplishing this, and it is frequently called a &amp;quot;poor man's&amp;quot; install.  Despite the pejorative nature of this name, it can be extremely powerful in its function.&lt;br /&gt;
&lt;br /&gt;
Recently, Knoppix has undergone some changes, and some of the older methods for accomplishing this are outdated and no longer work with newer versions of Knoppix.  On the other hand, some of the newer methods do not work with older versions, so the older methods need to remain as a resource for those using older versions of Knoppix.  Be aware of this, and choose an installation method adapted to the version you are using.&lt;br /&gt;
&lt;br /&gt;
Listed below are some other viable methods of running Knoppix from a HD copy of the CD filesystem.  Some are for previous versions of Knoppix, some use bootloaders, and some rely on the creation of bootable devices, and some appear to be scrambled remnants left over from previous versions of the WIKI.  Use whatever works best for you, and I hope that the previous authors will edit their own contributions and forgive me for not sorting out what has become a jumble of alternative methods.(JD)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
See also: [[Pivot Root Install]] (HD install to a non-bootable partition) and [[Poor Mans Install]] (copy the CD contents to the hard drive to free up your CD drive).&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Q: how can i make my whole (not only 700mb) harddrive as compressed system? and the system is also writeable. (just like the old days' doublespace/stacker)&lt;br /&gt;
----&lt;br /&gt;
See '''[[Knoppix Hard Disk Scripts]]'''.&lt;br /&gt;
&lt;br /&gt;
With this installation method you copy the file containing the '''compressed Knoppix filesystem''' from the CD or ISO to your HD, and then set it up to boot in some way.&lt;br /&gt;
&lt;br /&gt;
==== Pros: ====&lt;br /&gt;
* The CDROM drive can be used for other things&lt;br /&gt;
* It can be done without repartitioning (on FAT16/32 and Linux partitions)&lt;br /&gt;
* It only uses ~700MB, compared to 2.3GB for the real installation&lt;br /&gt;
&lt;br /&gt;
''But...''&lt;br /&gt;
&lt;br /&gt;
Knoppix will run as if it were from a physical CD, so you cannot install anything, unless you do a 'normal' install. Everytime you boot, the hardware will recognised new, so you can use this harddisk ''like'' a CD and plug it into new PCs. This is handy for preinstalling Knoppix on PCs/Laptops without CD-ROM.&lt;br /&gt;
&lt;br /&gt;
This is different from [[Hd Based HowTo]] and [[Install FAQ]], in the way that Install FAQ describes how to install Knoppix so it will run on a (single) PC like a normal GNU/Linux installation. If you want to install software, you should consider a [http://www.knoppix.net/wiki/Hd_Install_HowTo real harddisk install].&lt;br /&gt;
&lt;br /&gt;
'''Note:''' The compressed filesystem is NOT the ISO(!), it is a 700MB '''file named KNOPPIX''' within the ISO.&lt;br /&gt;
&lt;br /&gt;
=== WARNING, YOU SHOULD KNOW WHAT YOUR ARE DOING !!! ===&lt;br /&gt;
'''IF YOU ARE NOT EXPERIENCED WITH GNU/LINUX and LILO'''&lt;br /&gt;
: THIS HOWTO IS NOT FOR YOU !!!&lt;br /&gt;
&lt;br /&gt;
Please ask a friend, experienced with GNU/LINUX,&lt;br /&gt;
or use KNOPPIX only from CD-ROM&lt;br /&gt;
&lt;br /&gt;
Backups, Learning/Reading and talking with friends are&lt;br /&gt;
always good ideas before trying new things.&lt;br /&gt;
Like KNOPPIX itself, these ideas are to use on your own risk.&lt;br /&gt;
&lt;br /&gt;
(Is this really necesary you can do this easily without hurting the system)&lt;br /&gt;
&lt;br /&gt;
Okay, now you have read the warnings we can proceed with the real thing :-)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== To run Knoppix from HD as it were from CD you can choose to: ===&lt;br /&gt;
** Run Knoppix, copy it to HD &amp;amp; make the hd-copy bootable with a '''bootfloppy'''&lt;br /&gt;
** Run Knoppix, copy it to HD &amp;amp; make the hd-copy bootable with '''LILO on HD'''&lt;br /&gt;
** Run GNU/Linux, copy Knoppix to HD and '''configure LILO'''&lt;br /&gt;
** Run Microsoft Windows, copy Knoppix to HD &amp;amp; make it bootable with a '''bootfloppy'''&lt;br /&gt;
** Run Microsoft Windows, copy Knoppix to HD &amp;amp; boot with loadlin&lt;br /&gt;
* Boot the Knoppix '''ISO''' directly&lt;br /&gt;
* Boot with [[PXE FAQ|PXE]] via network&lt;br /&gt;
* Boot from smartdisk, usb-stick, ROM....&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTE ::: Many of these methods refer to versions of Knoppix Prior to 3.4 .... If you'd like a simple , safe and well-tested 'Poor-man's' install for 3.4 (_1.5. above ) go here ...[[Poor Mans Install]]&lt;br /&gt;
&lt;br /&gt;
=== 1.1. Run Knoppix, copy it to HD &amp;amp; make the hd-copy bootable with ''bootfloppy'' ===&lt;br /&gt;
&lt;br /&gt;
I believe this has been deprecated by the [[Cheat Codes|cheatcode]] '''tohd''', which copies the 700MB iso to the ext/FAT partition of your choice.  Create a Knoppix boot floppy or boot from the CD and use fromhd to boot from the HD (then eject the floppy/CD).  I just tested this and it works, but please delete this entry if I'm full of it :-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Boot from a Knoppix CD (whatever version you already have).&lt;br /&gt;
&lt;br /&gt;
* Create a linux partition (see [[Partition Managers]]) large enough to hold at least 2 ISO images (at least 1.5GB). Let's call this ''/dev/hdXX''.&lt;br /&gt;
&lt;br /&gt;
* Format this linux partition as an ext2 or ext3 filesystem.&lt;br /&gt;
**'''mkfs -t ext2 /dev/hd''XX'''''&lt;br /&gt;
* Mount this linux partition&lt;br /&gt;
**'''mkdir -p /mnt/staging &amp;amp;&amp;amp; mount /dev/hd''XX'' /mnt/staging'''&lt;br /&gt;
* Download a new Knoppix ISO image and md5 checksum (whatever version you want to test) into /mnt/staging. Let's call it ''Knoppix-new.iso''&lt;br /&gt;
&lt;br /&gt;
* Use md5sum to check whether the ISO image is fine.&lt;br /&gt;
**'''md5sum -c ''Knoppix-new.iso''.md5'''&lt;br /&gt;
* Mount this ISO image using loopback&lt;br /&gt;
**'''mkdir -p /mnt/newknoppix&lt;br /&gt;
**'''mount -t iso9660 -o loop,ro /mnt/staging/''Knoppix-new.iso'' /mnt/newknoppix&lt;br /&gt;
* Copy the contents of the ISO to /mnt/staging&lt;br /&gt;
**'''cd /mnt/newknoppix&lt;br /&gt;
**'''cp -a * /mnt/staging&lt;br /&gt;
* Create a boot floppy using the boot.img from the downloaded Knoppix-new.iso&lt;br /&gt;
**'''dd if=/mnt/newknoppix/KNOPPIX/boot.img of=/dev/fd0&lt;br /&gt;
&lt;br /&gt;
Assuming everything went fine so far, we are ready to boot from the floppy. There should be no other filesystem on the machine with a valid KNOPPIX directory that come earlier in the search order.&lt;br /&gt;
&lt;br /&gt;
* Make sure to sync and unmount all filesystems mounted rw.&lt;br /&gt;
**'''sync&lt;br /&gt;
**'''umount /mnt/newknoppix/&lt;br /&gt;
**'''umount /mnt/staging/&lt;br /&gt;
* Reboot leaving the floppy in the drive.&lt;br /&gt;
**'''shutdown -r now'''&lt;br /&gt;
* Make sure the BIOS boots from the floppy drive.&lt;br /&gt;
&lt;br /&gt;
As it boots the KNOPPIX directory should be discovered and booted into a full fledged Knoppix system as though running from CD. If it fails you will be thrown into a small recovery shell. If this happens, revisit the earlier steps, read the man pages for all the commands, fix any errors, come back and update this procedure.&lt;br /&gt;
&lt;br /&gt;
I hope this is useful to you.&lt;br /&gt;
&lt;br /&gt;
Comment: If the above doesn't work, perhaps you need to make a directory KNOPPIX on you partition and then copy the file also called KNOPPIX (which is about 690MB) into this directory. This worked for me with Knoppix 3.2&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== 1.2. Run Knoppix, copy it to HD &amp;amp; make the hd-copy bootable with ''LILO on HD'' ===&lt;br /&gt;
&lt;br /&gt;
=== 1.2.1. Knoppix 3.4 version only ===&lt;br /&gt;
''(rd) Because I couldn't find the info anywhere, I tried myself and succeeded in making a dual boot win98/knoppix3.4 with lilo and a persistent homedir. Here are the steps I took:''&lt;br /&gt;
==== Procedure: ====&lt;br /&gt;
* Partition the harddisk to make room for knoppix:&lt;br /&gt;
** ext2 partition /dev/hda6 used to boot the kernel with lilo (10 Meg)&lt;br /&gt;
** ext2 partition /dev/hda7 for the knoppix image (I used 1000 Meg, but 800 Meg should be enough)&lt;br /&gt;
** swap partition /dev/hda8 (I used 256 Meg, but depends on your physical RAM)&lt;br /&gt;
** ext2 partition /dev/hda9 for the persistent home (any value you can spare)&lt;br /&gt;
* Boot the knoppix cd with the cheatcode &amp;quot;tohd=/dev/hda7&amp;quot;. This will copy the knoppix image to disk.&lt;br /&gt;
* Reboot the knoppix cd with the cheatcode &amp;quot;fromhd=/dev/hda7&amp;quot; and check if it runs without the cd.&lt;br /&gt;
* Make the persistent homedir via the knoppix menu (penguin icon-&amp;gt;configuration-&amp;gt;make persistent dir).&lt;br /&gt;
* Do not save your KNOPPIX configuration via the menu, all changes to the environment will be saved automatically because of the persistent home.&lt;br /&gt;
* Copy the files from /boot to /mnt/hda6. Also copy the file &amp;quot;/mnt/cdrom/boot/isolinux/minirt24.gz&amp;quot; from the cd to /mnt/hda6.&lt;br /&gt;
* Copy /etc/lilo.conf to /mnt/hda6 and make the following boot entries (do not forget to uncomment the line with &amp;quot;prompt&amp;quot;, or else the lilo boot menu will not appear):&lt;br /&gt;
&lt;br /&gt;
 image=/mnt/hda6/vmlinuz&lt;br /&gt;
 initrd=/mnt/hda6/minirt24.gz&lt;br /&gt;
 append=&amp;quot;fromhd=/dev/hda7 home=/dev/hda9 apm=power-off lang=nl \&lt;br /&gt;
 hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi \&lt;br /&gt;
 hdg=scsi hdh=scsi&amp;quot;&lt;br /&gt;
 root=/dev/hda7&lt;br /&gt;
 label=Knoppix&lt;br /&gt;
 read-write&lt;br /&gt;
 &lt;br /&gt;
 other=/dev/hda1&lt;br /&gt;
 label=Windows98&lt;br /&gt;
&lt;br /&gt;
* Mount the /mnt/hda6 partition temporary as /boot so lilo writes its map-file to the right place (sudo mount /dev/hda6 /boot)&lt;br /&gt;
* Let lilo write the boot loader to the master boot record (sudo lilo -C /mnt/hda6/lilo.conf)&lt;br /&gt;
* Remove the knoppix cd-rom and reboot. Now lilo will show you the menu and you can choose between win98 and knoppix.&lt;br /&gt;
* That's it. Enjoy.&lt;br /&gt;
&lt;br /&gt;
=== 1.2.2. Knoppix &amp;lt;= 3.3 version ===&lt;br /&gt;
'''Note:''' ''the short and detailed version seem to be different''... uhm?&lt;br /&gt;
&lt;br /&gt;
''(rhk) I'm trying to do this, without success so far.  I'll put some notes (in italics) at the place(s) where I have questions (maybe only one place at first.  For information, I am trying to install Knoppix 3.1.''&lt;br /&gt;
&lt;br /&gt;
LILO can't boot ISO files, so it is neccessary to copy the Knoppix ISO content to hd. Also copy the content of boot.image to /boot. Because the Knoppix-boot-skript is not used, read about the [[Cheat Codes]] and add the one you need to your lilo.conf under append=&amp;quot;...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To learn more about Lilo, read the [http://en.tldp.org/HOWTO/mini/LILO.html LILO-mini-HOWTO].&lt;br /&gt;
&lt;br /&gt;
==== In short: ====&lt;br /&gt;
* Boot Knoppix by CD-ROM&lt;br /&gt;
* You need a partition with &amp;gt;700 MB free space (vfat, ext2 or ext3) in this example ''/dev/hda3''&lt;br /&gt;
* Open a root-shell ('''sudo bash''')&lt;br /&gt;
**'''mount /cdrom&lt;br /&gt;
**'''mount /dev/hda3 /mnt/hda3&lt;br /&gt;
**'''cp -R /cdrom/ /mnt/hda3/&lt;br /&gt;
**'''mkdir /mnt/floppy-loop&lt;br /&gt;
**'''mkdir /mnt/hda3/boot/&lt;br /&gt;
**'''cp /boot/System.map /mnt/hda3/boot/&lt;br /&gt;
**'''mount /cdrom/KNOPPIX/boot-en.img  /mnt/floppy-loop -o loop -t vfat&lt;br /&gt;
**'''cp /mnt/floppy-loop/* /mnt/hda3/boot&lt;br /&gt;
**'''cp /etc/lilo.conf /mnt/hda3/boot&lt;br /&gt;
**'''vi /mnt/hda3/boot/lilo.conf&lt;br /&gt;
**'''ln -sf /mnt/hda3/boot/ /&amp;gt;&lt;br /&gt;
**'''lilo -C /mnt/hda3/boot/lilo.conf''' (or '''lilo -C /boot/lilo.conf)&lt;br /&gt;
* Reboot without CD-ROM&lt;br /&gt;
&lt;br /&gt;
Sorry people. Distro 3.4 has a different folders' structure, e.g. I couldn't locate the boot-en.img (I assume you mean /cdrom/KNOPPIX/KNOPPIX). Anyway&lt;br /&gt;
I had problems with this instruction&lt;br /&gt;
&lt;br /&gt;
 mount /cdrom/KNOPPIX/boot-en.img /mnt/floppy-loop -o loop -t vfat&lt;br /&gt;
It says:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;/dev/loop0 damaged or fs not supported&amp;quot; ... really really strange. Could someone please update the info on this page? I mean info to copy knop image on hd and boot it by means of lilo?&lt;br /&gt;
Thanks a lot!&lt;br /&gt;
&lt;br /&gt;
==== With comments, step by step: ====&lt;br /&gt;
*Boot Knoppix from CD-ROM&lt;br /&gt;
*You need a partition with &amp;gt;700 MB free space (vfat, ext2 or ext3) for example ''/dev/hda3'', but choose a partition you like. This partition must not contain these files and directories on root-level: autorun.bat, ''boot'', ''index.html'', knoppix.ico, Talks, autorun.inf, Demos, ''KNOPPIX''. To be on save side, use an one empty partiton ;)&lt;br /&gt;
**'''mount /dev/hda3 /mnt/hda3&lt;br /&gt;
**'''cp -R /dev/cdrom /mnt/hda3&lt;br /&gt;
**'''mkdir /mnt/floppy-loop&lt;br /&gt;
**'''mount /cdrom/KNOPPIX/boot-en.img /mnt/floppy-loop -o loop -t vfat_&lt;br /&gt;
*The directory /mnt/floppy will used as mountpoint, &amp;quot;-o loop&amp;quot; allows to mount a file as device.&lt;br /&gt;
**'''mkdir /mnt/hda3/boot/&lt;br /&gt;
**'''cp /mnt/floppy-loop/* /mnt/hda3/boot_&lt;br /&gt;
*There are only 2 files needed &amp;quot;miniroot.gz&amp;quot; &amp;amp; &amp;quot;vmlinuz&amp;quot;&lt;br /&gt;
**'''cp /etc/lilo.conf /mnt/hda3/boot&lt;br /&gt;
*To configure lilo is lilo.conf needed. Take /etc/lilo.conf as example.&lt;br /&gt;
**'''vi /mnt/hda3/boot/lilo.conf&lt;br /&gt;
 /etc/lilo.conf - See: `lilo(8)' and `lilo.conf(5)'&lt;br /&gt;
 lba32&amp;lt;&lt;br /&gt;
 boot=/dev/hda #This hd will use lilo to write into the MBR&lt;br /&gt;
 delay=200 #Time in ms to chooce the lilo-menue&lt;br /&gt;
 timeout=200 #Time in ms to choose with lilo-menue&lt;br /&gt;
 vga=0 #You can choose other modis here&lt;br /&gt;
 &lt;br /&gt;
 default=Knoppix #The default boot-profile&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;#Start of boot-profile 1&lt;br /&gt;
 &lt;br /&gt;
 image=/boot/KNOPPIX-3.1-DE/vmlinuz # The kernel&lt;br /&gt;
 &lt;br /&gt;
 append=&amp;quot;lang=de ramdisk_size=100000 init=/etc/init apm=power-off \&lt;br /&gt;
 hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=scsi \&lt;br /&gt;
 vga=791 initrd=KNOPPIX-3.10-DE/miniroot.gz nomce quiet \&lt;br /&gt;
 BOOT_IMAGE=knoppix&amp;quot; #add initrd path to miniroot.gz&lt;br /&gt;
''(rhk) I changed my append line to look like the above, but I get a bunch of errors when I try to run lilo, including things like KNOPPIX-3.1 not found.  Maybe the errors are all due to the problem with the cp -R command, but I probably need some more explanation of what needs to be changed in lilo.conf.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 label=&amp;quot;Knoppix&amp;quot;# label of your profil&lt;br /&gt;
 root=/dev/hda3 # partiton where lilo can found the directory /boot&lt;br /&gt;
 read-only&lt;br /&gt;
 initrd=/boot/KNOPPIX-3.1-DE/miniroot.gz&lt;br /&gt;
* LILO has to write to /boot/map. Because the CD-ROM is read-only this will fail. Link the new /mnt/hda3/boot/ directory over /boot. But be aware to use full pathnames and use only &amp;quot;/&amp;quot; as linkname.&lt;br /&gt;
**'''ln -sf /mnt/hda3/boot/ /&lt;br /&gt;
**'''lilo -C /mnt/hda3/boot/lilo.conf&lt;br /&gt;
&lt;br /&gt;
*LILO should say what's added. If you have an error here, check the steps before. (alternative you can use '''lilo -C /boot/lilo.conf''')&lt;br /&gt;
*Reboot without CD-ROM&lt;br /&gt;
&lt;br /&gt;
=== Two things we still need to solve: ===&lt;br /&gt;
- read/write access to the partition we are booting knoppix from&lt;br /&gt;
- save Knoppix.config on the HD and boot with it&lt;br /&gt;
&lt;br /&gt;
''(rhk) Below, Henk Poley  asks if this German section is still required -- I think it is, although English would be better.  I'm not sure I understand the questions -- do we want read/write access to the partition we are booting knoppix from?  Is that in order to store data files and install other programs?  I haven't read all the other FAQs yet, but it seems there are FAQs on putting your /home directory on the hard drive, and booting with something like Knoppix.sh for &amp;quot;persistent options&amp;quot; -- maybe those solve the problems?''&lt;br /&gt;
&lt;br /&gt;
Ideas how to do this:&lt;br /&gt;
&lt;br /&gt;
; probono am 10.02.2003 : Ich habe den Ordner KNOPPIX mit dem 700 MB File knoppix auf eine&lt;br /&gt;
 ext3-Partition (bei mir hda2) kopiert und ein bereits vorhandenes LILO&lt;br /&gt;
 so konfiguriert, dass Knoppix von HD gebootet wird.&lt;br /&gt;
&lt;br /&gt;
 Desweiteren habe ich in meiner knoppix.sh stehen:&amp;lt;br&amp;gt;&lt;br /&gt;
 '''mount /dev/hda2 /cdrom -o remount,rw'''&lt;br /&gt;
&lt;br /&gt;
 Jetzt habe ich von Knoppix heraus auch Schreibzugriff auf die ext3-Partition!&lt;br /&gt;
&lt;br /&gt;
 Idee: Ich hatte zufaellig schon eine bestehende LILO-Installation.&lt;br /&gt;
 Koennte man aber nicht auf diese Weise Knoppix &amp;quot;from scratch&amp;quot; auf eine&lt;br /&gt;
 leere HD aufspielen: 1. ext3 formatieren 2. Knoppix komprimiert&lt;br /&gt;
 draufkopieren 3. LILO von Knoppix aus einrichten 4. remount,rw in die&lt;br /&gt;
 knoppix.sh schreiben 5. /home/knoppix abaendern, so dass es auf&lt;br /&gt;
 die HD zeigt ---&amp;gt; fertig! Was denkt ihr?&lt;br /&gt;
&lt;br /&gt;
pr0ct0man 10.02.2003&lt;br /&gt;
 Klingt eigentlich recht logisch, probono...&lt;br /&gt;
 Let's try it !&lt;br /&gt;
&lt;br /&gt;
 Ich probier jetzt erstmal dein ''mount /dev/hda5/cdrom -o remount,rw'' in der knoppix.sh&lt;br /&gt;
&lt;br /&gt;
 Wo hast Du das eingetragen ? Meine sieht wie folgt aus:&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;#!/bin/sh&amp;lt;br&amp;gt;&lt;br /&gt;
 [[[ &amp;quot;`id -u`&amp;quot; = &amp;quot;0&amp;quot; ]]] || { echo &amp;quot;You need root privileges to modify the system!&amp;quot; &amp;gt;&amp;amp;2 ; exit 1; }&amp;lt;br&amp;gt;&lt;br /&gt;
 [[[ -d &amp;quot;$1&amp;quot; ]]] &amp;amp;&amp;amp; CONFIGS=&amp;quot;$1/configs.tbz&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
 [[[ -f &amp;quot;$CONFIGS&amp;quot; ]]] || CONFIGS=&amp;quot;/cdrom/KNOPPIX/configs.tbz&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
 [[[ -f &amp;quot;$CONFIGS&amp;quot; ]]] || CONFIGS=&amp;quot;/mnt/floppy/configs.tbz&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
 if [[[ -f &amp;quot;$CONFIGS&amp;quot; ]]]; then&amp;lt;br&amp;gt;&lt;br /&gt;
 echo &amp;quot; [1mExtracting config archive $CONFIGS... [0m&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
 tar -jpPtf &amp;quot;$CONFIGS&amp;quot; | while read i; do rm -f &amp;quot;$i&amp;quot;; done&amp;lt;br&amp;gt;&lt;br /&gt;
 tar -jpPxf &amp;quot;$CONFIGS&amp;quot; ; chown -R knoppix.knoppix /home/knoppix&amp;lt;br&amp;gt;&lt;br /&gt;
 fi&lt;br /&gt;
&lt;br /&gt;
 Grüsse, pr0ct0man&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ''Nirro, 19/2/04 :''&lt;br /&gt;
 ''Anyone can translate that to english please ?&amp;lt;br&amp;gt;&lt;br /&gt;
 I'm facing the same problem - I can't mount /dev/hda1 after booting&lt;br /&gt;
 knoppix from this partition.''&amp;lt;br&amp;gt;&lt;br /&gt;
 ''by the way I succeded to do something new and cool, I think, using&lt;br /&gt;
 the topologilinux grub bootloader, details - soon.''&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Update - I added to knoppix.sh the line : '''mount -o remount,rw /cdrom'''''&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Now I can mount hda1, but only root have a write permission to it. any solutions ?''&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can boot Knoppix into a partition other than the default. This is very useful if you want to test your Knoppix hack and don't have a floppy (!!). It worked for me:&lt;br /&gt;
&lt;br /&gt;
*boot your Knoppix from cd-rom;&lt;br /&gt;
&lt;br /&gt;
*as root, mount a partition, i.e. /dev/hda3 under /mnt/hda3&lt;br /&gt;
&lt;br /&gt;
**'''knoppix$ sudo su; mount -o rw /dev/hda3 /mnt/hda3&lt;br /&gt;
&lt;br /&gt;
**'''cp -Rp /KNOPPIX /mnt/hda3&lt;br /&gt;
&lt;br /&gt;
*logout and reboot normally&lt;br /&gt;
&lt;br /&gt;
*mount /dev/hda3 under /mnt/hda3&lt;br /&gt;
&lt;br /&gt;
**'''cp /mnt/hda3/KNOPPIX/boot /mnt/hda3&lt;br /&gt;
&lt;br /&gt;
**'''cd /mnt/hda3; mkdir home; cd home; mkdir knoppix; chown knoppix.knoppix knoppix;&lt;br /&gt;
&lt;br /&gt;
*make a symbolic link for every dir from /mnt/hda3/KNOPPIX to /mnt/hda3 except home, i.e. ln -s KNOPPIX/etc .&lt;br /&gt;
&lt;br /&gt;
*copy the vmlinuz file into your /boot;&lt;br /&gt;
&lt;br /&gt;
**/mnt/hda3# '''ln -s boot/vmlinuz .&lt;br /&gt;
&lt;br /&gt;
*modify your lilo.conf in order to boot from hda3, I suggest :&lt;br /&gt;
&lt;br /&gt;
 image=/boot/knoppix&lt;br /&gt;
 label=&amp;quot;knoppix&amp;quot;&lt;br /&gt;
 root=/dev/hda3&lt;br /&gt;
 vga=788&lt;br /&gt;
 read-only&lt;br /&gt;
&lt;br /&gt;
 I had to chroot in to the new environment in order to run lilo after editing /mnt/hda3/etc/lilo.conf -&lt;br /&gt;
 knoppix$ sudo su; chroot /mnt/hda3; mount -o proc /proc proc ''&lt;br /&gt;
&lt;br /&gt;
*As root in chroot, run:&lt;br /&gt;
&lt;br /&gt;
**'''lilo -C /etc/lilo.conf&lt;br /&gt;
&lt;br /&gt;
*reboot!!!&lt;br /&gt;
&lt;br /&gt;
As a side effect, you have a persistent home for user knoopix in order to configure your environment and put the confs into /etc/skel ;-)&lt;br /&gt;
&lt;br /&gt;
hope this help, every questions to maX (coccolesto@inwind.it)&lt;br /&gt;
&lt;br /&gt;
=== 1.3. Run GNU/Linux, copy Knoppix to HD and ''configure lilo'' ===&lt;br /&gt;
&lt;br /&gt;
==== Follow the steps outlined in 1.1&amp;lt;br&amp;gt; ====&lt;br /&gt;
Ones succeeded:&lt;br /&gt;
&lt;br /&gt;
Boot your original GNU/Linux, mount a bootable Knoppix floppy, created in the paragraph 1.1:&lt;br /&gt;
**'''mount /floppy&lt;br /&gt;
&lt;br /&gt;
Then create a KNOPPIX directory and copy a knoppix floppy image over there:&lt;br /&gt;
**'''mkdir /boot/KNOPPIX3.2&lt;br /&gt;
**'''cp /floppy/* /boot/KNOPPIX3.2/&lt;br /&gt;
*Add the following to the /etc/lilo.conf:&lt;br /&gt;
 image=/boot/KNOPPIX3.2/vmlinuz&lt;br /&gt;
 append=&amp;quot;ramdisk_size=100000\&lt;br /&gt;
 init=/etc/init initrd=KNOPPIX3.2/miniroot.gz ''_BOOT''IMAGE=knoppix&amp;quot;&lt;br /&gt;
 root=/dev/hda3&lt;br /&gt;
 read-only&lt;br /&gt;
 initrd=/boot/KNOPPIX3.2/miniroot.gz&lt;br /&gt;
 label=&amp;quot;knoppix&amp;quot;&lt;br /&gt;
&lt;br /&gt;
*Run &amp;quot;lilo&amp;quot; and reboot.&lt;br /&gt;
&lt;br /&gt;
=== 1.4. Run Microsoft Windows, copy Knoppix to HD &amp;amp; make it bootable with ''bootmedia'' ===&lt;br /&gt;
&lt;br /&gt;
Also called &amp;quot;poormans install&amp;quot; ;-)&lt;br /&gt;
&lt;br /&gt;
NOTE: The partition (i.e. drive) that you are copying to (the D partition in the example below) must be a fat32 partition. If it is NTFS, the install will not boot.&lt;br /&gt;
&lt;br /&gt;
*Copy the ''CD'':\KNOPPIX\KNOPPIX file to ''HD'':\KNOPPIX\&lt;br /&gt;
**'''E:\KNOPPIX\&amp;gt;mkdir D:\KNOPPIX&lt;br /&gt;
*'''E:\KNOPPIX\&amp;gt;copy KNOPPIX D:\KNOPPIX\&lt;br /&gt;
1 files(s) copied&lt;br /&gt;
*Make the bootfloppy. Start &amp;quot;mkfloppy.bat&amp;quot; on the CD in the KNOPPIX folder.&lt;br /&gt;
**'''E:\KNOPPIX\&amp;gt;mkfloppy&lt;br /&gt;
*Boot from the floppy or the [http://www.wikipedia.org/wiki/keydrive USB keydrive] You need a [http://www.wikipedia.org/wiki/BIOS BIOS] that can boot from Floppy (all) or from keydrive (USB-ZIP option). It should scan for the KNOPPIX file and find it on the harddisk.&lt;br /&gt;
*Enjoy&lt;br /&gt;
&lt;br /&gt;
=== 1.5 Run Microsoft Windows 98 or 95, copy Knoppix to HD &amp;amp; boot with loadlin ===&lt;br /&gt;
&lt;br /&gt;
*Open ISO with [[http://www.winimage.com/winima61.exe Win Image]] Extract extract the directory ''ISO:''\KNOPPIX\ to C:\ (The C:\KNOPPIX\KNOPPIX file should be ~700MB)&lt;br /&gt;
*Open the C:\KNOPPIX\boot.img with {tools {Win Image}} and extract ''vmlinuz'' and ''miniroot.img'' to C:\KNOPPIX\Loadlin (you will need to create this directory)&lt;br /&gt;
*Download [tools loadling 1.6c] or later to C:\KNOPPIX}\Loadlin\ (remmember to extract it)&lt;br /&gt;
*now reboot to DOS, you can do this by pressing F8 while rebooting the computer.&lt;br /&gt;
*Change directory to the loadlin dir: &amp;quot;CD KNOPPIX\loadlin&amp;quot;&lt;br /&gt;
*Execute loadlin &amp;quot;loadlin.exe vmlinuz root=/dev/hda1 lang=en ro&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Now Knoppix should boot..&lt;br /&gt;
&lt;br /&gt;
=== 1.5.1 Loadlin with Win9x/Dos ===&lt;br /&gt;
&lt;br /&gt;
This page need organizing and some translation cleanup.&lt;br /&gt;
There is another possibility for people who don't have a floppy or CD-ROM drive, don't want to or can't mess with lilo, and only have dos or win95/98 with the knoppix iso extracted on to any hard drive partion. [[ftp://elserv.ffm.fgan.de/pub/linux/loadlin-1.6/update-1.6c/ Loadlin]] (be sure you have 1.6c!! 1.6 has lots of issues with many recent kernels). It is a simple program to load the linux kernel into memory.  It's sort of mentioned above:&lt;br /&gt;
&lt;br /&gt;
Extract loadlin.exe from that zip and extract the kernel from the KNOPPIX/boot.img file with software like [[http://www.winimage.com/winima61.exe Win Image]] (download installer)]] then move both the miniroot.gz and vmlinuz files into for instance c:/img. Boot to dos.&lt;br /&gt;
 C:&amp;gt; cd img&amp;lt;br&amp;gt;&lt;br /&gt;
 C:&amp;gt; loadlin.exe vmlinuz root=/dev/hda1 initrd=miniroot.gz lang=en ro&amp;lt;br&amp;gt;&lt;br /&gt;
And with any luck Knoppix will load fine, like normal.&lt;br /&gt;
&lt;br /&gt;
=== 1.5.1.1 [[Load Lin]] in spanish ===&lt;br /&gt;
Loadlin.exe vmlinuz initrd=miniroot.gz lang=es ro&lt;br /&gt;
&lt;br /&gt;
*Feedback:&lt;br /&gt;
**I've tried this loadlin option and it almost worked. Knoppix booted but when it got to start the Xfree graphical desktop it said something like that it can not find a module for my graphic card. Booting from the CD works fine.&lt;br /&gt;
**It is possible to simplify the method 1.3, to avoid using a floppy.&lt;br /&gt;
&lt;br /&gt;
*Here is how I did it :&lt;br /&gt;
*instead of creating a floppy with dd and then to copy its content, just mount the boot.img file :&lt;br /&gt;
**'''mkdir mnt2 /boot/KNOPPIX3.2&lt;br /&gt;
**'''*mount /mnt/newknoppix/KNOPPIX/boot.img mnt2 -o loop&lt;br /&gt;
**'''cp mnt2/ /boot/KNOPPIX3.2/&lt;br /&gt;
*[[Yann Cochard]]&lt;br /&gt;
&lt;br /&gt;
=== 2. Boot the Knoppix ''ISO'' directly ===&lt;br /&gt;
&lt;br /&gt;
There really is no working solution to do this, this is just some ideas that some kind soul could improve. To do this you would need to do this:&lt;br /&gt;
&lt;br /&gt;
* Copy iso to a partion&lt;br /&gt;
* Copy the boot.img from the ISO&lt;br /&gt;
* Change the boot.img to mount the iso with loop and then continue with the ordinary boot up script.&lt;br /&gt;
* Make the boot.img boot (in some of the ways described above)&lt;br /&gt;
&lt;br /&gt;
==== another description ====&lt;br /&gt;
Create a mini boot image and mount the ISO at /mnt2/Knoppix.iso/ then mount the appropriate filesystem image from inside the ISO and mount or link the dirs inside. I guess doing a chroot (replace / ) will foobar things, that's why I try to mount the ISO at /mnt2/...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== 3. Boot with ''PXE'' via network ===&lt;br /&gt;
&lt;br /&gt;
This is not by the PCs own HD ;), but see: [[Faq PXE]]&lt;br /&gt;
&lt;br /&gt;
Would be nice to boot via TCP/IP and get the ISO from FTP-server.&amp;lt;br&amp;gt;&lt;br /&gt;
Only for installing, '''not''' for daily use - please mirror Knoppix localy!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== 4. Boot from smartdisk, usb-stick, ROM... ===&lt;br /&gt;
&lt;br /&gt;
Please write about your experiences to boot from your MP3-Player, or what ever...&lt;br /&gt;
&lt;br /&gt;
See [[http://rz-obrian.rz.uni-karlsruhe.de/knoppix-usb/ Boot KNOPPIX from an USB Memory Stick]] by Matthias Müller&lt;br /&gt;
&amp;lt;br&amp;gt;For booting the USB stick it uses [[http://www.8ung.at/spblinux/ spblinux]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Questions ===&lt;br /&gt;
&lt;br /&gt;
==== Q:Does this work with any file system or does it need FAT? ====&lt;br /&gt;
A: Yes, it will work on any filesystem supported by the Knoppix build of the Linux kernel. Which means about all filesystem types you'll ever find on a IDE or SCSI harddisk.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Feedback ==&lt;br /&gt;
If you have questions, comments, ideas about this wiki-page, and you don't want to write it directly in this page, please write it here as feedback:&lt;br /&gt;
&lt;br /&gt;
==== Variations: ====&lt;br /&gt;
- Use the persistent home scripts to keep your settings. It should be possible to copy the script to ''HD'':\KNOPPIX\knoppix.sh  (untested)&lt;br /&gt;
&lt;br /&gt;
;By Henk Poley : Is the german discussion still needed on this page? Is it solved?&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== 5. Another method. ===&lt;br /&gt;
We can totally avoid looking at contents of boot.img and get the same affect as booting from Knoppix CD using http://syslinux.zytor.com/memdisk.php This what I did starting with KNOPPIX iso file:&lt;br /&gt;
&lt;br /&gt;
**'''mount KNOPPIX.iso /mnt/tmp -o loop&lt;br /&gt;
**'''mkdir /KNOPPIX&lt;br /&gt;
**'''cp -R /mnt/tmp/KNOPPIX/* /KNOPPIX&lt;br /&gt;
&lt;br /&gt;
Edit lilo.conf to boot boot.img in KNOPPIX directory:&lt;br /&gt;
&lt;br /&gt;
 #lilo.conf&lt;br /&gt;
 image=/boot/memdisk&lt;br /&gt;
 label=knoppix&lt;br /&gt;
 initrd=/KNOPPIX/boot.img&lt;br /&gt;
&lt;br /&gt;
You will get the full wonderful KNOPPIX boot menu.&lt;br /&gt;
&lt;br /&gt;
=== 7. How to run knoppix from a windows partition without burning a CD ===&lt;br /&gt;
&lt;br /&gt;
*Boot your existing linux&lt;br /&gt;
**'''mount -o loop KNOPPIX_V3.X-XX-XX-XX.iso /mnt/iso''' (create that dir earlier)&lt;br /&gt;
**'''cd /mnt/iso; cp -a * /mnt/win''' (your fat32 partition, mount it first)&lt;br /&gt;
*'''mkdir /img; mount -o loop /mnt/iso/KNOPPIX/boot.img /img&lt;br /&gt;
*'''cp /img/miniroot.gz /boot; cp /img/vmlinuz /boot/vmknoppix&lt;br /&gt;
*edit lilo.conf to create a new image=/boot/vmknoppix with initrd=/boot/miniroot.gz&lt;br /&gt;
*run [[Lilo]], reboot&lt;br /&gt;
*choose the name you gave knoppix in lilo.conf's label&lt;br /&gt;
*done! now proceed to install knoppix to the hard drive if you want!&lt;br /&gt;
&lt;br /&gt;
=== 8. Yet another way (from a laptop with no floppy drive) with knoppix 3.4 ===&lt;br /&gt;
&lt;br /&gt;
(assumes a small boot partition as /dev/hda1, and that knoppix tohd=/dev/hda2)&lt;br /&gt;
&lt;br /&gt;
*boot into the command line mode &amp;lt;knoppix 2 hdfrom=/dev/hda2&lt;br /&gt;
*mount your booting partition&amp;lt;mount /dev/hda1 /mnt/hda1&lt;br /&gt;
*mount your knoppix cd &amp;lt;mount -t iso9660 /dev/sr0 /mnt/test&lt;br /&gt;
*copy the neccisary boot files&lt;br /&gt;
**'''cp /mnt/test/boot/isolinux/linux24 /mnt/hda1&lt;br /&gt;
**'''cp /mnt/test/boot/isolinux/minirt24.gz /mnt/hda1&lt;br /&gt;
**'''cp /etc/lilo.conf /mnt/hda1/&lt;br /&gt;
*edit lilo.conf with mcedit&lt;br /&gt;
**'''mcedit /mnt/hda1/lilo.conf&lt;br /&gt;
*make sure to remove the line towards the begining from klaus&lt;br /&gt;
*I commented out most of this and added the following:&lt;br /&gt;
 image=/mnt/hda1/linux24&lt;br /&gt;
 initrd=minirt24.gz&lt;br /&gt;
 label=linux&lt;br /&gt;
(( i realise there is alot more that could be done here,however for the sake of brevity thats all i did, the key parts are the linux24 and the minirt24.gz))&lt;br /&gt;
*run lilo with the new lilo.conf, '''not''' the CDs one.&lt;br /&gt;
**'''lilo -C /mnt/hda1/lilo.conf&lt;br /&gt;
*unmout things&lt;br /&gt;
**'''umount /mnt/test; umount /mnt/hda1&lt;br /&gt;
*reboot&lt;br /&gt;
**'''init 6&lt;br /&gt;
*enjoy (one thing i found was the knoppix commands can be used at the LILO prompt, so personally I run&lt;br /&gt;
**'''linux dma lang=en fromhd=/dev/hda2&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Partition_Managers</id>
		<title>Partition Managers</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Partition_Managers"/>
				<updated>2005-01-04T07:40:49Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: square bracket thwapping&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Other references: ===&lt;br /&gt;
[http://directory.google.com/Top/Computers/Software/Disk_Management/Partition/ Google Directory]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Hardware_FAQ</id>
		<title>Hardware FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Hardware_FAQ"/>
				<updated>2005-01-04T07:38:37Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: I'm trying to use dialup but I've got a winmodem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Hardware FAQ Deutsch]]&lt;br /&gt;
&lt;br /&gt;
*Versión española: [[Hardware FAQ Spanish]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;br /&gt;
----&lt;br /&gt;
==== Q: How can I set up my printer?. ====&lt;br /&gt;
&lt;br /&gt;
A: Click on &amp;quot;printer configuration&amp;quot; in the &amp;quot;Knoppix&amp;quot; menu, and use the wizard.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I get support for my wheelmouse's mousewheel? ====&lt;br /&gt;
&lt;br /&gt;
A: Type &amp;quot;knoppix wheelmouse&amp;quot; at the boot prompt. Unfortunately, wheelmice cannot be auto-detected, and the wheelmouse protocol is incompatible with the standard ps/2 protocol. Therefore, the &amp;quot;normal&amp;quot; ps/2 protocol (without mousewheel support) is the safe default.&lt;br /&gt;
&lt;br /&gt;
==== Q: After finishing knx-hdinstall i am searching for a way to make a wheelmous work an a harddisk installation. What shall i do? Booting from CD with &amp;quot;knoppix wheelmouse&amp;quot; works fine. ====&lt;br /&gt;
&lt;br /&gt;
A: there are two options ('''NOT TESTED'''):&lt;br /&gt;
* edit the following file: &amp;quot;/etc/X11/XF86Config-4&amp;quot; (make backup before)&lt;br /&gt;
**add the following lines to the section &amp;quot;Input Device&amp;quot; :&lt;br /&gt;
 Option    &amp;quot;Protocol&amp;quot;  &amp;quot;IMPS/2&amp;quot;&lt;br /&gt;
 Option    &amp;quot;ZAxismapping&amp;quot;    &amp;quot;4  5&amp;quot;&lt;br /&gt;
 Option    &amp;quot;Buttons&amp;quot;     &amp;quot;5&amp;quot;&lt;br /&gt;
**If there is another line with an other protocol, you must delete it. BTW there are 3 sections for mice: serial, PS/2 and usb-Mice. You must find the correct Section.&lt;br /&gt;
&lt;br /&gt;
* edit the &amp;quot;/etc/lilo.conf&amp;quot; file&lt;br /&gt;
**and add &amp;quot;wheelmouse&amp;quot; in the line with &amp;quot;append&amp;quot; (there is a huge line of parameters).&lt;br /&gt;
**Then run &amp;quot;lilo -v&amp;quot; in a root-shell an hope there's no error message.&lt;br /&gt;
&lt;br /&gt;
==== Q: I use a Microsoft Wireless Intelli Mouse explorer (Optical, USB) and the mouspointer won't move. ====&lt;br /&gt;
&lt;br /&gt;
A: Open a Root-Console (Control-Alt-F2) and enter the following:&lt;br /&gt;
 modprobe -r usbmouse&lt;br /&gt;
 modprobe hid&lt;br /&gt;
&lt;br /&gt;
Pressing Control-Alt-F5 will bring you back to KDE.&lt;br /&gt;
&lt;br /&gt;
==== Q: I'm trying to use dialup but I've got a winmodem ====&lt;br /&gt;
&lt;br /&gt;
A: Sorry. Unfortunately some cheap modems have moved their functionality to almost completely software. Linux doesn't have support for nearly all of these ''thin'' modems and the best you can do is get another modem. You just discovered why it might have been worth purchasing a real modem. Infos about&lt;br /&gt;
GNU/Linux driver for Winmodems, see [http://www.linmodems.org linmodems.org]&lt;br /&gt;
&lt;br /&gt;
==== Q: My graphics card doesn't work! ====&lt;br /&gt;
&lt;br /&gt;
A: It may be that very new (or exotic) graphics cards are not in the hardware database yet. These will still usually work under Linux! You can type&lt;br /&gt;
 knoppix xmodule=vesa&lt;br /&gt;
or&lt;br /&gt;
 knoppix xmodule=fbdev&lt;br /&gt;
at the first boot screen, and the initial un-accelerated XFree86 modes will produce a usable screen. Version 31-01-2002 and later have a frame buffer boot option (especially for older notebooks) fb800x600 (instead of typing in knoppix), which uses a resolution of 800x600 pixels in frame buffer mode. Regardless of whether these workarounds are successful or not, support can be built into the next version of KNOPPIX more quickly if the PCI numbers of the graphics card along with a description can be sent to us via mail (&amp;quot;lspci ; lspci -n&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
==== Q: Auto configuration doesn't work on my computer, or the computer hangs at boot. What should I do? ====&lt;br /&gt;
&lt;br /&gt;
A: It might work if portions of the auto configuration are skipped. This can be specified with &amp;quot;knoppix noscsi&amp;quot; or &amp;quot;knoppix nopcmcia&amp;quot;. If the problem can be identified -&amp;gt; please send the exact error message and when possible a proposed solution using the web form at http://www.knopper.net/kontakt/ ! Sometimes the output of &amp;quot;lspci ; lspci -n&amp;quot; is very helpful, especially if the problem involves incorrectly identified graphics cards.&lt;br /&gt;
&lt;br /&gt;
==== Q: My PS/2 mouse doesn't work! ====&lt;br /&gt;
&lt;br /&gt;
A: If the mouse pointer in the graphical user window is erratically moving around everywhere, the attached mouse is using an exotic protocol. Only booting into &amp;quot;expert&amp;quot; mode and setting the correct protocol for the XFree system will help in this case. However, if the pointer appears in the middle of the screen and doesn't respond to mouse movements at all, you probably have a board with a known BIOS bug (lately this problem has been appearing frequently with notebooks). Try to type in&lt;br /&gt;
 knoppix pci=irqmask=0x0e98&lt;br /&gt;
at the boot screen and see if this helps. Alternatively, you can find a BIOS update for your computer (you may want to do this anyway?).&lt;br /&gt;
&lt;br /&gt;
==== Q: My system memory is not fully detected, or the computer hangs shortly after starting with the message &amp;quot;Panic: cannot mount root file system&amp;quot;! ====&lt;br /&gt;
&lt;br /&gt;
A: Some boards apparently report the usable memory size incorrectly to the Linux kernel. Solution: specify the system memory size as an additional &amp;quot;knoppix&amp;quot; boot option. For example, for 128 Megabytes use&lt;br /&gt;
 knoppix mem=128M&lt;br /&gt;
(Note: make certain an upper-case M is typed after the memory size!)&lt;br /&gt;
&lt;br /&gt;
==== Q: I am able to rotate my monitor. How do i set up Knoppix to use portrait-mode? ====&lt;br /&gt;
&lt;br /&gt;
A: Edit the file /etc/X11/XF86Config-4 as root: In the section &amp;quot;Device&amp;quot; add the following line:&lt;br /&gt;
 Option &amp;quot;Rotation&amp;quot; &amp;quot;CW&amp;quot;&lt;br /&gt;
CW means  [http://en.wikipedia.org/wiki/Clockwise Clock Wise]. Also possible: CCW [http://en.wikipedia.org/wiki/Counterclockwise Counter Clock Wise]).&lt;br /&gt;
&lt;br /&gt;
==== Q: I'm looking for modules-floppies to load [[Emulex]] FC-drivers (just for demonstration purposes...) - which ones should I use, the actual [[Debian]] modules fl-images? ====&lt;br /&gt;
&lt;br /&gt;
==== Q: I have a RAID controller that doesn't have /dev entries (/dev/cciss/c0d0,/dev/cciss/c0d1, etc.) Can they be added for the next release? ====&lt;br /&gt;
&lt;br /&gt;
==== Q: How to update for new graphic card driver and reconfigure it (for hd-install or floppy-config...) ====&lt;br /&gt;
&lt;br /&gt;
A: The easiest method would probably be to simply power down, install the card, boot the latest Knoppix cd then assuming everything is working as expected, copy your /etc/X11/XF86Config-4 file from the booted cd into your hard drive install.  Rename your existing /etc/X11/XF86Config-4 to something like /etc/X11/XF86Config-4.bak so you'll still have it.&lt;br /&gt;
&lt;br /&gt;
==== Q:What are the names of the mouse? ====&lt;br /&gt;
&lt;br /&gt;
A:&lt;br /&gt;
*PS/2 is /dev/psaux&lt;br /&gt;
*Serial : /dev/ttys0 (similar to COM1 in Windows).&lt;br /&gt;
*USB: /dev/input/mice&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I know a hardware I could go to buy is Linux compatible: ====&lt;br /&gt;
&lt;br /&gt;
A: The best way is seeing [[Tux]] in the box. You can read too --&amp;gt;&amp;gt; http://www.tldp.org/HOWTO/Hardware-HOWTO/index.html and http://www.tldp.org/HOWTO/Hardware-HOWTO/incompatible.html&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Hardware_FAQ</id>
		<title>Hardware FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Hardware_FAQ"/>
				<updated>2005-01-04T07:38:03Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: numbered links fixing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Hardware FAQ Deutsch]]&lt;br /&gt;
&lt;br /&gt;
*Versión española: [[Hardware FAQ Spanish]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;br /&gt;
----&lt;br /&gt;
==== Q: How can I set up my printer?. ====&lt;br /&gt;
&lt;br /&gt;
A: Click on &amp;quot;printer configuration&amp;quot; in the &amp;quot;Knoppix&amp;quot; menu, and use the wizard.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I get support for my wheelmouse's mousewheel? ====&lt;br /&gt;
&lt;br /&gt;
A: Type &amp;quot;knoppix wheelmouse&amp;quot; at the boot prompt. Unfortunately, wheelmice cannot be auto-detected, and the wheelmouse protocol is incompatible with the standard ps/2 protocol. Therefore, the &amp;quot;normal&amp;quot; ps/2 protocol (without mousewheel support) is the safe default.&lt;br /&gt;
&lt;br /&gt;
==== Q: After finishing knx-hdinstall i am searching for a way to make a wheelmous work an a harddisk installation. What shall i do? Booting from CD with &amp;quot;knoppix wheelmouse&amp;quot; works fine. ====&lt;br /&gt;
&lt;br /&gt;
A: there are two options ('''NOT TESTED'''):&lt;br /&gt;
* edit the following file: &amp;quot;/etc/X11/XF86Config-4&amp;quot; (make backup before)&lt;br /&gt;
**add the following lines to the section &amp;quot;Input Device&amp;quot; :&lt;br /&gt;
 Option    &amp;quot;Protocol&amp;quot;  &amp;quot;IMPS/2&amp;quot;&lt;br /&gt;
 Option    &amp;quot;ZAxismapping&amp;quot;    &amp;quot;4  5&amp;quot;&lt;br /&gt;
 Option    &amp;quot;Buttons&amp;quot;     &amp;quot;5&amp;quot;&lt;br /&gt;
**If there is another line with an other protocol, you must delete it. BTW there are 3 sections for mice: serial, PS/2 and usb-Mice. You must find the correct Section.&lt;br /&gt;
&lt;br /&gt;
* edit the &amp;quot;/etc/lilo.conf&amp;quot; file&lt;br /&gt;
**and add &amp;quot;wheelmouse&amp;quot; in the line with &amp;quot;append&amp;quot; (there is a huge line of parameters).&lt;br /&gt;
**Then run &amp;quot;lilo -v&amp;quot; in a root-shell an hope there's no error message.&lt;br /&gt;
&lt;br /&gt;
==== Q: I use a Microsoft Wireless Intelli Mouse explorer (Optical, USB) and the mouspointer won't move. ====&lt;br /&gt;
&lt;br /&gt;
A: Open a Root-Console (Control-Alt-F2) and enter the following:&lt;br /&gt;
 modprobe -r usbmouse&lt;br /&gt;
 modprobe hid&lt;br /&gt;
&lt;br /&gt;
Pressing Control-Alt-F5 will bring you back to KDE.&lt;br /&gt;
&lt;br /&gt;
==== Q: I'm trying to use dialup but I've got a winmodem ====&lt;br /&gt;
&lt;br /&gt;
A: Sorry. Unfortunately some cheap modems have moved their functionality to almost completely software. Linux doesn't have support for nearly all of these ''thin'' modems and the best you can do is get another modem. You just discovered why it might have been worth purchasing a real modem. Infos about&lt;br /&gt;
GNU/Linux driver for Winmodems, see [http://www.linmodems.org]&lt;br /&gt;
&lt;br /&gt;
==== Q: My graphics card doesn't work! ====&lt;br /&gt;
&lt;br /&gt;
A: It may be that very new (or exotic) graphics cards are not in the hardware database yet. These will still usually work under Linux! You can type&lt;br /&gt;
 knoppix xmodule=vesa&lt;br /&gt;
or&lt;br /&gt;
 knoppix xmodule=fbdev&lt;br /&gt;
at the first boot screen, and the initial un-accelerated XFree86 modes will produce a usable screen. Version 31-01-2002 and later have a frame buffer boot option (especially for older notebooks) fb800x600 (instead of typing in knoppix), which uses a resolution of 800x600 pixels in frame buffer mode. Regardless of whether these workarounds are successful or not, support can be built into the next version of KNOPPIX more quickly if the PCI numbers of the graphics card along with a description can be sent to us via mail (&amp;quot;lspci ; lspci -n&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
==== Q: Auto configuration doesn't work on my computer, or the computer hangs at boot. What should I do? ====&lt;br /&gt;
&lt;br /&gt;
A: It might work if portions of the auto configuration are skipped. This can be specified with &amp;quot;knoppix noscsi&amp;quot; or &amp;quot;knoppix nopcmcia&amp;quot;. If the problem can be identified -&amp;gt; please send the exact error message and when possible a proposed solution using the web form at http://www.knopper.net/kontakt/ ! Sometimes the output of &amp;quot;lspci ; lspci -n&amp;quot; is very helpful, especially if the problem involves incorrectly identified graphics cards.&lt;br /&gt;
&lt;br /&gt;
==== Q: My PS/2 mouse doesn't work! ====&lt;br /&gt;
&lt;br /&gt;
A: If the mouse pointer in the graphical user window is erratically moving around everywhere, the attached mouse is using an exotic protocol. Only booting into &amp;quot;expert&amp;quot; mode and setting the correct protocol for the XFree system will help in this case. However, if the pointer appears in the middle of the screen and doesn't respond to mouse movements at all, you probably have a board with a known BIOS bug (lately this problem has been appearing frequently with notebooks). Try to type in&lt;br /&gt;
 knoppix pci=irqmask=0x0e98&lt;br /&gt;
at the boot screen and see if this helps. Alternatively, you can find a BIOS update for your computer (you may want to do this anyway?).&lt;br /&gt;
&lt;br /&gt;
==== Q: My system memory is not fully detected, or the computer hangs shortly after starting with the message &amp;quot;Panic: cannot mount root file system&amp;quot;! ====&lt;br /&gt;
&lt;br /&gt;
A: Some boards apparently report the usable memory size incorrectly to the Linux kernel. Solution: specify the system memory size as an additional &amp;quot;knoppix&amp;quot; boot option. For example, for 128 Megabytes use&lt;br /&gt;
 knoppix mem=128M&lt;br /&gt;
(Note: make certain an upper-case M is typed after the memory size!)&lt;br /&gt;
&lt;br /&gt;
==== Q: I am able to rotate my monitor. How do i set up Knoppix to use portrait-mode? ====&lt;br /&gt;
&lt;br /&gt;
A: Edit the file /etc/X11/XF86Config-4 as root: In the section &amp;quot;Device&amp;quot; add the following line:&lt;br /&gt;
 Option &amp;quot;Rotation&amp;quot; &amp;quot;CW&amp;quot;&lt;br /&gt;
CW means  [http://en.wikipedia.org/wiki/Clockwise Clock Wise]. Also possible: CCW [http://en.wikipedia.org/wiki/Counterclockwise Counter Clock Wise]).&lt;br /&gt;
&lt;br /&gt;
==== Q: I'm looking for modules-floppies to load [[Emulex]] FC-drivers (just for demonstration purposes...) - which ones should I use, the actual [[Debian]] modules fl-images? ====&lt;br /&gt;
&lt;br /&gt;
==== Q: I have a RAID controller that doesn't have /dev entries (/dev/cciss/c0d0,/dev/cciss/c0d1, etc.) Can they be added for the next release? ====&lt;br /&gt;
&lt;br /&gt;
==== Q: How to update for new graphic card driver and reconfigure it (for hd-install or floppy-config...) ====&lt;br /&gt;
&lt;br /&gt;
A: The easiest method would probably be to simply power down, install the card, boot the latest Knoppix cd then assuming everything is working as expected, copy your /etc/X11/XF86Config-4 file from the booted cd into your hard drive install.  Rename your existing /etc/X11/XF86Config-4 to something like /etc/X11/XF86Config-4.bak so you'll still have it.&lt;br /&gt;
&lt;br /&gt;
==== Q:What are the names of the mouse? ====&lt;br /&gt;
&lt;br /&gt;
A:&lt;br /&gt;
*PS/2 is /dev/psaux&lt;br /&gt;
*Serial : /dev/ttys0 (similar to COM1 in Windows).&lt;br /&gt;
*USB: /dev/input/mice&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I know a hardware I could go to buy is Linux compatible: ====&lt;br /&gt;
&lt;br /&gt;
A: The best way is seeing [[Tux]] in the box. You can read too --&amp;gt;&amp;gt; http://www.tldp.org/HOWTO/Hardware-HOWTO/index.html and http://www.tldp.org/HOWTO/Hardware-HOWTO/incompatible.html&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Poor_Mans_Install</id>
		<title>Poor Mans Install</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Poor_Mans_Install"/>
				<updated>2005-01-04T07:36:06Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* What you need to know: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Wrap-up ====&lt;br /&gt;
&lt;br /&gt;
Once you utilize one of these methods, you will have the functionality of a hd linux install available to you. Next time a new version of Knoppix comes out, you can simply save the new version in place of the old one and enjoy the benefits of the latest enhancement, without the hassle of a reinstall, or worrying about dependencies. But what's really cool is that you can go back to Windows whenever you wish simply by leaving the liveCD out when you boot. You never have any danger of messing up Windows, and your Windows-dependent family members and co-workers will appreciate that. Comparisons and relative merits aside, I still have applications I rely upon in Windows, which simply aren't available in Linux.&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Smb_Client_HowTo</id>
		<title>Smb Client HowTo</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Smb_Client_HowTo"/>
				<updated>2005-01-04T07:34:48Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Option 1: Lin Neighborhood */ []'s on KDE K&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Windows Networking (Client End) ===&lt;br /&gt;
==== From [http://www.shockfamily.net/cedric/knoppix/ Computer First Aid Using Knoppix] by Cedric Shock and Susan Sullivan, used with permission. ====&lt;br /&gt;
&lt;br /&gt;
To rescue use SMB (Windows Networking), you need a connection to a local area network, and another computer running on the network, with a shared folder you can access. If your local area network that was not automatically configured properly, see [[Local Area Networks]].&lt;br /&gt;
&lt;br /&gt;
Before you begin, you will need to know the following information about the other computer:&lt;br /&gt;
&amp;lt;br&amp;gt; Workgroup:&lt;br /&gt;
&amp;lt;br&amp;gt; Username:&lt;br /&gt;
&amp;lt;br&amp;gt; Password:&lt;br /&gt;
&amp;lt;br&amp;gt; Computer Name:&lt;br /&gt;
&amp;lt;br&amp;gt; Shared Folder:&lt;br /&gt;
&lt;br /&gt;
If the computer is running windows 95, 98, or ME and does not require a password for the shared folder, the username is &amp;quot;guest&amp;quot; and the password is blank.&lt;br /&gt;
&lt;br /&gt;
At this point there are two options for connecting to the computer. The first option is slightly easier, but doesn't always work; try it first. The second option is a little harder, but is rock solid.&lt;br /&gt;
&lt;br /&gt;
=== Option 1: [[Lin Neighborhood]] ===&lt;br /&gt;
Click on the http://www.shockfamily.net/cedric/knoppix/kde.png in the lower left hand corner of the screen. This will bring up a menu like the Windows Start Menu. Enter the &amp;quot;Internet&amp;quot; submenu and select &amp;quot;[[Lin Neighborhood]]&amp;quot;.  (As of at least Knoppix 3.4, [[Lin Neighborhood]] may appear under &amp;quot;more programs&amp;quot; at end of list.)&lt;br /&gt;
&lt;br /&gt;
In [[Lin Neighborhood]] find the &amp;quot;Options&amp;quot; menu and select &amp;quot;Browse entire network...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'''Entire Network Browse''' If your network requires authentication just to see the list of shared folders, select &amp;quot;Browse as user&amp;quot; and enter your network username and password. Click &amp;quot;Ok&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Lin Neighborhood]] should now show a list of workgroups and the computers in them like this:&lt;br /&gt;
&amp;lt;br&amp;gt;http://www.shockfamily.net/cedric/knoppix/linn.jpg&lt;br /&gt;
&amp;lt;br&amp;gt;Find the computer you want to access and double click on it. The list should now show the shared folders on that computer. Select the desired shared folder. Click on the &amp;quot;Mount&amp;quot; button in the upper left corner of the window.&lt;br /&gt;
&lt;br /&gt;
'''Mount Dialog''' You will be presented with a window that looks like this:&lt;br /&gt;
&amp;lt;br&amp;gt;http://www.shockfamily.net/cedric/knoppix/linnmount.jpg&lt;br /&gt;
&amp;lt;br&amp;gt;Enter your username in the box labeled &amp;quot;SMB User:&amp;quot; and your password in the box labeled &amp;quot;SMB Password:&amp;quot;. Click &amp;quot;Mount&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Now we need to open the directory that represents the shared folder on the other computer. Click on the [http://www.shockfamily.net/cedric/knoppix/home.png] at the bottom of the screen. This will open a file manager type window. There should be a folder called &amp;quot;mnt&amp;quot; in the icon view on the right; open it. In this folder, there should be one folder with the name of the computer you connected to; open it. In this folder, there should be one folder with the name of the shared folder you connected to; open it. This directory now represents the shared folder on the other computer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Option 2: The Command Line ====&lt;br /&gt;
&lt;br /&gt;
Click on the http://www.shockfamily.net/cedric/knoppix/kde.png in the lower left hand corner of the screen. This will bring up a menu like the Windows Start Menu. Enter the &amp;quot;KNOPPIX&amp;quot; submenu and select &amp;quot;Root Shell&amp;quot;. This will open a window with a light blue prompt that reads something like&lt;br /&gt;
 root@ttyp0 / #&lt;br /&gt;
*Type '''cd /mnt''' and press enter. The prompt should now read&lt;br /&gt;
 root@ttyp0 mnt #&lt;br /&gt;
*Type '''mkdir /mnt/shared''' and press enter. This makes a directory (folder) on this computer that will represent the shared folder on the other computer.&lt;br /&gt;
*Type, substituting the information garnered above for the parts in bold:&lt;br /&gt;
**mount -t smbfs -o uid=knoppix,workgroup='''Workgroup''',username='''Username''',password='''Password''' //'''Computer Name'''/'''Shared Folder''' /mnt/shared&lt;br /&gt;
and press enter. This attaches, or &amp;quot;mounts&amp;quot;, the other computer's shared folder to the folder we created.&lt;br /&gt;
&amp;lt;br&amp;gt;Close this window.&lt;br /&gt;
&lt;br /&gt;
Open a new Konqueror window by clicking on the http://www.shockfamily.net/cedric/knoppix/home.png at the bottom of the screen (it is the 4th from the left). In the address bar, after where it reads X&amp;gt; Location: type &amp;quot;file:/mnt/shared/&amp;quot; and press enter. This window is now displaying the shared directory on the other computer.&lt;br /&gt;
&lt;br /&gt;
==== Option 3: LISa and Konqueror ====&lt;br /&gt;
&lt;br /&gt;
From [http://www.knoppix.net/forum/viewtopic.php?t=8725 this thread by mkklavs]:&lt;br /&gt;
&lt;br /&gt;
Either:&lt;br /&gt;
&lt;br /&gt;
*'''A''' Run this command at a non-root console :&lt;br /&gt;
**'''wget http://users.volja.net/zejnovi/lissetup.sh &amp;amp;&amp;amp; chmod +x lissetup.sh &amp;amp;&amp;amp; sudo ./lissetup.sh&lt;br /&gt;
&lt;br /&gt;
Or...&lt;br /&gt;
&lt;br /&gt;
*'''B'''&lt;br /&gt;
#Go to [[lissetup.sh]], click ''Edit'' at the bottom, and copy the script out of the textarea box.&lt;br /&gt;
#Save it as ''lissetup.sh '' wherever you want.&lt;br /&gt;
#Run ''chmod +x lisstup.sh'' from a console in the directory where you saved the file.&lt;br /&gt;
#Run ''sudo ./lissetup.sh'' from the same directory.&lt;br /&gt;
&lt;br /&gt;
==== Either way, you assume the risk of running this script; you take full responsibility.  It's not likely it will be a problem, but posting on a Wiki or linking to an external site does not provide security against modifications.  It's possible for the script to be altered, so you should examine it yourself before running it. ====&lt;br /&gt;
&lt;br /&gt;
After doing that, open Konqueror, click the Services icon on the left side of the folder tree (the one on the bottom, use tooltips to help), and click ''LAN Browser''.  You should be able to browse Windows/SMB shares on your LAN.&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/File:Kde.png</id>
		<title>File:Kde.png</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/File:Kde.png"/>
				<updated>2005-01-04T07:33:38Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: KDE &amp;quot;K&amp;quot; icon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;KDE &amp;quot;K&amp;quot; icon&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Install_FAQ</id>
		<title>Install FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Install_FAQ"/>
				<updated>2005-01-03T00:37:05Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: Is there a way that does not use so much space? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Install FAQ Deutsch]]&lt;br /&gt;
&lt;br /&gt;
*Versión española: [[Instalación FAQ]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;br /&gt;
----&lt;br /&gt;
Also see the [[http://www.freenet.org.nz/misc/knoppix-install.html Knoppix Hard Disk Installation HOWTO]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General Installation Information ===&lt;br /&gt;
==== Sudoing ====&lt;br /&gt;
First of all for security reason all accounts are blocked - ie you can't log in to any account.  To run things as a root the user 'knoppix' is allowed to sudo - ie to run things as a root.&lt;br /&gt;
==== Script ====&lt;br /&gt;
Christian Perle provided us a script to copy and define knoppix to a &amp;quot;prepared partition&amp;quot; in your disk. But first we have to set an empty partition on our disk.  (With the new script, knoppix-installer, by Fabian Franz this changed a bit.)&lt;br /&gt;
==== Preparing a New Partition ====&lt;br /&gt;
Before partitioning the disk backup any data you don't want erased!  To partition your drive use &amp;quot;parted /dev/DESIRED_DISK(hda,hdb...)&amp;quot;.  The ? key to get a list of commands for resizing partitions and making a new ext3 partition.&lt;br /&gt;
==== Activating the script ====&lt;br /&gt;
From Knoppix 3.3 and onward open a terminal and enter:&lt;br /&gt;
*'''sudo knoppix-installer&lt;br /&gt;
For Knoppix before 3.3 enter:&lt;br /&gt;
*'''sudo knx-hdinstall&lt;br /&gt;
Simply follow the instructions on screen.&lt;br /&gt;
&lt;br /&gt;
You also might want to check: [http://debian.tu-bs.de/knoppix/installer/]&lt;br /&gt;
for a newer version or use the script '''knoppix-installer-latest-web'''&lt;br /&gt;
&lt;br /&gt;
=== Questions ===&lt;br /&gt;
==== Q: Why does &amp;quot;df&amp;quot; not list my root partition (&amp;quot;/&amp;quot;)? ====&lt;br /&gt;
A: The entry for &amp;quot;/&amp;quot; is somehow missing in /etc/mtab. Either edit that file and add a correct line for &amp;quot;/&amp;quot; or better replace /etc/mtab with a link to /proc/mounts, thn everything should be shown.&lt;br /&gt;
*'''su -c &amp;quot;ln -sf /proc/mounts /etc/mtab&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==== Q: Why is DMA disabled by default and how do I enable it? ====&lt;br /&gt;
A: Some chipsets and/or harddiscs are broken or buggy. Using DMA would cause problems on such systems. If your system works properly with DMA, you can enable it with it by typing &amp;quot;/sbin/hdparm -c3 -d1 -m16 -k1 /dev/hda&amp;quot; or by editing the &amp;quot;/etc/init.d/bootmisc.sh&amp;quot; startup script and uncommenting the hdparm -qd1 /dev/hda line to have it permanently on at reboot, if the line is not there add it.&lt;br /&gt;
Read more: [http://linux.oreillynet.com/pub/a/linux/2000/06/29/hdparm.html]&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I test the downloaded ISO file? ====&lt;br /&gt;
A: You can use md5sum -c filename.md5 in Linux  or [http://www.toast442.org/md5gui.shtml md5gui] for windows.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I install Knoppix over a Network? ====&lt;br /&gt;
&lt;br /&gt;
A: [[Install Over Net HowTo]]&lt;br /&gt;
&lt;br /&gt;
==== Q: Is there a way that does not use so much space? ====&lt;br /&gt;
&lt;br /&gt;
A: There is the &amp;quot;[[Poor Mans Install]]&amp;quot;, where you can copy some files from the CD to the harddisk. It will run like from CD, but the CDROM is free for other use and its a bit faster. Although you'll need a bootfloppy or change the  [http://en.wikipedia.org/wiki/Bios Bios] options to boot first the hard disk with Knoppix (i.e. the second hard disk or d: unit).&lt;br /&gt;
&lt;br /&gt;
==== Q: Is there other way that does not use so much space? Perhaps by having a compressed file system? ====&lt;br /&gt;
&lt;br /&gt;
A: Yes, you can install Knoppix in 700 megs instead of 2.3 gigs for the real install, but it will run as if it were from a physical CD, so you cannot install anything, unless you do a 'normal' install. Each time you boot your hardware will need to be redetected. This is not for novices. For more information see the HOWTO for the [[Hd Based HowTo]] hard drive based install.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why doesn't my sound work? ====&lt;br /&gt;
&lt;br /&gt;
A: Just run &amp;quot;/etc/init.d/alsa-autoconfig&amp;quot; as [[root]] once and you'll be fixed up nicely. To have the sound levels set at boot (alsa defaults to muted) edit the file &amp;quot;/etc/init.d/bootmisc.sh&amp;quot; and add '''aumix -w 75 -v 75''' to the bottom of the file.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I install the latest Gnome? ====&lt;br /&gt;
&lt;br /&gt;
A: Comment all the lines in /etc/apt/sources.list except by the unstable ones.&lt;br /&gt;
*'''apt-get update&lt;br /&gt;
*'''apt-get install gnome&lt;br /&gt;
&lt;br /&gt;
In order to have gnome-session working you must exec the following and choose metacity&lt;br /&gt;
*'''update-alternatives --config x-window-manager&lt;br /&gt;
&lt;br /&gt;
Optionally you can also install gdm, galeon, evolution, etc.&lt;br /&gt;
&lt;br /&gt;
==== Q: how to install knoppix-terminalserver and/or knoppix-terminalopenmosixserver ??? ====&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Install_FAQ</id>
		<title>Install FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Install_FAQ"/>
				<updated>2005-01-03T00:36:38Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: How do I test the downloaded ISO file? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*German Version: [[Install FAQ Deutsch]]&lt;br /&gt;
&lt;br /&gt;
*Versión española: [[Instalación FAQ]]&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;br /&gt;
----&lt;br /&gt;
Also see the [[http://www.freenet.org.nz/misc/knoppix-install.html Knoppix Hard Disk Installation HOWTO]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== General Installation Information ===&lt;br /&gt;
==== Sudoing ====&lt;br /&gt;
First of all for security reason all accounts are blocked - ie you can't log in to any account.  To run things as a root the user 'knoppix' is allowed to sudo - ie to run things as a root.&lt;br /&gt;
==== Script ====&lt;br /&gt;
Christian Perle provided us a script to copy and define knoppix to a &amp;quot;prepared partition&amp;quot; in your disk. But first we have to set an empty partition on our disk.  (With the new script, knoppix-installer, by Fabian Franz this changed a bit.)&lt;br /&gt;
==== Preparing a New Partition ====&lt;br /&gt;
Before partitioning the disk backup any data you don't want erased!  To partition your drive use &amp;quot;parted /dev/DESIRED_DISK(hda,hdb...)&amp;quot;.  The ? key to get a list of commands for resizing partitions and making a new ext3 partition.&lt;br /&gt;
==== Activating the script ====&lt;br /&gt;
From Knoppix 3.3 and onward open a terminal and enter:&lt;br /&gt;
*'''sudo knoppix-installer&lt;br /&gt;
For Knoppix before 3.3 enter:&lt;br /&gt;
*'''sudo knx-hdinstall&lt;br /&gt;
Simply follow the instructions on screen.&lt;br /&gt;
&lt;br /&gt;
You also might want to check: [http://debian.tu-bs.de/knoppix/installer/]&lt;br /&gt;
for a newer version or use the script '''knoppix-installer-latest-web'''&lt;br /&gt;
&lt;br /&gt;
=== Questions ===&lt;br /&gt;
==== Q: Why does &amp;quot;df&amp;quot; not list my root partition (&amp;quot;/&amp;quot;)? ====&lt;br /&gt;
A: The entry for &amp;quot;/&amp;quot; is somehow missing in /etc/mtab. Either edit that file and add a correct line for &amp;quot;/&amp;quot; or better replace /etc/mtab with a link to /proc/mounts, thn everything should be shown.&lt;br /&gt;
*'''su -c &amp;quot;ln -sf /proc/mounts /etc/mtab&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==== Q: Why is DMA disabled by default and how do I enable it? ====&lt;br /&gt;
A: Some chipsets and/or harddiscs are broken or buggy. Using DMA would cause problems on such systems. If your system works properly with DMA, you can enable it with it by typing &amp;quot;/sbin/hdparm -c3 -d1 -m16 -k1 /dev/hda&amp;quot; or by editing the &amp;quot;/etc/init.d/bootmisc.sh&amp;quot; startup script and uncommenting the hdparm -qd1 /dev/hda line to have it permanently on at reboot, if the line is not there add it.&lt;br /&gt;
Read more: [http://linux.oreillynet.com/pub/a/linux/2000/06/29/hdparm.html]&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I test the downloaded ISO file? ====&lt;br /&gt;
A: You can use md5sum -c filename.md5 in Linux  or [http://www.toast442.org/md5gui.shtml md5gui] for windows.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I install Knoppix over a Network? ====&lt;br /&gt;
&lt;br /&gt;
A: [[Install Over Net HowTo]]&lt;br /&gt;
&lt;br /&gt;
==== Q: Is there a way that does not use so much space? ====&lt;br /&gt;
&lt;br /&gt;
A: There is the &amp;quot;[[Poor Mans Install]]&amp;quot;, where you can copy some files from the CD to the harddisk. It will run like from CD, but the CDROM is free for other use and its a bit faster. Although you'll need a bootfloppy or change the  [[http://en.wikipedia.org/wiki/Bios Bios]] options to boot first the hard disk with Knoppix (i.e. the second hard disk or d: unit).&lt;br /&gt;
&lt;br /&gt;
==== Q: Is there other way that does not use so much space? Perhaps by having a compressed file system? ====&lt;br /&gt;
&lt;br /&gt;
A: Yes, you can install Knoppix in 700 megs instead of 2.3 gigs for the real install, but it will run as if it were from a physical CD, so you cannot install anything, unless you do a 'normal' install. Each time you boot your hardware will need to be redetected. This is not for novices. For more information see the HOWTO for the [[Hd Based HowTo]] hard drive based install.&lt;br /&gt;
&lt;br /&gt;
==== Q: Why doesn't my sound work? ====&lt;br /&gt;
&lt;br /&gt;
A: Just run &amp;quot;/etc/init.d/alsa-autoconfig&amp;quot; as [[root]] once and you'll be fixed up nicely. To have the sound levels set at boot (alsa defaults to muted) edit the file &amp;quot;/etc/init.d/bootmisc.sh&amp;quot; and add '''aumix -w 75 -v 75''' to the bottom of the file.&lt;br /&gt;
&lt;br /&gt;
==== Q: How do I install the latest Gnome? ====&lt;br /&gt;
&lt;br /&gt;
A: Comment all the lines in /etc/apt/sources.list except by the unstable ones.&lt;br /&gt;
*'''apt-get update&lt;br /&gt;
*'''apt-get install gnome&lt;br /&gt;
&lt;br /&gt;
In order to have gnome-session working you must exec the following and choose metacity&lt;br /&gt;
*'''update-alternatives --config x-window-manager&lt;br /&gt;
&lt;br /&gt;
Optionally you can also install gdm, galeon, evolution, etc.&lt;br /&gt;
&lt;br /&gt;
==== Q: how to install knoppix-terminalserver and/or knoppix-terminalopenmosixserver ??? ====&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Return to [[Knoppix FAQ]]&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Win_Partition</id>
		<title>Win Partition</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Win_Partition"/>
				<updated>2005-01-03T00:30:45Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Steps: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Windows Partition PMI ===&lt;br /&gt;
&lt;br /&gt;
Much Credit here is due to the Japanese Knoppix Group for developing an NTFS compatible boot setup, to the various Grub patches authors, and to Ruymbeke for the easy setup and for the adaptation to the domestic versions of Knoppix on DOS/NT/XP machines.&lt;br /&gt;
&lt;br /&gt;
''This how-to was originally written by J. Drake to synthesize [[http://www.knoppix.net/forum/viewtopic.php?p=52847#52847  this thread]] and make it simpler for new users to follow.''&lt;br /&gt;
&lt;br /&gt;
This version of a poor man's installation goes beyond the basics, and utilizes the GRUB bootloader to install Knoppix from a Windows partition (including NTFS).  The advantages of this version over the [[Basic Poor Mans]] PMI are as follows:&lt;br /&gt;
&lt;br /&gt;
* 1.  No CD, USB, diskette, or any other device are required to boot.  You can choose to boot either Windows or Linux from a simple boot menu.&lt;br /&gt;
&lt;br /&gt;
* 2.  All setup and installation can be done from within Windows.  No prior Linux experience is required to have the function and versatility of a Linux HD install.  For new users especially, this option is very attractive.&lt;br /&gt;
&lt;br /&gt;
* 3.  In many cases, upgrading is as simple as downloading a new release to the appropriate Windows folder.&lt;br /&gt;
&lt;br /&gt;
* 4.  No partitioning is needed to run HD based Linux off of the typical single-partition factory-built computer, unless the user wants to save data to the hard disk.  New users who don't wish to partition their drives can save data on a separate disk or USB drive, while those desiring the enhanced function of a persistent home can create as few as one additional non-NTFS partition.  Plus, users willing to experiment with Captive NTFS might potentially experiment with persistent homes in their NTFS partitions (not me).&lt;br /&gt;
&lt;br /&gt;
Be sure to read and understand the introductory information on the WIKI page [[Poor Mans Install]].&lt;br /&gt;
&lt;br /&gt;
Note: If you have ever tried any other kind of [[Poor Mans Install]] as described in [[Hd Based HowTo]], please remove or rename the KNOPPIX directory on harddisk.&lt;br /&gt;
&lt;br /&gt;
==== Steps: ====&lt;br /&gt;
&lt;br /&gt;
* 1.  Within Windows, download [http://s94592085.onlinehome.us/grub/grubd.zip  Ruymbeke's files], and extract them to a folder on the Windows desktop.&lt;br /&gt;
&lt;br /&gt;
* 2.  Copy the files and folders from the &amp;quot;Root''Of''NTFS&amp;quot; folder into the root of your C: drive, ''except for boot.ini''.  Use boot.ini from the zip as a template for modifying your boot.ini.&lt;br /&gt;
&lt;br /&gt;
* 3.  While you're in the root of your C: drive, find the boot.ini file and copy it to boot.old, then open boot.ini with notepad.  At the end of the file, add the following line:  c:\grldr=&amp;quot;Start Grub&amp;quot; . . . or whatever title you want to put in the quotes.  Check to make sure that the timeout gives you enough time (in seconds) to make a choice.  You can refer to the boot.ini in the zip as an example.  Save as Boot.ini and exit.&lt;br /&gt;
Notes:&lt;br /&gt;
-With Win2000 computers you may add an alternate boot option in the boot.ini file: c:\bootgrub=&amp;quot;Start Grub (old method)&amp;quot;&lt;br /&gt;
-To work with Windows 9x copy GRUB.EXE from &amp;quot;Root''Of''NTFS&amp;quot; folder to C:\ then edit your CONFIG.SYS file adding the line ''SHELL=GRUB.EXE'' (to return to booting to Windows 9x you will have to edit config.sys again as grub.exe will not allow booting to Windows/Msdos AFAIK).&lt;br /&gt;
&lt;br /&gt;
* 4.  Find the ISO file you originally downloaded, and copy it to the c:\boot\knoppix.36 folder.&lt;br /&gt;
&lt;br /&gt;
* 5.  Now, open Notepad, and load the file C:/BOOT/GRUB/menu.lst.  Check to make sure that each step matches your HD configuration.  Exammine the boot stanzas and add any cheatcodes for persistent home, saved configuration, or whatever you may use.  Up at the top, I would recommend changing the timeout from 5 seconds to 15.  Save and exit.&lt;br /&gt;
&lt;br /&gt;
* 6.  Restart, and wait for a menu prompt which gives you a choice between Windows and Start Grub.  Cursor down to Start Grub and enter.  Then choose among the options in the same manner.  You should be launching Knoppix now.&lt;br /&gt;
&lt;br /&gt;
==== Tweaks: ====&lt;br /&gt;
&lt;br /&gt;
* 1.  Note that in GRUB, the first disk or first partition are numbered zero.  So, if your C: drive is the first partition of your first disk the C: drive will be hd(0,0), and hdb3 would be hd(1,2).  On newer stock HP Pavilions, C: is actually the ''second'' partition of the first drive (hda2), which equates to hd(0,1) in grubspeak.&lt;br /&gt;
&lt;br /&gt;
* 2.  If you're really new and haven't set up a persistent home yet or saved your configuration, you can set this up later, once you boot into Knoppix.  Just click the penguin icon on the toolbar and choose Configure, and follow the instructions to set up a persistent home.&lt;br /&gt;
&lt;br /&gt;
* 3. The easiest way to install programs is by using Klik. Open Konqueror (not Mozilla or any other browser), and type in the following URL: http://klik.berlios.de/ then follow the instructions to install Klik. You will see a number of programs available to you for automatic installation. If you don't see the one you want listed, you can try the following command klik://softwarename into the address block of Konqueror.&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/PXE_FAQ</id>
		<title>PXE FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/PXE_FAQ"/>
				<updated>2005-01-03T00:28:05Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: How can I boot with PXE? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Q: can i have multiple terminal server run simultaneously? so pxe client can choose wheter to boot ltsp or knoppix or clusterknoppix or damnsmalllinux, or other...?? ====&lt;br /&gt;
A: Yes, for instance, have a look at [http://syslinux.zytor.com/pxe.php PXELinux]  which allows you to make a menu (with submenus...).&lt;br /&gt;
&lt;br /&gt;
==== Q: is PXE + ssh possible?? ====&lt;br /&gt;
A:Yes SSH is possible from a PXE boot environment even if the environment is read-only.  When running in a read-only environment, SSH keys should be generated during the boot scripts and saved to a ram filesystem that will be cleared during a reset or powerdown.&lt;br /&gt;
&lt;br /&gt;
==== Q: What is PXE? ====&lt;br /&gt;
A: PXE stands for &amp;lt;b&amp;gt;'Preboot Execution Environment'&amp;lt;/b&amp;gt; and is part of Intels(tm) Wired for Management (WfM).&amp;lt;br&amp;gt;The &amp;lt;b&amp;gt;Linux Magazine&amp;lt;/b&amp;gt; has written a good article about &amp;lt;b&amp;gt;[http://www.linux-mag.com/2002-10/netbooting_01.html 'Network Booting']  - Please read it first&amp;lt;/b&amp;gt; to know about Network Booting and PXE&amp;lt;b&amp;gt;!&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;Intel offers 103 pages of [ftp://download.intel.com/labs/manage/wfm/download/pxespec.pdf PXE Specifications 2.1 (Sep. 20.1999)].&lt;br /&gt;
&lt;br /&gt;
==== Q: Where can I find more information about PXE &amp;amp; GNU/Linux? ====&lt;br /&gt;
*[http://www.linux-mag.com/2002-10/netbooting_01.html] (Reminder: good article 'Network Booting' (10/2002))&lt;br /&gt;
*[http://www.kegel.com/linux/pxe.html] (good place to start)&lt;br /&gt;
&lt;br /&gt;
==== Q: Can I boot via a PCMCIA-network-card? ====&lt;br /&gt;
A: Probably yes, but the boot rom-o-matic site does not support any PCMCIA cards. We still have to write a guide or a script to support this. Suggestions Welcome.&lt;br /&gt;
&lt;br /&gt;
- ''(Do you know more? Please add and comment here)''&lt;br /&gt;
&lt;br /&gt;
==== Q: How can I boot with PXE? ====&lt;br /&gt;
A: There are a number of possible routes:&lt;br /&gt;
#Modern BIOS with a PCI or an on-board network card (AFAIK no PCMCIA-cards)&lt;br /&gt;
#PXE-bootimage on a &amp;lt;b&amp;gt;floppy&amp;lt;/b&amp;gt;&lt;br /&gt;
#PXE-bootimage on a &amp;lt;b&amp;gt;cdrom&amp;lt;/b&amp;gt;&lt;br /&gt;
#PXE Capable &amp;lt;b&amp;gt;bootloader&amp;lt;/b&amp;gt; (e.g. [http://www.gnu.org/software/grub Grub])&lt;br /&gt;
#PXE-bootimage on the &amp;lt;b&amp;gt;hard drive&amp;lt;/b&amp;gt;&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''1. Modern Bios with a PCI or an on-board network card''' (AFAIK no PCMCIA-cards)&lt;br /&gt;
Go into your Bios and choose your NIC as primary Boot device.&lt;br /&gt;
At boottime you can configure this to use PXE and DHCP. You will probably have to enable Network booting before it shows up in the boot order menu, this depends on the particular Bios.&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''2. PXE with Floppy Quick-Tutorial:&lt;br /&gt;
(by Fabian)&lt;br /&gt;
&lt;br /&gt;
*Start Knoppix with CD on computer 1...&lt;br /&gt;
*Start knoppix-terminalserver (Choose the right network card you want to use in computer two which will boot from network)&lt;br /&gt;
*Make an floppydisk for you NIC (network interface card) from [http://www.rom-o-matic.net] ... (lzdsk)&lt;br /&gt;
*Write image to floppy&lt;br /&gt;
*'''dd if=eb-5.0.7-xx.lzdsk of=/dev/floppy&lt;br /&gt;
*Boot computer two from floppy ...&lt;br /&gt;
*Choose boot from network, when asked (press 'n')&lt;br /&gt;
*Finished&lt;br /&gt;
&lt;br /&gt;
===== From the mailing list by Michael Bramer: =====&lt;br /&gt;
 But beware, Openoffice takes more than 10 Minutes to start with 133MHz;-)), but it works,&lt;br /&gt;
 if you are not typing too fast!&lt;br /&gt;
 &lt;br /&gt;
 Shouldn't it run on the server?&lt;br /&gt;
 &lt;br /&gt;
 No, &amp;lt;b&amp;gt;it's a FAT client&amp;lt;/b&amp;gt;. The Server only exports the compressed images and&lt;br /&gt;
 the kernel, the software runs completely on the Clients, with access to&lt;br /&gt;
 local drives (if not being run in secure mode).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To run a THIN client shouldn't be a big task.&lt;br /&gt;
&lt;br /&gt;
on the server:&lt;br /&gt;
* start the normal terminal server:&lt;br /&gt;
* start kdm/xdm/... with XDMCP&lt;br /&gt;
* maybe add user01 - user30 with empty passwords..&lt;br /&gt;
&lt;br /&gt;
on the client:&lt;br /&gt;
*  boot normally (like the FAT client) - use the following boot parameters : knoppix 2&lt;br /&gt;
*  Start X with `X -broadcast` or a `X -query $SERVER` (where $SERVER is the name or IP of your server)&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''3. PXE-boot image on a CD-ROM&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''4. PXE Capable Bootloader (e.g. Grub)&lt;br /&gt;
see ''''man grub''', '''info grub''' and grub webpage&lt;br /&gt;
&lt;br /&gt;
Now here is a quote from&lt;br /&gt;
[http://www.gnu.org/manual/grub/html_mono/grub.html#Network]&lt;br /&gt;
for you about grub and PXE:&lt;br /&gt;
&lt;br /&gt;
 Booting from a network&lt;br /&gt;
 &lt;br /&gt;
 It is sometimes very useful to boot from a network, especially, when you use a machine&lt;br /&gt;
 which has no local disk.&lt;br /&gt;
 In this case, you need to obtain a   kind of Net Boot ROM, such as a PXE ROM or a free&lt;br /&gt;
 software package like Etherboot.&lt;br /&gt;
 Such a Boot ROM first boots the machine, sets up the network card   installed into the machine&lt;br /&gt;
 and downloads a second  stage boot image from the network.&amp;lt;br&amp;gt;&lt;br /&gt;
 Then, the second image will try to boot an operating system   from the network actually.&lt;br /&gt;
 &lt;br /&gt;
 GRUB provides two second stage images, nbgrub and pxegrub (see Images).&amp;lt;br&amp;gt;&lt;br /&gt;
 Those images are the same as the normal Stage 2,  except that they set up a network automatically,&lt;br /&gt;
 and try to load a configuration file from the network, if specified.&lt;br /&gt;
 The usage is very simple: If the machine has a PXE ROM, use pxegrub.&lt;br /&gt;
 If the machine has a NBI loader such as Etherboot,  use nbgrub.&lt;br /&gt;
 There is no difference between them but their formats.&lt;br /&gt;
 As how to load a second stage image you want to use should be described in the manual on your&lt;br /&gt;
 Net Boot ROM,  please refer to the manual, for more information.&lt;br /&gt;
 &lt;br /&gt;
 However, there is one thing specific to GRUB.&lt;br /&gt;
 Namely, how to specify a configuration file in a BOOTP/DHCP server.&lt;br /&gt;
 For now, GRUB uses the tag 150, to get the name of a configuration file.&lt;br /&gt;
 This below is an example about a BOOTP configuration:&lt;br /&gt;
 &lt;br /&gt;
 .allhost:hd=/tmp:bf=null:\&lt;br /&gt;
 :ds=145.71.35.1 145.71.32.1:\&lt;br /&gt;
 :sm=255.255.254.0:\&lt;br /&gt;
 :gw=145.71.35.1:\&lt;br /&gt;
 :sa=145.71.35.5:&lt;br /&gt;
 &lt;br /&gt;
 foo:ht=1:ha=63655d0334a7:ip=145.71.35.127:\&lt;br /&gt;
 :bf=/nbgrub:\&lt;br /&gt;
 :tc=.allhost:\&lt;br /&gt;
 :T150=&amp;quot;(nd)/tftpboot/menu.lst.foo&amp;quot;:&lt;br /&gt;
 &lt;br /&gt;
 Note that you should specify the drive name (nd) in the name of the configuration file.&lt;br /&gt;
 That is because you can change the root drive before downloading the configuration&lt;br /&gt;
 from the TFTP server,  when the preset menu feature is used (see Preset Menu)&lt;br /&gt;
 &lt;br /&gt;
 See the manual about your BOOTP/DHCP server, for more information.&lt;br /&gt;
 The exact syntax should differ from the example, more or less.&lt;br /&gt;
&lt;br /&gt;
==== Tip: Grub====&lt;br /&gt;
You should be familar with [http://en.wikipedia.org/wiki/GRUB grub] before tring this. Take time to learn&lt;br /&gt;
grub from the ground on and you will enjoy grub!&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''5. PXE-bootimage on hd&lt;br /&gt;
''see 4. bootloader (grub)''&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This wiki-page was revised by:&lt;br /&gt;
Robert Michel, thadk&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/PXE_FAQ</id>
		<title>PXE FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/PXE_FAQ"/>
				<updated>2005-01-03T00:27:18Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Q: What is PXE? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Q: can i have multiple terminal server run simultaneously? so pxe client can choose wheter to boot ltsp or knoppix or clusterknoppix or damnsmalllinux, or other...?? ====&lt;br /&gt;
A: Yes, for instance, have a look at [http://syslinux.zytor.com/pxe.php PXELinux]  which allows you to make a menu (with submenus...).&lt;br /&gt;
&lt;br /&gt;
==== Q: is PXE + ssh possible?? ====&lt;br /&gt;
A:Yes SSH is possible from a PXE boot environment even if the environment is read-only.  When running in a read-only environment, SSH keys should be generated during the boot scripts and saved to a ram filesystem that will be cleared during a reset or powerdown.&lt;br /&gt;
&lt;br /&gt;
==== Q: What is PXE? ====&lt;br /&gt;
A: PXE stands for &amp;lt;b&amp;gt;'Preboot Execution Environment'&amp;lt;/b&amp;gt; and is part of Intels(tm) Wired for Management (WfM).&amp;lt;br&amp;gt;The &amp;lt;b&amp;gt;Linux Magazine&amp;lt;/b&amp;gt; has written a good article about &amp;lt;b&amp;gt;[http://www.linux-mag.com/2002-10/netbooting_01.html 'Network Booting']  - Please read it first&amp;lt;/b&amp;gt; to know about Network Booting and PXE&amp;lt;b&amp;gt;!&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;Intel offers 103 pages of [ftp://download.intel.com/labs/manage/wfm/download/pxespec.pdf PXE Specifications 2.1 (Sep. 20.1999)].&lt;br /&gt;
&lt;br /&gt;
==== Q: Where can I find more information about PXE &amp;amp; GNU/Linux? ====&lt;br /&gt;
*[http://www.linux-mag.com/2002-10/netbooting_01.html] (Reminder: good article 'Network Booting' (10/2002))&lt;br /&gt;
*[http://www.kegel.com/linux/pxe.html] (good place to start)&lt;br /&gt;
&lt;br /&gt;
==== Q: Can I boot via a PCMCIA-network-card? ====&lt;br /&gt;
A: Probably yes, but the boot rom-o-matic site does not support any PCMCIA cards. We still have to write a guide or a script to support this. Suggestions Welcome.&lt;br /&gt;
&lt;br /&gt;
- ''(Do you know more? Please add and comment here)''&lt;br /&gt;
&lt;br /&gt;
==== Q: How can I boot with PXE? ====&lt;br /&gt;
A: There are a number of possible routes:&lt;br /&gt;
#Modern BIOS with a PCI or an on-board network card (AFAIK no PCMCIA-cards)&lt;br /&gt;
#PXE-bootimage on a &amp;lt;b&amp;gt;floppy&amp;lt;/b&amp;gt;&lt;br /&gt;
#PXE-bootimage on a &amp;lt;b&amp;gt;cdrom&amp;lt;/b&amp;gt;&lt;br /&gt;
#PXE Capable &amp;lt;b&amp;gt;bootloader&amp;lt;/b&amp;gt; (e.g. [[http://www.gnu.org/software/grub Grub])]&lt;br /&gt;
#PXE-bootimage on the &amp;lt;b&amp;gt;hard drive&amp;lt;/b&amp;gt;&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''1. Modern Bios with a PCI or an on-board network card''' (AFAIK no PCMCIA-cards)&lt;br /&gt;
Go into your Bios and choose your NIC as primary Boot device.&lt;br /&gt;
At boottime you can configure this to use PXE and DHCP. You will probably have to enable Network booting before it shows up in the boot order menu, this depends on the particular Bios.&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''2. PXE with Floppy Quick-Tutorial:&lt;br /&gt;
(by Fabian)&lt;br /&gt;
&lt;br /&gt;
*Start Knoppix with CD on computer 1...&lt;br /&gt;
*Start knoppix-terminalserver (Choose the right network card you want to use in computer two which will boot from network)&lt;br /&gt;
*Make an floppydisk for you NIC (network interface card) from [http://www.rom-o-matic.net] ... (lzdsk)&lt;br /&gt;
*Write image to floppy&lt;br /&gt;
*'''dd if=eb-5.0.7-xx.lzdsk of=/dev/floppy&lt;br /&gt;
*Boot computer two from floppy ...&lt;br /&gt;
*Choose boot from network, when asked (press 'n')&lt;br /&gt;
*Finished&lt;br /&gt;
&lt;br /&gt;
===== From the mailing list by Michael Bramer: =====&lt;br /&gt;
 But beware, Openoffice takes more than 10 Minutes to start with 133MHz;-)), but it works,&lt;br /&gt;
 if you are not typing too fast!&lt;br /&gt;
 &lt;br /&gt;
 Shouldn't it run on the server?&lt;br /&gt;
 &lt;br /&gt;
 No, &amp;lt;b&amp;gt;it's a FAT client&amp;lt;/b&amp;gt;. The Server only exports the compressed images and&lt;br /&gt;
 the kernel, the software runs completely on the Clients, with access to&lt;br /&gt;
 local drives (if not being run in secure mode).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To run a THIN client shouldn't be a big task.&lt;br /&gt;
&lt;br /&gt;
on the server:&lt;br /&gt;
* start the normal terminal server:&lt;br /&gt;
* start kdm/xdm/... with XDMCP&lt;br /&gt;
* maybe add user01 - user30 with empty passwords..&lt;br /&gt;
&lt;br /&gt;
on the client:&lt;br /&gt;
*  boot normally (like the FAT client) - use the following boot parameters : knoppix 2&lt;br /&gt;
*  Start X with `X -broadcast` or a `X -query $SERVER` (where $SERVER is the name or IP of your server)&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''3. PXE-boot image on a CD-ROM&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''4. PXE Capable Bootloader (e.g. Grub)&lt;br /&gt;
see ''''man grub''', '''info grub''' and grub webpage&lt;br /&gt;
&lt;br /&gt;
Now here is a quote from&lt;br /&gt;
[http://www.gnu.org/manual/grub/html_mono/grub.html#Network]&lt;br /&gt;
for you about grub and PXE:&lt;br /&gt;
&lt;br /&gt;
 Booting from a network&lt;br /&gt;
 &lt;br /&gt;
 It is sometimes very useful to boot from a network, especially, when you use a machine&lt;br /&gt;
 which has no local disk.&lt;br /&gt;
 In this case, you need to obtain a   kind of Net Boot ROM, such as a PXE ROM or a free&lt;br /&gt;
 software package like Etherboot.&lt;br /&gt;
 Such a Boot ROM first boots the machine, sets up the network card   installed into the machine&lt;br /&gt;
 and downloads a second  stage boot image from the network.&amp;lt;br&amp;gt;&lt;br /&gt;
 Then, the second image will try to boot an operating system   from the network actually.&lt;br /&gt;
 &lt;br /&gt;
 GRUB provides two second stage images, nbgrub and pxegrub (see Images).&amp;lt;br&amp;gt;&lt;br /&gt;
 Those images are the same as the normal Stage 2,  except that they set up a network automatically,&lt;br /&gt;
 and try to load a configuration file from the network, if specified.&lt;br /&gt;
 The usage is very simple: If the machine has a PXE ROM, use pxegrub.&lt;br /&gt;
 If the machine has a NBI loader such as Etherboot,  use nbgrub.&lt;br /&gt;
 There is no difference between them but their formats.&lt;br /&gt;
 As how to load a second stage image you want to use should be described in the manual on your&lt;br /&gt;
 Net Boot ROM,  please refer to the manual, for more information.&lt;br /&gt;
 &lt;br /&gt;
 However, there is one thing specific to GRUB.&lt;br /&gt;
 Namely, how to specify a configuration file in a BOOTP/DHCP server.&lt;br /&gt;
 For now, GRUB uses the tag 150, to get the name of a configuration file.&lt;br /&gt;
 This below is an example about a BOOTP configuration:&lt;br /&gt;
 &lt;br /&gt;
 .allhost:hd=/tmp:bf=null:\&lt;br /&gt;
 :ds=145.71.35.1 145.71.32.1:\&lt;br /&gt;
 :sm=255.255.254.0:\&lt;br /&gt;
 :gw=145.71.35.1:\&lt;br /&gt;
 :sa=145.71.35.5:&lt;br /&gt;
 &lt;br /&gt;
 foo:ht=1:ha=63655d0334a7:ip=145.71.35.127:\&lt;br /&gt;
 :bf=/nbgrub:\&lt;br /&gt;
 :tc=.allhost:\&lt;br /&gt;
 :T150=&amp;quot;(nd)/tftpboot/menu.lst.foo&amp;quot;:&lt;br /&gt;
 &lt;br /&gt;
 Note that you should specify the drive name (nd) in the name of the configuration file.&lt;br /&gt;
 That is because you can change the root drive before downloading the configuration&lt;br /&gt;
 from the TFTP server,  when the preset menu feature is used (see Preset Menu)&lt;br /&gt;
 &lt;br /&gt;
 See the manual about your BOOTP/DHCP server, for more information.&lt;br /&gt;
 The exact syntax should differ from the example, more or less.&lt;br /&gt;
&lt;br /&gt;
==== Tip: Grub====&lt;br /&gt;
You should be familar with [http://en.wikipedia.org/wiki/GRUB grub] before tring this. Take time to learn&lt;br /&gt;
grub from the ground on and you will enjoy grub!&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''5. PXE-bootimage on hd&lt;br /&gt;
''see 4. bootloader (grub)''&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This wiki-page was revised by:&lt;br /&gt;
Robert Michel, thadk&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/PXE_FAQ</id>
		<title>PXE FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/PXE_FAQ"/>
				<updated>2005-01-03T00:26:14Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* Tip: Grub */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Q: can i have multiple terminal server run simultaneously? so pxe client can choose wheter to boot ltsp or knoppix or clusterknoppix or damnsmalllinux, or other...?? ====&lt;br /&gt;
A: Yes, for instance, have a look at [http://syslinux.zytor.com/pxe.php PXELinux]  which allows you to make a menu (with submenus...).&lt;br /&gt;
&lt;br /&gt;
==== Q: is PXE + ssh possible?? ====&lt;br /&gt;
A:Yes SSH is possible from a PXE boot environment even if the environment is read-only.  When running in a read-only environment, SSH keys should be generated during the boot scripts and saved to a ram filesystem that will be cleared during a reset or powerdown.&lt;br /&gt;
&lt;br /&gt;
==== Q: What is PXE? ====&lt;br /&gt;
A: PXE stands for &amp;lt;b&amp;gt;'Preboot Execution Environment'&amp;lt;/b&amp;gt; and is part of Intels(tm) Wired for Management (WfM).&amp;lt;br&amp;gt;The &amp;lt;b&amp;gt;Linux Magazine&amp;lt;/b&amp;gt; has written a good article about &amp;lt;b&amp;gt;[[http://www.linux-mag.com/2002-10/netbooting_01.html 'Network Booting']]  - Please read it first&amp;lt;/b&amp;gt; to know about Network Booting and PXE&amp;lt;b&amp;gt;!&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;Intel offers 103 pages of [[ftp://download.intel.com/labs/manage/wfm/download/pxespec.pdf PXE Specifications 2.1 (Sep. 20.1999)].]&lt;br /&gt;
&lt;br /&gt;
==== Q: Where can I find more information about PXE &amp;amp; GNU/Linux? ====&lt;br /&gt;
*[http://www.linux-mag.com/2002-10/netbooting_01.html] (Reminder: good article 'Network Booting' (10/2002))&lt;br /&gt;
*[http://www.kegel.com/linux/pxe.html] (good place to start)&lt;br /&gt;
&lt;br /&gt;
==== Q: Can I boot via a PCMCIA-network-card? ====&lt;br /&gt;
A: Probably yes, but the boot rom-o-matic site does not support any PCMCIA cards. We still have to write a guide or a script to support this. Suggestions Welcome.&lt;br /&gt;
&lt;br /&gt;
- ''(Do you know more? Please add and comment here)''&lt;br /&gt;
&lt;br /&gt;
==== Q: How can I boot with PXE? ====&lt;br /&gt;
A: There are a number of possible routes:&lt;br /&gt;
#Modern BIOS with a PCI or an on-board network card (AFAIK no PCMCIA-cards)&lt;br /&gt;
#PXE-bootimage on a &amp;lt;b&amp;gt;floppy&amp;lt;/b&amp;gt;&lt;br /&gt;
#PXE-bootimage on a &amp;lt;b&amp;gt;cdrom&amp;lt;/b&amp;gt;&lt;br /&gt;
#PXE Capable &amp;lt;b&amp;gt;bootloader&amp;lt;/b&amp;gt; (e.g. [[http://www.gnu.org/software/grub Grub])]&lt;br /&gt;
#PXE-bootimage on the &amp;lt;b&amp;gt;hard drive&amp;lt;/b&amp;gt;&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''1. Modern Bios with a PCI or an on-board network card''' (AFAIK no PCMCIA-cards)&lt;br /&gt;
Go into your Bios and choose your NIC as primary Boot device.&lt;br /&gt;
At boottime you can configure this to use PXE and DHCP. You will probably have to enable Network booting before it shows up in the boot order menu, this depends on the particular Bios.&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''2. PXE with Floppy Quick-Tutorial:&lt;br /&gt;
(by Fabian)&lt;br /&gt;
&lt;br /&gt;
*Start Knoppix with CD on computer 1...&lt;br /&gt;
*Start knoppix-terminalserver (Choose the right network card you want to use in computer two which will boot from network)&lt;br /&gt;
*Make an floppydisk for you NIC (network interface card) from [http://www.rom-o-matic.net] ... (lzdsk)&lt;br /&gt;
*Write image to floppy&lt;br /&gt;
*'''dd if=eb-5.0.7-xx.lzdsk of=/dev/floppy&lt;br /&gt;
*Boot computer two from floppy ...&lt;br /&gt;
*Choose boot from network, when asked (press 'n')&lt;br /&gt;
*Finished&lt;br /&gt;
&lt;br /&gt;
===== From the mailing list by Michael Bramer: =====&lt;br /&gt;
 But beware, Openoffice takes more than 10 Minutes to start with 133MHz;-)), but it works,&lt;br /&gt;
 if you are not typing too fast!&lt;br /&gt;
 &lt;br /&gt;
 Shouldn't it run on the server?&lt;br /&gt;
 &lt;br /&gt;
 No, &amp;lt;b&amp;gt;it's a FAT client&amp;lt;/b&amp;gt;. The Server only exports the compressed images and&lt;br /&gt;
 the kernel, the software runs completely on the Clients, with access to&lt;br /&gt;
 local drives (if not being run in secure mode).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To run a THIN client shouldn't be a big task.&lt;br /&gt;
&lt;br /&gt;
on the server:&lt;br /&gt;
* start the normal terminal server:&lt;br /&gt;
* start kdm/xdm/... with XDMCP&lt;br /&gt;
* maybe add user01 - user30 with empty passwords..&lt;br /&gt;
&lt;br /&gt;
on the client:&lt;br /&gt;
*  boot normally (like the FAT client) - use the following boot parameters : knoppix 2&lt;br /&gt;
*  Start X with `X -broadcast` or a `X -query $SERVER` (where $SERVER is the name or IP of your server)&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''3. PXE-boot image on a CD-ROM&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''4. PXE Capable Bootloader (e.g. Grub)&lt;br /&gt;
see ''''man grub''', '''info grub''' and grub webpage&lt;br /&gt;
&lt;br /&gt;
Now here is a quote from&lt;br /&gt;
[http://www.gnu.org/manual/grub/html_mono/grub.html#Network]&lt;br /&gt;
for you about grub and PXE:&lt;br /&gt;
&lt;br /&gt;
 Booting from a network&lt;br /&gt;
 &lt;br /&gt;
 It is sometimes very useful to boot from a network, especially, when you use a machine&lt;br /&gt;
 which has no local disk.&lt;br /&gt;
 In this case, you need to obtain a   kind of Net Boot ROM, such as a PXE ROM or a free&lt;br /&gt;
 software package like Etherboot.&lt;br /&gt;
 Such a Boot ROM first boots the machine, sets up the network card   installed into the machine&lt;br /&gt;
 and downloads a second  stage boot image from the network.&amp;lt;br&amp;gt;&lt;br /&gt;
 Then, the second image will try to boot an operating system   from the network actually.&lt;br /&gt;
 &lt;br /&gt;
 GRUB provides two second stage images, nbgrub and pxegrub (see Images).&amp;lt;br&amp;gt;&lt;br /&gt;
 Those images are the same as the normal Stage 2,  except that they set up a network automatically,&lt;br /&gt;
 and try to load a configuration file from the network, if specified.&lt;br /&gt;
 The usage is very simple: If the machine has a PXE ROM, use pxegrub.&lt;br /&gt;
 If the machine has a NBI loader such as Etherboot,  use nbgrub.&lt;br /&gt;
 There is no difference between them but their formats.&lt;br /&gt;
 As how to load a second stage image you want to use should be described in the manual on your&lt;br /&gt;
 Net Boot ROM,  please refer to the manual, for more information.&lt;br /&gt;
 &lt;br /&gt;
 However, there is one thing specific to GRUB.&lt;br /&gt;
 Namely, how to specify a configuration file in a BOOTP/DHCP server.&lt;br /&gt;
 For now, GRUB uses the tag 150, to get the name of a configuration file.&lt;br /&gt;
 This below is an example about a BOOTP configuration:&lt;br /&gt;
 &lt;br /&gt;
 .allhost:hd=/tmp:bf=null:\&lt;br /&gt;
 :ds=145.71.35.1 145.71.32.1:\&lt;br /&gt;
 :sm=255.255.254.0:\&lt;br /&gt;
 :gw=145.71.35.1:\&lt;br /&gt;
 :sa=145.71.35.5:&lt;br /&gt;
 &lt;br /&gt;
 foo:ht=1:ha=63655d0334a7:ip=145.71.35.127:\&lt;br /&gt;
 :bf=/nbgrub:\&lt;br /&gt;
 :tc=.allhost:\&lt;br /&gt;
 :T150=&amp;quot;(nd)/tftpboot/menu.lst.foo&amp;quot;:&lt;br /&gt;
 &lt;br /&gt;
 Note that you should specify the drive name (nd) in the name of the configuration file.&lt;br /&gt;
 That is because you can change the root drive before downloading the configuration&lt;br /&gt;
 from the TFTP server,  when the preset menu feature is used (see Preset Menu)&lt;br /&gt;
 &lt;br /&gt;
 See the manual about your BOOTP/DHCP server, for more information.&lt;br /&gt;
 The exact syntax should differ from the example, more or less.&lt;br /&gt;
&lt;br /&gt;
==== Tip: Grub====&lt;br /&gt;
You should be familar with [http://en.wikipedia.org/wiki/GRUB grub] before tring this. Take time to learn&lt;br /&gt;
grub from the ground on and you will enjoy grub!&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
'''5. PXE-bootimage on hd&lt;br /&gt;
''see 4. bootloader (grub)''&lt;br /&gt;
------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This wiki-page was revised by:&lt;br /&gt;
Robert Michel, thadk&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Lilo</id>
		<title>Lilo</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Lilo"/>
				<updated>2005-01-03T00:25:28Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: /* What is LILO? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===What is LILO?===&lt;br /&gt;
[http://en.wikipedia.org/wiki/Lilo LILO] is the Linux Loader, the most popular boot loader for Linux. (For some background on boot loaders, see Choosing a Boot Loader) It is used to load Linux into memory and start the operating system. On a machine with multiple operating systems, LILO can be configured to boot the other systems as well.&lt;br /&gt;
&lt;br /&gt;
Normally LILO is initially configured for you during the Linux installation process. However, you may find that default configuration is not correct, or you wish to customize it. And there may even come a time when you need to remove LILO from your computer. Here are some instructions that should help you on your quest.&lt;br /&gt;
&lt;br /&gt;
The /etc/lilo.conf File&lt;br /&gt;
As with many Linux utilities, LILO can be customized with a configuration file in the /etc directory. The lilo.conf file has its own man page which is quite thorough. In fact, it may be a little too thorough for simple configuration. So here's the lowdown on your basic lilo.conf file.&lt;br /&gt;
&lt;br /&gt;
The sample lilo.conf file shown below is for a typical dual-boot configuration, with Windows installed on the first partition and Linux on the second. You can probably use this as-is, except for the image= line and possibly the root= line, depending on where Linux was installed. Detailed explanation follows.&lt;br /&gt;
&lt;br /&gt;
 boot=/dev/hda&lt;br /&gt;
 map=/boot/map&lt;br /&gt;
 install=/boot/boot.b&lt;br /&gt;
 compact&lt;br /&gt;
 prompt&lt;br /&gt;
 timeout=50&lt;br /&gt;
 image=/boot/vmlinuz-2.0.36&lt;br /&gt;
 label=linux&lt;br /&gt;
 root=/dev/hda2&lt;br /&gt;
 read-only&lt;br /&gt;
 other=/dev/hda1&lt;br /&gt;
 label=win&lt;br /&gt;
 boot=/dev/hda:&lt;br /&gt;
Tells LILO where to install the bootloader. In this case, it is going into the master boot record of the first hard drive, which means LILO will control the boot process of all operating systems from the start. It could also have been /dev/hda2, the boot sector of the Linux partition. In that case, the DOS bootloader would need to be in the master boot record, and booting Linux would require setting the Linux partition active using fdisk.&lt;br /&gt;
*'''map=/boot/map:&lt;br /&gt;
**The map file is automatically generated by LILO and is used internally. Don't mess with it.&lt;br /&gt;
*'''install=/boot/boot.b:&lt;br /&gt;
**Tells LILO what to use as the new boot sector. This file contains the &amp;quot;bootstrap&amp;quot; code that starts your operating system. Don't mess with it.&lt;br /&gt;
*'''compact:&lt;br /&gt;
**Makes LILO read the hard drive faster. Normally you want this, but some older systems may hang. Remove it if yours is one of these.&lt;br /&gt;
*'''prompt:&lt;br /&gt;
**Tells LILO to prompt us at boot time to choose an operating system or enter parameters for the Linux kernel. Keep this.&lt;br /&gt;
*'''timeout=50:&lt;br /&gt;
**Tells LILO how long to wait at the prompt before booting the default operating system, measured in tenths of a second. The configuration shown waits for 5 seconds. If timeout is 0 or not present, LILO waits forever (if prompt is specified, otherwise boots the default immediately).&lt;br /&gt;
*'''image=/boot/vmlinuz-2.0.36:&lt;br /&gt;
**The name of a Linux kernel for LILO to boot. This begins a section, and the lines that follow give specific parameters for this particular kernel. You may have up to sixteen image sections, but one should suffice. The first image listed in the file is the default, unless you specify otherwise.&lt;br /&gt;
*'''label=linux:&lt;br /&gt;
**The name that is used to identify this image at the LILO: boot prompt. Typing this name will select this image. When asked to list the available images (by pressing TAB at the LILO: prompt), LILO will display this name in the list.&lt;br /&gt;
*'''root=/dev/hda2:&lt;br /&gt;
**Tells LILO where the root (/) file system is (in other words, where Linux lives), so that the Linux kernel can mount it at boot time. Unless you are doing something extremely high-tech, all your images should use the same root= parameter. In my case, Linux is installed in the second primary partition.&lt;br /&gt;
*'''read-only:&lt;br /&gt;
**Tells LILO to instruct the Linux kernel to initially mount the root file system as read-only. It will be remounted as read-write later in the boot process. This is the normal method of booting Linux. Don't change it unless you are sure you know what you are doing.&lt;br /&gt;
*'''other=/dev/hda1:&lt;br /&gt;
**Like the image line, this begins a section. other tells LILO to boot an operating system other than Linux. It is given the value of the partition where this other operating system lives. LILO will simply load and execute the boot sector of this partition at boot time.&lt;br /&gt;
*'''label=win:&lt;br /&gt;
**Same as the label above, gives you a way to refer to this section.&lt;br /&gt;
By copying this basic layout, you should be able to get LILO to boot Windows or any new Linux kernels you build. Before you begin editing, make sure you create a backup copy of the original lilo.conf just in case something goes wrong. And don't forget to apply your changes!&lt;br /&gt;
&lt;br /&gt;
Applying Changes&lt;br /&gt;
Anytime you edit the /etc/lilo.conf, or if you move or rename any of the files used by LILO, including the Linux kernel itself (the vmlinuz file), you must apply your changes before they will take effect. Failing to do so might cause LILO to be unable to boot Linux!&lt;br /&gt;
&lt;br /&gt;
To apply changes, run the following command (you will need to be [[Super User Root]]):&lt;br /&gt;
*'''/sbin/lilo -v&lt;br /&gt;
You should get a response that looks like this : Added linux *&lt;br /&gt;
Added win&lt;br /&gt;
&lt;br /&gt;
The asterisk (*) indicates the default boot image. If you see anything other than this, something went wrong. Go back through your lilo.conf and read the man page to see what it was.&lt;br /&gt;
&lt;br /&gt;
Recovering a Lost LILO&lt;br /&gt;
If you reinstall DOS or Windows after installing LILO, you may find that the LILO: boot prompt no longer appears. This might also occur if certain disk utilities or anti-virus utilities attempt to &amp;quot;repair&amp;quot; your master boot record. (Some anti-virus programs will see LILO as a virus!)&lt;br /&gt;
&lt;br /&gt;
To fix this, you just need to reinstall LILO. That means you have to boot into Linux some other way, either using Loadlin or a Linux boot floppy. (See Choosing a Boot Loader). At the Linux command prompt just type /sbin/lilo as described under Applying Changes. When you reboot, LILO will be back where it belongs!&lt;br /&gt;
&lt;br /&gt;
Removing LILO&lt;br /&gt;
If you have LILO installed as your master boot record and you decide to uninstall Linux or upgrade your hard drive, you will need to remove LILO from the master boot record before you remove it's files from the hard drive. LILO makes a backup copy of your original master boot record before it installs itself. To remove LILO and return to the original, issue this command:&lt;br /&gt;
&lt;br /&gt;
*'''/sbin/lilo -u&lt;br /&gt;
&lt;br /&gt;
If this fails for some reason, consult the LILO documentation for alternatives.&lt;br /&gt;
&lt;br /&gt;
If the LILO files have already been removed, or you are unable to coax LILO into removing itself, try using the DOS fdisk program to rebuild the master boot record with this command (from a DOS boot floppy):&lt;br /&gt;
&lt;br /&gt;
*'''fdisk /mbr&lt;br /&gt;
&lt;br /&gt;
LILO Usage&lt;br /&gt;
At boot time, LILO will present you with a boring prompt:&lt;br /&gt;
&lt;br /&gt;
LILO:&lt;br /&gt;
&lt;br /&gt;
If you do nothing, LILO will wait the amount of time specified in its configuration file and then boot the default operating system image. You can choose an operating system image to boot by typing its label here. If you can't remember what the labels are, press the TAB key to see a list. The default image is normally labelled &amp;quot;linux&amp;quot;. If your lilo.conf was built by the Linux setup program, you may also have one called &amp;quot;dos&amp;quot; that boots the DOS or Windows partition.&lt;br /&gt;
&lt;br /&gt;
If you need to pass special parameters to the Linux kernel, you can do it by typing them after the image name. For example, if you need to login to Linux in single-user mode to repair a damaged system (or because you forgot the root password), you can type:&lt;br /&gt;
&lt;br /&gt;
*'''linux single&lt;br /&gt;
&lt;br /&gt;
Or if that fails, try:&lt;br /&gt;
&lt;br /&gt;
*'''linux 1&lt;br /&gt;
&lt;br /&gt;
Resources&lt;br /&gt;
man pages: lilo, lilo.conf&lt;br /&gt;
&lt;br /&gt;
Documentation: /usr/doc/lilo-*/ contains a very thorough, printable postscript User Guide, with source.&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Rescue_FAQ</id>
		<title>Rescue FAQ</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Rescue_FAQ"/>
				<updated>2005-01-03T00:23:39Z</updated>
		
		<summary type="html">&lt;p&gt;Kyle: futzing section on parted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Q: The other Linux/*nix box does not work correctly, but im sure the network is functional. ====&lt;br /&gt;
A: try &amp;quot;ssh&amp;quot; and/or &amp;quot;telnet&amp;quot; to log in on that remote box. you'll need to know a password, but after that you can use the shell to repair the box.&lt;/div&gt;</summary>
		<author><name>Kyle</name></author>	</entry>

	</feed>