<?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=Trickykid</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=Trickykid"/>
	<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/wiki/Special:Contributions/Trickykid"/>
	<updated>2026-04-10T18:00:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.0</generator>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Bacula&amp;diff=36852</id>
		<title>Bacula</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Bacula&amp;diff=36852"/>
		<updated>2008-02-18T16:02:41Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: Major cleanup from horrible looking page that existed.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
&lt;br /&gt;
'''Bacula''' is a set of computer programs that permit you (or the system administrator) to manage backup, recovery, and verification of computer data across a network of computers of different kinds.&lt;br /&gt;
&lt;br /&gt;
==About==&lt;br /&gt;
&lt;br /&gt;
Bacula is a scalable backup solution with a modular design. It can run on one system or many systems on a network as it has 3 core components, Director, Storage and Client. In basic terms, it is a Client/Server based backup program. Bacula makes administration easy to backup and restore lost or corrupted files on any given system. It supports tape drives, autochangers and disk based backups along with a catalog driven by a backend database, which can be MySQL, PostgreSQL or SQLite.&lt;br /&gt;
&lt;br /&gt;
Bacula however is not a full fledged disaster recovery program. It backs up data, stores it with the retention policy you give it and can recover files in case of corruption, lost or deleted, etc. With careful planning though, any disaster recovery plan can be implemented with Bacula.&lt;br /&gt;
&lt;br /&gt;
==License==&lt;br /&gt;
Bacula is mostly released under the GPL v2 License. Some parts contributed are also under the BSD License. Check their [http://bacula.org/en/dev-manual/Bacula_Copyri_Tradem_Licens.html Bacula License] page for more details. This also covers their Trademark details on the name '''Bacula'''.&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
&lt;br /&gt;
Bacula has been proven to run on Linux, BSD and Solaris systems. It also has support for Windows clients.&lt;br /&gt;
&lt;br /&gt;
Bacula requires the following:&lt;br /&gt;
&lt;br /&gt;
* GNU C++ version 2.95 or higher&lt;br /&gt;
* MySQL 4.1&lt;br /&gt;
* PostgreSQL 7.4&lt;br /&gt;
* SQLite 2.8.16 or SQLite 3&lt;br /&gt;
* POSIX compatible for porting&lt;br /&gt;
&lt;br /&gt;
If you want to enable DVD writing for backups, you'll need the [http://fy.chalmers.se/~appro/linux/DVD+RW/ dvd+rw-tools] package. Also Bacula now has a GUI program for administration for those that desire such things called BAT (Bacula Administration Tool). QT4 and KDE are required.&lt;br /&gt;
&lt;br /&gt;
==Current Files==&lt;br /&gt;
&lt;br /&gt;
You can get the latest release of Bacula which includes the source packages, RPM's and other binary compatible packages at [http://sourceforge.net/project/showfiles.php?group_id=50727 Sourceforge.net].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
*[http://www.bacula.org/ Project homepage] (''www.bacula.org'')&lt;br /&gt;
&lt;br /&gt;
*[http://bacula.org/en/dev-manual/Brief_Tutorial.html Brief Tutorial] (''www.bacula.org'')&lt;br /&gt;
&lt;br /&gt;
*[http://bacula.org/en/rel-manual/index.html HTML Manual] (''www.bacula.org'')&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Apache&amp;diff=19059</id>
		<title>Apache</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Apache&amp;diff=19059"/>
		<updated>2005-10-19T05:13:29Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: /* Slackware 9.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Apache''' is the common name for an [[open source]] [[web server]] used on Linux systems, written by the [[Apache Foundation]]. Since the Apache Foundation has produced a lot of projects, the web server is more correctly known as the &amp;quot;Apache web server&amp;quot; or [[httpd]]. &lt;br /&gt;
&lt;br /&gt;
The Apache web server is one of the most popular web servers in current use (powering 69% of web sites according to a recent Netcraft survey).&lt;br /&gt;
&lt;br /&gt;
== General Setup ==&lt;br /&gt;
&lt;br /&gt;
Apache can be fairly easy to setup and administer. The [http://httpd.apache.org official Apache httpd website] has many resources and documentation.&lt;br /&gt;
&lt;br /&gt;
If you will only be hosting one site with Apache, setup is particularly simple. In /etc/httpd/httpd.conf (or its equivalent, depending on distribution):&lt;br /&gt;
* set the ServerName directive to your servername (which should be resolvable via DNS)&lt;br /&gt;
* disable UserDir unless you want users to publish their own websites in their home directories&lt;br /&gt;
* place your website in the Document Root (varies by distribution; see below). &lt;br /&gt;
* run '''apachectl start'''&lt;br /&gt;
Test in any [[browser]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Setting up an apache server with mod_perl, php, mysql and ssl support can be a little bit more difficult. There is an excellent howto on the subject at http://lamps.efactory.de/e-index.shtml&lt;br /&gt;
&lt;br /&gt;
== Distribution-Specific Setup ==&lt;br /&gt;
&lt;br /&gt;
Most distributions will already have a standard Apache setup configured in their base system.&lt;br /&gt;
&lt;br /&gt;
=== Slackware 9.x/10.x ===&lt;br /&gt;
&lt;br /&gt;
To have Apache start automatically when you boot your system:&lt;br /&gt;
&lt;br /&gt;
* Make sure the apache-1.3.29 package is installed (or newer version)&lt;br /&gt;
* Make /etc/rc.d/rc.httpd executable (chmod 755 /etc/rc.d/rc.httpd)&lt;br /&gt;
&lt;br /&gt;
The default document root is /var/www/htdocs. Also, the userdir module is loaded by default, allowing users of your system to place their websites in ~/public_html. This is accessible as http://localhost/~username/. Main settings can be changed in /etc/apache/httpd.conf.&lt;br /&gt;
&lt;br /&gt;
===Fedora Core 1===&lt;br /&gt;
* login as [[root]]: '''[[su]] -''' (the dash allows your '''/sbin''' dir to be in $PATH)&lt;br /&gt;
* run: '''service httpd start'''  (this starts apache)&lt;br /&gt;
* run: '''chkconfig httpd on'''   (this sets apache to start in your current [[init]])&lt;br /&gt;
* run: '''redhat-config-securitylevel'''&lt;br /&gt;
** configure your [[firewall]] to allow WWW (HTTP) requests&lt;br /&gt;
* Place your index files in '''/var/www/html'''&lt;br /&gt;
** the default page is generally '''index.html'''&lt;br /&gt;
Settings can be changed in '''/etc/httpd/conf/httpd.conf'''&lt;br /&gt;
&lt;br /&gt;
Red Hat's graphical configuration tool ('''redhat-config-httpd''' or &amp;quot;Start&amp;quot; &amp;amp;gt; System Settings &amp;amp;gt; Server Settings &amp;amp;gt; HTTP) provices a graphical, easy-to-use interface for configuring Apache.&lt;br /&gt;
&lt;br /&gt;
===SuSE 9.0===&lt;br /&gt;
&lt;br /&gt;
In SuSE, the Document root is /srv/www/htdocs. If you chose to install Apache via YaST, UserDir is enabled, so users can put websites in ~/public_html as in the Debian example above. By the way, Webmin has trouble finding the Server Root (/srv/www) and Document Root in SuSE, so you will have to tell it where to look the first time you set up Apache in Webmin.&lt;br /&gt;
&lt;br /&gt;
===SuSE 9.1===&lt;br /&gt;
&lt;br /&gt;
To start apache2 on SuSE 9.1 I used /etc/init.d/apache2 start, since the apache_ctl command seems to be missing after installing the rpms.&lt;br /&gt;
&lt;br /&gt;
=== Arch Linux ===&lt;br /&gt;
&lt;br /&gt;
[[Arch Linux]] uses Apache 2.0.&lt;br /&gt;
&lt;br /&gt;
* Make sure the apache package is installed (&amp;lt;tt&amp;gt;pacman -Sy apache&amp;lt;/tt&amp;gt;)&lt;br /&gt;
* Add httpd to the list of daemons in &amp;lt;tt&amp;gt;/etc/rc.conf&amp;lt;/tt&amp;gt;&lt;br /&gt;
* Optionally start Apache now using &amp;lt;tt&amp;gt;/etc/rc.d/httpd start&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The userdir module described above is loaded by default. The document root is &amp;lt;tt&amp;gt;/home/httpd/html/&amp;lt;/tt&amp;gt;. The main config files are located at &amp;lt;tt&amp;gt;/etc/httpd/conf/&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Securing Apache]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.apache.org Apache.org] - Official website&lt;br /&gt;
* [http://www.webmin.com Webmin] - A graphical configuration tool for Apache.&lt;br /&gt;
* [http://www.nabble.com/Apache-f90.html Apache Forum] - A large unofficial Apache forum hosted by [http://www.nabble.com Nabble] currently archiving all the Apache projects' mailing lists for cross search and browsing.&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Linux_software_equivalent_to_Windows_software&amp;diff=18969</id>
		<title>Linux software equivalent to Windows software</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Linux_software_equivalent_to_Windows_software&amp;diff=18969"/>
		<updated>2005-10-19T05:12:10Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: /* Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In migrating to Linux from Windows, a common question is &amp;quot;Where can I get a program for Linux that is similar to XYZ program on Windows?&amp;quot; Fear not! Listed below are programs that could be considered roughly equivalent to certain popular Windows applications.&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Internet Explorer, Netscape, Opera, etc. || &lt;br /&gt;
[[Epiphany]], &lt;br /&gt;
[[Firefox]], &lt;br /&gt;
[[Galeon]], &lt;br /&gt;
[[Konqueror]], &lt;br /&gt;
[[Lynx]],&lt;br /&gt;
[[Mozilla]], &lt;br /&gt;
[[Nautilus]],&lt;br /&gt;
[[Netscape]], &lt;br /&gt;
[[Opera]]&lt;br /&gt;
|-&lt;br /&gt;
| Outlook Express, Outlook, Pegasus, Lotus Notes ||&lt;br /&gt;
[[Kontact]],&lt;br /&gt;
[[Evolution]],&lt;br /&gt;
[[Thunderbird]],&lt;br /&gt;
[[Sylpheed-Claws]]&lt;br /&gt;
|-&lt;br /&gt;
| ICQ, MSN Messenger, AIM (AOL Instant Messenger), Trillian ||&lt;br /&gt;
[[aMSN]],&lt;br /&gt;
[[Gaim]],&lt;br /&gt;
[[Kopete]],&lt;br /&gt;
[[KICQ]],&lt;br /&gt;
[[Gabber]],&lt;br /&gt;
[[Centericq]]&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Netmeeting ||&lt;br /&gt;
[[Gnomemeeting]]&lt;br /&gt;
|-&lt;br /&gt;
| WS FTP, Bullet Proof FTP, CuteFTP ||&lt;br /&gt;
[[Kasablanca]],&lt;br /&gt;
[[GFTP]],&lt;br /&gt;
[[KBear]],&lt;br /&gt;
[[FireFTP]]&lt;br /&gt;
[[Konqueror]]&lt;br /&gt;
|-&lt;br /&gt;
| mIRC ||&lt;br /&gt;
[[KVIrc]],&lt;br /&gt;
[[XChat]],&lt;br /&gt;
[[BitchX]] &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Multimedia ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Photoshop ||&lt;br /&gt;
[[GIMP]]&lt;br /&gt;
|-&lt;br /&gt;
| Irfanview ||&lt;br /&gt;
[[Gqview|GQView]],[[Xnview]] plays animated .gifs&lt;br /&gt;
|-&lt;br /&gt;
| 3D Studio MAX ||&lt;br /&gt;
[[Blender]],&lt;br /&gt;
[[K-3D]]&lt;br /&gt;
|-&lt;br /&gt;
| Windows Media Player, PowerDVD ||&lt;br /&gt;
[[MPlayer]],&lt;br /&gt;
[[Xine]],&lt;br /&gt;
[[Totem]],&lt;br /&gt;
[[Kaffeine]],&lt;br /&gt;
[[VLC]]&lt;br /&gt;
|-&lt;br /&gt;
| Winamp, Sonique ||&lt;br /&gt;
[[amaroK]],&lt;br /&gt;
[[XMMS]],&lt;br /&gt;
[[Beep media player|BMP]],&lt;br /&gt;
[[juke]],&lt;br /&gt;
[[noatun]],&lt;br /&gt;
[[RhythmBox]],&lt;br /&gt;
[[xine]] will play aac and wma&lt;br /&gt;
|-&lt;br /&gt;
| Windows Movie Maker ||&lt;br /&gt;
[[Cinelerra]],&lt;br /&gt;
[[KDenlive]],&lt;br /&gt;
[[LiVES]]&lt;br /&gt;
|-&lt;br /&gt;
| Cubase, CoolEdit ||&lt;br /&gt;
[[Ardour]],&lt;br /&gt;
[[Rosegarden]],&lt;br /&gt;
[[Audacity]],&lt;br /&gt;
[[Beast]]&lt;br /&gt;
|-&lt;br /&gt;
| Audio Catalyst, dbpoweramp, CDex ||&lt;br /&gt;
[[Grip]],&lt;br /&gt;
[[audacity]]&lt;br /&gt;
|-&lt;br /&gt;
| Cakewalk ||&lt;br /&gt;
[[kmid]],&lt;br /&gt;
[[kmidi]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Office ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Office ||&lt;br /&gt;
[[OpenOffice]],&lt;br /&gt;
[[KOffice]],&lt;br /&gt;
[[Siag Office]]&lt;br /&gt;
|-&lt;br /&gt;
| Word ||&lt;br /&gt;
[[AbiWord]],&lt;br /&gt;
[[KWord]],&lt;br /&gt;
[[OOWriter]]&lt;br /&gt;
|-&lt;br /&gt;
| Access ||&lt;br /&gt;
[[PgAccess]]*,&lt;br /&gt;
[[Rekall]]*,&lt;br /&gt;
[[Knoda]]*&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Excel ||&lt;br /&gt;
[[Gnumeric]],&lt;br /&gt;
[[KSpread]],&lt;br /&gt;
[[OOCalc]]&lt;br /&gt;
|-&lt;br /&gt;
| Visio ||&lt;br /&gt;
[[Kivio]],&lt;br /&gt;
[[Dia]]&lt;br /&gt;
|-&lt;br /&gt;
| PowerPoint ||&lt;br /&gt;
[[KPresenter]],&lt;br /&gt;
[[OOImpress]]&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Project Manager ||&lt;br /&gt;
[[MrProject]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Outlook ||&lt;br /&gt;
[[Evolution]],&lt;br /&gt;
[[Kontact]],&lt;br /&gt;
[[BALSA]],&lt;br /&gt;
[[Thunderbird]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;PgAccess, Rexall, and Knoda are front-ends to an [[SQL server]].&lt;br /&gt;
&lt;br /&gt;
== Desktop Publishing ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Netscape Composer, Dreamweaver ||&lt;br /&gt;
[[OOWeb]],&lt;br /&gt;
[[NVU]],&lt;br /&gt;
[[Quanta Plus]],&lt;br /&gt;
[[Mozilla]],&lt;br /&gt;
[[Screem]],&lt;br /&gt;
[[Bluefish]]&lt;br /&gt;
|-&lt;br /&gt;
| Quark, Quark Express, Microsoft Publisher ||&lt;br /&gt;
[[Scribus]],&lt;br /&gt;
OpenOffice.org [[oodraw]]&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat PDF Reader ||&lt;br /&gt;
[[Adobe Acrobat Reader]],&lt;br /&gt;
[[Xpdf]],&lt;br /&gt;
[[Ghostview]],&lt;br /&gt;
[[Evince]]&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat PDF Creator ||&lt;br /&gt;
With [[Ghostscript]], many Linux apps can print or export to PDF.,&lt;br /&gt;
[[OpenOffice.org]],&lt;br /&gt;
[[kprint]] -- can fax, convert to pdf, and combine pages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Utilities ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| 7-Zip, Winzip, Winrar ||&lt;br /&gt;
[[Karchiver]],&lt;br /&gt;
[[File Roller]],&lt;br /&gt;
[[ark]],&lt;br /&gt;
[[hjsplit]]&lt;br /&gt;
|-&lt;br /&gt;
| Alcohol 120%, Discjuggler, Easy CD Creator, Nero Burning ROM ||&lt;br /&gt;
[[Arson]],&lt;br /&gt;
[[Eroaster]],&lt;br /&gt;
[[gcombust]],&lt;br /&gt;
[[K3b]],&lt;br /&gt;
[[XCDRoast]],&lt;br /&gt;
[[serpentine]]&lt;br /&gt;
|-&lt;br /&gt;
| Daemon Tools ||&lt;br /&gt;
[http://man.linuxquestions.org/?query=mount mount] &lt;br /&gt;
|-&lt;br /&gt;
| Edit (DOS) ||&lt;br /&gt;
[[vi]],&lt;br /&gt;
[[ne]],&lt;br /&gt;
[[pico]],&lt;br /&gt;
[[nano]],&lt;br /&gt;
[[Emacs]],&lt;br /&gt;
[[Minimum Profit]]&lt;br /&gt;
|-&lt;br /&gt;
| Norton Ghost ||&lt;br /&gt;
[[Partition Image]],&lt;br /&gt;
[[g4u]],&lt;br /&gt;
[[Mondo]]&lt;br /&gt;
|-&lt;br /&gt;
| Notepad, Wordpad ||&lt;br /&gt;
[[KWrite]],&lt;br /&gt;
[[Kate]], [[Leafpad]], [[Gedit]], [[Joe]]&lt;br /&gt;
|-&lt;br /&gt;
| Veritas Backup Exec ||&lt;br /&gt;
[[BackupPC]], [[Bacula]], [[Veritas Netbackup]]&lt;br /&gt;
|-&lt;br /&gt;
| Disclib ||&lt;br /&gt;
[[gWhere]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Server ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| IIS ||&lt;br /&gt;
[[Apache]], [[Zeus]], [[iPlanet]], [[thttpd]], [[iServer]]&lt;br /&gt;
|-&lt;br /&gt;
| Other server stuff ||&lt;br /&gt;
[[Samba]]&lt;br /&gt;
|-&lt;br /&gt;
| FTP ||&lt;br /&gt;
[[proftpd]], [[vsftpd]], [[pure-ftpd]]&lt;br /&gt;
|-&lt;br /&gt;
| Exchange ||&lt;br /&gt;
[[Citadel]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
&amp;lt;!-- Don't know what categories these should belong --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Will categorize at a later time, or some one else can ;) --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| SPSS ||&lt;br /&gt;
[[R-project]],&lt;br /&gt;
[[PSPP]]&lt;br /&gt;
|-&lt;br /&gt;
| ActiveSync ||&lt;br /&gt;
[[SynCE]]&lt;br /&gt;
|-&lt;br /&gt;
| Endnote ||&lt;br /&gt;
[[Pybliographer]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
''Please add new applications to this list. A good resource is the [http://linuxshop.ru/linuxbegin/win-lin-soft-en/table.shtml Table of Equivalents], which is GNU FDL licensed.''&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Linux_software_equivalent_to_Windows_software&amp;diff=18834</id>
		<title>Linux software equivalent to Windows software</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Linux_software_equivalent_to_Windows_software&amp;diff=18834"/>
		<updated>2005-10-19T04:58:13Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: /* Networking */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In migrating to Linux from Windows, a common question is &amp;quot;Where can I get a program for Linux that is similar to XYZ program on Windows?&amp;quot; Fear not! Listed below are programs that could be considered roughly equivalent to certain popular Windows applications.&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Internet Explorer, Netscape, Opera, etc. || &lt;br /&gt;
[[Epiphany]], &lt;br /&gt;
[[Firefox]], &lt;br /&gt;
[[Galeon]], &lt;br /&gt;
[[Konqueror]], &lt;br /&gt;
[[Lynx]],&lt;br /&gt;
[[Mozilla]], &lt;br /&gt;
[[Nautilus]],&lt;br /&gt;
[[Netscape]], &lt;br /&gt;
[[Opera]]&lt;br /&gt;
|-&lt;br /&gt;
| Outlook Express, Outlook, Pegasus, Lotus Notes ||&lt;br /&gt;
[[Kontact]],&lt;br /&gt;
[[Evolution]],&lt;br /&gt;
[[Thunderbird]],&lt;br /&gt;
[[Sylpheed-Claws]]&lt;br /&gt;
|-&lt;br /&gt;
| ICQ, MSN Messenger, AIM (AOL Instant Messenger), Trillian ||&lt;br /&gt;
[[aMSN]],&lt;br /&gt;
[[Gaim]],&lt;br /&gt;
[[Kopete]],&lt;br /&gt;
[[KICQ]],&lt;br /&gt;
[[Gabber]],&lt;br /&gt;
[[Centericq]]&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Netmeeting ||&lt;br /&gt;
[[Gnomemeeting]]&lt;br /&gt;
|-&lt;br /&gt;
| WS FTP, Bullet Proof FTP, CuteFTP ||&lt;br /&gt;
[[Kasablanca]],&lt;br /&gt;
[[GFTP]],&lt;br /&gt;
[[KBear]],&lt;br /&gt;
[[FireFTP]]&lt;br /&gt;
[[Konqueror]]&lt;br /&gt;
|-&lt;br /&gt;
| mIRC ||&lt;br /&gt;
[[KVIrc]],&lt;br /&gt;
[[XChat]],&lt;br /&gt;
[[BitchX]] &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Multimedia ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Photoshop ||&lt;br /&gt;
[[GIMP]]&lt;br /&gt;
|-&lt;br /&gt;
| Irfanview ||&lt;br /&gt;
[[Gqview|GQView]],[[Xnview]] plays animated .gifs&lt;br /&gt;
|-&lt;br /&gt;
| 3D Studio MAX ||&lt;br /&gt;
[[Blender]],&lt;br /&gt;
[[K-3D]]&lt;br /&gt;
|-&lt;br /&gt;
| Windows Media Player, PowerDVD ||&lt;br /&gt;
[[MPlayer]],&lt;br /&gt;
[[Xine]],&lt;br /&gt;
[[Totem]],&lt;br /&gt;
[[Kaffeine]],&lt;br /&gt;
[[VLC]]&lt;br /&gt;
|-&lt;br /&gt;
| Winamp, Sonique ||&lt;br /&gt;
[[amaroK]],&lt;br /&gt;
[[XMMS]],&lt;br /&gt;
[[Beep media player|BMP]],&lt;br /&gt;
[[juke]],&lt;br /&gt;
[[noatun]],&lt;br /&gt;
[[RhythmBox]],&lt;br /&gt;
[[xine]] will play aac and wma&lt;br /&gt;
|-&lt;br /&gt;
| Windows Movie Maker ||&lt;br /&gt;
[[Cinelerra]],&lt;br /&gt;
[[KDenlive]],&lt;br /&gt;
[[LiVES]]&lt;br /&gt;
|-&lt;br /&gt;
| Cubase, CoolEdit ||&lt;br /&gt;
[[Ardour]],&lt;br /&gt;
[[Rosegarden]],&lt;br /&gt;
[[Audacity]],&lt;br /&gt;
[[Beast]]&lt;br /&gt;
|-&lt;br /&gt;
| Audio Catalyst, dbpoweramp, CDex ||&lt;br /&gt;
[[Grip]],&lt;br /&gt;
[[audacity]]&lt;br /&gt;
|-&lt;br /&gt;
| Cakewalk ||&lt;br /&gt;
[[kmid]],&lt;br /&gt;
[[kmidi]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Office ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Office ||&lt;br /&gt;
[[OpenOffice]],&lt;br /&gt;
[[KOffice]],&lt;br /&gt;
[[Siag Office]]&lt;br /&gt;
|-&lt;br /&gt;
| Word ||&lt;br /&gt;
[[AbiWord]],&lt;br /&gt;
[[KWord]],&lt;br /&gt;
[[OOWriter]]&lt;br /&gt;
|-&lt;br /&gt;
| Access ||&lt;br /&gt;
[[PgAccess]]*,&lt;br /&gt;
[[Rekall]]*,&lt;br /&gt;
[[Knoda]]*&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Excel ||&lt;br /&gt;
[[Gnumeric]],&lt;br /&gt;
[[KSpread]],&lt;br /&gt;
[[OOCalc]]&lt;br /&gt;
|-&lt;br /&gt;
| Visio ||&lt;br /&gt;
[[Kivio]],&lt;br /&gt;
[[Dia]]&lt;br /&gt;
|-&lt;br /&gt;
| PowerPoint ||&lt;br /&gt;
[[KPresenter]],&lt;br /&gt;
[[OOImpress]]&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Project Manager ||&lt;br /&gt;
[[MrProject]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Outlook ||&lt;br /&gt;
[[Evolution]],&lt;br /&gt;
[[Kontact]],&lt;br /&gt;
[[BALSA]],&lt;br /&gt;
[[Thunderbird]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;PgAccess, Rexall, and Knoda are front-ends to an [[SQL server]].&lt;br /&gt;
&lt;br /&gt;
== Desktop Publishing ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Netscape Composer, Dreamweaver ||&lt;br /&gt;
[[OOWeb]],&lt;br /&gt;
[[NVU]],&lt;br /&gt;
[[Quanta Plus]],&lt;br /&gt;
[[Mozilla]],&lt;br /&gt;
[[Screem]],&lt;br /&gt;
[[Bluefish]]&lt;br /&gt;
|-&lt;br /&gt;
| Quark, Quark Express, Microsoft Publisher ||&lt;br /&gt;
[[Scribus]],&lt;br /&gt;
OpenOffice.org [[oodraw]]&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat PDF Reader ||&lt;br /&gt;
[[Adobe Acrobat Reader]],&lt;br /&gt;
[[Xpdf]],&lt;br /&gt;
[[Ghostview]],&lt;br /&gt;
[[Evince]]&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat PDF Creator ||&lt;br /&gt;
With [[Ghostscript]], many Linux apps can print or export to PDF.,&lt;br /&gt;
[[OpenOffice.org]],&lt;br /&gt;
[[kprint]] -- can fax, convert to pdf, and combine pages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Utilities ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| 7-Zip, Winzip, Winrar ||&lt;br /&gt;
[[Karchiver]],&lt;br /&gt;
[[File Roller]],&lt;br /&gt;
[[ark]],&lt;br /&gt;
[[hjsplit]]&lt;br /&gt;
|-&lt;br /&gt;
| Alcohol 120%, Discjuggler, Easy CD Creator, Nero Burning ROM ||&lt;br /&gt;
[[Arson]],&lt;br /&gt;
[[Eroaster]],&lt;br /&gt;
[[gcombust]],&lt;br /&gt;
[[K3b]],&lt;br /&gt;
[[XCDRoast]],&lt;br /&gt;
[[serpentine]]&lt;br /&gt;
|-&lt;br /&gt;
| Daemon Tools ||&lt;br /&gt;
[http://man.linuxquestions.org/?query=mount mount] &lt;br /&gt;
|-&lt;br /&gt;
| Edit (DOS) ||&lt;br /&gt;
[[vi]],&lt;br /&gt;
[[ne]],&lt;br /&gt;
[[pico]],&lt;br /&gt;
[[nano]],&lt;br /&gt;
[[Emacs]],&lt;br /&gt;
[[Minimum Profit]]&lt;br /&gt;
|-&lt;br /&gt;
| Norton Ghost ||&lt;br /&gt;
[[Partition Image]],&lt;br /&gt;
[[g4u]],&lt;br /&gt;
[[Mondo]]&lt;br /&gt;
|-&lt;br /&gt;
| Notepad, Wordpad ||&lt;br /&gt;
[[KWrite]],&lt;br /&gt;
[[Kate]], [[Leafpad]], [[Gedit]], [[Joe]]&lt;br /&gt;
|-&lt;br /&gt;
| Veritas Backup Exec ||&lt;br /&gt;
[[BackupPC]], [[Bacula]], [[Veritas Netbackup]]&lt;br /&gt;
|-&lt;br /&gt;
| Disclib ||&lt;br /&gt;
[[gWhere]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Server ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| IIS ||&lt;br /&gt;
[[Apache]]&lt;br /&gt;
|-&lt;br /&gt;
| Other server stuff ||&lt;br /&gt;
[[Samba]]&lt;br /&gt;
|-&lt;br /&gt;
| FTP ||&lt;br /&gt;
[[proftpd]]&lt;br /&gt;
|-&lt;br /&gt;
| Exchange ||&lt;br /&gt;
[[Citadel]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
&amp;lt;!-- Don't know what categories these should belong --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Will categorize at a later time, or some one else can ;) --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| SPSS ||&lt;br /&gt;
[[R-project]],&lt;br /&gt;
[[PSPP]]&lt;br /&gt;
|-&lt;br /&gt;
| ActiveSync ||&lt;br /&gt;
[[SynCE]]&lt;br /&gt;
|-&lt;br /&gt;
| Endnote ||&lt;br /&gt;
[[Pybliographer]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
''Please add new applications to this list. A good resource is the [http://linuxshop.ru/linuxbegin/win-lin-soft-en/table.shtml Table of Equivalents], which is GNU FDL licensed.''&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Linux_software_equivalent_to_Windows_software&amp;diff=18833</id>
		<title>Linux software equivalent to Windows software</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Linux_software_equivalent_to_Windows_software&amp;diff=18833"/>
		<updated>2005-10-19T04:54:41Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: /* Utilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In migrating to Linux from Windows, a common question is &amp;quot;Where can I get a program for Linux that is similar to XYZ program on Windows?&amp;quot; Fear not! Listed below are programs that could be considered roughly equivalent to certain popular Windows applications.&lt;br /&gt;
&lt;br /&gt;
== Networking ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Internet Explorer, Netscape, Opera, etc. || &lt;br /&gt;
[[Epiphany]], &lt;br /&gt;
[[Firefox]], &lt;br /&gt;
[[Galeon]], &lt;br /&gt;
[[Konqueror]], &lt;br /&gt;
[[Lynx]],&lt;br /&gt;
[[Mozilla]], &lt;br /&gt;
[[Nautilus]],&lt;br /&gt;
[[Netscape]], &lt;br /&gt;
[[Opera]]&lt;br /&gt;
|-&lt;br /&gt;
| Outlook Express ||&lt;br /&gt;
[[Kontact]],&lt;br /&gt;
[[Evolution]],&lt;br /&gt;
[[Thunderbird]],&lt;br /&gt;
[[Sylpheed-Claws]]&lt;br /&gt;
|-&lt;br /&gt;
| ICQ, MSN Messenger, AIM (AOL Instant Messenger), Trillian ||&lt;br /&gt;
[[aMSN]],&lt;br /&gt;
[[Gaim]],&lt;br /&gt;
[[Kopete]],&lt;br /&gt;
[[KICQ]],&lt;br /&gt;
[[Gabber]],&lt;br /&gt;
[[Centericq]]&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Netmeeting ||&lt;br /&gt;
[[Gnomemeeting]]&lt;br /&gt;
|-&lt;br /&gt;
| WS FTP, Bullet Proof FTP, CuteFTP ||&lt;br /&gt;
[[Kasablanca]],&lt;br /&gt;
[[GFTP]],&lt;br /&gt;
[[KBear]],&lt;br /&gt;
[[FireFTP]]&lt;br /&gt;
[[Konqueror]]&lt;br /&gt;
|-&lt;br /&gt;
| mIRC ||&lt;br /&gt;
[[KVIrc]],&lt;br /&gt;
[[XChat]],&lt;br /&gt;
[[BitchX]] &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Multimedia ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Photoshop ||&lt;br /&gt;
[[GIMP]]&lt;br /&gt;
|-&lt;br /&gt;
| Irfanview ||&lt;br /&gt;
[[Gqview|GQView]],[[Xnview]] plays animated .gifs&lt;br /&gt;
|-&lt;br /&gt;
| 3D Studio MAX ||&lt;br /&gt;
[[Blender]],&lt;br /&gt;
[[K-3D]]&lt;br /&gt;
|-&lt;br /&gt;
| Windows Media Player, PowerDVD ||&lt;br /&gt;
[[MPlayer]],&lt;br /&gt;
[[Xine]],&lt;br /&gt;
[[Totem]],&lt;br /&gt;
[[Kaffeine]],&lt;br /&gt;
[[VLC]]&lt;br /&gt;
|-&lt;br /&gt;
| Winamp, Sonique ||&lt;br /&gt;
[[amaroK]],&lt;br /&gt;
[[XMMS]],&lt;br /&gt;
[[Beep media player|BMP]],&lt;br /&gt;
[[juke]],&lt;br /&gt;
[[noatun]],&lt;br /&gt;
[[RhythmBox]],&lt;br /&gt;
[[xine]] will play aac and wma&lt;br /&gt;
|-&lt;br /&gt;
| Windows Movie Maker ||&lt;br /&gt;
[[Cinelerra]],&lt;br /&gt;
[[KDenlive]],&lt;br /&gt;
[[LiVES]]&lt;br /&gt;
|-&lt;br /&gt;
| Cubase, CoolEdit ||&lt;br /&gt;
[[Ardour]],&lt;br /&gt;
[[Rosegarden]],&lt;br /&gt;
[[Audacity]],&lt;br /&gt;
[[Beast]]&lt;br /&gt;
|-&lt;br /&gt;
| Audio Catalyst, dbpoweramp, CDex ||&lt;br /&gt;
[[Grip]],&lt;br /&gt;
[[audacity]]&lt;br /&gt;
|-&lt;br /&gt;
| Cakewalk ||&lt;br /&gt;
[[kmid]],&lt;br /&gt;
[[kmidi]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Office ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Office ||&lt;br /&gt;
[[OpenOffice]],&lt;br /&gt;
[[KOffice]],&lt;br /&gt;
[[Siag Office]]&lt;br /&gt;
|-&lt;br /&gt;
| Word ||&lt;br /&gt;
[[AbiWord]],&lt;br /&gt;
[[KWord]],&lt;br /&gt;
[[OOWriter]]&lt;br /&gt;
|-&lt;br /&gt;
| Access ||&lt;br /&gt;
[[PgAccess]]*,&lt;br /&gt;
[[Rekall]]*,&lt;br /&gt;
[[Knoda]]*&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Excel ||&lt;br /&gt;
[[Gnumeric]],&lt;br /&gt;
[[KSpread]],&lt;br /&gt;
[[OOCalc]]&lt;br /&gt;
|-&lt;br /&gt;
| Visio ||&lt;br /&gt;
[[Kivio]],&lt;br /&gt;
[[Dia]]&lt;br /&gt;
|-&lt;br /&gt;
| PowerPoint ||&lt;br /&gt;
[[KPresenter]],&lt;br /&gt;
[[OOImpress]]&lt;br /&gt;
|-&lt;br /&gt;
| Microsoft Project Manager ||&lt;br /&gt;
[[MrProject]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| Outlook ||&lt;br /&gt;
[[Evolution]],&lt;br /&gt;
[[Kontact]],&lt;br /&gt;
[[BALSA]],&lt;br /&gt;
[[Thunderbird]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;PgAccess, Rexall, and Knoda are front-ends to an [[SQL server]].&lt;br /&gt;
&lt;br /&gt;
== Desktop Publishing ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| Netscape Composer, Dreamweaver ||&lt;br /&gt;
[[OOWeb]],&lt;br /&gt;
[[NVU]],&lt;br /&gt;
[[Quanta Plus]],&lt;br /&gt;
[[Mozilla]],&lt;br /&gt;
[[Screem]],&lt;br /&gt;
[[Bluefish]]&lt;br /&gt;
|-&lt;br /&gt;
| Quark, Quark Express, Microsoft Publisher ||&lt;br /&gt;
[[Scribus]],&lt;br /&gt;
OpenOffice.org [[oodraw]]&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat PDF Reader ||&lt;br /&gt;
[[Adobe Acrobat Reader]],&lt;br /&gt;
[[Xpdf]],&lt;br /&gt;
[[Ghostview]],&lt;br /&gt;
[[Evince]]&lt;br /&gt;
|-&lt;br /&gt;
| Adobe Acrobat PDF Creator ||&lt;br /&gt;
With [[Ghostscript]], many Linux apps can print or export to PDF.,&lt;br /&gt;
[[OpenOffice.org]],&lt;br /&gt;
[[kprint]] -- can fax, convert to pdf, and combine pages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Utilities ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| 7-Zip, Winzip, Winrar ||&lt;br /&gt;
[[Karchiver]],&lt;br /&gt;
[[File Roller]],&lt;br /&gt;
[[ark]],&lt;br /&gt;
[[hjsplit]]&lt;br /&gt;
|-&lt;br /&gt;
| Alcohol 120%, Discjuggler, Easy CD Creator, Nero Burning ROM ||&lt;br /&gt;
[[Arson]],&lt;br /&gt;
[[Eroaster]],&lt;br /&gt;
[[gcombust]],&lt;br /&gt;
[[K3b]],&lt;br /&gt;
[[XCDRoast]],&lt;br /&gt;
[[serpentine]]&lt;br /&gt;
|-&lt;br /&gt;
| Daemon Tools ||&lt;br /&gt;
[http://man.linuxquestions.org/?query=mount mount] &lt;br /&gt;
|-&lt;br /&gt;
| Edit (DOS) ||&lt;br /&gt;
[[vi]],&lt;br /&gt;
[[ne]],&lt;br /&gt;
[[pico]],&lt;br /&gt;
[[nano]],&lt;br /&gt;
[[Emacs]],&lt;br /&gt;
[[Minimum Profit]]&lt;br /&gt;
|-&lt;br /&gt;
| Norton Ghost ||&lt;br /&gt;
[[Partition Image]],&lt;br /&gt;
[[g4u]],&lt;br /&gt;
[[Mondo]]&lt;br /&gt;
|-&lt;br /&gt;
| Notepad, Wordpad ||&lt;br /&gt;
[[KWrite]],&lt;br /&gt;
[[Kate]], [[Leafpad]], [[Gedit]], [[Joe]]&lt;br /&gt;
|-&lt;br /&gt;
| Veritas Backup Exec ||&lt;br /&gt;
[[BackupPC]], [[Bacula]], [[Veritas Netbackup]]&lt;br /&gt;
|-&lt;br /&gt;
| Disclib ||&lt;br /&gt;
[[gWhere]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Server ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
|-&lt;br /&gt;
| IIS ||&lt;br /&gt;
[[Apache]]&lt;br /&gt;
|-&lt;br /&gt;
| Other server stuff ||&lt;br /&gt;
[[Samba]]&lt;br /&gt;
|-&lt;br /&gt;
| FTP ||&lt;br /&gt;
[[proftpd]]&lt;br /&gt;
|-&lt;br /&gt;
| Exchange ||&lt;br /&gt;
[[Citadel]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
{|&lt;br /&gt;
! Windows apps !! Linux apps&lt;br /&gt;
&amp;lt;!-- Don't know what categories these should belong --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Will categorize at a later time, or some one else can ;) --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| SPSS ||&lt;br /&gt;
[[R-project]],&lt;br /&gt;
[[PSPP]]&lt;br /&gt;
|-&lt;br /&gt;
| ActiveSync ||&lt;br /&gt;
[[SynCE]]&lt;br /&gt;
|-&lt;br /&gt;
| Endnote ||&lt;br /&gt;
[[Pybliographer]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
''Please add new applications to this list. A good resource is the [http://linuxshop.ru/linuxbegin/win-lin-soft-en/table.shtml Table of Equivalents], which is GNU FDL licensed.''&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User_talk:Trickykid&amp;diff=24903</id>
		<title>User talk:Trickykid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User_talk:Trickykid&amp;diff=24903"/>
		<updated>2004-09-10T11:20:08Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ah well, your talk page was red, so I assumed you were new. [[User:Dysprosia|Dysprosia]] 18:27, Sep 9, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Nope, not new. I'm just not a Wiki type person. :)&lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
&lt;br /&gt;
-trickykid&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User_talk:Trickykid&amp;diff=11965</id>
		<title>User talk:Trickykid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User_talk:Trickykid&amp;diff=11965"/>
		<updated>2004-09-10T11:20:00Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ah well, your talk page was red, so I assumed you were new. [[User:Dysprosia|Dysprosia]] 18:27, Sep 9, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Nope, not new. I'm just not a Wiki type person. :)&lt;br /&gt;
&lt;br /&gt;
Cheers,&lt;br /&gt;
&lt;br /&gt;
-trickykid&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Pid&amp;diff=11922</id>
		<title>Pid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Pid&amp;diff=11922"/>
		<updated>2004-09-09T04:22:33Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: Gave exact definition since some want to be picky =)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''pid''', or ''process identifier'', is an integer or numeric number used by the [[Unix]] [[kernel]] and most other [[Operating Systems]] to identify a running [[process]]. [[PID]s] are returned by the [[fork]] system call and can be passed to wait() or kill() to perform actions on the given process.&lt;br /&gt;
&lt;br /&gt;
See also [[kill]], [[killall]], [[ps]], [[pstree]], [[pgrep]], [[proc]]&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=PID&amp;diff=24904</id>
		<title>PID</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=PID&amp;diff=24904"/>
		<updated>2004-09-09T04:11:44Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT[[pid]]&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Trickykid&amp;diff=21842</id>
		<title>User:Trickykid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Trickykid&amp;diff=21842"/>
		<updated>2004-09-09T04:04:59Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just a System Administrator..  nothing more, nothing less! &lt;br /&gt;
&lt;br /&gt;
But I did dress all the little Tux's you see in the upper left hand corner of every page you see here, also otherwise known as a logo!  =)&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Pstree&amp;diff=11887</id>
		<title>Pstree</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Pstree&amp;diff=11887"/>
		<updated>2004-09-09T03:55:37Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[pstree]] displays all running processes in a tree like [[diagram]] on a terminal or console. The  tree is rooted  at either pid or init if [[pid]] is omitted. If a [[user]] name is specified, all [[process]] trees rooted at processes owned by that user are shown.&lt;br /&gt;
&lt;br /&gt;
pstree is an easy way to find parent processes, but the majority of the time just using [[ps]] will do the job to find a specific process.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
pstree visually merges identical branches by putting them in square brackets and prefixing them with the repetition count, e.g.&lt;br /&gt;
&lt;br /&gt;
           [[init]]-+-getty&lt;br /&gt;
                |-getty&lt;br /&gt;
                |-getty&lt;br /&gt;
                `-getty&lt;br /&gt;
&lt;br /&gt;
       becomes&lt;br /&gt;
&lt;br /&gt;
           init---4*[getty]&lt;br /&gt;
----&lt;br /&gt;
OPTIONS&lt;br /&gt;
       -a     Show command line arguments. If the command line of&lt;br /&gt;
              a  process is swapped out, that process is shown in&lt;br /&gt;
              parentheses. -a implicitly disables compaction.&lt;br /&gt;
&lt;br /&gt;
       -c     Disable  compaction  of  identical   subtrees.   By&lt;br /&gt;
              default,  subtrees are compacted whenever possible.&lt;br /&gt;
&lt;br /&gt;
       -G     Use [[VT100]] line drawing characters.&lt;br /&gt;
&lt;br /&gt;
       -h     Highlight the current process  and  its  ancestors.&lt;br /&gt;
              This  is  a  no-op  if the terminal doesn't support&lt;br /&gt;
              highlighting or if neither the current process  nor&lt;br /&gt;
              any  of  its  ancestors  are  in  the [[subtree]] being&lt;br /&gt;
              shown.&lt;br /&gt;
&lt;br /&gt;
       -H     Like  -h,  but  highlight  the  specified   process&lt;br /&gt;
              instead. Unlike with -h, pstree fails when using -H&lt;br /&gt;
              if highlighting is not available.&lt;br /&gt;
&lt;br /&gt;
       -l     Display long lines. By default, lines are truncated&lt;br /&gt;
              to  the display width or 132 if output is sent to a&lt;br /&gt;
              non-tty or if the display width is unknown.&lt;br /&gt;
&lt;br /&gt;
       -n     Sort  processes  with  the  same  ancestor  by  PID&lt;br /&gt;
              instead of by name. (Numeric sort.)&lt;br /&gt;
&lt;br /&gt;
       -p     Show  PIDs.  PIDs  are  shown as [[decimal]] numbers in&lt;br /&gt;
              parentheses after each process name. -p  implicitly&lt;br /&gt;
              disables compaction.&lt;br /&gt;
&lt;br /&gt;
       -u     Show [[uid]] transitions. Whenever the [[uid]] of a process&lt;br /&gt;
              differs from the uid of its parent, the new uid  is&lt;br /&gt;
              shown in parentheses after the process name.&lt;br /&gt;
&lt;br /&gt;
       -U     Use  UTF-8 (Unicode) line drawing characters. Under&lt;br /&gt;
              Linux 1.1-54 and above, UTF-8 mode  is  entered  on&lt;br /&gt;
              the  console  with  echo  -e '\033%8' and left with&lt;br /&gt;
              echo -e '\033%@'&lt;br /&gt;
&lt;br /&gt;
       -V     Display version information.&lt;br /&gt;
&lt;br /&gt;
       -s     (Flask) Show Security ID (SID) for each process.&lt;br /&gt;
&lt;br /&gt;
       -x     (Flask) Show [[security]] context for each process.&lt;br /&gt;
&lt;br /&gt;
This document was actually taken from the actual [[man]] page found on most systems which was written by Werner Almesberger and Craig Small on September 26, 2003.&lt;br /&gt;
&lt;br /&gt;
I felt the [[man]] page is very straight forward and very easy to follow.&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Pstree&amp;diff=11883</id>
		<title>Pstree</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Pstree&amp;diff=11883"/>
		<updated>2004-09-09T03:55:23Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[pstree]] displays all running processes in a tree like [[diagram]] on a terminal or console. The  tree is rooted  at either pid or init if [[pid]] is omitted. If a [[user]] name is specified, all [[process]] trees rooted at processes owned by that user are shown.&lt;br /&gt;
&lt;br /&gt;
pstree is an easy way to find parent [[process]es], but the majority of the time just using [[ps]] will do the job to find a specific process.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
pstree visually merges identical branches by putting them in square brackets and prefixing them with the repetition count, e.g.&lt;br /&gt;
&lt;br /&gt;
           [[init]]-+-getty&lt;br /&gt;
                |-getty&lt;br /&gt;
                |-getty&lt;br /&gt;
                `-getty&lt;br /&gt;
&lt;br /&gt;
       becomes&lt;br /&gt;
&lt;br /&gt;
           init---4*[getty]&lt;br /&gt;
----&lt;br /&gt;
OPTIONS&lt;br /&gt;
       -a     Show command line arguments. If the command line of&lt;br /&gt;
              a  process is swapped out, that process is shown in&lt;br /&gt;
              parentheses. -a implicitly disables compaction.&lt;br /&gt;
&lt;br /&gt;
       -c     Disable  compaction  of  identical   subtrees.   By&lt;br /&gt;
              default,  subtrees are compacted whenever possible.&lt;br /&gt;
&lt;br /&gt;
       -G     Use [[VT100]] line drawing characters.&lt;br /&gt;
&lt;br /&gt;
       -h     Highlight the current process  and  its  ancestors.&lt;br /&gt;
              This  is  a  no-op  if the terminal doesn't support&lt;br /&gt;
              highlighting or if neither the current process  nor&lt;br /&gt;
              any  of  its  ancestors  are  in  the [[subtree]] being&lt;br /&gt;
              shown.&lt;br /&gt;
&lt;br /&gt;
       -H     Like  -h,  but  highlight  the  specified   process&lt;br /&gt;
              instead. Unlike with -h, pstree fails when using -H&lt;br /&gt;
              if highlighting is not available.&lt;br /&gt;
&lt;br /&gt;
       -l     Display long lines. By default, lines are truncated&lt;br /&gt;
              to  the display width or 132 if output is sent to a&lt;br /&gt;
              non-tty or if the display width is unknown.&lt;br /&gt;
&lt;br /&gt;
       -n     Sort  processes  with  the  same  ancestor  by  PID&lt;br /&gt;
              instead of by name. (Numeric sort.)&lt;br /&gt;
&lt;br /&gt;
       -p     Show  PIDs.  PIDs  are  shown as [[decimal]] numbers in&lt;br /&gt;
              parentheses after each process name. -p  implicitly&lt;br /&gt;
              disables compaction.&lt;br /&gt;
&lt;br /&gt;
       -u     Show [[uid]] transitions. Whenever the [[uid]] of a process&lt;br /&gt;
              differs from the uid of its parent, the new uid  is&lt;br /&gt;
              shown in parentheses after the process name.&lt;br /&gt;
&lt;br /&gt;
       -U     Use  UTF-8 (Unicode) line drawing characters. Under&lt;br /&gt;
              Linux 1.1-54 and above, UTF-8 mode  is  entered  on&lt;br /&gt;
              the  console  with  echo  -e '\033%8' and left with&lt;br /&gt;
              echo -e '\033%@'&lt;br /&gt;
&lt;br /&gt;
       -V     Display version information.&lt;br /&gt;
&lt;br /&gt;
       -s     (Flask) Show Security ID (SID) for each process.&lt;br /&gt;
&lt;br /&gt;
       -x     (Flask) Show [[security]] context for each process.&lt;br /&gt;
&lt;br /&gt;
This document was actually taken from the actual [[man]] page found on most systems which was written by Werner Almesberger and Craig Small on September 26, 2003.&lt;br /&gt;
&lt;br /&gt;
I felt the [[man]] page is very straight forward and very easy to follow.&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User_talk:Dysprosia&amp;diff=11921</id>
		<title>User talk:Dysprosia</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User_talk:Dysprosia&amp;diff=11921"/>
		<updated>2004-09-09T03:45:09Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Dysprosia&lt;br /&gt;
&lt;br /&gt;
Welcome to LinuxQuestions Wiki eh?? Umm.. Well I've been a Moderator at this site for almost 3 years now. I usually don't mess with the Wiki but I was only adding simple quick stuff to push us over the 2k mark so we can do an actual press release.&lt;br /&gt;
&lt;br /&gt;
Thanks and thanks for the warm welcome though, I think its my first in the 3 years I've been on this site as a Moderator from anyone. The only real welcomes I get is when I'm traveling to the Linux World Expos to help promote the site with Jeremy and Finegan, drinking beers, etc. =)&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
&lt;br /&gt;
-trickykid &lt;br /&gt;
----&lt;br /&gt;
''Old talk in [[User_talk:Dysprosia/Archive]]''&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User_talk:Trickykid&amp;diff=11920</id>
		<title>User talk:Trickykid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User_talk:Trickykid&amp;diff=11920"/>
		<updated>2004-09-09T03:45:02Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User_talk:Trickykid&amp;diff=11879</id>
		<title>User talk:Trickykid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User_talk:Trickykid&amp;diff=11879"/>
		<updated>2004-09-09T03:43:31Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[User_talk:Dysprosia|Dysprosia]]&lt;br /&gt;
&lt;br /&gt;
Welcome to LinuxQuestions Wiki eh??  Umm.. Well I've been a Moderator at this site for almost 3 years now.  I usually don't mess with the Wiki but I was only adding simple quick stuff to push us over the 2k mark so we can do an actual press release.&lt;br /&gt;
&lt;br /&gt;
Thanks and thanks for the warm welcome though, I think its my first in the 3 years I've been on this site as a Moderator from anyone. The only real welcomes I get is when I'm traveling to the Linux World Expos to help promote the site with Jeremy and Finegan, drinking beers, etc.  =)&lt;br /&gt;
&lt;br /&gt;
Regards&lt;br /&gt;
&lt;br /&gt;
-trickykid&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Trickykid&amp;diff=11884</id>
		<title>User:Trickykid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Trickykid&amp;diff=11884"/>
		<updated>2004-09-09T03:16:32Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just a System Administrator..  nothing more, nothing less!&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Device&amp;diff=11869</id>
		<title>Device</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Device&amp;diff=11869"/>
		<updated>2004-09-09T03:02:29Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Devices - Anything that is connected or part of a system. Devices can consist of individual parts within a [[system]] or whole parts that connect to any type of system, [[network]], [[group]], etc.&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Pid&amp;diff=11870</id>
		<title>Pid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Pid&amp;diff=11870"/>
		<updated>2004-09-09T02:55:23Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[pid]] - Stands for [[Process]] Identification&lt;br /&gt;
&lt;br /&gt;
All processes are assigned a pid from or on an [[Operating System]]. Think of it as the [[internet]], as in [[domain]] names and [[IP]] numbers. It's much easier for us to remember names instead of numbers, so we give processes names, the system gives it numbers.&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Pstree&amp;diff=11882</id>
		<title>Pstree</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Pstree&amp;diff=11882"/>
		<updated>2004-09-09T02:52:14Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[pstree]] displays all running processes in a tree like [[diagram]] on a terminal or console. The  tree is rooted  at either pid or init if [[pid]] is omitted. If a [[user]] name is specified, all [[process]] trees rooted at processes owned by that user are shown.&lt;br /&gt;
&lt;br /&gt;
pstree is an easy way to find parent [[processes]], but the majority of the time just using [[ps]] will do the job to find a specific process.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
pstree visually merges identical branches by putting them in square brackets and prefixing them with the repetition count, e.g.&lt;br /&gt;
&lt;br /&gt;
           [[init]]-+-getty&lt;br /&gt;
                |-getty&lt;br /&gt;
                |-getty&lt;br /&gt;
                `-getty&lt;br /&gt;
&lt;br /&gt;
       becomes&lt;br /&gt;
&lt;br /&gt;
           init---4*[getty]&lt;br /&gt;
----&lt;br /&gt;
OPTIONS&lt;br /&gt;
       -a     Show command line arguments. If the command line of&lt;br /&gt;
              a  process is swapped out, that process is shown in&lt;br /&gt;
              parentheses. -a implicitly disables compaction.&lt;br /&gt;
&lt;br /&gt;
       -c     Disable  compaction  of  identical   subtrees.   By&lt;br /&gt;
              default,  subtrees are compacted whenever possible.&lt;br /&gt;
&lt;br /&gt;
       -G     Use [[VT100]] line drawing characters.&lt;br /&gt;
&lt;br /&gt;
       -h     Highlight the current process  and  its  ancestors.&lt;br /&gt;
              This  is  a  no-op  if the terminal doesn't support&lt;br /&gt;
              highlighting or if neither the current process  nor&lt;br /&gt;
              any  of  its  ancestors  are  in  the [[subtree]] being&lt;br /&gt;
              shown.&lt;br /&gt;
&lt;br /&gt;
       -H     Like  -h,  but  highlight  the  specified   process&lt;br /&gt;
              instead. Unlike with -h, pstree fails when using -H&lt;br /&gt;
              if highlighting is not available.&lt;br /&gt;
&lt;br /&gt;
       -l     Display long lines. By default, lines are truncated&lt;br /&gt;
              to  the display width or 132 if output is sent to a&lt;br /&gt;
              non-tty or if the display width is unknown.&lt;br /&gt;
&lt;br /&gt;
       -n     Sort  processes  with  the  same  ancestor  by  PID&lt;br /&gt;
              instead of by name. (Numeric sort.)&lt;br /&gt;
&lt;br /&gt;
       -p     Show  PIDs.  PIDs  are  shown as [[decimal]] numbers in&lt;br /&gt;
              parentheses after each process name. -p  implicitly&lt;br /&gt;
              disables compaction.&lt;br /&gt;
&lt;br /&gt;
       -u     Show [[uid]] transitions. Whenever the [[uid]] of a process&lt;br /&gt;
              differs from the uid of its parent, the new uid  is&lt;br /&gt;
              shown in parentheses after the process name.&lt;br /&gt;
&lt;br /&gt;
       -U     Use  UTF-8 (Unicode) line drawing characters. Under&lt;br /&gt;
              Linux 1.1-54 and above, UTF-8 mode  is  entered  on&lt;br /&gt;
              the  console  with  echo  -e '\033%8' and left with&lt;br /&gt;
              echo -e '\033%@'&lt;br /&gt;
&lt;br /&gt;
       -V     Display version information.&lt;br /&gt;
&lt;br /&gt;
       -s     (Flask) Show Security ID (SID) for each process.&lt;br /&gt;
&lt;br /&gt;
       -x     (Flask) Show [[security]] context for each process.&lt;br /&gt;
&lt;br /&gt;
This document was actually taken from the actual [[man]] page found on most systems which was written by Werner Almesberger and Craig Small on September 26, 2003.&lt;br /&gt;
&lt;br /&gt;
I felt the [[man]] page is very straight forward and very easy to follow.&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Pstree&amp;diff=11864</id>
		<title>Pstree</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Pstree&amp;diff=11864"/>
		<updated>2004-09-09T02:47:36Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[pstree]] displays all running processes in a tree like diagram on a terminal or console. The  tree is rooted  at either pid or init if pid is omitted. If a user       name is specified, all process trees rooted at processes owned by that user are shown.&lt;br /&gt;
&lt;br /&gt;
pstree is an easy way to find parent processes, but the majority of the time just using [[ps]] will do the job to find a specific process.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
pstree  visually merges identical branches by putting them&lt;br /&gt;
       in square brackets and prefixing them with the  repetition&lt;br /&gt;
       count, e.g.&lt;br /&gt;
&lt;br /&gt;
           init-+-getty&lt;br /&gt;
                |-getty&lt;br /&gt;
                |-getty&lt;br /&gt;
                `-getty&lt;br /&gt;
&lt;br /&gt;
       becomes&lt;br /&gt;
&lt;br /&gt;
           init---4*[getty]&lt;br /&gt;
----&lt;br /&gt;
OPTIONS&lt;br /&gt;
       -a     Show command line arguments. If the command line of&lt;br /&gt;
              a  process is swapped out, that process is shown in&lt;br /&gt;
              parentheses. -a implicitly disables compaction.&lt;br /&gt;
&lt;br /&gt;
       -c     Disable  compaction  of  identical   subtrees.   By&lt;br /&gt;
              default,  subtrees are compacted whenever possible.&lt;br /&gt;
&lt;br /&gt;
       -G     Use VT100 line drawing characters.&lt;br /&gt;
&lt;br /&gt;
       -h     Highlight the current process  and  its  ancestors.&lt;br /&gt;
              This  is  a  no-op  if the terminal doesn't support&lt;br /&gt;
              highlighting or if neither the current process  nor&lt;br /&gt;
              any  of  its  ancestors  are  in  the subtree being&lt;br /&gt;
              shown.&lt;br /&gt;
&lt;br /&gt;
       -H     Like  -h,  but  highlight  the  specified   process&lt;br /&gt;
              instead. Unlike with -h, pstree fails when using -H&lt;br /&gt;
              if highlighting is not available.&lt;br /&gt;
&lt;br /&gt;
       -l     Display long lines. By default, lines are truncated&lt;br /&gt;
              to  the display width or 132 if output is sent to a&lt;br /&gt;
              non-tty or if the display width is unknown.&lt;br /&gt;
&lt;br /&gt;
       -n     Sort  processes  with  the  same  ancestor  by  PID&lt;br /&gt;
              instead of by name. (Numeric sort.)&lt;br /&gt;
&lt;br /&gt;
       -p     Show  PIDs.  PIDs  are  shown as decimal numbers in&lt;br /&gt;
              parentheses after each process name. -p  implicitly&lt;br /&gt;
              disables compaction.&lt;br /&gt;
&lt;br /&gt;
       -u     Show uid transitions. Whenever the uid of a process&lt;br /&gt;
              differs from the uid of its parent, the new uid  is&lt;br /&gt;
              shown in parentheses after the process name.&lt;br /&gt;
&lt;br /&gt;
       -U     Use  UTF-8 (Unicode) line drawing characters. Under&lt;br /&gt;
              Linux 1.1-54 and above, UTF-8 mode  is  entered  on&lt;br /&gt;
              the  console  with  echo  -e '\033%8' and left with&lt;br /&gt;
              echo -e '\033%@'&lt;br /&gt;
&lt;br /&gt;
       -V     Display version information.&lt;br /&gt;
&lt;br /&gt;
       -s     (Flask) Show Security ID (SID) for each process.&lt;br /&gt;
&lt;br /&gt;
       -x     (Flask) Show security context for each process.&lt;br /&gt;
&lt;br /&gt;
This document was actually taken from the actual man page found on most systems which was written by Werner Almesberger and Craig Small on September 26, 2003.&lt;br /&gt;
&lt;br /&gt;
I felt the man page is very straight forward and very easy to follow.&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Compile_a_kernel&amp;diff=787</id>
		<title>Compile a kernel</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Compile_a_kernel&amp;diff=787"/>
		<updated>2004-02-24T16:16:11Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;First and foremost, [http://www.linux-sxs.org/upgrading/migration26.html THIS] may pertain to you so read that first and then you can proceed ;)&lt;br /&gt;
and [http://thomer.com/linux/migrate-to-2.6.html here] is a similiar site&lt;br /&gt;
&lt;br /&gt;
----------------------------&lt;br /&gt;
Obtaining and instaling the Kernel Source&lt;br /&gt;
----------------------------&lt;br /&gt;
&lt;br /&gt;
1. Getting the kernel source&lt;br /&gt;
To compile a kernel, you will need the kernel source. You can get it from [http://www.kernel.org kernel.org]. Your distribution may also already come with the kernel source, somewhere on the cd.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Installing the kernel source&lt;br /&gt;
You can install the kernel source by either installing the package that came with your distribution, or extracting the [[tarball]] you got from kernel.org . &lt;br /&gt;
&lt;br /&gt;
3. Change Directory To /usr/src&lt;br /&gt;
cd /usr/src			&lt;br /&gt;
&lt;br /&gt;
4. Check for symlink (ex. /usr/src/linux-&amp;gt;/usr/src/linux-2.4.18)&lt;br /&gt;
ls -alc				&lt;br /&gt;
&lt;br /&gt;
5. Double check with this command (output ex.) linux: symbolic link to linux-2.4.18-14&lt;br /&gt;
file linux			         &lt;br /&gt;
&lt;br /&gt;
6. Remove the symlink&lt;br /&gt;
rm linux		         &lt;br /&gt;
&lt;br /&gt;
7. Unpack the tarball (new kernel)&lt;br /&gt;
tar -zxvf linux-x.x.x.tar.gz	 &lt;br /&gt;
&lt;br /&gt;
8. Make a new link to the new kernel&lt;br /&gt;
ln -s /usr/src/linux-x.x.x /usr/src/linux	&lt;br /&gt;
&lt;br /&gt;
9. Type this to change to the directory&lt;br /&gt;
cd linux			        &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----------------------------&lt;br /&gt;
Now Comes The Fun Part~!&lt;br /&gt;
----------------------------&lt;br /&gt;
make mrproper	         &lt;br /&gt;
&amp;quot;This removes the current .config and other files&amp;quot;&lt;br /&gt;
&lt;br /&gt;
cp /usr/src/linux-2.4.x/.config /usr/src/linux&lt;br /&gt;
&amp;quot;This is if you want to use your old config&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;--&amp;gt;Your Choice&amp;lt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
make config			&lt;br /&gt;
&amp;quot;Basic config from terminal&amp;quot;&lt;br /&gt;
make menuconfig		&lt;br /&gt;
&amp;quot;For ncurses GUI in the terminal&amp;quot;	&lt;br /&gt;
make xconfig			&lt;br /&gt;
&amp;quot;For X-based GUI with modular explanations (QT Based)&amp;quot;&lt;br /&gt;
make gconfig&lt;br /&gt;
&amp;quot;Same as above, but for 2.6.x kernel only (GTK Based, and might be still buggy)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
Don't forget to add module support and kernel support for future hardware.&lt;br /&gt;
Do not compile your harddrive and filesystem type as a module.&lt;br /&gt;
The configure program enables you to specify an enormous number of features. It is advisable to skim through all the sections to get a feel for the different things you can do. Most options are about specifying whether you want a feature [*] compiled into the kernel image, [M] compiled as a module, or [ ] not compiled at all. You can also turn off module support altogether from Loadable module support  --&amp;gt;. The kernel configuration is one LINUX program that offers lots of help--select &amp;lt; Help &amp;gt; on any feature. The raw help file is /usr/src/linux/Documentation/Configure.help can be also worth reading. &lt;br /&gt;
When your done the config click exit and save current configuration. Your file is now known as .config .&lt;br /&gt;
&lt;br /&gt;
-------&amp;gt;SKIP THE FOLLOWING IF DOING A 2.6.x KERNEL&amp;lt;------&lt;br /&gt;
&lt;br /&gt;
make dep			&lt;br /&gt;
&amp;quot;Ensures dependancies such as include files are in place&amp;quot;&lt;br /&gt;
&lt;br /&gt;
(vi, pico, emacs) Makefile	&lt;br /&gt;
&amp;quot;Want A Unique Kernel Name? Edit /usr/src/linux/Makefile and change EXTRAVERSION&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make clean			&lt;br /&gt;
&amp;quot;To clean your sources for they compile correctly&amp;quot;&lt;br /&gt;
&lt;br /&gt;
------&amp;gt;START HERE IF COMPILING A 2.6.x KERNEL&amp;lt;------&lt;br /&gt;
&lt;br /&gt;
make bzImage		&lt;br /&gt;
&amp;quot;To make the kernel image (compile and creates compressed image of kernel)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make modules			&lt;br /&gt;
&amp;quot;Compile your selected modules&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make modules_install	&lt;br /&gt;
&amp;quot;To install newly compile modules (installs to /lib/modules/linux.x.x.x)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--------------------------------------------&lt;br /&gt;
Now Its Time To Install Your New Kernel~!&lt;br /&gt;
--------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Remove the following links:&lt;br /&gt;
rm -rf /boot/System.map&lt;br /&gt;
rm -rf /boot/vmlinuz&lt;br /&gt;
&lt;br /&gt;
Then copy the newly created kernel and system.map to /boot&lt;br /&gt;
cp /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-x.x.x&lt;br /&gt;
cp /usr/src/linux/System.map /boot/System.map-x.x.x&lt;br /&gt;
&lt;br /&gt;
Make the new links:&lt;br /&gt;
ln -s /boot/vmlinuz-x.x.x /boot/vmlinuz&lt;br /&gt;
ln -s /boot/System.map-x.x.x /boot/System.map &lt;br /&gt;
&lt;br /&gt;
Next remove existing initrd.img file:&lt;br /&gt;
rm -rf /boot/initrd.x.x.x.img&lt;br /&gt;
&lt;br /&gt;
And create the new one:&lt;br /&gt;
/sbin/mkinitrd /boot/initrd-x.x.x.img x.x.x&lt;br /&gt;
(Note: )&lt;br /&gt;
The last set of x.x.x is the eqivalent to your new kernel version and it looks to /lib/modules for that version.&lt;br /&gt;
&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
Use The Steps That Pertain To You&lt;br /&gt;
If You Use Grub Then Edit grub.conf&lt;br /&gt;
If You Use Lilo Then Edit lilo.conf&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
[b]remember to leave the entry to your old kernel image just in case,&lt;br /&gt;
so modify what is in the config originally to point to the old image&lt;br /&gt;
and make a new entry for you new image you just made ....[/b]&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;-&amp;gt; And Finally Edit Your /etc/grub.conf file &amp;lt;-&amp;gt;&lt;br /&gt;
&amp;lt;-&amp;gt; Note some distros now use menu.lst, so if you can't find grub or lilo, then you know what to look for &amp;lt;-&amp;gt;&lt;br /&gt;
&lt;br /&gt;
title New Kernel :D&lt;br /&gt;
kernel /vmlinuz-x.x.x ro root=LABEL=/ &lt;br /&gt;
        initrd /initrd-x.x.x.img&lt;br /&gt;
(Note: )&lt;br /&gt;
Look at the previous parameters in the grub.conf file and note what &amp;quot;root=&amp;quot; and use what is existing.&lt;br /&gt;
&lt;br /&gt;
Exit and Save grub.conf&lt;br /&gt;
type &amp;quot;/sbin/grub-install&amp;quot;&lt;br /&gt;
&lt;br /&gt;
AND REBOOT!!!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;-&amp;gt; And Finally Edit Your /etc/lilo.conf file &amp;lt;-&amp;gt;&lt;br /&gt;
image = /boot/vmlinuz-x.x.x&lt;br /&gt;
           label = New Kernel :D&lt;br /&gt;
           root = /dev/hdx&lt;br /&gt;
           read-only&lt;br /&gt;
&lt;br /&gt;
(Note: )&lt;br /&gt;
look at the previous parameters in the lilo.conf file and note what &amp;quot;root =&amp;quot; and use what is existing.&lt;br /&gt;
&lt;br /&gt;
Exit and Save lilo.conf&lt;br /&gt;
type &amp;quot;/sbin/lilo&amp;quot;&lt;br /&gt;
&lt;br /&gt;
AND REBOOT!!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/EDIT&lt;br /&gt;
as requested there was wanting the instructions on how to apply patches to your kernel.&lt;br /&gt;
END EDIT/&lt;br /&gt;
&lt;br /&gt;
[http://www.linuxhq.com/patch-howto.html read this] or look below ..&lt;br /&gt;
&lt;br /&gt;
This step comes after untaring your kernel source.&lt;br /&gt;
When you download the patch place it in the folder that you untarred you new kernel.&lt;br /&gt;
Then typed:&lt;br /&gt;
patch -E -p1  &amp;lt; sound_patch&lt;br /&gt;
Purely an example and you would type whatever the file name is in replace of sound_patch.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As of having alternative boot options, well this is no problem.. The stuff above that i tell you to add to your lilo or grub file above could just append the file, and just add &amp;quot;.old&amp;quot; to the title of your oringinal kernel name for you will know the difference. and whether its grub or lilo add &amp;quot;read-only&amp;quot;, to the end of the oringinal entries in the lilo.conf, or grub.conf file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                                         &lt;br /&gt;
                                                                        ~DrOzz&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Trickykid&amp;diff=11867</id>
		<title>User:Trickykid</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Trickykid&amp;diff=11867"/>
		<updated>2004-02-24T02:39:15Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Do you really want to know who I am?  Ask mcleodnine, he'll tell ya!&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Applications&amp;diff=603</id>
		<title>Applications</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Applications&amp;diff=603"/>
		<updated>2004-02-24T02:31:37Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: Added Window Managers and a few other items&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Use this space to collect notes and information on common Linux software!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;Do&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
* -Provide basic info about the app.&lt;br /&gt;
* -Link to the website/[[Freshmeat]] page.&lt;br /&gt;
* -Add notes on usage/common problems/tips.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;Don't&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
* -Simply duplicate the reference manual.&lt;br /&gt;
* -Clutter the pages with comments like &amp;quot;This rocks!&amp;quot; or &amp;quot;This sucks!&amp;quot;.&lt;br /&gt;
* -Try and list every app in the world. Let's just stick to the common and most  popular ones for now.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
* [[KDE]], [[Gnome]], [[XFce]] - Desktop environments&lt;br /&gt;
* [[Fluxbox]], [[Blackbox]], [[WindowMaker]], [[Sawfish]], [[Enlightenment]], [[Metacity]] - Window Managers&lt;br /&gt;
* [[OpenOffice]], [[StarOffice]], [[KOffice]] - Office Suites&lt;br /&gt;
* [[AbiWord]] - Word Processors&lt;br /&gt;
* [[Wine]], [[CrossOver]], [[WineX]] - Windows emulation&lt;br /&gt;
* [[Gaim]], [[Kopete]] - Instant Messaging&lt;br /&gt;
* [[X-Chat]], [[BitchX]] - IRC client&lt;br /&gt;
* [[Mozilla]], [[Firefox]], [[Opera]], [[Konqueror]] - Web browsers&lt;br /&gt;
* [[Xine]], [[Totem]], [[Mplayer]] - Video players&lt;br /&gt;
* [[XMMS]], [[RhythmBox]] - Music players&lt;br /&gt;
* [[Evolution]], [[Thunderbird]], [[Kmail]] - Mail Clients&lt;br /&gt;
* [[Emacs]], [[Vi]] - Editors&lt;br /&gt;
* [[Audacity]] - Audio Editors&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Compile_a_kernel&amp;diff=628</id>
		<title>Compile a kernel</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Compile_a_kernel&amp;diff=628"/>
		<updated>2004-02-24T01:49:51Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: Cleaned up unecessary bullets and made numbered list.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;First and foremost, [http://www.linux-sxs.org/upgrading/migration26.html THIS] may pertain to you so read that first and then you can proceed ;)&lt;br /&gt;
and [http://thomer.com/linux/migrate-to-2.6.html here] is a similiar site&lt;br /&gt;
&lt;br /&gt;
----------------------------&lt;br /&gt;
Obtaining and instaling the Kernel Source&lt;br /&gt;
----------------------------&lt;br /&gt;
&lt;br /&gt;
1. Getting the kernel source&lt;br /&gt;
To compile a kernel, you will need the kernel source. You can get it from [http://www.kernel.org kernel.org]. Your distribution may also already come with the kernel source, somewhere on the cd.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Installing the kernel source&lt;br /&gt;
You can install the kernel source by either installing the package that came with your distribution, or extracting the [[tarball]] you got from kernel.org . &lt;br /&gt;
&lt;br /&gt;
3. Change Directory To /usr/src&lt;br /&gt;
cd /usr/src			&lt;br /&gt;
&lt;br /&gt;
4. Check for symlink (ex. /usr/src/linux-&amp;gt;/usr/src/linux-2.4.18)&lt;br /&gt;
ls -alc				&lt;br /&gt;
&lt;br /&gt;
5. Double check with this command (output ex.) linux: symbolic link to linux-2.4.18-14&lt;br /&gt;
file linux			         &lt;br /&gt;
&lt;br /&gt;
6. Remove the symlink&lt;br /&gt;
rm linux		         &lt;br /&gt;
&lt;br /&gt;
7. Unpack the tarball (new kernel)&lt;br /&gt;
tar -zxvf linux-x.x.x.tar.gz	 &lt;br /&gt;
&lt;br /&gt;
8. Make a new link to the new kernel&lt;br /&gt;
ln -s /usr/src/linux-x.x.x /usr/src/linux	&lt;br /&gt;
&lt;br /&gt;
9. Type this to change to the directory&lt;br /&gt;
cd linux			        &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----------------------------&lt;br /&gt;
Now Comes The Fun Part~!&lt;br /&gt;
----------------------------&lt;br /&gt;
make mrproper	         &lt;br /&gt;
&amp;quot;This removes the current .config and other files&amp;quot;&lt;br /&gt;
&lt;br /&gt;
cp /usr/src/linux-2.4.x/.config /usr/src/linux&lt;br /&gt;
&amp;quot;This is if you want to use your old config&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;--&amp;gt;Your Choice&amp;lt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
make config			&lt;br /&gt;
&amp;quot;Basic config from terminal&amp;quot;&lt;br /&gt;
make menuconfig		&lt;br /&gt;
&amp;quot;For ncurses GUI in the terminal&amp;quot;	&lt;br /&gt;
make xconfig			&lt;br /&gt;
&amp;quot;For X-based GUI with modular explanations (QT Based)&amp;quot;&lt;br /&gt;
make gconfig&lt;br /&gt;
&amp;quot;Same as above, but for 2.6.x kernel only (GTK Based, and might be still buggy)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
Don't forget to add module support and kernel support for future hardware.&lt;br /&gt;
Do not compile your harddrive and filesystem type as a module.&lt;br /&gt;
The configure program enables you to specify an enormous number of features. It is advisable to skim through all the sections to get a feel for the different things you can do. Most options are about specifying whether you want a feature [*] compiled into the kernel image, [M] compiled as a module, or [ ] not compiled at all. You can also turn off module support altogether from Loadable module support  --&amp;gt;. The kernel configuration is one LINUX program that offers lots of help--select &amp;lt; Help &amp;gt; on any feature. The raw help file is /usr/src/linux/Documentation/Configure.help can be also worth reading. &lt;br /&gt;
When your done the config click exit and save current configuration. Your file is now known as .config .&lt;br /&gt;
&lt;br /&gt;
-------&amp;gt;SKIP THE FOLLOWING IF DOING A 2.6.x KERNEL&amp;lt;------&lt;br /&gt;
&lt;br /&gt;
make dep			&lt;br /&gt;
&amp;quot;Ensures dependancies such as include files are in place&amp;quot;&lt;br /&gt;
&lt;br /&gt;
(vi, pico, emacs) Makefile	&lt;br /&gt;
&amp;quot;Want A Unique Kernel Name? Edit /usr/src/linux/Makefile and change EXTRAVERSION&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make clean			&lt;br /&gt;
&amp;quot;To clean your sources for they compile correctly&amp;quot;&lt;br /&gt;
&lt;br /&gt;
------&amp;gt;START HERE IF COMPILING A 2.6.x KERNEL&amp;lt;------&lt;br /&gt;
&lt;br /&gt;
make bzImage		&lt;br /&gt;
&amp;quot;To make the kernel image (compile and creates compressed image of kernel)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make modules			&lt;br /&gt;
&amp;quot;Compile your selected modules&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make modules_install	&lt;br /&gt;
&amp;quot;To install newly compile modules (installs to /lib/modules/linux.x.x.x)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--------------------------------------------&lt;br /&gt;
Now Its Time To Install Your New Kernel~!&lt;br /&gt;
--------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Remove the following links:&lt;br /&gt;
rm -rf /boot/System.map&lt;br /&gt;
rm -rf /boot/vmlinuz&lt;br /&gt;
&lt;br /&gt;
Then copy the newly created kernel and system.map to /boot&lt;br /&gt;
cp /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-x.x.x&lt;br /&gt;
cp /usr/src/linux/System.map /boot/System.map-x.x.x&lt;br /&gt;
&lt;br /&gt;
Make the new links:&lt;br /&gt;
ln -s /boot/vmlinuz-x.x.x /boot/vmlinuz&lt;br /&gt;
ln -s /boot/System.map-x.x.x /boot/System.map &lt;br /&gt;
&lt;br /&gt;
Next remove existing initrd.img file:&lt;br /&gt;
rm -rf /boot/initrd.x.x.x.img&lt;br /&gt;
&lt;br /&gt;
And create the new one:&lt;br /&gt;
/sbin/mkinitrd /boot/initrd-x.x.x.img x.x.x&lt;br /&gt;
(Note: )&lt;br /&gt;
The last set of x.x.x is the eqivalent to your new kernel version and it looks to /lib/modules for that version.&lt;br /&gt;
&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
Use The Steps That Pertain To You&lt;br /&gt;
If You Use Grub Then Edit grub.conf&lt;br /&gt;
If You Use Lilo Then Edit lilo.conf&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
[b]remember to leave the entry to your old kernel image just in case,&lt;br /&gt;
so modify what is in the config originally to point to the old image&lt;br /&gt;
and make a new entry for you new image you just made ....[/b]&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;-&amp;gt; And Finally Edit Your /etc/grub.conf file &amp;lt;-&amp;gt;&lt;br /&gt;
&amp;lt;-&amp;gt; Note some distros now use menu.lst, so if you can't find grub or lilo, then you know what to look for &amp;lt;-&amp;gt;&lt;br /&gt;
&lt;br /&gt;
title New Kernel :D&lt;br /&gt;
kernel /vmlinuz-x.x.x ro root=LABEL=/ &lt;br /&gt;
        initrd /initrd-x.x.x.img&lt;br /&gt;
(Note: )&lt;br /&gt;
Look at the previous parameters in the grub.conf file and note what &amp;quot;root=&amp;quot; and use what is existing.&lt;br /&gt;
&lt;br /&gt;
Exit and Save grub.conf&lt;br /&gt;
type &amp;quot;/sbin/grub-install&amp;quot;&lt;br /&gt;
&lt;br /&gt;
AND REBOOT!!!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;-&amp;gt; And Finally Edit Your /etc/lilo.conf file &amp;lt;-&amp;gt;&lt;br /&gt;
image = /boot/vmlinuz-x.x.x&lt;br /&gt;
           label = New Kernel :D&lt;br /&gt;
           root = /dev/hdx&lt;br /&gt;
           read-only&lt;br /&gt;
&lt;br /&gt;
(Note: )&lt;br /&gt;
look at the previous parameters in the lilo.conf file and note what &amp;quot;root =&amp;quot; and use what is existing.&lt;br /&gt;
&lt;br /&gt;
Exit and Save lilo.conf&lt;br /&gt;
type &amp;quot;/sbin/lilo&amp;quot;&lt;br /&gt;
&lt;br /&gt;
AND REBOOT!!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/EDIT&lt;br /&gt;
as requested there was wanting the instructions on how to apply patches to your kernel.&lt;br /&gt;
END EDIT/&lt;br /&gt;
&lt;br /&gt;
[http://www.linuxhq.com/patch-howto.html]read this] or look below ..&lt;br /&gt;
&lt;br /&gt;
This step comes after untaring your kernel source.&lt;br /&gt;
When you download the patch place it in the folder that you untarred you new kernel.&lt;br /&gt;
Then typed:&lt;br /&gt;
patch -E -p1  &amp;lt; sound_patch&lt;br /&gt;
Purely an example and you would type whatever the file name is in replace of sound_patch.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As of having alternative boot options, well this is no problem.. The stuff above that i tell you to add to your lilo or grub file above could just append the file, and just add &amp;quot;.old&amp;quot; to the title of your oringinal kernel name for you will know the difference. and whether its grub or lilo add &amp;quot;read-only&amp;quot;, to the end of the oringinal entries in the lilo.conf, or grub.conf file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                                         &lt;br /&gt;
                                                                        ~DrOzz&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Compile_a_kernel&amp;diff=564</id>
		<title>Compile a kernel</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Compile_a_kernel&amp;diff=564"/>
		<updated>2004-02-24T01:33:53Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;First and foremost, [http://www.linux-sxs.org/upgrading/migration26.html THIS] may pertain to you so read that first and then you can proceed ;)&lt;br /&gt;
and [http://thomer.com/linux/migrate-to-2.6.html here] is a similiar site&lt;br /&gt;
&lt;br /&gt;
----------------------------&lt;br /&gt;
Obtaining and instaling the Kernel Source&lt;br /&gt;
----------------------------&lt;br /&gt;
&lt;br /&gt;
1. Getting the kernel source&lt;br /&gt;
To compile a kernel, you will need the kernel source. You can get it from [http://www.kernel.org kernel.org]. Your distribution may also already come with the kernel source, somewhere on the cd.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Installing the kernel source&lt;br /&gt;
You can install the kernel source by either installing the package that came with your distribution, or extracting the [[tarball]] you got from kernel.org . &lt;br /&gt;
&lt;br /&gt;
3. Change Directory To /usr/src&lt;br /&gt;
cd /usr/src			&lt;br /&gt;
&lt;br /&gt;
4. Check for symlink (ex. /usr/src/linux-&amp;gt;/usr/src/linux-2.4.18)&lt;br /&gt;
ls -alc				&lt;br /&gt;
&lt;br /&gt;
5. Double check with this command (output ex.) linux: symbolic link to linux-2.4.18-14&lt;br /&gt;
file linux			         &lt;br /&gt;
&lt;br /&gt;
6. Remove the symlink&lt;br /&gt;
rm linux		         &lt;br /&gt;
&lt;br /&gt;
7. Unpack the tarball (new kernel)&lt;br /&gt;
tar -zxvf linux-x.x.x.tar.gz	 &lt;br /&gt;
&lt;br /&gt;
8. Make a new link to the new kernel&lt;br /&gt;
ln -s /usr/src/linux-x.x.x /usr/src/linux	&lt;br /&gt;
&lt;br /&gt;
9. Type this to change to the directory&lt;br /&gt;
cd linux			        &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----------------------------&lt;br /&gt;
Now Comes The Fun Part~!&lt;br /&gt;
----------------------------&lt;br /&gt;
make mrproper	         &lt;br /&gt;
&amp;quot;This removes the current .config and other files&amp;quot;&lt;br /&gt;
&lt;br /&gt;
cp /usr/src/linux-2.4.x/.config /usr/src/linux&lt;br /&gt;
&amp;quot;This is if you want to use your old config&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;--&amp;gt;Your Choice&amp;lt;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
make config			&lt;br /&gt;
&amp;quot;Basic config from terminal&amp;quot;&lt;br /&gt;
make menuconfig		&lt;br /&gt;
&amp;quot;For ncurses GUI in the terminal&amp;quot;	&lt;br /&gt;
make xconfig			&lt;br /&gt;
&amp;quot;For X-based GUI with modular explanations (QT Based)&amp;quot;&lt;br /&gt;
make gconfig&lt;br /&gt;
&amp;quot;Same as above, but for 2.6.x kernel only (GTK Based, and might be still buggy)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
Don't forget to add module support and kernel support for future hardware.&lt;br /&gt;
Do not compile your harddrive and filesystem type as a module.&lt;br /&gt;
The configure program enables you to specify an enormous number of features. It is advisable to skim through all the sections to get a feel for the different things you can do. Most options are about specifying whether you want a feature [*] compiled into the kernel image, [M] compiled as a module, or [ ] not compiled at all. You can also turn off module support altogether from Loadable module support  --&amp;gt;. The kernel configuration is one LINUX program that offers lots of help--select &amp;lt; Help &amp;gt; on any feature. The raw help file is /usr/src/linux/Documentation/Configure.help can be also worth reading. &lt;br /&gt;
When your done the config click exit and save current configuration. Your file is now known as .config .&lt;br /&gt;
&lt;br /&gt;
-------&amp;gt;SKIP THE FOLLOWING IF DOING A 2.6.x KERNEL&amp;lt;------&lt;br /&gt;
&lt;br /&gt;
make dep			&lt;br /&gt;
&amp;quot;Ensures dependancies such as include files are in place&amp;quot;&lt;br /&gt;
&lt;br /&gt;
(vi, pico, emacs) Makefile	&lt;br /&gt;
&amp;quot;Want A Unique Kernel Name? Edit /usr/src/linux/Makefile and change EXTRAVERSION&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make clean			&lt;br /&gt;
&amp;quot;To clean your sources for they compile correctly&amp;quot;&lt;br /&gt;
&lt;br /&gt;
------&amp;gt;START HERE IF COMPILING A 2.6.x KERNEL&amp;lt;------&lt;br /&gt;
&lt;br /&gt;
make bzImage		&lt;br /&gt;
&amp;quot;To make the kernel image (compile and creates compressed image of kernel)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make modules			&lt;br /&gt;
&amp;quot;Compile your selected modules&amp;quot;&lt;br /&gt;
&lt;br /&gt;
make modules_install	&lt;br /&gt;
&amp;quot;To install newly compile modules (installs to /lib/modules/linux.x.x.x)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
--------------------------------------------&lt;br /&gt;
Now Its Time To Install Your New Kernel~!&lt;br /&gt;
--------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Remove the following links:&lt;br /&gt;
rm -rf /boot/System.map&lt;br /&gt;
rm -rf /boot/vmlinuz&lt;br /&gt;
&lt;br /&gt;
Then copy the newly created kernel and system.map to /boot&lt;br /&gt;
cp /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-x.x.x&lt;br /&gt;
cp /usr/src/linux/System.map /boot/System.map-x.x.x&lt;br /&gt;
&lt;br /&gt;
Make the new links:&lt;br /&gt;
ln -s /boot/vmlinuz-x.x.x /boot/vmlinuz&lt;br /&gt;
ln -s /boot/System.map-x.x.x /boot/System.map &lt;br /&gt;
&lt;br /&gt;
Next remove existing initrd.img file:&lt;br /&gt;
rm -rf /boot/initrd.x.x.x.img&lt;br /&gt;
&lt;br /&gt;
And create the new one:&lt;br /&gt;
/sbin/mkinitrd /boot/initrd-x.x.x.img x.x.x&lt;br /&gt;
(Note: )&lt;br /&gt;
The last set of x.x.x is the eqivalent to your new kernel version and it looks to /lib/modules for that version.&lt;br /&gt;
&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
Use The Steps That Pertain To You&lt;br /&gt;
If You Use Grub Then Edit grub.conf&lt;br /&gt;
If You Use Lilo Then Edit lilo.conf&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
[b]remember to leave the entry to your old kernel image just in case,&lt;br /&gt;
so modify what is in the config originally to point to the old image&lt;br /&gt;
and make a new entry for you new image you just made ....[/b]&lt;br /&gt;
--------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;-&amp;gt; And Finally Edit Your /etc/grub.conf file &amp;lt;-&amp;gt;&lt;br /&gt;
&amp;lt;-&amp;gt; Note some distros now use menu.lst, so if you can't find grub or lilo, then you know what to look for &amp;lt;-&amp;gt;&lt;br /&gt;
&lt;br /&gt;
title New Kernel :D&lt;br /&gt;
kernel /vmlinuz-x.x.x ro root=LABEL=/ &lt;br /&gt;
        initrd /initrd-x.x.x.img&lt;br /&gt;
(Note: )&lt;br /&gt;
look at the previous parameters in the grub.conf file and note what &amp;quot;root=&amp;quot; and use what is existing.&lt;br /&gt;
&lt;br /&gt;
Exit and Save grub.conf&lt;br /&gt;
type &amp;quot;/sbin/grub-install&amp;quot;&lt;br /&gt;
&lt;br /&gt;
AND REBOOT!!!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;-&amp;gt; And Finally Edit Your /etc/lilo.conf file &amp;lt;-&amp;gt;&lt;br /&gt;
image = /boot/vmlinuz-x.x.x&lt;br /&gt;
           label = New Kernel :D&lt;br /&gt;
           root = /dev/hdx&lt;br /&gt;
           read-only&lt;br /&gt;
&lt;br /&gt;
(Note: )&lt;br /&gt;
look at the previous parameters in the lilo.conf file and note what &amp;quot;root =&amp;quot; and use what is existing.&lt;br /&gt;
&lt;br /&gt;
Exit and Save lilo.conf&lt;br /&gt;
type &amp;quot;/sbin/lilo&amp;quot;&lt;br /&gt;
&lt;br /&gt;
AND REBOOT!!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/EDIT&lt;br /&gt;
as requested there was wanting the instructions on how to apply patches to your kernel.&lt;br /&gt;
END EDIT/&lt;br /&gt;
&lt;br /&gt;
[http://www.linuxhq.com/patch-howto.html]read this] or look below ..&lt;br /&gt;
&lt;br /&gt;
This step comes after untaring your kernel source.&lt;br /&gt;
When you download the patch place it in the folder that you untarred you new kernel.&lt;br /&gt;
Then typed:&lt;br /&gt;
patch -E -p1  &amp;lt; sound_patch&lt;br /&gt;
Purely an example and you would type whatever the file name is in replace of sound_patch.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As of having alternative boot options, well this is no problem.. The stuff above that i tell you to add to your lilo or grub file above could just append the file, and just add &amp;quot;.old&amp;quot; to the title of your oringinal kernel name for you will know the difference. and whether its grub or lilo add &amp;quot;read-only&amp;quot;, to the end of the oringinal entries in the lilo.conf, or grub.conf file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                                                         &lt;br /&gt;
                                                                        ~DrOzz&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Networking&amp;diff=96</id>
		<title>Networking</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Networking&amp;diff=96"/>
		<updated>2004-02-13T04:47:13Z</updated>

		<summary type="html">&lt;p&gt;Trickykid: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Setting up your first network can be tricky there are some tips about [[Addressing]] that can help.&lt;br /&gt;
&lt;br /&gt;
Many new linux user are unsure how to communicate with MS Windows machines looking at the [[Samba]] tips should help.&lt;br /&gt;
&lt;br /&gt;
Apache can be fairly easy to setup and administer. A great place to start is at http://httpd.apache.org&lt;/div&gt;</summary>
		<author><name>Trickykid</name></author>
	</entry>
</feed>