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

	<entry>
		<id>https://knoppix.net/wiki/Bugs/5.1.1CD</id>
		<title>Bugs/5.1.1CD</title>
		<link rel="alternate" type="text/html" href="https://knoppix.net/wiki/Bugs/5.1.1CD"/>
				<updated>2008-07-27T13:50:30Z</updated>
		
		<summary type="html">&lt;p&gt;62.143.12.162: /* Mouse Configuration Default Error */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==GRUB Configuration Error==&lt;br /&gt;
There are two problems with option label dos for loading FreeDos balder.img. There is no memdisk file in /boot/isolinux folder and the isolinux.cfg sintax is wrong&lt;br /&gt;
&lt;br /&gt;
The correct syntax is&lt;br /&gt;
&lt;br /&gt;
 LABEL dos&lt;br /&gt;
 KERNEL /boot/isolinux/memdisk&lt;br /&gt;
 APPEND initrd=/boot/isolinux/balder.img&lt;br /&gt;
==Mouse Configuration Default Error==&lt;br /&gt;
KNOPPIX incorrectly guesses that my serial mouse uses the &amp;quot;Microsoft&amp;quot; protocol, with the result that my mouse pointer hops around almost at random. It works correctly if I edit /etc/X11/xorg.conf replacing the mouse protocol &amp;quot;Microsoft&amp;quot; with &amp;quot;MouseSystems&amp;quot; or &amp;quot;auto&amp;quot;. Since the &amp;quot;auto&amp;quot; protocol would presumably work with a &amp;quot;Microsoft&amp;quot; mouse, too, that would seem to be a  better default for KNOPPIX to use.&lt;br /&gt;
&lt;br /&gt;
''(see discussion by clicking &amp;quot;discussion&amp;quot; above)''&lt;br /&gt;
&lt;br /&gt;
:Rolf Leggewie: Not sure this is related, but indeed the &amp;quot;mouse&amp;quot; of my Thinkpad X20 which is one of those red Trackpoint thingies does not work at all.  &amp;quot;dpkg-reconfigure xorg-xserver&amp;quot; and things got working again.  Looking at xorg.conf it seems the following changes are relevant: /dev/input/mice instead of /dev/ttyS0, CorePointer and ImPS/2 instead of Microsoft protocol&lt;br /&gt;
&lt;br /&gt;
==Default myconfig error==&lt;br /&gt;
Knoppix 5.1.1's knoppix-autoconfig script has an error with regard to &amp;quot;default&amp;quot; myconfig.&lt;br /&gt;
In the case where knoppix has been remastered with knoppix.sh and configs.tbz in the &lt;br /&gt;
CD root (/) the test for knoppix.sh is wrong.  Line 1310 should be changed from:&lt;br /&gt;
&lt;br /&gt;
 MYCONFIG=&amp;quot;$(ls -1d /cdrom/KNOPPIX/[Kk][Nn][Oo][Pp][Pp][Ii][Xx].[Ss][Hh] 2&amp;gt;/dev/null)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
to:&lt;br /&gt;
&lt;br /&gt;
 MYCONFIG=&amp;quot;$(ls -1d /KNOPPIX/[Kk][Nn][Oo][Pp][Pp][Ii][Xx].[Ss][Hh] 2&amp;gt;/dev/null)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This will allow a default myconfig (e.g. if the myconfig= argument is not given) &lt;br /&gt;
to detect the presence of the knoppix.sh script.&lt;br /&gt;
&lt;br /&gt;
--[[User:Hanumant|Hanumant]] 16:04, 14 Jun 2007 (UTC)&lt;br /&gt;
==Timezone setting error==&lt;br /&gt;
Knoppix 5.1.1's knoppix-autoconfig script has an omission with regard to setting the timezone.&lt;br /&gt;
The script set /etc/local time around line 557.  It should also update the file /etc/timezone:&lt;br /&gt;
  rm -f /etc/timezone&lt;br /&gt;
  echo &amp;quot;$TZ&amp;quot; &amp;gt; /etc/timezone&lt;br /&gt;
&lt;br /&gt;
--[[User:Hanumant|Hanumant]] 16:06, 14 Jun 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==fstab error==&lt;br /&gt;
rebuildfstab adds the following garbage to /etc/fstab on a system with no hard drive:&lt;br /&gt;
  # Added by KNOPPIX&lt;br /&gt;
     noauto,users,exec 0 0&lt;br /&gt;
