<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.linuxquestions.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dud</id>
	<title>LQWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.linuxquestions.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dud"/>
	<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/wiki/Special:Contributions/Dud"/>
	<updated>2026-04-10T18:00:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.0</generator>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Burning_a_CDROM_from_an_ISO_file&amp;diff=2078</id>
		<title>Burning a CDROM from an ISO file</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Burning_a_CDROM_from_an_ISO_file&amp;diff=2078"/>
		<updated>2004-03-06T15:11:11Z</updated>

		<summary type="html">&lt;p&gt;Dud: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Burning a CDROM from an ISO file ==&lt;br /&gt;
&lt;br /&gt;
=== Burning a CDROM under kernel verion 2.4 or less ===&lt;br /&gt;
&lt;br /&gt;
To burn a CDROM under kernel version 2.4 or less, make sure that you have the ide-scsi kernel module loaded at startup. This is most easily done by adding:&lt;br /&gt;
&lt;br /&gt;
hdc=ide-scsi&lt;br /&gt;
&lt;br /&gt;
to the kernel line of your boot loader ([[GRUB]] or [[LILO]]), if your CD writer is the secondary master in your IDE setup.&lt;br /&gt;
&lt;br /&gt;
The cdrecord command for burning a CDROM is as follows:&lt;br /&gt;
&lt;br /&gt;
cdrecord -v device=0,0,0 fs=64M speed=16 driveropts=burnproof NameOfISOFile&lt;br /&gt;
&lt;br /&gt;
The command:&lt;br /&gt;
&lt;br /&gt;
cdrecord --scanbus&lt;br /&gt;
&lt;br /&gt;
will show you the SCSI devices you have, useful if you&lt;br /&gt;
have more than one and your CD burner is not at 0,0,0.&lt;br /&gt;
&lt;br /&gt;
See section on 'cdrecord options' for explanation.&lt;br /&gt;
&lt;br /&gt;
=== Burning a CDROM under kernel version 2.6 or later ===&lt;br /&gt;
&lt;br /&gt;
To burn a CDROM under kernel version 2.6, you can just invoke the cdrecord command. Below is a sample cdrecord command with useful options set. See 'cdrecord options' for explanation.&lt;br /&gt;
&lt;br /&gt;
cdrecord -v device=ATAPI:0,0,0 fs=64M speed=16 driveropts=burnproof NameOfISOFile&lt;br /&gt;
&lt;br /&gt;
=== Options for the cdrecord command ===&lt;br /&gt;
&lt;br /&gt;
* The '-v' option makes cdrecord more verbose, so you can see what is going on, and it will show progress as it writes the CD.&lt;br /&gt;
&lt;br /&gt;
* The device option will tell cdrecord where to find your CD writer. You may need to adjust it if you have more than one CD drive. If you have a CD drive and a CD writer, the device line might become: 0,1,0.&lt;br /&gt;
&lt;br /&gt;
* The 'fs' option indicates how large the buffer should be. 64 megabytes gives a nice large margin. Most computers have 256 MB or more anyways, so this is not a problem. &lt;br /&gt;
&lt;br /&gt;
* Speed is fairly obvious. The cdrecord program will take the maxium speed between what you specified and what the cd-recordable is able to do (cdrecord will find this out from looking at the cd-recordable).&lt;br /&gt;
&lt;br /&gt;
* Most newer CD writers have a buffer underrun protection feature, where the drive will stop or slow down if the data being fed to it is not fast enough. This feature can be enabled with the 'driveropts=burnproof' option (on all writers having such a feature, even if they might not call it 'burnproof').&lt;br /&gt;
&lt;br /&gt;
* The last argument is the name of the isofile you downloaded or perhaps made with [[mkisofs]].&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Burning_a_CDROM_from_an_ISO_file&amp;diff=2029</id>
		<title>Burning a CDROM from an ISO file</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Burning_a_CDROM_from_an_ISO_file&amp;diff=2029"/>
		<updated>2004-03-06T15:10:34Z</updated>

		<summary type="html">&lt;p&gt;Dud: added mention of cdrecord --scanbus&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Burning a CDROM from an ISO file ==&lt;br /&gt;
