<?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=Xoke</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=Xoke"/>
	<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/wiki/Special:Contributions/Xoke"/>
	<updated>2026-04-10T23:23:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.0</generator>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Logitech_G15&amp;diff=59378</id>
		<title>Logitech G15</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Logitech_G15&amp;diff=59378"/>
		<updated>2012-04-10T14:25:24Z</updated>

		<summary type="html">&lt;p&gt;Xoke: g15 daemon now in repos so edited to say that&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''The information on this page is taken from [https://help.ubuntu.com/community/LogitechG15] and was copied ver batim to this page.  Text formatting was changed to be wiki compatible.'''&lt;br /&gt;
&lt;br /&gt;
'''This content is quite old and may not be applicable to current versions of Ubuntu.'''  (please remove this note if the page is updated)&lt;br /&gt;
&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
This will walk you through the process of installing and configuring your Logitech G15 keyboard in Ubuntu.  After doing this, you will be able to use the LCD display and all of the special keys will work just like normal keys that you can bind shortcuts to.  To do this, you will need to do three things: download and install drivers so that Ubuntu recognizes the LCD and extra keys, add symbols to X so that the extra keys exist in X, and bind the extra keys on the G15 to the symbols you created.&lt;br /&gt;
&lt;br /&gt;
= Installing G15 drivers with G15tools =&lt;br /&gt;
&lt;br /&gt;
*If you are running a newer version of Ubuntu (Intrepid+) G15Daemon is in the repos so you can just sudo apt-get install g15daemon and skip to the modprobe uinput further down.  Otherwise continue below*&lt;br /&gt;
&lt;br /&gt;
First, install the required libraries: libusb and libdaemon, and if not allready installed the build-essentials package.&lt;br /&gt;
 sudo apt-get install libusb-dev libdaemon-dev build-essential&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download libg15, G15Composer, and libG15Render from http://g15tools.sourceforge.net/, and http://sourceforge.net/projects/g15daemon|G15Daemon. Extract the packages to their own directory, change to that directory, compile and install the files. You must install libg15 and libG15Render first. In each directory, run the following to compile and install the files. To do this, run the following in the directory that you put the files you downloaded:&lt;br /&gt;
&lt;br /&gt;
 tar -xjvf &amp;lt;file&amp;gt;&lt;br /&gt;
 cd &amp;lt;directory that it extracted into&amp;gt;&lt;br /&gt;
 ./configure&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''If you see an error while running &amp;lt;tt&amp;gt;./configure&amp;lt;/tt&amp;gt;, make a note of what it said was missing before it failed.  This is most likely the name of a program or library that you need to install.  You can open up the Synaptic Package Manager in the System-&amp;gt;Administration menu and search for that file.  You will most likely want to install the one that ends in -dev.''&lt;br /&gt;
&lt;br /&gt;
Repeat this for every package that you want to install, making sure to go in the order specified above.  Once you have done this, it is safe to delete the .tar.bz2 files as well as the directories you made; the programs have been installed and you do not need the source anymore.&lt;br /&gt;
&lt;br /&gt;
Now load the uinput module and set it to load when you start the computer:&lt;br /&gt;
&lt;br /&gt;
 sudo modprobe uinput&lt;br /&gt;
&lt;br /&gt;
Run &amp;lt;tt&amp;gt;gksudo gedit /etc/modules&amp;lt;/tt&amp;gt; and add &amp;lt;tt&amp;gt;uinput&amp;lt;/tt&amp;gt; to the list.&lt;br /&gt;
&lt;br /&gt;
After you've done this, run &amp;lt;tt&amp;gt;sudo g15daemon&amp;lt;/tt&amp;gt;.  If you see a clock appear on the LCD screen, it is working properly. If not, refer to the Troubleshooting section below. To set g15daemon to run automatically at startup, edit the sudoers file by running the following:&lt;br /&gt;
 sudo visudo&lt;br /&gt;
&lt;br /&gt;
Add the following line to the bottom of the file -&lt;br /&gt;
 ALL ALL= NOPASSWD: /usr/sbin/g15daemon&lt;br /&gt;
'''Warning:''' If visudo complains about syntax errors when you exit the program, do '''not''' ignore them!  Go back and look at the file and see what went wrong.  If you mess up the sudoers file you might not be able to run sudo at all, which you'll need a LiveCD to fix.&lt;br /&gt;
&lt;br /&gt;
After you have done this, add g15daemon to your session by going to menus System -&amp;gt; Preferences -&amp;gt; Sessions, selecting New under the Startup Programs tab, and adding one with the name ''G15Daemon'' and the command ''sudo /usr/sbin/g15daemon''.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
If you get an error that says:&lt;br /&gt;
 g15daemon: error while loading shared libraries: libg15.so.1: cannot open shared object file: No such file or directory&lt;br /&gt;
&lt;br /&gt;
You need to run &amp;lt;tt&amp;gt;gksudo gedit /etc/ld.so.conf&amp;lt;/tt&amp;gt; and add &amp;lt;tt&amp;gt;/usr/local/lib&amp;lt;/tt&amp;gt; at the top of the file.  Then run &lt;br /&gt;
 sudo ldconfig&lt;br /&gt;
&lt;br /&gt;
That should fix the problem, try running the daemon again.&lt;br /&gt;
&lt;br /&gt;
= Adding key symbols to X =&lt;br /&gt;
It is possible to use your newly accessible G15 keys in Ubuntu by going to:&lt;br /&gt;
&lt;br /&gt;
System&amp;gt;Preferences&amp;gt;Keyboard&amp;gt;Layouts&lt;br /&gt;
&lt;br /&gt;
and selecting &amp;quot;Logitech G15 extra keys via G15daemon&amp;quot; under &amp;quot;keyboard model&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
An alternative method follows:&lt;br /&gt;
To add the symbols required to represent the special keys, run &amp;lt;tt&amp;gt;gksudo gedit /usr/share/X11/XKeysymDB&amp;lt;/tt&amp;gt; and add the following lines after the comment at the beginning - &lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
 G1                      :15000001&lt;br /&gt;
 G2                      :15000002&lt;br /&gt;
 G3                      :15000003&lt;br /&gt;
 G4                      :15000004&lt;br /&gt;
 G5                      :15000005&lt;br /&gt;
 G6                      :15000006&lt;br /&gt;
 G7                      :15000007&lt;br /&gt;
 G8                      :15000008&lt;br /&gt;
 G9                      :15000009&lt;br /&gt;
 G10                     :15000010&lt;br /&gt;
 G11                     :15000011&lt;br /&gt;
 G12                     :15000012&lt;br /&gt;
 G13                     :15000013&lt;br /&gt;
 G14                     :15000014&lt;br /&gt;
 G15                     :15000015&lt;br /&gt;
 G16                     :15000016&lt;br /&gt;
 G17                     :15000017&lt;br /&gt;
 G18                     :15000018&lt;br /&gt;
 M1                      :15000019&lt;br /&gt;
 M2                      :1500001A&lt;br /&gt;
 M3                      :1500001B&lt;br /&gt;
 LCD0                    :1500001D&lt;br /&gt;
 LCD1                    :1500001E&lt;br /&gt;
 LCD2                    :1500001F&lt;br /&gt;
 LCD3                    :15000020&lt;br /&gt;
 LCD4                    :15000021&lt;br /&gt;
 MR                      :15000022&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;br /&gt;
''Request - Can someone who is more experienced with this file tell me if these hex codes are good?  I don't know if there's a list of reserved codes somewhere.''&lt;br /&gt;
&lt;br /&gt;
Save this file, and move on to the next section.  If you upgrade your X server, you may have to re-insert these codes.&lt;br /&gt;
&lt;br /&gt;
= Binding the keys to the symbols =&lt;br /&gt;
&lt;br /&gt;
To use your newly created symbols, you'll need to create an .Xmodmap file in your home directory (or edit the one you already have).  If you do not have one, run ''xmodmap -pke &amp;gt; .Xmodmap'' in your home directory (using a terminal). Open this file (run &amp;lt;tt&amp;gt;gedit ~/.Xmodmap&amp;lt;/tt&amp;gt;) and add or change the following lines (you can determine keycodes running the &amp;quot;xev&amp;quot; application at a terminal):&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
 keycode  93 = M2&lt;br /&gt;
 keycode 129 = G5&lt;br /&gt;
 keycode 130 = G6&lt;br /&gt;
 keycode 131 = M3&lt;br /&gt;
 keycode 132 = LCD0&lt;br /&gt;
 keycode 133 = G12&lt;br /&gt;
 keycode 136 = G10&lt;br /&gt;
 keycode 137 = G15&lt;br /&gt;
 keycode 138 = G16&lt;br /&gt;
 keycode 143 = G12&lt;br /&gt;
 keycode 146 = G10&lt;br /&gt;
 keycode 152 = G2&lt;br /&gt;
 keycode 170 = LCD1&lt;br /&gt;
 keycode 177 = G1&lt;br /&gt;
 keycode 182 = G17&lt;br /&gt;
 keycode 183 = G18&lt;br /&gt;
 keycode 184 = M1&lt;br /&gt;
 keycode 190 = G3&lt;br /&gt;
 keycode 205 = LCD4&lt;br /&gt;
 keycode 208 = G4&lt;br /&gt;
 keycode 209 = G8&lt;br /&gt;
 keycode 210 = G9&lt;br /&gt;
 keycode 219 = LCD2&lt;br /&gt;
 keycode 220 = G11&lt;br /&gt;
 keycode 231 = G7&lt;br /&gt;
 keycode 246 = G13&lt;br /&gt;
 keycode 247 = MR&lt;br /&gt;
 keycode 249 = LCD3&lt;br /&gt;
 keycode 251 = G14&lt;br /&gt;
&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now log out and back in, and your extra keys will work just like any other.  You may get a message when you log in asking if you want to load .Xmodmap.  Add .Xmodmap to the load list and check the box that says 'Do not warn again'. Congrats!&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Bandwidth&amp;diff=35606</id>
		<title>Bandwidth</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Bandwidth&amp;diff=35606"/>
		<updated>2007-11-06T16:17:40Z</updated>

		<summary type="html">&lt;p&gt;Xoke: Possibly the worst analogy anywhere, but might be stupid enough for people to remember :)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[ Bandwidth | Bandwidth ]] is basically how much data you can send at once.  If you imagine your wires are roads going somewhere and the data you are sending are a marching band walking down that road, the ''width'' of the road affects how big a band you can send.  So the ''bandwidth'' is the width of the band you can send.  The wider the road, the wider the band, or the more data you can send.  If the road (or connection) is twice as wide (or fast) then you can have a band twice as wide (twice the data) in the same time.  The band (or data) always travels at the same speed.&lt;br /&gt;
