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

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Bugs/5.1.1CD</id>
		<title>Talk:Bugs/5.1.1CD</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Bugs/5.1.1CD"/>
				<updated>2008-01-22T23:37:11Z</updated>
		
		<summary type="html">&lt;p&gt;Ronkin: /* Bug in &amp;quot;fstype&amp;quot; */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;so have modified my /etc/X11/xorg.conf file using &lt;br /&gt;
&lt;br /&gt;
root@Knoppix:^#mc&lt;br /&gt;
&lt;br /&gt;
in the root shell to &amp;quot;MouseSystems&amp;quot; in the PS2 input section of xorg.conf because my PS2 plugged wheelmouse would be erratic on startup with the existing default &amp;quot;auto&amp;quot;.&lt;br /&gt;
cannot confirm that this has improved the situation, a change has occured but erratic behaviour persists intermittently.&lt;br /&gt;
only solution so far, is to only plug the mouse into the PS2 port after all startup and booting has ceased. the wheelmouse will then act as a nonwheel mouse (even with the MouseSystems modification). &lt;br /&gt;
perhaps your improvement has come about as a result of the other modification in bugs you have suggested. havent figured out how to accomplish that modification as yet.&lt;br /&gt;
&lt;br /&gt;
ie. is the new memdisk file empty?&lt;br /&gt;
what is the file extension of memdisk (memdisk.xxx)?&lt;br /&gt;
etc...&lt;br /&gt;
by&lt;br /&gt;
hat_monkey (18.5.2007)&lt;br /&gt;
&lt;br /&gt;
== Bug in &amp;quot;fstype&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
If you have more than 9 partitions on a drive with partition 1 or any partition above 9 mounted, fstype can return an incorrect partition type.&lt;br /&gt;
 &lt;br /&gt;
Original Code:&lt;br /&gt;
#&lt;br /&gt;
if [ -n &amp;quot;$1&amp;quot; ]; then&lt;br /&gt;
 # Check if partition is already mounted&lt;br /&gt;
 while read device mountpoint filesystem relax; do&lt;br /&gt;
  case &amp;quot;$device&amp;quot; in *$1*)&lt;br /&gt;
&lt;br /&gt;
Just remove the second asterisk after *$1*).&lt;br /&gt;
&lt;br /&gt;
Modified Code:&lt;br /&gt;
#&lt;br /&gt;
if [ -n &amp;quot;$1&amp;quot; ]; then&lt;br /&gt;
 # Check if partition is already mounted&lt;br /&gt;
 while read device mountpoint filesystem relax; do&lt;br /&gt;
  case &amp;quot;$device&amp;quot; in *$1)&lt;br /&gt;
&lt;br /&gt;
This change allows /dev/sda1 and /dev/sda11 to be uniquely identified.  Otherwise the output might be the fstype of the other partition that is mounted.  If they are different you get an incorrect result.&lt;/div&gt;</summary>
		<author><name>Ronkin</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Bugs/5.1.1CD</id>
		<title>Talk:Bugs/5.1.1CD</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Bugs/5.1.1CD"/>
				<updated>2008-01-22T23:34:45Z</updated>
		
		<summary type="html">&lt;p&gt;Ronkin: /* Bug in &amp;quot;fstype&amp;quot; */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;so have modified my /etc/X11/xorg.conf file using &lt;br /&gt;
&lt;br /&gt;
root@Knoppix:^#mc&lt;br /&gt;
&lt;br /&gt;
in the root shell to &amp;quot;MouseSystems&amp;quot; in the PS2 input section of xorg.conf because my PS2 plugged wheelmouse would be erratic on startup with the existing default &amp;quot;auto&amp;quot;.&lt;br /&gt;
cannot confirm that this has improved the situation, a change has occured but erratic behaviour persists intermittently.&lt;br /&gt;
only solution so far, is to only plug the mouse into the PS2 port after all startup and booting has ceased. the wheelmouse will then act as a nonwheel mouse (even with the MouseSystems modification). &lt;br /&gt;
perhaps your improvement has come about as a result of the other modification in bugs you have suggested. havent figured out how to accomplish that modification as yet.&lt;br /&gt;
&lt;br /&gt;
ie. is the new memdisk file empty?&lt;br /&gt;
what is the file extension of memdisk (memdisk.xxx)?&lt;br /&gt;
etc...&lt;br /&gt;
by&lt;br /&gt;
hat_monkey (18.5.2007)&lt;br /&gt;
&lt;br /&gt;
== Bug in &amp;quot;fstype&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
If you have more than 9 partitions on a drive with partition 1 or any partition above 9 mounted, fstype can return an incorrect partition type.&lt;br /&gt;
 &lt;br /&gt;