&lt;br /&gt;
=== Burning a CDROM under kernel verion 2.4 or less ===&lt;br /&gt;
&lt;br /&gt;
To burn a CDROM under kernel version 2.4 or less, make sure that you have the ide-scsi kernel module loaded at startup. This is most easily done by adding:&lt;br /&gt;
&lt;br /&gt;
hdc=ide-scsi&lt;br /&gt;
&lt;br /&gt;
to the kernel line of your boot loader ([[GRUB]] or [[LILO]]), if your CD writer is the secondary master in your IDE setup.&lt;br /&gt;
&lt;br /&gt;
The cdrecord command for burning a CDROM is as follows:&lt;br /&gt;
&lt;br /&gt;
cdrecord -v device=0,0,0 fs=64M speed=16 driveropts=burnproof NameOfISOFile&lt;br /&gt;
&lt;br /&gt;
cdrecord --scanbus will show you the SCSI devices you have, useful if you&lt;br /&gt;
have more than one and your CD burner is not at 0,0,0.&lt;br /&gt;
&lt;br /&gt;
See section on 'cdrecord options' for explanation.&lt;br /&gt;
&lt;br /&gt;
=== Burning a CDROM under kernel version 2.6 or later ===&lt;br /&gt;
&lt;br /&gt;
To burn a CDROM under kernel version 2.6, you can just invoke the cdrecord command. Below is a sample cdrecord command with useful options set. See 'cdrecord options' for explanation.&lt;br /&gt;
&lt;br /&gt;
cdrecord -v device=ATAPI:0,0,0 fs=64M speed=16 driveropts=burnproof NameOfISOFile&lt;br /&gt;
&lt;br /&gt;
=== Options for the cdrecord command ===&lt;br /&gt;
&lt;br /&gt;
* The '-v' option makes cdrecord more verbose, so you can see what is going on, and it will show progress as it writes the CD.&lt;br /&gt;
&lt;br /&gt;
* The device option will tell cdrecord where to find your CD writer. You may need to adjust it if you have more than one CD drive. If you have a CD drive and a CD writer, the device line might become: 0,1,0.&lt;br /&gt;
&lt;br /&gt;
* The 'fs' option indicates how large the buffer should be. 64 megabytes gives a nice large margin. Most computers have 256 MB or more anyways, so this is not a problem. &lt;br /&gt;
&lt;br /&gt;
* Speed is fairly obvious. The cdrecord program will take the maxium speed between what you specified and what the cd-recordable is able to do (cdrecord will find this out from looking at the cd-recordable).&lt;br /&gt;
&lt;br /&gt;
* Most newer CD writers have a buffer underrun protection feature, where the drive will stop or slow down if the data being fed to it is not fast enough. This feature can be enabled with the 'driveropts=burnproof' option (on all writers having such a feature, even if they might not call it 'burnproof').&lt;br /&gt;
&lt;br /&gt;
* The last argument is the name of the isofile you downloaded or perhaps made with [[mkisofs]].&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Networking&amp;diff=1815</id>
		<title>Networking</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Networking&amp;diff=1815"/>
		<updated>2004-03-06T05:00:43Z</updated>

		<summary type="html">&lt;p&gt;Dud: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Networking computers is often easier than people think.  This section is dedicated to helping with basic network and network application setup.&lt;br /&gt;
&lt;br /&gt;
* [[Networking basics]] - Setting up your first network can be tricky. Here are some tips that can help.&lt;br /&gt;
**[[Network Addressing]]&lt;br /&gt;
**[[Set up modem|Setting up your modem]]&lt;br /&gt;
**[[Set up DSL|Setting up broadband]]&lt;br /&gt;
***[[Set up PPoE|Setting up broadband using PPoE]] &lt;br /&gt;
* [[Advanced Networking]] - Networking for the more adventurous.&lt;br /&gt;
* [[Wireless networking]] - Setting up your linux box to access a wireless network.&lt;br /&gt;
* [[Web server]]s - Looking to set up a webserver?  Take a look here.&lt;br /&gt;
* [[Samba]] - Information on sharing files and printers between linux and Windows machines.&lt;br /&gt;
* [[Remote Desktop Connection]] - Connect to other computers with vnc, ssh, telnet.&lt;br /&gt;
* [[Netatalk]] - Information on sharing files and printers between linux and Macintosh machines.&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Dud&amp;diff=22036</id>
		<title>User:Dud</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Dud&amp;diff=22036"/>
		<updated>2004-03-06T00:11:44Z</updated>

		<summary type="html">&lt;p&gt;Dud: initial content.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I'm a professional programmer, work mostly in Perl and C.&lt;br /&gt;
I'm interested in contributing all those nuggets that I had to search&lt;br /&gt;
Google Groups for in order to get stuff working.&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=LQWiki:Section_suggestions&amp;diff=1277</id>
		<title>LQWiki:Section suggestions</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=LQWiki:Section_suggestions&amp;diff=1277"/>
		<updated>2004-03-06T00:10:10Z</updated>

		<summary type="html">&lt;p&gt;Dud: added attribution, comment about digital camera suggestion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please post any ideas you have for new sections below.&lt;br /&gt;