&lt;br /&gt;
Bandwidth can be measured in various ways, but is always a certain number of bits per second.  This is not bytes per second but is similar.  Modems are currently measured in kilobits per second and DSL and cable can be kilobits per second or megabits per second.  The maximum download speed you generally get is somewhere around 1/5 of the rated speed.  So if you are running a 35.5K modem you will find you won't get downloads faster then 7K, although this depends on where you are downloading from as it may be even less then that.&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Uname&amp;diff=34801</id>
		<title>Uname</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Uname&amp;diff=34801"/>
		<updated>2007-08-20T20:09:03Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''uname''' is a command which prints [[system information]] like the kernel name.  This can be very useful if you're trying to install or make a program and it requires headers for your kernal or similar.  Instead of having to keep searching for your specific ones, if you have apt-get or similar program you can pass the output from uname to install whatever files are required for your architecture and kernel.&lt;br /&gt;
&lt;br /&gt;
[http://man.linuxquestions.org/?query=uname&amp;amp;section=0&amp;amp;type=2 man page]&lt;br /&gt;
&lt;br /&gt;
=Syntax=&lt;br /&gt;
All about the running kernel:&lt;br /&gt;
 $ uname -a&lt;br /&gt;
 Linux kolossus 2.6.18.8-0.3-default #1 SMP Tue Apr 17 08:42:35 UTC 2007 i686 i686 i386 GNU/Linux&lt;br /&gt;
Revision:&lt;br /&gt;
 $ uname -r&lt;br /&gt;
 2.6.18.8-0.3-default&lt;br /&gt;
Machine type:&lt;br /&gt;
 $ uname -m&lt;br /&gt;
 i686&lt;br /&gt;
&lt;br /&gt;
[[Category:Command]]&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Uname&amp;diff=34800</id>
		<title>Uname</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Uname&amp;diff=34800"/>
		<updated>2007-08-20T20:08:48Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''uname''' is a command which prints [[system information]] like the kernel name.  This can be very useful if you're trying to install or make a program and it requires headers for your kernal or similar.  Instead of having to keep searching for your specific ones, if you have apt-get or similar program you can pass the output from uname to install whatever files are required for your architecture and kernal.&lt;br /&gt;