Original Code:&lt;br /&gt;
&amp;quot;if [ -n &amp;quot;$1&amp;quot; ]; then&lt;br /&gt;
 # Check if partition is already mounted&lt;br /&gt;
 while read device mountpoint filesystem relax; do&lt;br /&gt;
  case &amp;quot;$device&amp;quot; in *$1*)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Just remove the second asterick after *$1*).&lt;br /&gt;
&lt;br /&gt;
Modified Code:&lt;br /&gt;
&amp;quot;if [ -n &amp;quot;$1&amp;quot; ]; then&lt;br /&gt;
 # Check if partition is already mounted&lt;br /&gt;
 while read device mountpoint filesystem relax; do&lt;br /&gt;
  case &amp;quot;$device&amp;quot; in *$1)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This change allows /dev/sda1 and /dev/sda11 to be uniquely identified.  Otherwise the output might be the fstype of the other partition that is mounted.  If they are different you get an incorrect result.&lt;/div&gt;</summary>
		<author><name>Ronkin</name></author>	</entry>

	<entry>
		<id>https://mail.knoppix.net/wiki/Talk:Bugs/5.1.1CD</id>
		<title>Talk:Bugs/5.1.1CD</title>
		<link rel="alternate" type="text/html" href="https://mail.knoppix.net/wiki/Talk:Bugs/5.1.1CD"/>
				<updated>2008-01-22T23:33:05Z</updated>
		
		<summary type="html">&lt;p&gt;Ronkin: New section: Bug in &amp;quot;fstype&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;so have modified my /etc/X11/xorg.conf file using &lt;br /&gt;
&lt;br /&gt;
root@Knoppix:^#mc&lt;br /&gt;
&lt;br /&gt;
in the root shell to &amp;quot;MouseSystems&amp;quot; in the PS2 input section of xorg.conf because my PS2 plugged wheelmouse would be erratic on startup with the existing default &amp;quot;auto&amp;quot;.&lt;br /&gt;
cannot confirm that this has improved the situation, a change has occured but erratic behaviour persists intermittently.&lt;br /&gt;
only solution so far, is to only plug the mouse into the PS2 port after all startup and booting has ceased. the wheelmouse will then act as a nonwheel mouse (even with the MouseSystems modification). &lt;br /&gt;
perhaps your improvement has come about as a result of the other modification in bugs you have suggested. havent figured out how to accomplish that modification as yet.&lt;br /&gt;
&lt;br /&gt;
ie. is the new memdisk file empty?&lt;br /&gt;
what is the file extension of memdisk (memdisk.xxx)?&lt;br /&gt;
etc...&lt;br /&gt;
by&lt;br /&gt;
hat_monkey (18.5.2007)&lt;br /&gt;
&lt;br /&gt;
== Bug in &amp;quot;fstype&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
If you have more than 9 partitions on a drive with partition 1 or any partition above 9 mounted, fstype can return an incorrect partition type.&lt;br /&gt;
 &lt;br /&gt;
Original Code:&lt;br /&gt;
if [ -n &amp;quot;$1&amp;quot; ]; then&lt;br /&gt;
 # Check if partition is already mounted&lt;br /&gt;
 while read device mountpoint filesystem relax; do&lt;br /&gt;
  case &amp;quot;$device&amp;quot; in *$1*)&lt;br /&gt;
&lt;br /&gt;
Just remove the second asterick after *$1*).&lt;br /&gt;
&lt;br /&gt;
Modified Code:&lt;br /&gt;
if [ -n &amp;quot;$1&amp;quot; ]; then&lt;br /&gt;
 # Check if partition is already mounted&lt;br /&gt;
 while read device mountpoint filesystem relax; do&lt;br /&gt;
  case &amp;quot;$device&amp;quot; in *$1)&lt;br /&gt;
&lt;br /&gt;
This change allows /dev/sda1 and /dev/sda11 to be uniquely identified.  Otherwise the output might be the fstype of the other partition that is mounted.  If they are different you get an incorrect result.&lt;/div&gt;</summary>
		<author><name>Ronkin</name></author>	</entry>

	</feed>