&lt;br /&gt;
How about a Hardware topic. I have an xmodmap for my labtec keyboard and instructions how to bind a keyboard's special keys but no topic under which to post them.&lt;br /&gt;
[[User:koody]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Some section for kernel questions &amp;quot;how to get suspend to disk work&amp;quot;, &amp;quot;whats needed to get irda working&amp;quot;, &amp;quot;how do I get pictures out of my digital camera&amp;quot; might be interesting. &amp;lt;-- perhaps this should be in a FAQ or something,&lt;br /&gt;
use of a digital camera is not really a kernel question.&lt;br /&gt;
&lt;br /&gt;
[[User:pavel]]&lt;br /&gt;
&lt;br /&gt;
Also: how to get ps2 mouse running in 2.6 kernel&lt;br /&gt;
&lt;br /&gt;
Also: how to get swap working again in 2.6 kernel&lt;br /&gt;
&lt;br /&gt;
[[User:dud]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
how about &amp;quot;in the court room&amp;quot;.  issues such as OS software legalities, SCO v. Linux, OS v. *, licensing, etc, but strictly based on a legal view.&lt;br /&gt;
&lt;br /&gt;
[[User:danZenie|danZenie]]&lt;br /&gt;
----&lt;br /&gt;
How about a section on &amp;quot;Storage configuration&amp;quot;.  I can contribute material on Linux Software RAID, LVM, and possibly material comparing the various supported file systems.&lt;br /&gt;
&lt;br /&gt;
[[User:Texastwister|Texastwister]] 14:07, Mar 3, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Perhaps a section on the best way to install gnome from scratch, with a list of dependency etc would be very useful (to me it would have been anyway). Unfortunately I do not have the expertise/time to do this. Anyone who takes up the buck will have my support. &lt;br /&gt;
&lt;br /&gt;
[[User:Geniarse|generic_genus]] 03:33, Mar 2, 2004 (EST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I would love to see a section for &amp;quot;ex-windows power users&amp;quot;. For people who know what has to be done and how to do it in windows, but not yet how it is done in Linux. This would 'tasks equivalent' list partner to the software equivalent list available at http://linuxshop.ru/linuxbegin/win-lin-soft-en/table.shtml&lt;br /&gt;
&lt;br /&gt;
The key advantage of a task equivlent list would be ex-windows people would be able to search on key words which they already know to find the linux method of performing the task. Quite  a lot of the time I have taken to learn linux was taken up by just finding which keyword to seach on. One complication I've identified so far - we'll need instructions for the CLI, KDE &amp;amp; Gnome, but it would probably complicate things too much to support all the oher desktops etc out there...&lt;br /&gt;
&lt;br /&gt;
An example of a few items to get started:&lt;br /&gt;
&lt;br /&gt;
=====================&amp;lt;br&amp;gt;&lt;br /&gt;
Set File Associations&amp;lt;br&amp;gt;&lt;br /&gt;
=====================&lt;br /&gt;
&lt;br /&gt;
In Windows&amp;lt;br&amp;gt;&lt;br /&gt;
Explorer | Tools | Folder Options | File Types&lt;br /&gt;
&lt;br /&gt;
In Linux&amp;lt;br&amp;gt;&lt;br /&gt;
Configuration | KDE | Components | File Associations&lt;br /&gt;
&lt;br /&gt;
Gnome instructions go here...&lt;br /&gt;
&lt;br /&gt;
=====================&amp;lt;br&amp;gt;&lt;br /&gt;
Clear Browser History&amp;lt;br&amp;gt;&lt;br /&gt;
=====================&lt;br /&gt;
&lt;br /&gt;
Windows IE&lt;br /&gt;
&lt;br /&gt;
Internet Explorer | Tools | Internet Options | General Tab | Clear History&lt;br /&gt;
&lt;br /&gt;
Linux&lt;br /&gt;
&lt;br /&gt;
KDE&amp;lt;br&amp;gt;&lt;br /&gt;
The history is stored in ~/.kde/share/apps/konqueror/konq_history&lt;br /&gt;
To Clear Go Konqueror | Setting Configure Conqueror | History Sidebar (9th item down on left side panel) | Clear History&lt;br /&gt;
&lt;br /&gt;
==================&amp;lt;br&amp;gt;&lt;br /&gt;
Kill a crashed App&amp;lt;br&amp;gt;&lt;br /&gt;
==================&lt;br /&gt;
&lt;br /&gt;
In Windows&lt;br /&gt;
Ctrl-Alt-Delete &lt;br /&gt;
&lt;br /&gt;
In Linux&lt;br /&gt;
Ctrl-Esc bring up a task list, and allows the user to select and kill a process.&lt;br /&gt;
&lt;br /&gt;
Ctrl=Alt-Esc invokes XKill, which changes the cursor to Skull &amp;amp; Crossbones - and allows the user to kill a program by positioning the cursor over the crashed program and clicking to kill it.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I apologize for editing your comments (which I definitely don't think should be done as a general rule) but all I did was remove the excessive equal signs and put breaks in where your text indicated you wanted them. No need for pages that would be broken on anything but 1600x1200 or higher.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Quote:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;i&amp;gt;In Windows&amp;lt;br&amp;gt;&lt;br /&gt;
Explorer | Tools | Folder Options | File Types&lt;br /&gt;
&lt;br /&gt;
In Linux&amp;lt;br&amp;gt;&lt;br /&gt;
Configuration | KDE | Components | File Associations&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Impossible, really. That's not how Linux works. You don't 'set file associations in Linux'. Setting that varies from KDE to Gnome to non-IDEs and from file manager to file manager. You set file associations in midnight commander and gentoo and emelfm and and and. If you set file associations at all. bash has no file associations. But something like that could be very useful - it's a good idea. It'd just have to be carefully done and require a lot of qualifying - lots of ifs, ands, and buts. 'There's more than one way to do it' and Linux isn't so much about following a rote set of steps. Even './configure, make, make install' is excessive simplification.&lt;br /&gt;
&lt;br /&gt;
BTW, it's customary to separate and sign comments.&lt;br /&gt;
&lt;br /&gt;
[[User:Digiot|Digiot]] 06:50, Mar 1, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
How about a section on hardware.  A place to let other know about what will work or not work.  I have been playing with an old Zaurus that I got off ebay aand could have used a couple of pointers on the little things that go with it.  I learned at least one thing not to do!&lt;br /&gt;
&lt;br /&gt;
pben&lt;br /&gt;
&lt;br /&gt;
:http://www.linuxquestions.org/hcl/index.php&lt;br /&gt;
:[[User:Jeremy|Jeremy]] 18:21, Mar 3, 2004 (EST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Remember, you can sign your name with 4 tildes on an empty line like below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Skyline|Skyline]] 22:29, Mar 2, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I'd like to see a section on Hardware Installation that then branched out into things like configuring ALSA or OSS for soundcards or SANE for scanners. Things  like that would be helpful, IMHO.&lt;br /&gt;
&lt;br /&gt;
Oh, and it might be nice to block ads from Microsoft.com in the google ads. There's one now advertising &amp;quot;Get The Facts&amp;quot;. I personally could do without seeing that. I'm trying to avoid high-blood pressure.&lt;br /&gt;
&lt;br /&gt;
[[User:Flickerfly|Flickerfly]] 09:27, Mar 5, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I would like a section on hardware issues (ie: FuBar DVD writer works with Kernal 2.6.XX and up.&lt;br /&gt;
&lt;br /&gt;
[[User:Kenng|Kenng]] 18:08, Mar 5, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
I agree, it would be nice to have hardware, possible sorted by both type and brand.  The hardest thing I have had to do with linux was getting it to work with my hardware (installing ALSA, Nvidia, Logitech drivers).  Because wikis can become so expansive it could become a great 1 stop resource, with very specific instructions and up to date links to the drivers&lt;br /&gt;
[[User:Platinum1|Platinum1]] 15:28, Mar 5, 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
Hardware, definitely [[User:Damas|Damas]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;quot;Installing Linux&amp;quot; seems to be conspicuously absent.  I think that would be one of the first things a novice would look for.  I imagine the topic would branch off into specific instructions for each of the various distros.&lt;br /&gt;
&lt;br /&gt;
[[User:Alanyst|Alanyst]] 18:49, Mar 5, 2004 (EST)&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=LQWiki:Section_suggestions&amp;diff=1257</id>
		<title>LQWiki:Section suggestions</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=LQWiki:Section_suggestions&amp;diff=1257"/>
		<updated>2004-03-06T00:07:28Z</updated>

		<summary type="html">&lt;p&gt;Dud: added more kernel suggestions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please post any ideas you have for new sections below.&lt;br /&gt;
&lt;br /&gt;
How about a Hardware topic. I have an xmodmap for my labtec keyboard and instructions how to bind a keyboard's special keys but no topic under which to post them.&lt;br /&gt;
[[User:koody]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Some section for kernel questions &amp;quot;how to get suspend to disk work&amp;quot;, &amp;quot;whats needed to get irda working&amp;quot;, &amp;quot;how do I get pictures out of my digital camera&amp;quot; might be interesting.&lt;br /&gt;
&lt;br /&gt;
[[User:pavel]]&lt;br /&gt;
&lt;br /&gt;
Also: how to get ps2 mouse running in 2.6 kernel&lt;br /&gt;
&lt;br /&gt;
Also: how to get swap working again in 2.6 kernel&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
how about &amp;quot;in the court room&amp;quot;.  issues such as OS software legalities, SCO v. Linux, OS v. *, licensing, etc, but strictly based on a legal view.&lt;br /&gt;
&lt;br /&gt;
[[User:danZenie|danZenie]]&lt;br /&gt;
----&lt;br /&gt;
How about a section on &amp;quot;Storage configuration&amp;quot;.  I can contribute material on Linux Software RAID, LVM, and possibly material comparing the various supported file systems.&lt;br /&gt;
&lt;br /&gt;
[[User:Texastwister|Texastwister]] 14:07, Mar 3, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Perhaps a section on the best way to install gnome from scratch, with a list of dependency etc would be very useful (to me it would have been anyway). Unfortunately I do not have the expertise/time to do this. Anyone who takes up the buck will have my support. &lt;br /&gt;
&lt;br /&gt;
[[User:Geniarse|generic_genus]] 03:33, Mar 2, 2004 (EST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I would love to see a section for &amp;quot;ex-windows power users&amp;quot;. For people who know what has to be done and how to do it in windows, but not yet how it is done in Linux. This would 'tasks equivalent' list partner to the software equivalent list available at http://linuxshop.ru/linuxbegin/win-lin-soft-en/table.shtml&lt;br /&gt;
&lt;br /&gt;
The key advantage of a task equivlent list would be ex-windows people would be able to search on key words which they already know to find the linux method of performing the task. Quite  a lot of the time I have taken to learn linux was taken up by just finding which keyword to seach on. One complication I've identified so far - we'll need instructions for the CLI, KDE &amp;amp; Gnome, but it would probably complicate things too much to support all the oher desktops etc out there...&lt;br /&gt;
&lt;br /&gt;
An example of a few items to get started:&lt;br /&gt;
&lt;br /&gt;
=====================&amp;lt;br&amp;gt;&lt;br /&gt;
Set File Associations&amp;lt;br&amp;gt;&lt;br /&gt;
=====================&lt;br /&gt;
&lt;br /&gt;
In Windows&amp;lt;br&amp;gt;&lt;br /&gt;
Explorer | Tools | Folder Options | File Types&lt;br /&gt;
&lt;br /&gt;
In Linux&amp;lt;br&amp;gt;&lt;br /&gt;
Configuration | KDE | Components | File Associations&lt;br /&gt;
&lt;br /&gt;
Gnome instructions go here...&lt;br /&gt;
&lt;br /&gt;
=====================&amp;lt;br&amp;gt;&lt;br /&gt;
Clear Browser History&amp;lt;br&amp;gt;&lt;br /&gt;
=====================&lt;br /&gt;
&lt;br /&gt;
Windows IE&lt;br /&gt;
&lt;br /&gt;
Internet Explorer | Tools | Internet Options | General Tab | Clear History&lt;br /&gt;
&lt;br /&gt;
Linux&lt;br /&gt;
&lt;br /&gt;
KDE&amp;lt;br&amp;gt;&lt;br /&gt;
The history is stored in ~/.kde/share/apps/konqueror/konq_history&lt;br /&gt;
To Clear Go Konqueror | Setting Configure Conqueror | History Sidebar (9th item down on left side panel) | Clear History&lt;br /&gt;
&lt;br /&gt;
==================&amp;lt;br&amp;gt;&lt;br /&gt;
Kill a crashed App&amp;lt;br&amp;gt;&lt;br /&gt;
==================&lt;br /&gt;
&lt;br /&gt;
In Windows&lt;br /&gt;
Ctrl-Alt-Delete &lt;br /&gt;
&lt;br /&gt;
In Linux&lt;br /&gt;
Ctrl-Esc bring up a task list, and allows the user to select and kill a process.&lt;br /&gt;
&lt;br /&gt;
Ctrl=Alt-Esc invokes XKill, which changes the cursor to Skull &amp;amp; Crossbones - and allows the user to kill a program by positioning the cursor over the crashed program and clicking to kill it.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I apologize for editing your comments (which I definitely don't think should be done as a general rule) but all I did was remove the excessive equal signs and put breaks in where your text indicated you wanted them. No need for pages that would be broken on anything but 1600x1200 or higher.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Quote:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;i&amp;gt;In Windows&amp;lt;br&amp;gt;&lt;br /&gt;
Explorer | Tools | Folder Options | File Types&lt;br /&gt;
&lt;br /&gt;
In Linux&amp;lt;br&amp;gt;&lt;br /&gt;
Configuration | KDE | Components | File Associations&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Impossible, really. That's not how Linux works. You don't 'set file associations in Linux'. Setting that varies from KDE to Gnome to non-IDEs and from file manager to file manager. You set file associations in midnight commander and gentoo and emelfm and and and. If you set file associations at all. bash has no file associations. But something like that could be very useful - it's a good idea. It'd just have to be carefully done and require a lot of qualifying - lots of ifs, ands, and buts. 'There's more than one way to do it' and Linux isn't so much about following a rote set of steps. Even './configure, make, make install' is excessive simplification.&lt;br /&gt;
&lt;br /&gt;
BTW, it's customary to separate and sign comments.&lt;br /&gt;
&lt;br /&gt;
[[User:Digiot|Digiot]] 06:50, Mar 1, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
How about a section on hardware.  A place to let other know about what will work or not work.  I have been playing with an old Zaurus that I got off ebay aand could have used a couple of pointers on the little things that go with it.  I learned at least one thing not to do!&lt;br /&gt;
&lt;br /&gt;
pben&lt;br /&gt;
&lt;br /&gt;
:http://www.linuxquestions.org/hcl/index.php&lt;br /&gt;
:[[User:Jeremy|Jeremy]] 18:21, Mar 3, 2004 (EST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Remember, you can sign your name with 4 tildes on an empty line like below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Skyline|Skyline]] 22:29, Mar 2, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I'd like to see a section on Hardware Installation that then branched out into things like configuring ALSA or OSS for soundcards or SANE for scanners. Things  like that would be helpful, IMHO.&lt;br /&gt;
&lt;br /&gt;
Oh, and it might be nice to block ads from Microsoft.com in the google ads. There's one now advertising &amp;quot;Get The Facts&amp;quot;. I personally could do without seeing that. I'm trying to avoid high-blood pressure.&lt;br /&gt;
&lt;br /&gt;
[[User:Flickerfly|Flickerfly]] 09:27, Mar 5, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I would like a section on hardware issues (ie: FuBar DVD writer works with Kernal 2.6.XX and up.&lt;br /&gt;
&lt;br /&gt;
[[User:Kenng|Kenng]] 18:08, Mar 5, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
I agree, it would be nice to have hardware, possible sorted by both type and brand.  The hardest thing I have had to do with linux was getting it to work with my hardware (installing ALSA, Nvidia, Logitech drivers).  Because wikis can become so expansive it could become a great 1 stop resource, with very specific instructions and up to date links to the drivers&lt;br /&gt;
[[User:Platinum1|Platinum1]] 15:28, Mar 5, 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
Hardware, definitely [[User:Damas|Damas]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;quot;Installing Linux&amp;quot; seems to be conspicuously absent.  I think that would be one of the first things a novice would look for.  I imagine the topic would branch off into specific instructions for each of the various distros.&lt;br /&gt;
&lt;br /&gt;
[[User:Alanyst|Alanyst]] 18:49, Mar 5, 2004 (EST)&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=LQWiki:Section_suggestions&amp;diff=1253</id>
		<title>LQWiki:Section suggestions</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=LQWiki:Section_suggestions&amp;diff=1253"/>
		<updated>2004-03-06T00:06:35Z</updated>

		<summary type="html">&lt;p&gt;Dud: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please post any ideas you have for new sections below.&lt;br /&gt;
&lt;br /&gt;
How about a Hardware topic. I have an xmodmap for my labtec keyboard and instructions how to bind a keyboard's special keys but no topic under which to post them.&lt;br /&gt;
[[User:koody]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Some section for kernel questions &amp;quot;how to get suspend to disk work&amp;quot;, &amp;quot;whats needed to get irda working&amp;quot;, &amp;quot;how do I get pictures out of my digital camera&amp;quot; might be interesting.&lt;br /&gt;
&lt;br /&gt;
[[User:pavel]]&lt;br /&gt;
&lt;br /&gt;
Also: how to get ps2 mouse running in 2.6 kernel&lt;br /&gt;
how to get swap working again in 2.6 kernel&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
how about &amp;quot;in the court room&amp;quot;.  issues such as OS software legalities, SCO v. Linux, OS v. *, licensing, etc, but strictly based on a legal view.&lt;br /&gt;
&lt;br /&gt;
[[User:danZenie|danZenie]]&lt;br /&gt;
----&lt;br /&gt;
How about a section on &amp;quot;Storage configuration&amp;quot;.  I can contribute material on Linux Software RAID, LVM, and possibly material comparing the various supported file systems.&lt;br /&gt;
&lt;br /&gt;
[[User:Texastwister|Texastwister]] 14:07, Mar 3, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Perhaps a section on the best way to install gnome from scratch, with a list of dependency etc would be very useful (to me it would have been anyway). Unfortunately I do not have the expertise/time to do this. Anyone who takes up the buck will have my support. &lt;br /&gt;
&lt;br /&gt;
[[User:Geniarse|generic_genus]] 03:33, Mar 2, 2004 (EST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I would love to see a section for &amp;quot;ex-windows power users&amp;quot;. For people who know what has to be done and how to do it in windows, but not yet how it is done in Linux. This would 'tasks equivalent' list partner to the software equivalent list available at http://linuxshop.ru/linuxbegin/win-lin-soft-en/table.shtml&lt;br /&gt;
&lt;br /&gt;
The key advantage of a task equivlent list would be ex-windows people would be able to search on key words which they already know to find the linux method of performing the task. Quite  a lot of the time I have taken to learn linux was taken up by just finding which keyword to seach on. One complication I've identified so far - we'll need instructions for the CLI, KDE &amp;amp; Gnome, but it would probably complicate things too much to support all the oher desktops etc out there...&lt;br /&gt;
&lt;br /&gt;
An example of a few items to get started:&lt;br /&gt;
&lt;br /&gt;
=====================&amp;lt;br&amp;gt;&lt;br /&gt;
Set File Associations&amp;lt;br&amp;gt;&lt;br /&gt;
=====================&lt;br /&gt;
&lt;br /&gt;
In Windows&amp;lt;br&amp;gt;&lt;br /&gt;
Explorer | Tools | Folder Options | File Types&lt;br /&gt;
&lt;br /&gt;
In Linux&amp;lt;br&amp;gt;&lt;br /&gt;
Configuration | KDE | Components | File Associations&lt;br /&gt;
&lt;br /&gt;
Gnome instructions go here...&lt;br /&gt;
&lt;br /&gt;
=====================&amp;lt;br&amp;gt;&lt;br /&gt;
Clear Browser History&amp;lt;br&amp;gt;&lt;br /&gt;
=====================&lt;br /&gt;
&lt;br /&gt;
Windows IE&lt;br /&gt;
&lt;br /&gt;
Internet Explorer | Tools | Internet Options | General Tab | Clear History&lt;br /&gt;
&lt;br /&gt;
Linux&lt;br /&gt;
&lt;br /&gt;
KDE&amp;lt;br&amp;gt;&lt;br /&gt;
The history is stored in ~/.kde/share/apps/konqueror/konq_history&lt;br /&gt;
To Clear Go Konqueror | Setting Configure Conqueror | History Sidebar (9th item down on left side panel) | Clear History&lt;br /&gt;
&lt;br /&gt;
==================&amp;lt;br&amp;gt;&lt;br /&gt;
Kill a crashed App&amp;lt;br&amp;gt;&lt;br /&gt;
==================&lt;br /&gt;
&lt;br /&gt;
In Windows&lt;br /&gt;
Ctrl-Alt-Delete &lt;br /&gt;
&lt;br /&gt;
In Linux&lt;br /&gt;
Ctrl-Esc bring up a task list, and allows the user to select and kill a process.&lt;br /&gt;
&lt;br /&gt;
Ctrl=Alt-Esc invokes XKill, which changes the cursor to Skull &amp;amp; Crossbones - and allows the user to kill a program by positioning the cursor over the crashed program and clicking to kill it.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I apologize for editing your comments (which I definitely don't think should be done as a general rule) but all I did was remove the excessive equal signs and put breaks in where your text indicated you wanted them. No need for pages that would be broken on anything but 1600x1200 or higher.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Quote:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;i&amp;gt;In Windows&amp;lt;br&amp;gt;&lt;br /&gt;
Explorer | Tools | Folder Options | File Types&lt;br /&gt;
&lt;br /&gt;
In Linux&amp;lt;br&amp;gt;&lt;br /&gt;
Configuration | KDE | Components | File Associations&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Impossible, really. That's not how Linux works. You don't 'set file associations in Linux'. Setting that varies from KDE to Gnome to non-IDEs and from file manager to file manager. You set file associations in midnight commander and gentoo and emelfm and and and. If you set file associations at all. bash has no file associations. But something like that could be very useful - it's a good idea. It'd just have to be carefully done and require a lot of qualifying - lots of ifs, ands, and buts. 'There's more than one way to do it' and Linux isn't so much about following a rote set of steps. Even './configure, make, make install' is excessive simplification.&lt;br /&gt;
&lt;br /&gt;
BTW, it's customary to separate and sign comments.&lt;br /&gt;
&lt;br /&gt;
[[User:Digiot|Digiot]] 06:50, Mar 1, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
How about a section on hardware.  A place to let other know about what will work or not work.  I have been playing with an old Zaurus that I got off ebay aand could have used a couple of pointers on the little things that go with it.  I learned at least one thing not to do!&lt;br /&gt;
&lt;br /&gt;
pben&lt;br /&gt;
&lt;br /&gt;
:http://www.linuxquestions.org/hcl/index.php&lt;br /&gt;
:[[User:Jeremy|Jeremy]] 18:21, Mar 3, 2004 (EST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Remember, you can sign your name with 4 tildes on an empty line like below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Skyline|Skyline]] 22:29, Mar 2, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I'd like to see a section on Hardware Installation that then branched out into things like configuring ALSA or OSS for soundcards or SANE for scanners. Things  like that would be helpful, IMHO.&lt;br /&gt;
&lt;br /&gt;
Oh, and it might be nice to block ads from Microsoft.com in the google ads. There's one now advertising &amp;quot;Get The Facts&amp;quot;. I personally could do without seeing that. I'm trying to avoid high-blood pressure.&lt;br /&gt;
&lt;br /&gt;
[[User:Flickerfly|Flickerfly]] 09:27, Mar 5, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I would like a section on hardware issues (ie: FuBar DVD writer works with Kernal 2.6.XX and up.&lt;br /&gt;
&lt;br /&gt;
[[User:Kenng|Kenng]] 18:08, Mar 5, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
I agree, it would be nice to have hardware, possible sorted by both type and brand.  The hardest thing I have had to do with linux was getting it to work with my hardware (installing ALSA, Nvidia, Logitech drivers).  Because wikis can become so expansive it could become a great 1 stop resource, with very specific instructions and up to date links to the drivers&lt;br /&gt;
[[User:Platinum1|Platinum1]] 15:28, Mar 5, 2004 (PST)&lt;br /&gt;
&lt;br /&gt;
Hardware, definitely [[User:Damas|Damas]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;quot;Installing Linux&amp;quot; seems to be conspicuously absent.  I think that would be one of the first things a novice would look for.  I imagine the topic would branch off into specific instructions for each of the various distros.&lt;br /&gt;
&lt;br /&gt;
[[User:Alanyst|Alanyst]] 18:49, Mar 5, 2004 (EST)&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Flash_Player(s)&amp;diff=1265</id>
		<title>Flash Player(s)</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Flash_Player(s)&amp;diff=1265"/>
		<updated>2004-03-06T00:03:32Z</updated>

		<summary type="html">&lt;p&gt;Dud: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A Flash Player is a program that displays animations available in [[Flash Format]] (typically file names end with the letters .swf ).  These programs run under [[X-Windows]] and are typically run as [[Browser Helper Applications]].&lt;br /&gt;
&lt;br /&gt;
INSTALLATION NOTE: If you have Depth &amp;lt; 16 in your XF86Config-4,&lt;br /&gt;
then all the flash player plugins will crash and burn when you load&lt;br /&gt;
a page containing flash.  (True for Konqueror and Mozilla).&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Flash_Player(s)&amp;diff=1247</id>
		<title>Flash Player(s)</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Flash_Player(s)&amp;diff=1247"/>
		<updated>2004-03-06T00:03:15Z</updated>

		<summary type="html">&lt;p&gt;Dud: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A Flash Player is a program that displays animations available in [[Flash Format]] (typically file names end with the letters .swf ).  These programs run under [[X-Windows]] and are typically run as [[Browser Helper Applications]].&lt;br /&gt;
pl&lt;br /&gt;
INSTALLATION NOTE: If you have Depth &amp;lt; 16 in your XF86Config-4,&lt;br /&gt;
then all the flash player plugins will crash and burn when you load&lt;br /&gt;
a page containing flash.  (True for Konqueror and Mozilla).&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Plugins&amp;diff=1453</id>
		<title>Plugins</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Plugins&amp;diff=1453"/>
		<updated>2004-03-06T00:02:15Z</updated>

		<summary type="html">&lt;p&gt;Dud: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Flash Player(s)]], [[mplayer-plugin]]&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Web_browser&amp;diff=1461</id>
		<title>Web browser</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Web_browser&amp;diff=1461"/>
		<updated>2004-03-06T00:01:16Z</updated>

		<summary type="html">&lt;p&gt;Dud: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; [[plugins]], [[Flash Player(s)]]&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Flash_Player(s)&amp;diff=1226</id>
		<title>Flash Player(s)</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Flash_Player(s)&amp;diff=1226"/>
		<updated>2004-03-05T23:51:23Z</updated>

		<summary type="html">&lt;p&gt;Dud: Added warning about installing flashplayer.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;INSTALLATION NOTE: If you have DisplayDepth &amp;lt; 16 in your XF86Config-4,&lt;br /&gt;
then all the flash player plugins will crash and burn when you load&lt;br /&gt;
a page containing flash.  (True for Konqueror and Mozilla).&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Web_browser&amp;diff=1237</id>
		<title>Web browser</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Web_browser&amp;diff=1237"/>
		<updated>2004-03-05T23:49:56Z</updated>

		<summary type="html">&lt;p&gt;Dud: Added Flash Player(s)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; [[Mozilla]], [[Firefox]], [[Opera]], [[Konqueror]], [[Flash Player(s)]]&lt;/div&gt;</summary>
		<author><name>Dud</name></author>
	</entry>
</feed>