Here is a fix:&lt;br /&gt;
  --- /usr/sbin/rebuildfstab.orig       2007-06-26 09:16:54.972750170 -0400&lt;br /&gt;
  +++ /usr/sbin/rebuildfstab    2007-06-26 09:17:42.095435539 -0400&lt;br /&gt;
  @@ -75,2 +75,3 @@&lt;br /&gt;
   count=0&lt;br /&gt;
  +scanpartitions | \&lt;br /&gt;
   while read device mountpoint fstype relax; do&lt;br /&gt;
  @@ -98,5 +99,3 @@&lt;br /&gt;
      echo &amp;quot;$device $mountpoint $fstype $options 0 0&amp;quot;; }&lt;br /&gt;
  -done &amp;gt;&amp;gt;&amp;quot;$TMP&amp;quot; &amp;lt;&amp;lt;EOT&lt;br /&gt;
  -$(scanpartitions)&lt;br /&gt;
  -EOT&lt;br /&gt;
  +done &amp;gt;&amp;gt;&amp;quot;$TMP&amp;quot;&lt;br /&gt;
--[[User:Johntobey|Johntobey]] 13:32, 26 Jun 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==TestDisk error==&lt;br /&gt;
TestDisk refers to an old version of libntfs. As a result, when you start it, it gives this error:&lt;br /&gt;
 testdisk: error while loading shared libraries: libntfs.so.9: cannot open shared object file: No such file or directory&lt;br /&gt;
Solution: create a symlink to the new version of the library:&lt;br /&gt;
 ln -s libntfs.so.10 /usr/lib/libntfs.so.9&lt;br /&gt;
--[[User:131.215.166.100|131.215.166.100]] 01:09, 19 December 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
== No Unicode support ==&lt;br /&gt;
&lt;br /&gt;
Knoppix has no UTF-8 support. This means that files in hard drives (especially NTFS) that use characters other than those of ISO-1 encoding are not accessible for Knoppix (they don't show up at all).&lt;br /&gt;
&lt;br /&gt;
--[[User:193.219.94.166|193.219.94.166]] 12:08, 23 March 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>62.143.12.162</name></author>	</entry>

	<entry>
		<id>https://knoppix.net/wiki/Bugs/5.1.1CD</id>
		<title>Bugs/5.1.1CD</title>
		<link rel="alternate" type="text/html" href="https://knoppix.net/wiki/Bugs/5.1.1CD"/>
				<updated>2008-07-27T13:45:20Z</updated>
		
		<summary type="html">&lt;p&gt;62.143.12.162: /* Mouse Configuration Default Error */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==GRUB Configuration Error==&lt;br /&gt;
There are two problems with option label dos for loading FreeDos balder.img. There is no memdisk file in /boot/isolinux folder and the isolinux.cfg sintax is wrong&lt;br /&gt;
&lt;br /&gt;
The correct syntax is&lt;br /&gt;
&lt;br /&gt;
 LABEL dos&lt;br /&gt;
 KERNEL /boot/isolinux/memdisk&lt;br /&gt;
 APPEND initrd=/boot/isolinux/balder.img&lt;br /&gt;
==Mouse Configuration Default Error==&lt;br /&gt;
KNOPPIX incorrectly guesses that my serial mouse uses the &amp;quot;Microsoft&amp;quot; protocol, with the result that my mouse pointer hops around almost at random. It works correctly if I edit /etc/X11/xorg.conf replacing the mouse protocol &amp;quot;Microsoft&amp;quot; with &amp;quot;MouseSystems&amp;quot; or &amp;quot;auto&amp;quot;. Since the &amp;quot;auto&amp;quot; protocol would presumably work with a &amp;quot;Microsoft&amp;quot; mouse, too, that would seem to be a  better default for KNOPPIX to use.&lt;br /&gt;
&lt;br /&gt;
''(see discussion by clicking &amp;quot;discussion&amp;quot; above)''&lt;br /&gt;
&lt;br /&gt;
:Rolf Leggewie: Not sure this is related, but indeed the &amp;quot;mouse&amp;quot; of my Thinkpad X20 which is one of those red Trackpoint thingies does not work at all.&lt;br /&gt;
&lt;br /&gt;
==Default myconfig error==&lt;br /&gt;
Knoppix 5.1.1's knoppix-autoconfig script has an error with regard to &amp;quot;default&amp;quot; myconfig.&lt;br /&gt;
In the case where knoppix has been remastered with knoppix.sh and configs.tbz in the &lt;br /&gt;
CD root (/) the test for knoppix.sh is wrong.  Line 1310 should be changed from:&lt;br /&gt;
&lt;br /&gt;
 MYCONFIG=&amp;quot;$(ls -1d /cdrom/KNOPPIX/[Kk][Nn][Oo][Pp][Pp][Ii][Xx].[Ss][Hh] 2&amp;gt;/dev/null)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
to:&lt;br /&gt;
&lt;br /&gt;
 MYCONFIG=&amp;quot;$(ls -1d /KNOPPIX/[Kk][Nn][Oo][Pp][Pp][Ii][Xx].[Ss][Hh] 2&amp;gt;/dev/null)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This will allow a default myconfig (e.g. if the myconfig= argument is not given) &lt;br /&gt;
to detect the presence of the knoppix.sh script.&lt;br /&gt;
&lt;br /&gt;
--[[User:Hanumant|Hanumant]] 16:04, 14 Jun 2007 (UTC)&lt;br /&gt;
==Timezone setting error==&lt;br /&gt;
Knoppix 5.1.1's knoppix-autoconfig script has an omission with regard to setting the timezone.&lt;br /&gt;
The script set /etc/local time around line 557.  It should also update the file /etc/timezone:&lt;br /&gt;
  rm -f /etc/timezone&lt;br /&gt;
  echo &amp;quot;$TZ&amp;quot; &amp;gt; /etc/timezone&lt;br /&gt;
&lt;br /&gt;
--[[User:Hanumant|Hanumant]] 16:06, 14 Jun 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==fstab error==&lt;br /&gt;
rebuildfstab adds the following garbage to /etc/fstab on a system with no hard drive:&lt;br /&gt;
  # Added by KNOPPIX&lt;br /&gt;
     noauto,users,exec 0 0&lt;br /&gt;
Here is a fix:&lt;br /&gt;
  --- /usr/sbin/rebuildfstab.orig       2007-06-26 09:16:54.972750170 -0400&lt;br /&gt;
  +++ /usr/sbin/rebuildfstab    2007-06-26 09:17:42.095435539 -0400&lt;br /&gt;
  @@ -75,2 +75,3 @@&lt;br /&gt;
   count=0&lt;br /&gt;
  +scanpartitions | \&lt;br /&gt;
   while read device mountpoint fstype relax; do&lt;br /&gt;
  @@ -98,5 +99,3 @@&lt;br /&gt;
      echo &amp;quot;$device $mountpoint $fstype $options 0 0&amp;quot;; }&lt;br /&gt;
  -done &amp;gt;&amp;gt;&amp;quot;$TMP&amp;quot; &amp;lt;&amp;lt;EOT&lt;br /&gt;
  -$(scanpartitions)&lt;br /&gt;
  -EOT&lt;br /&gt;
  +done &amp;gt;&amp;gt;&amp;quot;$TMP&amp;quot;&lt;br /&gt;