&lt;br /&gt;
[http://man.linuxquestions.org/?query=uname&amp;amp;section=0&amp;amp;type=2 man page]&lt;br /&gt;
&lt;br /&gt;
=Syntax=&lt;br /&gt;
All about the running kernel:&lt;br /&gt;
 $ uname -a&lt;br /&gt;
 Linux kolossus 2.6.18.8-0.3-default #1 SMP Tue Apr 17 08:42:35 UTC 2007 i686 i686 i386 GNU/Linux&lt;br /&gt;
Revision:&lt;br /&gt;
 $ uname -r&lt;br /&gt;
 2.6.18.8-0.3-default&lt;br /&gt;
Machine type:&lt;br /&gt;
 $ uname -m&lt;br /&gt;
 i686&lt;br /&gt;
&lt;br /&gt;
[[Category:Command]]&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Master&amp;diff=34286</id>
		<title>Master</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Master&amp;diff=34286"/>
		<updated>2007-07-11T17:34:43Z</updated>

		<summary type="html">&lt;p&gt;Xoke: Created page, linked to 'slave' page I just wrote also&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Master''' is one of two main settings for a hard disk. The other being [[Slave]].  See that article for more information on ''master'' and ''slave'' settings.&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=IDE_master/slave&amp;diff=34285</id>
		<title>IDE master/slave</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=IDE_master/slave&amp;diff=34285"/>
		<updated>2007-07-11T17:31:57Z</updated>

		<summary type="html">&lt;p&gt;Xoke: Created page, wrote some drivel that people will rip to bits probably ;)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Slave''' is one of two main settings for a hard disk.  The other being [[Master]].  If you are building a computer you can set hard drives to be ''master'', ''slave'' plus a few others depending on hard drive type (like ''cable select'').  These are selected by putting a jumper in certain positions (or sometimes removing the jumper).  This depends on the hard drive though, but is normally written near the jumpers on the back of the hard drive.&lt;br /&gt;
&lt;br /&gt;
If you have a single IDE cable, with two hard drives on it one must be set to master and one to slave.  The master is the first or primary hard drive and the slave is the second or secondary.  The reason they ''primary'' and ''secondary'' are not used is that most computers have two IDE cables for hard drives and they are known as the primary and secondary.  So if you have four hard drives then you have a primary master, primary slave, secondary master and secondary slave.&lt;br /&gt;
&lt;br /&gt;
Originally you could only boot off the primary master, however nowadays you can boot off almost any hard drive (although the boot loader still needs to be on the primary master).  Also, when CD burners first came out they were very picky about where they had to do.  You had to put them on the 'other' IDE cable from where you were copying the CD from.  So if you were copying CD to CD you had to set them up as primary slave (primary master being the boot HD) and secondary master (if you had no other hard drive).  Nowadays as computers are much faster this is no longer an issue.&lt;br /&gt;
&lt;br /&gt;
If you have two hard drives which are used more then the CD drives, then you can gain some speed by putting them as primary master and secondary slave because then each IDE cable can run all the information between each hard drive and the rest of the computer.  If they are both on the same IDE cable then it's speed is split between the two drives.  This of course depends on exactly what you are doing on both hard drives, but if you are setting up a PC and put the OS on primary master and the swap file or user file area on secondary master that can increase speed (slightly).&lt;br /&gt;
&lt;br /&gt;
The exact setup of primary master, primary slave, secondary master and secondary slave can be a contentious issue though sometimes with many different views on how to do it.  This is a lot less of an issue now with faster computers though.  Simply put, depending on your computer you may want a different setup for your masters and slaves.&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Firefox&amp;diff=33817</id>
		<title>Firefox</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Firefox&amp;diff=33817"/>
		<updated>2007-05-24T15:39:29Z</updated>

		<summary type="html">&lt;p&gt;Xoke: /* Current version */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Mozilla Firefox''' (once known as &amp;quot;[[Firebird]]&amp;quot;) is a [[cross-platform]], [[open source]], free [[web browser]] available for [[Windows]], [[Mac OS X]], [[Linux]] and other operating systems. Unlike the [[Mozilla]] Suite, which  includes a [[chat]] client, [[mail]] functions, and web page editor, Firefox is just a browser, and is considerably faster than Mozilla. &lt;br /&gt;
&lt;br /&gt;
Since the introduction of version one of Firefox in the fall of 2004, Firefox is considered a viable alternative to Microsoft's browser, [[Internet Explorer]].  Thanks to features such as pop-up blocking, tabbed browsing, security features, Firefox has gained a substantial market share and the expense of Internet Explorer.&lt;br /&gt;
&lt;br /&gt;
==History== &lt;br /&gt;
Firefox was originally known as Phoenix but was later renamed to Firebird and then, in February 2004, to Firefox, because of confusion with [[FireBirdSQL]].&lt;br /&gt;
&lt;br /&gt;
==Current version==&lt;br /&gt;
The latest Firefox version is Firefox 2.0.0.3 (as of May 2007). For more information about Firefox, and to download it, see the [http://www.mozilla.com/firefox/ Firefox homepage].&lt;br /&gt;
&lt;br /&gt;
==Distribution specific information==&lt;br /&gt;
&lt;br /&gt;
===Debian===&lt;br /&gt;
[[Debian]] firefox packages for testing/sarge and unstable/sid users are available in the standard Debian repository, get them with &amp;lt;tt&amp;gt;[[apt-get]] install mozilla-firefox&amp;lt;/tt&amp;gt;. Debian stable/woody users can get a backported version [http://www.backports.org here]. A list of available plugins and locales packages can be found with &amp;lt;tt&amp;gt;[[apt-cache]] search --names-only mozilla-firefox&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Gentoo===&lt;br /&gt;
[[Gentoo]] users can install Firefox from a root prompt using [[emerge]], ie:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;tt&amp;gt;# emerge mozilla-firefox&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;tt&amp;gt;# emerge mozilla-firefox-bin&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(to get the official binary build installed).&lt;br /&gt;
&lt;br /&gt;
==From the new Linux Installer==&lt;br /&gt;
Download the latest Linux installer from&lt;br /&gt;
[http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/ ftp.mozilla.org].&lt;br /&gt;
''(Note: The installer ends in '-installer.tar.gz')''&lt;br /&gt;
&lt;br /&gt;
Extract it to a temporary directory, and go into the 'firefox-installer' directory. Now you must decide whether you want to install firefox system-wide, so that all computer users can use it, or whether to just install it for yourself. When you have finished the install you may delete the 'firefox-installer' directory.&lt;br /&gt;
&lt;br /&gt;
===Installing Firefox for Personal Use===&lt;br /&gt;
&lt;br /&gt;
Run the script called 'firefox-installer', in the firefox-installer directory. (If you are using a gui tool, you should be able to simply click on it) Click next until you are given a choice where to install firefox. You will probably want to install it somewhere like '/home/yourname/programs/firefox'. From there the install should be simple. To run firefox you must either run '/home/yourname/*/firefox/firefox', or make a shortcut to it (varies depending on your desktop environment).&lt;br /&gt;
&lt;br /&gt;
===Installing Firefox System-Wide===&lt;br /&gt;
&lt;br /&gt;
Open a terminal. Type in 'su' to login as the super-user. Use 'cd' to change to the directory where you extracted the firefox-installer (eg. &amp;lt;tt&amp;gt;cd /home/yourname/firefox-installer&amp;lt;/tt&amp;gt;). then type in &amp;lt;tt&amp;gt;./firefox-installer&amp;lt;/tt&amp;gt;. Click next until you are given a choice where to install firefox. To keep in line with linux standards, you will want to install it to '/opt/firefox'. From there the install should be simple. Once it is completed, go back to your terminal, and while still logged in as root, type in &amp;lt;tt&amp;gt;ln -s /opt/firefox/firefox /usr/local/bin/firefox&amp;lt;/tt&amp;gt; (assuming you installed to /opt/firefox). This will mean any user can run firefox by simply typing in &amp;lt;tt&amp;gt;firefox&amp;lt;/tt&amp;gt;, just like they were running any other program.&lt;br /&gt;
&lt;br /&gt;
==From Their Binaries==&lt;br /&gt;
Mozilla makes nightly binaries available at http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/,&lt;br /&gt;
or get the latest release from&lt;br /&gt;
http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/&lt;br /&gt;
&lt;br /&gt;
Untar it somewhere in your home directory with &amp;quot;tar -xvzf whatever.tar.gz&amp;quot;&lt;br /&gt;
you will have to run it with ./firefox from that directory, or you can create a [[shortcut]] to it.&lt;br /&gt;
&lt;br /&gt;
if you want browser plugins to work, symlink your main plugin directory contents to your new plugins directory.  You will want to keep the existing libnullplugin, so rename it before doing so, and rename it back.  Main plugin directories are often in /opt/mozilla or in /usr/lib/mozilla-version or similar.&lt;br /&gt;
&lt;br /&gt;
== Firefox tips==&lt;br /&gt;
*Type &amp;quot;about:config&amp;quot; in your location bar to get a complete and editable list of Firefox's preferences.&lt;br /&gt;
**filter by:&lt;br /&gt;
***'''error''' and set the resulting setting to be true for error messages that show in the browser page instead of a pop up&lt;br /&gt;
***'''dom''', then set all of the dom.disable options to true if you want to have control over the content in the web browser (these should work with all sites, no site should depend on using these features, they are all [[security hazard]]s when off)&lt;br /&gt;
***'''mouse''' set middlemouse.contentLoadURL to false, that way middle clickin on a tab will close it&lt;br /&gt;
***'''autoscroll''', set it to true, and you'll middle mouse button wont' paste personal information to a search engine everytime you accidentally click it, also does the autoscroll feature, which is an ergonmic feature, that will save you from finger strain. (IE on windows has this, and firefox on windows has it on by default)&lt;br /&gt;
&lt;br /&gt;
*Creating a shortcut under KDE&lt;br /&gt;
**If you use KDE and would like a shortcut to firefox to appear under the &amp;quot;K&amp;quot; menu you can perform the following steps.&lt;br /&gt;
***Right-click the &amp;quot;K&amp;quot; menu then select &amp;quot;Menu Editor&amp;quot;. A &amp;quot;KDE Menu Editor&amp;quot; window appears.&lt;br /&gt;
***Navigate to the location where you would like the shortcut to appear (ex: Internet&amp;gt;Web Browser). [Note: the default menu &amp;quot;folders&amp;quot; that appear in your K menu will differ depending on your linux distribution.] With the appropriate folder selected, right-click then select &amp;quot;New Item&amp;quot;. Enter an appropriate name (eg: Firefox v1.0x) in the &amp;quot;New Item - KDE Menu Editor&amp;quot; dialog box then click OK.&lt;br /&gt;
***With the new Firefox 1.0x menu item selected place your cursor in the Command field, then type in the proper path to the firefox executable. In the example provided above, this would be /opt/firefox/firefox&lt;br /&gt;
***Select the proper icon for the FireFox shortcut by clicking on the Select Icon button (located just to the right of the &amp;quot;Name&amp;quot; field). In the Select Icon dialog box, select the Other Icons radio button, then browse to your /opt/firefox/icons directory and select the firefox .png file, click OK.&lt;br /&gt;
***In the KDE Menu Editor dialog box, select FILE&amp;gt;SAVE, then select FILE&amp;gt;QUIT. Enjoy!&lt;br /&gt;
&lt;br /&gt;
===Adblock extension===&lt;br /&gt;
[http://adblock.mozdev.org/ Adblock] (''adblock.mozdev.org'') is an extension to Firefox that does exactly what you would expect it to do: it blocks advertisement banners, as well as flash animations and other similar nuisances.&lt;br /&gt;
&lt;br /&gt;
To install it, follow [https://addons.update.mozilla.org/extensions/moreinfo.php?application=firefox&amp;amp;version=1.0&amp;amp;os=nt&amp;amp;id=10 this link] and click on the link that says &amp;quot;Install Now.&amp;quot; If you have never installed an extenion before, you will most likely have to add &amp;lt;tt&amp;gt;update.mozilla.org&amp;lt;/tt&amp;gt; to the list of sites that may install software onto your computer. To do this, click the button that says &amp;quot;Edit Options&amp;quot; and click the button labeled &amp;quot;Allow.&amp;quot; Once the extension is done being downloaded and installed, restart Firefox to complete the installation.&lt;br /&gt;
&lt;br /&gt;
In order to block the vast majority of internet advertisements, go to [http://www.pierceive.com/ pierceive.com] and follow the links to download a set of filters called Filterset.G. Right click on the latest version of the file and choose &amp;quot;Save link as&amp;quot; and save it to a suitable location on your hard drive. To install these filters, click on &amp;lt;u&amp;gt;T&amp;lt;/u&amp;gt;ools, point to &amp;lt;u&amp;gt;A&amp;lt;/u&amp;gt;dblock, and then click Preferences. Click on the button labeled &amp;quot;Adblock Options&amp;quot; and click &amp;quot;Import filters.&amp;quot; Navigate to the location in which you saved the filter file and click &amp;quot;Open.&amp;quot; This imports the filters.&lt;br /&gt;
&lt;br /&gt;
There are some recommended settings for Adblock that will assist in enhancing your browsing experience. To active them, open the preferences panel (see above) and click on &amp;quot;Adblock Options.&amp;quot; The option labeled &amp;quot;Obj-Tags&amp;quot; should be selected already. In addition to that, select the following three options, as well as &amp;quot;Keep List Sorted.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If an advertisement appears on a web site that is not blocked, it is very easy to block it for visits. Right click on the image and click the bottom option, &amp;quot;Adblock Image.&amp;quot; A dialogue should open with the image's URL. You can click &amp;quot;OK&amp;quot; to block just that image. However, if you notice a pattern, for instance &amp;lt;tt&amp;gt;http://www.example.com/images/ads/banner1.gif&amp;lt;/tt&amp;gt;, it may be beneficial to block &amp;lt;tt&amp;gt;http://www.example.com/images/ads/*&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, wildcard blocks like that can occasionally lead to accidental blocking of unintended images. For that reason, Adblock allows you to remove filters you've set previously. In our above example, if by blocking things using the filter &amp;lt;tt&amp;gt;http://www.example.com/images/ads/*&amp;lt;/tt&amp;gt; made images disappear, you would want to delete that filter. To do so, open the Adblock Preferences (see above) and locate the filter on the list. It should be alphabetical, so locating it should not be difficult. Once you have found it, right click on it and either choose &amp;quot;Edit Filter&amp;quot; to change it and possibly correct it, or &amp;quot;Delete&amp;quot; to remove it outright.&lt;br /&gt;
&lt;br /&gt;
== Firefox troubleshooting==&lt;br /&gt;
'''Profile in use after power off'''&lt;br /&gt;
Firefox uses a file called lock in its profile to determine if the profile is in use.  If Firefox is running during a power failure, this file is still there, and Firefox will fail with profile in use message.  To fix it, find the lock file and delete it.&lt;br /&gt;
&lt;br /&gt;
Running as user, execute&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;user@linuxbox / $ cd ; find .mozilla -name lock -exec rm -f {} \;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above command will first change your current working directory to your own home directory (in this case, /home/user), then it will find all files called lock that are located in your .mozilla directory and any other subdirectory below it, and delete them forcefully. Or you can do the same thing with a file manager such as Konqueror.&lt;br /&gt;
&lt;br /&gt;
Now firefox should work again.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[browser wars]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.mozilla.org/products/firefox/ Official Firefox homepage] (www.mozilla.org)&lt;br /&gt;
* [http://update.mozilla.org/extensions/ Firefox Themes] (update.mozilla.org)&lt;br /&gt;
* [http://update.mozilla.org/themes/ FireFox extensions] (update.mozilla.org)&lt;br /&gt;
* [http://forums.mozillazine.org/ MozillaZine support forums] (forums.mozillazine.org)&lt;br /&gt;
* [http://kb.mozillazine.org/Knowledge_Base The Mozilla Knowledge Base Wiki page on Firefox -- Invaluable] (kb.mozillazine.org)&lt;br /&gt;
* [http://www.mozillazine.org/ MozillaZine News] (www.mozillazine.org)&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Squid.conf&amp;diff=33271</id>
		<title>Talk:Squid.conf</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Squid.conf&amp;diff=33271"/>
		<updated>2007-04-20T20:52:16Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OK so my first new page (be gentle!)&lt;br /&gt;
&lt;br /&gt;
This is how I have set squid up on my machine based on reading the help files and various other help websites.  It should be fairly good but if anyone has any suggestions on how to improve obviously please do - want to see how well I did.  It should be fairly anonymous and secure... in theory.  Things like lying with the user agent I'm not sure if it really helps, but it seems like a good idea to me.&lt;br /&gt;
--[[User:Xoke|Xoke]] 14:40, April 20, 2007 (EDT)&lt;br /&gt;
&lt;br /&gt;
good but too much for experts - e.g. how do I start squid ? --[[User:ThorstenStaerk|ThorstenStaerk]] 15:45, April 20, 2007 (EDT)&lt;br /&gt;
&lt;br /&gt;
Depends on what distro you're using - debian based ones should start it when you apt-get it.  You may have to start it manually from something like:&lt;br /&gt;
/etc/init.d/squid start&lt;br /&gt;
But again not sure - depends on your distro.&lt;br /&gt;
Oh and thanks for putting them as a quote :)  I had a text file with the changes I'd done and pretty much copied and pasted it into this wiki.&lt;br /&gt;
--[[User:Xoke|Xoke]] 16:52, April 20, 2007 (EDT)&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Xoke&amp;diff=33263</id>
		<title>User:Xoke</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Xoke&amp;diff=33263"/>
		<updated>2007-04-20T18:46:30Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm Xoke.  I started playing around with Mandrake Linux years ago (v6?) but never got really into it.  Tried Ubuntu in the beginning of 2006 and have been using Linux almost exclusively since then (apart from playing some games under Windows).  I'm still trying to get my Wife into Linux but unfortunately she's fairly against it.  She uses windows because 'it just works' then sits there and complains about how slow her computer is running!&lt;br /&gt;
&lt;br /&gt;
Also recently I must mention my friends recent passing.  Yes he's gone (back) to the dark side of windows :(  He was my first linux convertee and I lost him.  Strangely enough because he likes playing planeshift and it crashed more on linux then on windows for him!  He did really like linux though so I hope to bring him back into the fold :P&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Squid.conf&amp;diff=33262</id>
		<title>Talk:Squid.conf</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Squid.conf&amp;diff=33262"/>
		<updated>2007-04-20T18:40:15Z</updated>

		<summary type="html">&lt;p&gt;Xoke: New page: OK so my first new page (be gentle!)  This is how I have set squid up on my machine based on reading the help files and various other help websites.  It should be fairly good but if anyone...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OK so my first new page (be gentle!)&lt;br /&gt;
&lt;br /&gt;
This is how I have set squid up on my machine based on reading the help files and various other help websites.  It should be fairly good but if anyone has any suggestions on how to improve obviously please do - want to see how well I did.  It should be fairly anonymous and secure... in theory.  Things like lying with the user agent I'm not sure if it really helps, but it seems like a good idea to me.&lt;br /&gt;
--[[User:Xoke|Xoke]] 14:40, April 20, 2007 (EDT)&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Squid.conf&amp;diff=33261</id>
		<title>Squid.conf</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Squid.conf&amp;diff=33261"/>
		<updated>2007-04-20T18:38:23Z</updated>

		<summary type="html">&lt;p&gt;Xoke: New page with my settings.  Please change if you can do better :)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To set up squid to block ads, cookies, referer (sic) to get a lot more privacy when browsing you can do the following:&lt;br /&gt;
&lt;br /&gt;
* Install squid&lt;br /&gt;
&lt;br /&gt;
Note: You may want to do this all as root to stop users editing these files.  The following commands are done via a command shell.  Also this setup is for a single user running squid on their local machine.  To set up squid for more users a few lines will have to be amended (for example blocking access from all machine).&lt;br /&gt;
&lt;br /&gt;
* cd /etc/squid&lt;br /&gt;
&lt;br /&gt;
Make some files we need&lt;br /&gt;
* touch blacklist&lt;br /&gt;
This is going to be any sites we want to block&lt;br /&gt;
* touch cookie_allow&lt;br /&gt;
Sites we want cookies on (like linuxquestions.org!) so you can log on.&lt;br /&gt;
* touch referer_allow&lt;br /&gt;
Site that require the referer.  It is spelt referrer however the original spec typod it as referer.&lt;br /&gt;
* touch user_agent_allow&lt;br /&gt;
Sites that require a real user agent (as opposed to the spoof one we are going to use)&lt;br /&gt;
&lt;br /&gt;
Edit /etc/squid/squid.conf using your favourite editor.  There are lots of things to change here in many places, so listed here are the lines to search for and the lines to add in afterwards.  Bulleted lines in italic are the original lines, bulleted lines not in italic are lines to add.  Unbulleted lines are explanations.  We use linuxquestions.org always as an example so other websites don't get upset!&lt;br /&gt;
&lt;br /&gt;
* ''# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS''&lt;br /&gt;
* acl blacklist dstdomain &amp;quot;/etc/squid/blacklist&amp;quot;&lt;br /&gt;
* http_access deny blacklist&lt;br /&gt;
This tells squid to block any matching domains listed in the file blacklist.  If you want to block an entire website (linuxquestions.org say, although why you would want to block that!) you can simply edit the blacklist file and put:&lt;br /&gt;
.linuxquestions.org&lt;br /&gt;
which blocks www.linuxquestions.org, wiki.linuxquestions.org etc.  Putting:&lt;br /&gt;
wiki.linuxquestions.org&lt;br /&gt;
would block just the wiki.&lt;br /&gt;
&lt;br /&gt;
* ''#visible_hostname''&lt;br /&gt;
* visible_hostname proxy&lt;br /&gt;
This tells squid to tell everyone it is called 'proxy'.  It defaults to your machine name which could potentially be a security risk.&lt;br /&gt;
&lt;br /&gt;
* ''# forwarded_for on''&lt;br /&gt;
* forwarded_for off&lt;br /&gt;
This tells squid not to tell anyone it is a proxy.  Depending on the setting you may not want to have this one.&lt;br /&gt;
&lt;br /&gt;
* ''# By default, all headers are allowed (no anonymizing is''&lt;br /&gt;
* ''#	performed).''&lt;br /&gt;
* ''#''&lt;br /&gt;
* ''#Default:''&lt;br /&gt;
* ''# none''&lt;br /&gt;
* header_access From deny all&lt;br /&gt;
* header_access Server deny all&lt;br /&gt;
* header_access WWW-Authenticate deny all&lt;br /&gt;
* header_access Link deny all&lt;br /&gt;
* header_access Cache-Control deny all&lt;br /&gt;
* header_access Proxy-Connection deny all&lt;br /&gt;
* header_access X-Cache deny all&lt;br /&gt;
* header_access X-Cache-Lookup deny all&lt;br /&gt;
* header_access Via deny all&lt;br /&gt;
* header_access Forwarded-For deny all&lt;br /&gt;
* header_access X-Forwarded-For deny all&lt;br /&gt;
* header_access Pragma deny all&lt;br /&gt;
* header_access Keep-Alive deny all&lt;br /&gt;
* acl referer_allow dstdomain &amp;quot;/etc/squid/referer_allow&amp;quot;&lt;br /&gt;
* header_access Referer allow referer_allow&lt;br /&gt;
* header_access Referer deny all&lt;br /&gt;
* acl cookie_allow dstdomain &amp;quot;/etc/squid/cookie_allow&amp;quot;&lt;br /&gt;
* header_access Cookie allow cookie_allow&lt;br /&gt;
* header_access Cookie deny all&lt;br /&gt;
* acl user_agent_allow dstdomain &amp;quot;/etc/squid/user_agent_allow&amp;quot;&lt;br /&gt;
* header_access User-Agent allow user_agent_allow&lt;br /&gt;
* header_access User-Agent deny all&lt;br /&gt;
These lines do lots of things.  It blocks domains from reading the referer, cookies and user agent.  It blocks the 'forwarded for' header lines (which again could be a potential security risk giving actual machine names / IPs).  They also block connections to the squid proxy from all machines except local (see note at the beginning of this page).&lt;br /&gt;
&lt;br /&gt;
''* #header_replace User-Agent''&lt;br /&gt;
* header_replace User-Agent Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; YPC 3.0.1; .NET CLR 1.1.4322; .NET CLR&lt;br /&gt;
This line tells websites that you are running IE7 on Windows XP.  Some bad websites have been known to look at your user agent and try to use browser specific exploits, which should fail using this user agent.&lt;br /&gt;
&lt;br /&gt;
* ''# TAG: deny_info''&lt;br /&gt;
(many more lines until end of section)&lt;br /&gt;
* ''# by specifying TCP_RESET.''&lt;br /&gt;
* deny_info http://localhost/blacklist.gif blacklist&lt;br /&gt;
This line changes any websites in the blacklist to become blacklist.gif.  You can create the file as a small transparent gif file to replace any ad with.  You will need to make this file yourself otherwise you will get a file not found error.  If you don't want to replace the ads, you can skip adding this line however you will see 'access denied' instead of the ads.&lt;br /&gt;
&lt;br /&gt;
Now save the squid.conf file.  If you want to block almost all the ads on the internet you can download a hosts file (for example from [http://www.mvps.org/winhelp2002/hosts.htm]here) and save it.  Unfortunately it is in the wrong format however running the file through:&lt;br /&gt;
sed 's/\#.*//' hosts.txt | sed 's/127.0.0.1 *//' | sed 's/localhost//' | sed -e '/^$/d' &amp;gt; blacklist&lt;br /&gt;
&lt;br /&gt;
To pretty much sort file out. Might leave some blank lines at the front so edit blacklist to check.  You can remove the hosts.txt file now if you wish.  Copy the blacklist file into /etc/squid.&lt;br /&gt;
&lt;br /&gt;
Edit /etc/squid/cookie_allow and dd in any sites you want to allow cookies, e.g.&lt;br /&gt;
.linuxquestions.org&lt;br /&gt;
&lt;br /&gt;
Do the same with referer and user agent.&lt;br /&gt;
&lt;br /&gt;
Restart squid using: squid -k reconfigure&lt;br /&gt;
&lt;br /&gt;
Set browser to use squid port and check it all works!&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Squid&amp;diff=33260</id>
		<title>Squid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Squid&amp;diff=33260"/>
		<updated>2007-04-20T17:59:28Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Squid''' is:&lt;br /&gt;
&lt;br /&gt;
* a full-featured Web [[proxy]] cache &lt;br /&gt;
* designed to run on [[Unix]] systems &lt;br /&gt;
* free, open-source software &lt;br /&gt;
* the result of many contributions by unpaid (and paid) volunteers &lt;br /&gt;
&lt;br /&gt;
In other words, squid can be set up to download and cache websites for you to save on your bandwidth.  You can also change / block / redirect pages.  For example you can get some pages to automatically pick the 'print' option, or block ads.  This is all done via the [[squid.conf]] file found in /etc/squid.&lt;br /&gt;
&lt;br /&gt;
Squid supports:&lt;br /&gt;
&lt;br /&gt;
* proxying and caching of [[HTTP]], [[FTP]], and other [[URL]]'s &lt;br /&gt;
* proxying for [[SSL]] &lt;br /&gt;
* cache hierarchies &lt;br /&gt;
* ICP, HTCP, CARP, Cache Digests &lt;br /&gt;
* transparent caching &lt;br /&gt;
* WCCP (Squid v2.3 and above) &lt;br /&gt;
* extensive access controls &lt;br /&gt;
* filtering of unwanted web content with [[ufdbGuard]] &lt;br /&gt;
* HTTP server acceleration &lt;br /&gt;
* SNMP &lt;br /&gt;
* caching of [[DNS]] lookups&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://squid-cache.org squid-cache.org] (''squid-cache.org'')&lt;br /&gt;
* [http://www.urlfilterdb.com www.urlfilterdb.com] (''www.urlfilterdb.com'')&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Blender&amp;diff=32691</id>
		<title>Blender</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Blender&amp;diff=32691"/>
		<updated>2007-03-01T07:30:40Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Blender''' is a [[3D modeling]] application available for Linux, Windows, and Macintosh.  It is a powerful, professional 3D environment, but it has a steep learning curve, and many sometimes obscure shortcut keys.  It currently supports animation rendering, radiosity, particle systems, and [[OpenGL]] Realtime animation for some (but not all) platforms/OSs.  Blender is an interesting program because it was originally a commercial, closed source program.  The company that made it went bust, and the code was released as open source for a fee to the creditors.  That fee was paid and so the once closed source program became open source.&lt;br /&gt;
&lt;br /&gt;
Learning how to use Blender can be tough, but it's worth it. A good place to start is the Using Blender section of [http://www.blender3d.org Blender3d.org]. From the homepage, go to InfoCenter -&amp;gt; Using Blender.&lt;br /&gt;
&lt;br /&gt;
Blender has a built-in python [[interpreter]] and [[API]] for 3D object manipulation. Along with the built-in script library, there are many community-created scripts and tutorials for creating your own scripts.&lt;br /&gt;
&lt;br /&gt;
In 2006, an 'open' video made entirely by blender was released called [http://orange.blender.org/ Elephants Dream].  This was made under the Creative Commons license which allows anyone to use it to make their own movies as long as they say they used Elephants Dream.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.blender3d.org Blender3d.org] (''www.blender3d.org'')&lt;br /&gt;
* [http://en.wikibooks.org/wiki/Blender_3D:_Noob_to_Pro Noob to Pro, wikibooks] (''en.wikibooks.org'')&lt;br /&gt;
* [http://www.elysiun.com/  elYsiun.com] (''www.elysiun.com'')&lt;br /&gt;
* [http://orange.blender.org/ Elephants Dream] (''orange.blender.org'')&lt;br /&gt;
*: ''the'' Blender forum and community site.&lt;br /&gt;
&lt;br /&gt;
''This article is a [[LQWiki:stub_articles|stub]] and needs to be finished. [[LQWiki:plunging_forward|Plunge forward]] and [[LQWiki:How_to_edit_a_page|help it grow]]!''&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Firewall_distributions&amp;diff=30990</id>
		<title>Firewall distributions</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Firewall_distributions&amp;diff=30990"/>
		<updated>2007-01-26T18:13:40Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''firewall distribution''' is simply a [[distro]] whose primary function is to act as a [[firewall]]. A typical firewall distro might come on a bootable [[CD-ROM|cd-rom]] or [[floppy disk]], and enable you to transform a PC into a dedicated firewall appliance. &lt;br /&gt;
&lt;br /&gt;
This usually costs a fraction of a similarly capable off-the-shelf firewall, especially if you already have an old computer. Running Linux, a [[80486|486]] with 16megs of [[RAM]], worth almost nothing, can outperform a dedicated firewall costing several thousand dollars. It will also be easier to configure if you are familiar with Linux and [[iptables]]/[[ipchains]].&lt;br /&gt;
&lt;br /&gt;
==List of firewall distributions==&lt;br /&gt;
&lt;br /&gt;
===Hard drive based===&lt;br /&gt;
*[[IPCop]]&lt;br /&gt;
*[[picofirewall]] (picofirewall is NOT a firewall distro)&lt;br /&gt;
*[[SmoothWall]]&lt;br /&gt;
*[[MonoWall]]&lt;br /&gt;
&lt;br /&gt;
===CD based===&lt;br /&gt;
*[[Devil-Linux]]&lt;br /&gt;
*[[redWall]]&lt;br /&gt;
&lt;br /&gt;
===Floppy based===&lt;br /&gt;
*[[FloppyFW]]&lt;br /&gt;
*[[Freesco]]&lt;br /&gt;
*[[LRP]]&lt;br /&gt;
*[[LEAF]]&lt;br /&gt;
*[[Coyote]]&lt;br /&gt;
&lt;br /&gt;
===Commercial ===&lt;br /&gt;
*ClarkConnect - A hybrid of firewall and SOHO server (mail, fileshare, etc functions). There are paid, closed-source office and enterprise versions, and an open source, gratis version at clarkconnect.org. They all run linux. However, none of these are free (http://www.clarkconnect.com/about/eula.php).&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Router&amp;diff=30988</id>
		<title>Router</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Router&amp;diff=30988"/>
		<updated>2007-01-26T17:50:56Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''router''' is a networking device which operates at layer 3 of the [[OSI Model]]. Its purpose is to switch data packets between its various interfaces based upon the destination IP address of the packet.&lt;br /&gt;
&lt;br /&gt;
Routers are intelligent devices and can make decisions about which route a packet can take through a network if there are multiple paths possible. The decision about which path to take is made from a link's cost which is calculated from the factors of bandwidth, [[hop count]], financial cost, load, delay and reliability.&lt;br /&gt;
&lt;br /&gt;
Most Linux [[distributions]] come with routing support allowing your Linux machine to operate as a router if it has one or more [[NIC]] installed.&lt;br /&gt;
&lt;br /&gt;
Many routers also provide a service known as [[NAT|Network Address Translation]] or NAT.&lt;br /&gt;
&lt;br /&gt;
It should also be pointed out that from a security point of view, if you have a router, then every computer behind it is protected from attack from the other side (i.e. the internet).  This doesn't protect you from someone sending you a trojan through email, if you run the attachment however, but it will protect you from worms running around on the internet.  Linux of course does not have anything like the kind of problems with worms and trojans that windows has though.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* Guide to [[setting up IP routing]].&lt;br /&gt;
&lt;br /&gt;
''This article is a [[LQWiki:stub_articles|stub]] and needs to be finished. [[LQWiki:plunging_forward|Plunge forward]] and [[LQWiki:How_to_edit_a_page|help it grow!]]''&lt;br /&gt;
&lt;br /&gt;
[[category:Networking]]&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User_talk:Xoke&amp;diff=30987</id>
		<title>User talk:Xoke</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User_talk:Xoke&amp;diff=30987"/>
		<updated>2007-01-26T17:46:28Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Very cool info about yourself, Xoke. Glad you like Ubuntu. I've been using Linux since about 2002. I see you've been editing some pages; we all appreciate it. I hope to see you around here some more. Thx --[[User:Sepero|Sepero]] 05:28, January 26, 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
Well I figured it was time to help out the community.  I just have to brush off my C coding books (at work we were a VB shop) and see what I can do to help code to help even more!&lt;br /&gt;
&lt;br /&gt;
Just watch people remove my changes now - although most of the pages were created from scratch so unless they delete them there will now be a page there where before there was none :)&lt;br /&gt;
--[[User:Xoke|Xoke]] 12:46, January 26, 2007 (EST)&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Setiathome&amp;diff=30982</id>
		<title>Setiathome</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Setiathome&amp;diff=30982"/>
		<updated>2007-01-26T07:24:23Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;From the website:&lt;br /&gt;
&lt;br /&gt;
'''SETI@home''' is a scientific experiment that uses Internet-connected computers in the Search for Extra Terrestrial Intelligence (SETI). You can participate by running a free program that downloads and analyzes radio telescope data. A command-line only version is available for Linux and other Unix based operating systems.&lt;br /&gt;
&lt;br /&gt;
A similar, but more flexible, program is called BOINC.  This allows you to analyze any data someone wishes to let you.  There are a great number of projects out there requesting help, and you can select to run as many as you want (although only one at a time).&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://setiathome.ssl.berkeley.edu/ Seti@Home homepage]&lt;br /&gt;
*[http://boinc.berkeley.edu/ BOINC homepage]&lt;br /&gt;
*[http://boinc.berkeley.edu/projects.php List of BOINC projects]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''This article is a [[LQWiki:stub_articles|stub]] and needs to be finished. [[LQWiki:plunging_forward|Plunge forward]] and [[LQWiki:How_to_edit_a_page|help it grow]]!''&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Xoke&amp;diff=30981</id>
		<title>User:Xoke</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Xoke&amp;diff=30981"/>
		<updated>2007-01-26T07:19:11Z</updated>

		<summary type="html">&lt;p&gt;Xoke: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi, I'm Xoke.  I started playing around with Mandrake Linux years ago (v6?) but never got really into it.  Tried Ubuntu in the beginning of 2006 and have been using Linux almost exclusively since then (apart from playing some games under Windows).&lt;/div&gt;</summary>
		<author><name>Xoke</name></author>
	</entry>
</feed>