--[[User:Johntobey|Johntobey]] 13:32, 26 Jun 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==TestDisk error==&lt;br /&gt;
TestDisk refers to an old version of libntfs. As a result, when you start it, it gives this error:&lt;br /&gt;
 testdisk: error while loading shared libraries: libntfs.so.9: cannot open shared object file: No such file or directory&lt;br /&gt;
Solution: create a symlink to the new version of the library:&lt;br /&gt;
 ln -s libntfs.so.10 /usr/lib/libntfs.so.9&lt;br /&gt;
--[[User:131.215.166.100|131.215.166.100]] 01:09, 19 December 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
== No Unicode support ==&lt;br /&gt;
&lt;br /&gt;
Knoppix has no UTF-8 support. This means that files in hard drives (especially NTFS) that use characters other than those of ISO-1 encoding are not accessible for Knoppix (they don't show up at all).&lt;br /&gt;
&lt;br /&gt;
--[[User:193.219.94.166|193.219.94.166]] 12:08, 23 March 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>62.143.12.162</name></author>	</entry>

	<entry>
		<id>https://knoppix.net/wiki/Bugs/5.1.1CD</id>
		<title>Bugs/5.1.1CD</title>
		<link rel="alternate" type="text/html" href="https://knoppix.net/wiki/Bugs/5.1.1CD"/>
				<updated>2008-07-27T13:45:08Z</updated>
		
		<summary type="html">&lt;p&gt;62.143.12.162: /* Mouse Configuration Default Error */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==GRUB Configuration Error==&lt;br /&gt;
There are two problems with option label dos for loading FreeDos balder.img. There is no memdisk file in /boot/isolinux folder and the isolinux.cfg sintax is wrong&lt;br /&gt;
&lt;br /&gt;
The correct syntax is&lt;br /&gt;
&lt;br /&gt;
 LABEL dos&lt;br /&gt;
 KERNEL /boot/isolinux/memdisk&lt;br /&gt;
 APPEND initrd=/boot/isolinux/balder.img&lt;br /&gt;
==Mouse Configuration Default Error==&lt;br /&gt;
KNOPPIX incorrectly guesses that my serial mouse uses the &amp;quot;Microsoft&amp;quot; protocol, with the result that my mouse pointer hops around almost at random. It works correctly if I edit /etc/X11/xorg.conf replacing the mouse protocol &amp;quot;Microsoft&amp;quot; with &amp;quot;MouseSystems&amp;quot; or &amp;quot;auto&amp;quot;. Since the &amp;quot;auto&amp;quot; protocol would presumably work with a &amp;quot;Microsoft&amp;quot; mouse, too, that would seem to be a  better default for KNOPPIX to use.&lt;br /&gt;
&lt;br /&gt;
''(see discussion by clicking &amp;quot;discussion&amp;quot; above)''&lt;br /&gt;
&lt;br /&gt;
Rolf Leggewie: Not sure this is related, but indeed the &amp;quot;mouse&amp;quot; of my Thinkpad X20 which is one of those red Trackpoint thingies does not work at all.&lt;br /&gt;
&lt;br /&gt;
==Default myconfig error==&lt;br /&gt;
Knoppix 5.1.1's knoppix-autoconfig script has an error with regard to &amp;quot;default&amp;quot; myconfig.&lt;br /&gt;
In the case where knoppix has been remastered with knoppix.sh and configs.tbz in the &lt;br /&gt;
CD root (/) the test for knoppix.sh is wrong.  Line 1310 should be changed from:&lt;br /&gt;
&lt;br /&gt;
 MYCONFIG=&amp;quot;$(ls -1d /cdrom/KNOPPIX/[Kk][Nn][Oo][Pp][Pp][Ii][Xx].[Ss][Hh] 2&amp;gt;/dev/null)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
to:&lt;br /&gt;
&lt;br /&gt;
 MYCONFIG=&amp;quot;$(ls -1d /KNOPPIX/[Kk][Nn][Oo][Pp][Pp][Ii][Xx].[Ss][Hh] 2&amp;gt;/dev/null)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This will allow a default myconfig (e.g. if the myconfig= argument is not given) &lt;br /&gt;
to detect the presence of the knoppix.sh script.&lt;br /&gt;
&lt;br /&gt;
--[[User:Hanumant|Hanumant]] 16:04, 14 Jun 2007 (UTC)&lt;br /&gt;
==Timezone setting error==&lt;br /&gt;
Knoppix 5.1.1's knoppix-autoconfig script has an omission with regard to setting the timezone.&lt;br /&gt;
The script set /etc/local time around line 557.  It should also update the file /etc/timezone:&lt;br /&gt;
  rm -f /etc/timezone&lt;br /&gt;
  echo &amp;quot;$TZ&amp;quot; &amp;gt; /etc/timezone&lt;br /&gt;
&lt;br /&gt;
--[[User:Hanumant|Hanumant]] 16:06, 14 Jun 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==fstab error==&lt;br /&gt;
rebuildfstab adds the following garbage to /etc/fstab on a system with no hard drive:&lt;br /&gt;
  # Added by KNOPPIX&lt;br /&gt;
     noauto,users,exec 0 0&lt;br /&gt;
Here is a fix:&lt;br /&gt;
  --- /usr/sbin/rebuildfstab.orig       2007-06-26 09:16:54.972750170 -0400&lt;br /&gt;
  +++ /usr/sbin/rebuildfstab    2007-06-26 09:17:42.095435539 -0400&lt;br /&gt;
  @@ -75,2 +75,3 @@&lt;br /&gt;
   count=0&lt;br /&gt;
  +scanpartitions | \&lt;br /&gt;
   while read device mountpoint fstype relax; do&lt;br /&gt;
  @@ -98,5 +99,3 @@&lt;br /&gt;
      echo &amp;quot;$device $mountpoint $fstype $options 0 0&amp;quot;; }&lt;br /&gt;
  -done &amp;gt;&amp;gt;&amp;quot;$TMP&amp;quot; &amp;lt;&amp;lt;EOT&lt;br /&gt;
  -$(scanpartitions)&lt;br /&gt;
  -EOT&lt;br /&gt;
  +done &amp;gt;&amp;gt;&amp;quot;$TMP&amp;quot;&lt;br /&gt;
--[[User:Johntobey|Johntobey]] 13:32, 26 Jun 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
==TestDisk error==&lt;br /&gt;
TestDisk refers to an old version of libntfs. As a result, when you start it, it gives this error:&lt;br /&gt;
 testdisk: error while loading shared libraries: libntfs.so.9: cannot open shared object file: No such file or directory&lt;br /&gt;
Solution: create a symlink to the new version of the library:&lt;br /&gt;
 ln -s libntfs.so.10 /usr/lib/libntfs.so.9&lt;br /&gt;
--[[User:131.215.166.100|131.215.166.100]] 01:09, 19 December 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
== No Unicode support ==&lt;br /&gt;
&lt;br /&gt;
Knoppix has no UTF-8 support. This means that files in hard drives (especially NTFS) that use characters other than those of ISO-1 encoding are not accessible for Knoppix (they don't show up at all).&lt;br /&gt;
&lt;br /&gt;
--[[User:193.219.94.166|193.219.94.166]] 12:08, 23 March 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>62.143.12.162</name></author>	</entry>

	</feed>