<?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=Linuxlala</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=Linuxlala"/>
	<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/wiki/Special:Contributions/Linuxlala"/>
	<updated>2026-04-10T15:34:08Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.0</generator>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Script&amp;diff=28547</id>
		<title>Script</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Script&amp;diff=28547"/>
		<updated>2006-07-17T18:29:39Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: external link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''script''' is a computer program or series of [[commands]] that is &lt;br /&gt;
interpreted by another program. This is in contrast to [[compiled]] programs, which might be launched by another program but are always interpreted directly by the [[processor]]. There is, however, a fine distinction between a program in any old interpreted language and a script; for example, most people would not consider programs in the old BASIC language &amp;quot;scripts&amp;quot; per se.&lt;br /&gt;
&lt;br /&gt;
Linux users frequently use the word ''script'' to refer to a [[shell scripts|shell script]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
The command '''&amp;lt;tt&amp;gt;script&amp;lt;/tt&amp;gt;''' makes a transcript of everything printed on your [[terminal]].  It is useful for students who need a [[hardcopy]] record of an interactive session as proof of an assignment, as the transcript file can be printed out later with [[lpr]](1).&lt;br /&gt;
&lt;br /&gt;
It is however recommended that script should not be used with tools such as [[vi]] that modify the terminal screen layout. As the output below shows, if you use [[vi]] or any similar tool that modifies the layout, the postscript file that is created contains a lot of grabage characters.&lt;br /&gt;
&lt;br /&gt;
The junk characters are infact escape sequences that signify blank space, new line etc. For example, ^M is carriage return, ^[ is an escape character and ^H is backspace.&lt;br /&gt;
&lt;br /&gt;
A vi example (history numbers added for clarity):&lt;br /&gt;
 {21} $ script&lt;br /&gt;
 Script started, file is typescript&lt;br /&gt;
 {1} $ vi hello&lt;br /&gt;
 {2} $ exit&lt;br /&gt;
 exit&lt;br /&gt;
 Script done, file is typescript&lt;br /&gt;
 {22} $ &lt;br /&gt;
&lt;br /&gt;
The contents of the file &amp;lt;tt&amp;gt;typescript&amp;lt;/tt&amp;gt; contain (line breaks added for clarity):&lt;br /&gt;
 Script started on Mon Aug 23 08:39:34 2004&lt;br /&gt;
  {1} $ vi hello^M^M&lt;br /&gt;
 ^[)0^[7^[[?47h^[[1;65r^[[m^[[4l^[[?1h^[=^[[H^[[2J^[[1B~^[[1B^H~&lt;br /&gt;
 ^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[&lt;br /&gt;
 1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B&lt;br /&gt;
 ^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~&lt;br /&gt;
 ^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[&lt;br /&gt;
 1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B&lt;br /&gt;
 ^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~&lt;br /&gt;
 ^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[&lt;br /&gt;
 1B^H~^[[1B^H~^[[1B^H~^[[H^[[64Bhello: new file: line 1^[[H&lt;br /&gt;
 ^[[64B^[[J^[[Hhello world^M^[[64BCopying file for recov&lt;br /&gt;
 ery...^M^[[J^[[1;12H^M^[[64B:wq^Mhello: new file: 1 line&lt;br /&gt;
 s, 12 characters^M^[[?1l^[&amp;gt;^[[J^[[H~^[[K^[[63B^Hhello: new &lt;br /&gt;
  file: 1 lines, 12 characters.^M^[[1B^[[65;1H^[[2J^[[?4&lt;br /&gt;
 7l^[8^M^[[?1l^[&amp;gt; {2} $ exit^M^M&lt;br /&gt;
 exit^M&lt;br /&gt;
&lt;br /&gt;
 Script done on Mon Aug 23 08:39:43 2004&lt;br /&gt;
&lt;br /&gt;
Note that if you were to view this file using [[cat]], you wouldn't see any of these junk characters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
By default, the file script creates is called &amp;lt;tt&amp;gt;typescript&amp;lt;/tt&amp;gt;. You can provide a filename to script, if you have to keep a regular log of the terminal session. ''script filename'' would create a file called filename in the current directory.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://enterprise.linux.com/article.pl?sid=06/04/18/2014235&amp;amp;tid=13&amp;amp;tid=89  Using script to log your sessions]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Script&amp;diff=28546</id>
		<title>Script</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Script&amp;diff=28546"/>
		<updated>2006-07-17T18:27:00Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: added more explanation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''script''' is a computer program or series of [[commands]] that is &lt;br /&gt;
interpreted by another program. This is in contrast to [[compiled]] programs, which might be launched by another program but are always interpreted directly by the [[processor]]. There is, however, a fine distinction between a program in any old interpreted language and a script; for example, most people would not consider programs in the old BASIC language &amp;quot;scripts&amp;quot; per se.&lt;br /&gt;
&lt;br /&gt;
Linux users frequently use the word ''script'' to refer to a [[shell scripts|shell script]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
The command '''&amp;lt;tt&amp;gt;script&amp;lt;/tt&amp;gt;''' makes a transcript of everything printed on your [[terminal]].  It is useful for students who need a [[hardcopy]] record of an interactive session as proof of an assignment, as the transcript file can be printed out later with [[lpr]](1).&lt;br /&gt;
&lt;br /&gt;
It is however recommended that script should not be used with tools such as [[vi]] that modify the terminal screen layout. As the output below shows, if you use [[vi]] or any similar tool that modifies the layout, the postscript file that is created contains a lot of grabage characters.&lt;br /&gt;
&lt;br /&gt;
The junk characters are infact escape sequences that signify blank space, new line etc. For example, ^M is carriage return, ^[ is an escape character and ^H is backspace.&lt;br /&gt;
&lt;br /&gt;
A vi example (history numbers added for clarity):&lt;br /&gt;
 {21} $ script&lt;br /&gt;
 Script started, file is typescript&lt;br /&gt;
 {1} $ vi hello&lt;br /&gt;
 {2} $ exit&lt;br /&gt;
 exit&lt;br /&gt;
 Script done, file is typescript&lt;br /&gt;
 {22} $ &lt;br /&gt;
&lt;br /&gt;
The contents of the file &amp;lt;tt&amp;gt;typescript&amp;lt;/tt&amp;gt; contain (line breaks added for clarity):&lt;br /&gt;
 Script started on Mon Aug 23 08:39:34 2004&lt;br /&gt;
  {1} $ vi hello^M^M&lt;br /&gt;
 ^[)0^[7^[[?47h^[[1;65r^[[m^[[4l^[[?1h^[=^[[H^[[2J^[[1B~^[[1B^H~&lt;br /&gt;
 ^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[&lt;br /&gt;
 1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B&lt;br /&gt;
 ^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~&lt;br /&gt;
 ^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[&lt;br /&gt;
 1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B&lt;br /&gt;
 ^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~&lt;br /&gt;
 ^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[1B^H~^[[&lt;br /&gt;
 1B^H~^[[1B^H~^[[1B^H~^[[H^[[64Bhello: new file: line 1^[[H&lt;br /&gt;
 ^[[64B^[[J^[[Hhello world^M^[[64BCopying file for recov&lt;br /&gt;
 ery...^M^[[J^[[1;12H^M^[[64B:wq^Mhello: new file: 1 line&lt;br /&gt;
 s, 12 characters^M^[[?1l^[&amp;gt;^[[J^[[H~^[[K^[[63B^Hhello: new &lt;br /&gt;
  file: 1 lines, 12 characters.^M^[[1B^[[65;1H^[[2J^[[?4&lt;br /&gt;
 7l^[8^M^[[?1l^[&amp;gt; {2} $ exit^M^M&lt;br /&gt;
 exit^M&lt;br /&gt;
&lt;br /&gt;
 Script done on Mon Aug 23 08:39:43 2004&lt;br /&gt;
&lt;br /&gt;
Note that if you were to view this file using [[cat]], you wouldn't see any of these junk characters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
By default, the file script creates is called &amp;lt;tt&amp;gt;typescript&amp;lt;/tt&amp;gt;. You can provide a filename to script, if you have to keep a regular log of the terminal session. ''script filename'' would create a file called filename in the current directory.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=ImageMagick&amp;diff=22086</id>
		<title>ImageMagick</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=ImageMagick&amp;diff=22086"/>
		<updated>2005-10-24T14:59:50Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: corrected the links link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''ImageMagick''' - a GUI, command line tools, and an API make this one handy package.&lt;br /&gt;
&lt;br /&gt;
Although the [[Gimp]] is a more appropriate/feature-rich package for image editing, ImageMagick's fantastic command line tools are indispensable for [[scripting]] and automated processing.&lt;br /&gt;
&lt;br /&gt;
ImageMagick (IM) is a suite of command line tools such as Convert, Composite, Animate, etc. You can use these tools to do basic tasks such as changing the format of an image, rotating an image, cropping and resizing images, etc. IM also has a GUI called Display.&lt;br /&gt;
&lt;br /&gt;
Using ImageMagick, you can make mosaics of images , 2D/3D images. You can also create movie animations.&lt;br /&gt;
&lt;br /&gt;
==Advantages==&lt;br /&gt;
Because IM is a command line suite, its biggest advantage is that it can be used with a number of programming languages. You can make excellent scripts that use the IM suite. There are many programming APIs available for IM such as RubyMagick, chmagick, PHPWand, etc.&lt;br /&gt;
&lt;br /&gt;
==Tips==&lt;br /&gt;
*Inverting colours on a PDF: &lt;br /&gt;
 convert -negate input.pdf output.pdf&lt;br /&gt;
&lt;br /&gt;
==File Formats==&lt;br /&gt;
The ImageMagick suite of command line tools support a wide array of file formats. There is currently support for about 90 different formats. Some of them are,&lt;br /&gt;
 [[pdf]]&lt;br /&gt;
 [[png]]&lt;br /&gt;
 [[gif]]&lt;br /&gt;
 [[jpg]]&lt;br /&gt;
 [[mng]]&lt;br /&gt;
 [[mpg]]  &lt;br /&gt;
 [[tiff]]&lt;br /&gt;
 &lt;br /&gt;
==See also==&lt;br /&gt;
*[[Image manipulation]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://www.imagemagick.org/ Homepage]&lt;br /&gt;
*[http://www.imagemagick.org/script/links.php Links to Howtos and Tutorials]&lt;br /&gt;
*[http://www.imagemagick.org/script/api.php Programming APIs]&lt;br /&gt;
*[http://www.imagemagick.org/script/command-line-tools.php Command line tools]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=CDE&amp;diff=26283</id>
		<title>CDE</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=CDE&amp;diff=26283"/>
		<updated>2005-10-18T09:10:27Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''Common Desktop Environment (CDE)''' is a properietary desktop environment designed for [[UNIX]]. Jointly developed by [[Sun Microsystems]], [[HP]], [[IBM]] and [[Novell]], the CDE was the standard for all UNIX desktops till 2000, when [[KDE]] and [[GNOME]] started to assert their presence.&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>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=CDE&amp;diff=18803</id>
		<title>CDE</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=CDE&amp;diff=18803"/>
		<updated>2005-10-18T09:09:25Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''Common Desktop Environment (CDE)''' is a properietary desktop environment. It was designed for [[UNIX]]. Jointly developed by Sun Microsystems, HP, IBM and Novell, the CDE was the standard for all UNIX desktops till 2000, when [[KDE]] and [[GNOME]] started to assert their presence.&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>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User_talk:Linuxlala&amp;diff=21860</id>
		<title>User talk:Linuxlala</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User_talk:Linuxlala&amp;diff=21860"/>
		<updated>2005-08-04T07:19:45Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Talk to me. Use this page or use my e-mail id to pass on your views to me. My profile is where it should be, [http://www.linuxquestions.org/questions/member.php?s=&amp;amp;action=getinfo&amp;amp;userid=50243 HERE]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=ImageMagick&amp;diff=18886</id>
		<title>ImageMagick</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=ImageMagick&amp;diff=18886"/>
		<updated>2005-08-04T07:10:04Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''ImageMagick''' - a GUI, command line tools, and an API make this one handy package.&lt;br /&gt;
&lt;br /&gt;
Although the [[Gimp]] is a more appropriate/feature-rich package for image editing, ImageMagick's fantastic command line tools are indispensable for [[scripting]] and automated processing.&lt;br /&gt;
&lt;br /&gt;
ImageMagick (IM) is a suite of command line tools such as Convert, Composite, Animate, etc. You can use these tools to do basic tasks such as changing the format of an image, rotating an image, cropping and resizing images, etc. IM also has a GUI called Display.&lt;br /&gt;
&lt;br /&gt;
Using ImageMagick, you can make mosaics of images , 2D/3D images. You can also create movie animations.&lt;br /&gt;
&lt;br /&gt;
==Advantages==&lt;br /&gt;
Because IM is a command line suite, its biggest advantage is that it can be used with a number of programming languages. You can make excellent scripts that use the IM suite. There are many programming APIs available for IM such as RubyMagick, chmagick, PHPWand, etc.&lt;br /&gt;
&lt;br /&gt;
==Tips==&lt;br /&gt;
*Inverting colours on a PDF: &lt;br /&gt;
 convert -negate input.pdf output.pdf&lt;br /&gt;
&lt;br /&gt;
==File Formats==&lt;br /&gt;
The ImageMagick suite of command line tools support a wide array of file formats. There is currently support for about 90 different formats. Some of them are,&lt;br /&gt;
 [[pdf]]&lt;br /&gt;
 [[png]]&lt;br /&gt;
 [[gif]]&lt;br /&gt;
 [[jpg]]&lt;br /&gt;
 [[mng]]&lt;br /&gt;
 [[mpg]]  &lt;br /&gt;
 [[tiff]]&lt;br /&gt;
 &lt;br /&gt;
==See also==&lt;br /&gt;
*[[Image manipulation]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://www.imagemagick.org/ Homepage]&lt;br /&gt;
*[http://www.imagemagick.org/links.php Links to Howtos and Tutorials]&lt;br /&gt;
*[http://www.imagemagick.org/script/api.php Programming APIs]&lt;br /&gt;
*[http://www.imagemagick.org/script/command-line-tools.php Command line tools]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=ImageMagick&amp;diff=18277</id>
		<title>ImageMagick</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=ImageMagick&amp;diff=18277"/>
		<updated>2005-08-04T07:05:02Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added links, advantages, bigger intro&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''ImageMagick''' - a GUI, command line tools, and an API make this one handy package.&lt;br /&gt;
&lt;br /&gt;
Although the [[Gimp]] is a more appropriate/feature-rich package for image editing, ImageMagick's fantastic command line tools are indispensable for [[scripting]] and automated processing.&lt;br /&gt;
&lt;br /&gt;
ImageMagick (IM) is a suite of command line tools such as Convert, Composite, Animate, etc. You can use these tools to do basic tasks such as changing the format of an image, rotating an image, cropping and resizing images, etc. IM also has a GUI called Display.&lt;br /&gt;
&lt;br /&gt;
Using ImageMagick, you can also make mosaics of images, make 2D/3D images. You can also create animations.&lt;br /&gt;
&lt;br /&gt;
==Advantages==&lt;br /&gt;
Because IM is a command line suite, its biggest advantage is that it can be used with a number of programming languages. You can make excellent scripts that use the IM suite. There are many programming APIs available for IM such as RubyMagick, chmagick, PHPWand, etc.&lt;br /&gt;
&lt;br /&gt;
==Tips==&lt;br /&gt;
*Inverting colours on a PDF: &lt;br /&gt;
 convert -negate input.pdf output.pdf&lt;br /&gt;
&lt;br /&gt;
==File Formats==&lt;br /&gt;
The ImageMagick suite of command line tools support a wide array of file formats. There is currently support for about 90 different formats. Some of them are,&lt;br /&gt;
 [[pdf]]&lt;br /&gt;
 [[png]]&lt;br /&gt;
 [[gif]]&lt;br /&gt;
 [[jpg]]&lt;br /&gt;
 [[mng]]&lt;br /&gt;
 [[mpg]]  &lt;br /&gt;
 [[tiff]]&lt;br /&gt;
 &lt;br /&gt;
==See also==&lt;br /&gt;
*[[Image manipulation]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://www.imagemagick.org/ Homepage]&lt;br /&gt;
*[http://www.imagemagick.org/links.php Links to Howtos and Tutorials]&lt;br /&gt;
*[http://www.imagemagick.org/script/api.php Programming APIs]&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Linuxlala&amp;diff=21763</id>
		<title>User:Linuxlala</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Linuxlala&amp;diff=21763"/>
		<updated>2004-10-02T17:33:01Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi all. A brief introduction is in order.&lt;br /&gt;
&lt;br /&gt;
I am a 19 year old engineering student. I live in New Delhi, India, Asia.&lt;br /&gt;
&lt;br /&gt;
All things that have got anything to do with computers interests me. I do not want to limit myself to just being a software engineer or a hardware engineer. I've been working on Linux since early 1997.&lt;br /&gt;
&lt;br /&gt;
My LQ Profile: &lt;br /&gt;
http://www.linuxquestions.org/questions/member.php?s=&amp;amp;action=getinfo&amp;amp;userid=50243&lt;br /&gt;
&lt;br /&gt;
My affero username: linuxala&lt;br /&gt;
http://svcs.affero.net/user-history.php?ll=lq_members&amp;amp;u=linuxlala&lt;br /&gt;
&lt;br /&gt;
As of July 2004, I have turned my attention to technical writing with one of my articles appearing on LinuxJournal.&lt;br /&gt;
&lt;br /&gt;
Cheers.&lt;br /&gt;
&lt;br /&gt;
-Shashank&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7547</id>
		<title>Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7547"/>
		<updated>2004-04-06T11:09:07Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Examples edit&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''GPG''' ('''G'''NU '''P'''rivacy '''G'''uard) is a patent-free, [[GPL]]-licensed version of Pretty Good Privacy(PGP) used to encrypt and decrypt data. This program uses [http://en.wikipedia.org/wiki/Public-key_cryptography public key] [[encryption]] technology to create a &amp;lt;i&amp;gt;key pair&amp;lt;/i&amp;gt;, consisting of a &amp;lt;i&amp;gt;secret key&amp;lt;/i&amp;gt; and a &amp;lt;i&amp;gt;public key&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Your compadres can encrypt messages to you using your public key, which means that this key is available to everyone. Now, these messages can be decrypted using only your secret key, which is why you must safeguard it. So, people can have your public key and you can have the public key of others.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Usage&amp;lt;/u&amp;gt;: &amp;lt;tt&amp;gt;gpg ''[option] command''&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Specific features==&lt;br /&gt;
In addition to encryption and decryption capabilities, GNU Privacy Guard also lets you create &amp;lt;i&amp;gt;digital signatures&amp;lt;/i&amp;gt; do ''key signing'' and create ''webs of trust''.&lt;br /&gt;
&lt;br /&gt;
===Digital Signatures===&lt;br /&gt;
&lt;br /&gt;
The concept of Digital Signatures was hatched to verify the authenticity of a message.  As the name suggests, the message is digitally signed by the sender.  A digital signature is made through a combination of the secret key and the text. Using the senders public key, the message can be verified.  Just like a message encrypted using a public key can only be decrypted by the corresponding secret key, a message verified using your public key could only have been signed using your secret key.  With the verification, the recipient (or the world) knows that the message came from the sender (or at least someone with access to the sender's private key) and has not been changed during the transportation process.  The signature can either be packaged with the original file or sent separately (detached).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;gpg -ab ''filename''&amp;lt;/b&amp;gt;: To create an [[ASCII]] detached signature for a file with your default key:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;gpg -s ''filename''&amp;lt;/b&amp;gt;: To sign a binary file and attach a signature (encoded message/signature):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;gpg --clearsign ''filename''&amp;lt;/b&amp;gt;: To sign an email message (cleartext message with GPG signature attached):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;gpg --verify ''filename''&amp;lt;/b&amp;gt;: To verify the signature, enter the name of the detached signature file or the signed file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Key Signing===&lt;br /&gt;
&lt;br /&gt;
Key signing is act of digitally signing a public key and a userid packet attached to that key. Key signing is done to verify that a given user id and public key really do belong to the person that appears to own the key and who is represented by the user id packet.&lt;br /&gt;
&lt;br /&gt;
You can digitally sign your own public key and an associated id on that key, or another person's public key and associated public key packet.&lt;br /&gt;
&lt;br /&gt;
In essence, key signatures validate public keys. They are an endorsement of validity of a public key and associated id by a third party. Just like we all say and know for sure that Jeremy is the owner of LQ. This is the way in which key signing builds the web of trust. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web of Trust===&lt;br /&gt;
&lt;br /&gt;
A web of trust is a term used to describe the trust relationships between a group of keys. You can think of a key signature as a link, or a strand, in the web of trust. These links are called Trust Paths. Trust paths can be bidirectional or only one way. The ideal web of trust is one in which everyone is connected bidirectionally to everyone else. In effect, everyone trusts that every key does in fact belong to its owner. The web of trust can be thought of as the sum of all the trust paths, or links, between all key holding parties.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[gpg commands]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
*[http://man.linuxquestions.org/index.php?query=gpg&amp;amp;section=0&amp;amp;type=2 gpg man page]&lt;br /&gt;
*[http://www.gnupg.org/ GnuPG home page]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7532</id>
		<title>Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7532"/>
		<updated>2004-04-06T10:27:30Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: added gpg_commands link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''GPG''' ('''G'''NU '''P'''rivacy '''G'''uard) is a patent-free, [[GPL]]-licensed version of Pretty Good Privacy(PGP) used to encrypt and decrypt data. This program uses [http://en.wikipedia.org/wiki/Public-key_cryptography public key] [[encryption]] technology to create a &amp;lt;i&amp;gt;key pair&amp;lt;/i&amp;gt;, consisting of a &amp;lt;i&amp;gt;secret key&amp;lt;/i&amp;gt; and a &amp;lt;i&amp;gt;public key&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Your compadres can encrypt messages to you using your public key, which means that this key is available to everyone. Now, these messages can be decrypted using only your secret key, which is why you must safeguard it. So, people can have your public key and you can have the public key of others.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Usage&amp;lt;/u&amp;gt;: &amp;lt;tt&amp;gt;gpg ''[option] command''&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Specific features==&lt;br /&gt;
In addition to encryption and decryption capabilities, GNU Privacy Guard also lets you create &amp;lt;i&amp;gt;digital signatures&amp;lt;/i&amp;gt; do ''key signing'' and create ''webs of trust''.&lt;br /&gt;
&lt;br /&gt;
===Digital Signatures===&lt;br /&gt;
&lt;br /&gt;
The concept of Digital Signatures was hatched to verify the authenticity of a message.  As the name suggests, the message is digitally signed by the sender.  A digital signature is made through a combination of the secret key and the text. Using the senders public key, the message can be verified.  Just like a message encrypted using a public key can only be decrypted by the corresponding secret key, a message verified using your public key could only have been signed using your secret key.  With the verification, the recipient (or the world) knows that the message came from the sender (or at least someone with access to the sender's private key) and has not been changed during the transportation process.  The signature can either be packaged with the original file or sent separately (detached).&lt;br /&gt;
&lt;br /&gt;
To create an [[ASCII]] detached signature for a file with your default key:&lt;br /&gt;
 gpg -ab ''filename''&lt;br /&gt;
To sign a binary file and attach a signature (encoded message/signature):&lt;br /&gt;
 gpg -s ''filename''&lt;br /&gt;
To sign an email message (cleartext message with GPG signature attached):&lt;br /&gt;
 gpg --clearsign ''filename''&lt;br /&gt;
To verify the signature, enter the name of the detached signature file or the signed file.&lt;br /&gt;
 gpg --verify ''filename''&lt;br /&gt;
&lt;br /&gt;
===Key Signing===&lt;br /&gt;
&lt;br /&gt;
Key signing is act of digitally signing a public key and a userid packet attached to that key. Key signing is done to verify that a given user id and public key really do belong to the person that appears to own the key and who is represented by the user id packet.&lt;br /&gt;
&lt;br /&gt;
You can digitally sign your own public key and an associated id on that key, or another person's public key and associated public key packet.&lt;br /&gt;
&lt;br /&gt;
In essence, key signatures validate public keys. They are an endorsement of validity of a public key and associated id by a third party. Just like we all say and know for sure that Jeremy is the owner of LQ. This is the way in which key signing builds the web of trust. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web of Trust===&lt;br /&gt;
&lt;br /&gt;
A web of trust is a term used to describe the trust relationships between a group of keys. You can think of a key signature as a link, or a strand, in the web of trust. These links are called Trust Paths. Trust paths can be bidirectional or only one way. The ideal web of trust is one in which everyone is connected bidirectionally to everyone else. In effect, everyone trusts that every key does in fact belong to its owner. The web of trust can be thought of as the sum of all the trust paths, or links, between all key holding parties.&lt;br /&gt;
&lt;br /&gt;
See also: [[gpg_commands]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
*[http://man.linuxquestions.org/index.php?query=gpg&amp;amp;section=0&amp;amp;type=2 gpg man page]&lt;br /&gt;
*[http://www.gnupg.org/ GnuPG home page]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7562</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7562"/>
		<updated>2004-04-06T10:25:28Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:: No problem. The key thing was just making sure there was a link out of the article and getting some of the formatting down. If the rearranging was overboard, sorry. But I would add that it's usually 'good form' to have an introductory paragraph above the table of contents, if the page does have a toc. [[User:Digiot|Digiot]] 04:48, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: If the rearranging was overboard, sorry.&lt;br /&gt;
:: You don't have to say that man. I really appreciate the kind of hard work you have put into this wiki. So now, the page has a table of content. Do you mean to have an introductory para above it? If so, then kindly do the needful as I am at a loss of knowledge at how to go about doing this. [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
::: Thanks. :) You might not like this, either, but it can be reverted and something else could be tried. It's just not usual to have the article title also be a header - the &amp;lt;nowiki&amp;gt;==Gpg==&amp;lt;/nowiki&amp;gt;. And if we remove that, leading off with the usage looks odd. So move that down. And then add the intro piece which creates the toc below the first couple of paragraphs. That's one idea. Or you can play with it to try other stuff. This version may break your flow all over again, though. :) [[User:Digiot|Digiot]] 05:09, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: Cool. It looks much better now, thank you. NO, this is not interrupting the flow and I might just stick with this :) On a slightly different note, how do you get to type in the time along with your signature? [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:::: Just add one more tilde. :) Three gets the name and four gets the name and date. I think it's covered in the [[Wiki markup]] page. --Yeah, it is, but I'm going to see if I can make it more prominent. ;) [[User:Digiot|Digiot]] 10:29, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::: Ok. Got it. I tried it as well in the [[sandbox]] page.[[User:Linuxlala|Linuxlala]] 14:03, Apr 5, 2004 (EDT)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Wow, adding subsections automatically generates a table of conmtent.&lt;br /&gt;
Awesome.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
This is a great article, but (you heard that coming, didn't you?) it seems to be more on public-key cryptography in general than on GPG specifically.  Each section should have examples of how GPG can be used to accomplish that task.  --[[User:Snags|Snags]] 15:53, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:Now that I've added usage to one section, does it look like that information interrupts the flow of the sections?  Maybe an extra example section at the bottom would be more appropriate. --[[User:Snags|Snags]] 22:32, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: I think it looks fine the way it is :) Thanks for the examples.I will be adding a list of commands to go.--[[User:Linuxlala|Linuxlala]] 06:25, Apr 6, 2004 (EDT)  &lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7508</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7508"/>
		<updated>2004-04-05T18:03:42Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:: No problem. The key thing was just making sure there was a link out of the article and getting some of the formatting down. If the rearranging was overboard, sorry. But I would add that it's usually 'good form' to have an introductory paragraph above the table of contents, if the page does have a toc. [[User:Digiot|Digiot]] 04:48, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: If the rearranging was overboard, sorry.&lt;br /&gt;
:: You don't have to say that man. I really appreciate the kind of hard work you have put into this wiki. So now, the page has a table of content. Do you mean to have an introductory para above it? If so, then kindly do the needful as I am at a loss of knowledge at how to go about doing this. [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
::: Thanks. :) You might not like this, either, but it can be reverted and something else could be tried. It's just not usual to have the article title also be a header - the &amp;lt;nowiki&amp;gt;==Gpg==&amp;lt;/nowiki&amp;gt;. And if we remove that, leading off with the usage looks odd. So move that down. And then add the intro piece which creates the toc below the first couple of paragraphs. That's one idea. Or you can play with it to try other stuff. This version may break your flow all over again, though. :) [[User:Digiot|Digiot]] 05:09, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: Cool. It looks much better now, thank you. NO, this is not interrupting the flow and I might just stick with this :) On a slightly different note, how do you get to type in the time along with your signature? [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:::: Just add one more tilde. :) Three gets the name and four gets the name and date. I think it's covered in the [[Wiki markup]] page. --Yeah, it is, but I'm going to see if I can make it more prominent. ;) [[User:Digiot|Digiot]] 10:29, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::: Ok. Got it. I tried it as well in the [[sandbox]] page.[[User:Linuxlala|Linuxlala]] 14:03, Apr 5, 2004 (EDT)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Wow, adding subsections automatically generates a table of conmtent.&lt;br /&gt;
Awesome.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7497</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7497"/>
		<updated>2004-04-05T18:02:48Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:: No problem. The key thing was just making sure there was a link out of the article and getting some of the formatting down. If the rearranging was overboard, sorry. But I would add that it's usually 'good form' to have an introductory paragraph above the table of contents, if the page does have a toc. [[User:Digiot|Digiot]] 04:48, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: If the rearranging was overboard, sorry.&lt;br /&gt;
:: You don't have to say that man. I really appreciate the kind of hard work you have put into this wiki. So now, the page has a table of content. Do you mean to have an introductory para above it? If so, then kindly do the needful as I am at a loss of knowledge at how to go about doing this. [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
::: Thanks. :) You might not like this, either, but it can be reverted and something else could be tried. It's just not usual to have the article title also be a header - the &amp;lt;nowiki&amp;gt;==Gpg==&amp;lt;/nowiki&amp;gt;. And if we remove that, leading off with the usage looks odd. So move that down. And then add the intro piece which creates the toc below the first couple of paragraphs. That's one idea. Or you can play with it to try other stuff. This version may break your flow all over again, though. :) [[User:Digiot|Digiot]] 05:09, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: Cool. It looks much better now, thank you. NO, this is not interrupting the flow and I might just stick with this :) On a slightly different note, how do you get to type in the time along with your signature? [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:::: Just add one more tilde. :) Three gets the name and four gets the name and date. I think it's covered in the [[Wiki markup]] page. --Yeah, it is, but I'm going to see if I can make it more prominent. ;) [[User:Digiot|Digiot]] 10:29, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
::::: Ok. Got it. I tried it as well in the [[sandbox]] page.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Wow, adding subsections automatically generates a table of conmtent.&lt;br /&gt;
Awesome.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=LQWiki:Sandbox&amp;diff=8060</id>
		<title>LQWiki:Sandbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=LQWiki:Sandbox&amp;diff=8060"/>
		<updated>2004-04-05T18:01:27Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Sandbox=&lt;br /&gt;
&lt;br /&gt;
== Section ==&lt;br /&gt;
----&lt;br /&gt;
Hello people, this page is for testing.&lt;br /&gt;
&lt;br /&gt;
-Joey&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=== Sub ===&lt;br /&gt;
&lt;br /&gt;
Use the sandbox to test if you are not sure about the wiki markup.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
The following characters are not allowed in page titles:&lt;br /&gt;
&lt;br /&gt;
 &amp;quot; # $ * + &amp;lt; &amp;gt; = @ [ ] \ ^ ` { } | ~&lt;br /&gt;
&lt;br /&gt;
[[User:Jeremy|Jeremy]] 23:46, Mar 11, 2004 (EST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Images work too:&lt;br /&gt;
&lt;br /&gt;
http://images.linuxquestions.org/questions/images/LinuxQuestions-wiki.gif&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Although I expect there might be copyright issues...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
How about this one?&lt;br /&gt;
&lt;br /&gt;
http://www.google.com/images/logo.gif&lt;br /&gt;
&lt;br /&gt;
--------&lt;br /&gt;
&lt;br /&gt;
[[C&amp;amp;#43;&amp;amp;#43;]] ?&lt;br /&gt;
[[C|C++]]&lt;br /&gt;
&lt;br /&gt;
There it is! w00t!&lt;br /&gt;
&lt;br /&gt;
--------&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=LQWiki:Sandbox&amp;diff=7494</id>
		<title>LQWiki:Sandbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=LQWiki:Sandbox&amp;diff=7494"/>
		<updated>2004-04-05T18:01:05Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Sandbox=&lt;br /&gt;
&lt;br /&gt;
== Section ==&lt;br /&gt;
----&lt;br /&gt;
Hello people, this page is for testing.&lt;br /&gt;
&lt;br /&gt;
-Joey&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
=== Sub ===&lt;br /&gt;
&lt;br /&gt;
Use the sandbox to test if you are not sure about the wiki markup.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
The following characters are not allowed in page titles:&lt;br /&gt;
&lt;br /&gt;
 &amp;quot; # $ * + &amp;lt; &amp;gt; = @ [ ] \ ^ ` { } | ~&lt;br /&gt;
&lt;br /&gt;
[[User:Jeremy|Jeremy]] 23:46, Mar 11, 2004 (EST)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Images work too:&lt;br /&gt;
&lt;br /&gt;
http://images.linuxquestions.org/questions/images/LinuxQuestions-wiki.gif&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Although I expect there might be copyright issues...&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
How about this one?&lt;br /&gt;
&lt;br /&gt;
http://www.google.com/images/logo.gif&lt;br /&gt;
&lt;br /&gt;
--------&lt;br /&gt;
&lt;br /&gt;
[[C&amp;amp;#43;&amp;amp;#43;]] ?&lt;br /&gt;
[[C|C++]]&lt;br /&gt;
&lt;br /&gt;
There it is! w00t!&lt;br /&gt;
&lt;br /&gt;
--------&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]] 14:01, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7469</id>
		<title>Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7469"/>
		<updated>2004-04-05T12:06:02Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Spelling correction.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''GPG''' ('''G'''NU '''P'''rivacy '''G'''uard) is a patent-free, GPL-licensed version of Pretty Good Privacy(PGP) used to encrypt and decrypt data. This program uses public key [[encryption]] technology to create a &amp;lt;i&amp;gt;key pair&amp;lt;/i&amp;gt;, consisting of a &amp;lt;i&amp;gt;secret key&amp;lt;/i&amp;gt; and a &amp;lt;i&amp;gt;public key&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Your compadres can encrypt messages to you using your public key, which means that this key is available to everyone. Now, these messages can be decrypted using only your secret key, which is why you must safeguard it. So, people can have your public key and you can have the public key of others.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Usage&amp;lt;/u&amp;gt;: &amp;lt;tt&amp;gt;gpg ''[option] command''&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Specific features==&lt;br /&gt;
In addition to encryption and decryption capabilities, GNU Privacy Guard also lets you create &amp;lt;i&amp;gt;digital signatures&amp;lt;/i&amp;gt; do ''key signing'' and create ''webs of trust''.&lt;br /&gt;
&lt;br /&gt;
===Digital Signatures===&lt;br /&gt;
&lt;br /&gt;
The concept of Digital Signatures was hatched to verify the authenticity of a message. As the name suggests, the message is digitally signed by the sender. A digital signature is made through a combination of the secret key and the text. Using the senders public key, the message can be verified. Just like a message encrypted using your public key can only be decrypted by your secret key, a message encrypted using your secret key can only be decrypted using your public key.&lt;br /&gt;
&lt;br /&gt;
So you know that the message comes from the sender and has not been changed during the transportation process.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Key Signing===&lt;br /&gt;
&lt;br /&gt;
Key signing is act of digitally signing a public key and a userid packet attached to that key. Key signing is done to verify that a given user id and public key really do belong to the person that appears to own the key and who is represented by the user id packet.&lt;br /&gt;
&lt;br /&gt;
You can digitally sign your own public key and an associated id on that key, or another person's public key and associated public key packet.&lt;br /&gt;
&lt;br /&gt;
In essence, key signatures validate public keys. They are an endorsement of validity of a public key and associated id by a third party. Just like we all say and know for sure that Jeremy is the owner of LQ. This is the way in which key signing builds the web of trust. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web of Trust===&lt;br /&gt;
&lt;br /&gt;
A web of trust is a term used to describe the trust relationships between a group of keys. You can think of a key signature as a link, or a strand, in the web of trust. These links are called Trust Paths. Trust paths can be bidirectional or only one way. The ideal web of trust is one in which everyone is connected bidirectionally to everyone else. In effect, everyone trusts that every key does in fact belong to its owner. The web of trust can be thought of as the sum of all the trust paths, or links, between all key holding parties.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7467</id>
		<title>Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7467"/>
		<updated>2004-04-05T12:05:00Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Made some changes in the content.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''GPG''' ('''G'''NU '''P'''rivacy '''G'''uard) is a patent-free, GPL-licensed version of Pretty Good Privacy(PGP) used to encrypt and decrypt data. This program uses public key [[encryption]] technology to create a &amp;lt;i&amp;gt;key pair&amp;lt;/i&amp;gt;, consisting of a &amp;lt;i&amp;gt;secret key&amp;lt;/i&amp;gt; and a &amp;lt;i&amp;gt;public key&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Your compadres can encrypt messages to you using your public key, which means that this key is available to everyone. Now, these messages can be decrypted using only your secret key, which is why you must safeguard it. So, people can have your public key and you can have the public key of others.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Usage&amp;lt;/u&amp;gt;: &amp;lt;tt&amp;gt;gpg ''[option] command''&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Specific features==&lt;br /&gt;
In addition to encryption and decryption capabilities, GNU Privacy Guard also lets you create &amp;lt;i&amp;gt;digital signatures&amp;lt;/i&amp;gt; do ''key signing'' and create ''webs of trust''.&lt;br /&gt;
&lt;br /&gt;
===Digital Signatures===&lt;br /&gt;
&lt;br /&gt;
The concept of Digital Signatures was hatched to verify the authenticity of a message. As the name suggests, the message is digitally signed by the sender. A digital signature is made through a combination of the secret key and the text. Using the senders public key, the message can be verified. Just like a message encrypted using your public key can only be decrypted by your secret key, a message encrypted using your secret key can only be decrypted using your public key.&lt;br /&gt;
&lt;br /&gt;
So you know that the message comes from the sender and has not been changed during the transportation process.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Key Signing===&lt;br /&gt;
&lt;br /&gt;
Key signing is act of digitally signing a public key and a userid packet attached to that key. Key signing is done to verify that a given user id and public key really do belong to the person that appears to own the key and who is represented by the user id packet.&lt;br /&gt;
&lt;br /&gt;
You can digitally sign your own public key and an associated id on that key, or another person's public key and associated public key packet.&lt;br /&gt;
&lt;br /&gt;
In essense, key signatures validate public keys. They are an endorsement of validity of a public key and associated id by a third party. Just like we all say and know for sure that Jeremy is the owner of LQ. This is the way in which key signing builds the web of trust. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web of Trust===&lt;br /&gt;
&lt;br /&gt;
A web of trust is a term used to describe the trust relationships between a group of keys. You can think of a key signature as a link, or a strand, in the web of trust. These links are called Trust Paths. Trust paths can be bidirectional or only one way. The ideal web of trust is one in which everyone is connected bidirectionally to everyone else. In effect, everyone trusts that every key does in fact belong to its owner. The web of trust can be thought of as the sum of all the trust paths, or links, between all key holding parties.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7481</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7481"/>
		<updated>2004-04-05T11:57:21Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:: No problem. The key thing was just making sure there was a link out of the article and getting some of the formatting down. If the rearranging was overboard, sorry. But I would add that it's usually 'good form' to have an introductory paragraph above the table of contents, if the page does have a toc. [[User:Digiot|Digiot]] 04:48, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: If the rearranging was overboard, sorry.&lt;br /&gt;
:: You don't have to say that man. I really appreciate the kind of hard work you have put into this wiki. So now, the page has a table of content. Do you mean to have an introductory para above it? If so, then kindly do the needful as I am at a loss of knowledge at how to go about doing this. [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
::: Thanks. :) You might not like this, either, but it can be reverted and something else could be tried. It's just not usual to have the article title also be a header - the &amp;lt;nowiki&amp;gt;==Gpg==&amp;lt;/nowiki&amp;gt;. And if we remove that, leading off with the usage looks odd. So move that down. And then add the intro piece which creates the toc below the first couple of paragraphs. That's one idea. Or you can play with it to try other stuff. This version may break your flow all over again, though. :) [[User:Digiot|Digiot]] 05:09, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
::: Cool. It looks much better now, thank you. NO, this is not interrupting the flow and I might just stick with this :) On a slightly different note, how do you get to type in the time along with your signature? [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Wow, adding subsections automatically generates a table of conmtent.&lt;br /&gt;
Awesome.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7451</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7451"/>
		<updated>2004-04-05T08:54:28Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:: No problem. The key thing was just making sure there was a link out of the article and getting some of the formatting down. If the rearranging was overboard, sorry. But I would add that it's usually 'good form' to have an introductory paragraph above the table of contents, if the page does have a toc. [[User:Digiot|Digiot]] 04:48, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: If the rearranging was overboard, sorry.&lt;br /&gt;
:: You don't have to say that man. I really appreciate the kind of hard work you have put into this wiki. So now, the page has a table of content. Do you mean to have an introductory para above it? If so, then kindly do the needful as I am at a loss of knowledge at how to go about doing this. [[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Wow, adding subsections automatically generates a table of conmtent.&lt;br /&gt;
Awesome.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7446</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7446"/>
		<updated>2004-04-05T08:54:03Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:: No problem. The key thing was just making sure there was a link out of the article and getting some of the formatting down. If the rearranging was overboard, sorry. But I would add that it's usually 'good form' to have an introductory paragraph above the table of contents, if the page does have a toc. [[User:Digiot|Digiot]] 04:48, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: If the rearranging was overboard, sorry.&lt;br /&gt;
:: You don't have to say that man. I really appreciate the kind of hard work you have put into this wiki. So now, the page has a table of content. Do you mean to have an introductory para above it? If so, then kindly do the needful as I am at a loss of knowledge at how to go about doing this. &lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Wow, adding subsections automatically generates a table of conmtent.&lt;br /&gt;
Awesome.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7445</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7445"/>
		<updated>2004-04-05T08:53:33Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
:: No problem. The key thing was just making sure there was a link out of the article and getting some of the formatting down. If the rearranging was overboard, sorry. But I would add that it's usually 'good form' to have an introductory paragraph above the table of contents, if the page does have a toc. [[User:Digiot|Digiot]] 04:48, Apr 5, 2004 (EDT)&lt;br /&gt;
&lt;br /&gt;
:: If the rearranging was overboard, sorry.&lt;br /&gt;
You don't have to say that man. I really appreciate the kind of hard work you have put into this wiki. So now, the page has a table of content. Do you mean to have an introductory para above it? If so, then kindly do the needful as I am at a loss of knowledge at how to go about doing this. &lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Wow, adding subsections automatically generates a table of conmtent.&lt;br /&gt;
Awesome.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7442</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7442"/>
		<updated>2004-04-05T08:33:05Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Wow, adding subsections automatically generates a table of conmtent.&lt;br /&gt;
Awesome.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7450</id>
		<title>Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7450"/>
		<updated>2004-04-05T08:31:37Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==gpg==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Usage&amp;lt;/u&amp;gt;: &amp;lt;tt&amp;gt;gpg ''[option] command''&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''GPG''' ('''G'''NU '''P'''rivacy '''G'''uard) is a patent-free, GPL-licensed version of Pretty Good Privacy(PGP) used to encrypt and decrypt data. This program uses public key [[encryption]] technology to create a &amp;lt;i&amp;gt;key pair&amp;lt;/i&amp;gt;, consisting of a &amp;lt;i&amp;gt;secret key&amp;lt;/i&amp;gt; and a &amp;lt;i&amp;gt;public key&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Your compadres can encrypt messages to you using your public key, which means that this key is available to everyone. Now, these messages can be decrypted using only your secret key, which is why you must safeguard it. So, people can have your public key and you can have the public key of others.&lt;br /&gt;
&lt;br /&gt;
In addition to encryption and decryption capabilities, GNU Privacy Guard also lets you create &amp;lt;i&amp;gt;digital signatures&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Digital Signatures===&lt;br /&gt;
&lt;br /&gt;
In order to prove the authenticity of a message, the concept of Digital Signatures was invented. As the name suggests, the message is digitally signed by the sender. By using this signature you can check the authenticity of the message. Also information or data can be verified as coming from a legitimate source and thus be regarded as real.&lt;br /&gt;
&lt;br /&gt;
A digital signature is made through a combination of the secret key and the text. Using the senders public key, the message can be verified. Just like a message encrypted using your public key can only be decrypted by your secret key, a message encrypted using your secret key can only be decrypted using your public key. So you know that the message comes from the sender and has not been changed during the transportation process.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Key Signing===&lt;br /&gt;
&lt;br /&gt;
Key signing is act of digitally signing a public key and a userid packet which is attached to that key. Key signing is done to verify that a given user id and public key really do belong to the entity that appears to own the key and who is represented by the user id packet.&lt;br /&gt;
&lt;br /&gt;
You can digitally sign your own public key and an associated id on that key, or another entity's public key and associated public key packet.&lt;br /&gt;
&lt;br /&gt;
In a sense, key signatures validate public keys. They are an endorsement of validity of a public key and associated id by a third party. This is the way in which key signing builds the web of trust. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web of Trust===&lt;br /&gt;
&lt;br /&gt;
A web of trust is a term used to describe the trust relationships between a group of keys. A key signature is a link, or strand if you will, in the web of trust. These links are called Trust Paths. Trust paths can be bidirectional or only one way. The ideal web of trust is one in which everyone is connected bidirectionally to everyone else. In effect, everyone trusts that every key does in fact belong to its owner. The web of trust can be thought of as the sum of all the trust paths, or links, between all key holding parties.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7438</id>
		<title>Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7438"/>
		<updated>2004-04-05T08:30:12Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added more details.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==gpg==&lt;br /&gt;
&lt;br /&gt;
Usage: &amp;lt;tt&amp;gt;gpg ''[option] command''&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''GPG''' ('''G'''NU '''P'''rivacy '''G'''uard) is a patent-free, GPL-licensed version of Pretty Good Privacy(PGP) used to encrypt and decrypt data. This program uses public key [[encryption]] technology to create a &amp;lt;i&amp;gt;key pair&amp;lt;/i&amp;gt;, consisting of a &amp;lt;i&amp;gt;secret key&amp;lt;/i&amp;gt; and a &amp;lt;i&amp;gt;public key&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Your compadres can encrypt messages to you using your public key, which means that this key is available to everyone. Now, these messages can be decrypted using only your secret key, which is why you must safeguard it. So, people can have your public key and you can have the public key of others.&lt;br /&gt;
&lt;br /&gt;
In addition to encryption and decryption capabilities, GNU Privacy Guard also lets you create &amp;lt;i&amp;gt;digital signatures&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Digital Signatures===&lt;br /&gt;
&lt;br /&gt;
In order to prove the authenticity of a message, the concept of Digital Signatures was invented. As the name suggests, the message is digitally signed by the sender. By using this signature you can check the authenticity of the message. Also information or data can be verified as coming from a legitimate source and thus be regarded as real.&lt;br /&gt;
&lt;br /&gt;
A digital signature is made through a combination of the secret key and the text. Using the senders public key, the message can be verified. Just like a message encrypted using your public key can only be decrypted by your secret key, a message encrypted using your secret key can only be decrypted using your public key. So you know that the message comes from the sender and has not been changed during the transportation process.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Key Signing===&lt;br /&gt;
&lt;br /&gt;
Key signing is act of digitally signing a public key and a userid packet which is attached to that key. Key signing is done to verify that a given user id and public key really do belong to the entity that appears to own the key and who is represented by the user id packet.&lt;br /&gt;
&lt;br /&gt;
You can digitally sign your own public key and an associated id on that key, or another entity's public key and associated public key packet.&lt;br /&gt;
&lt;br /&gt;
In a sense, key signatures validate public keys. They are an endorsement of validity of a public key and associated id by a third party. This is the way in which key signing builds the web of trust. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Web of Trust===&lt;br /&gt;
&lt;br /&gt;
A web of trust is a term used to describe the trust relationships between a group of keys. A key signature is a link, or strand if you will, in the web of trust. These links are called Trust Paths. Trust paths can be bidirectional or only one way. The ideal web of trust is one in which everyone is connected bidirectionally to everyone else. In effect, everyone trusts that every key does in fact belong to its owner. The web of trust can be thought of as the sum of all the trust paths, or links, between all key holding parties.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7439</id>
		<title>Talk:Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Gpg&amp;diff=7439"/>
		<updated>2004-04-05T08:19:49Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Digiot,&lt;br /&gt;
&lt;br /&gt;
As much as I appreciate your additions to this page, I am sorry to report that I might have to revert back some changes made by you. 'Coz they kindda interrupt the flow of the page.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7433</id>
		<title>Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7433"/>
		<updated>2004-04-05T07:27:48Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added details&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==gpg==&lt;br /&gt;
&lt;br /&gt;
gpg [option] &amp;lt;i&amp;gt;command&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Encrypts and decrypts data using GNU Privacy Guard, a patent-free, GPL-licensed version of Pretty Good Privacy(PGP). This program uses public key encryption technology to create a &amp;lt;i&amp;gt;key pair&amp;lt;/i&amp;gt;, consisting of a &amp;lt;i&amp;gt;secret key&amp;lt;/i&amp;gt; and a &amp;lt;i&amp;gt;public key&amp;lt;/i&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Your compadres can encrypt messages to you using your public key, which means that this key is available to everyone. Now, these messages can be decrypted using only your secret key, which is why you must safeguard it. So, people can have your public key and you can have the public key of others.&lt;br /&gt;
&lt;br /&gt;
In addition to encryption and decryption capabilities, GNU Privacy Guard also lets you create &amp;lt;i&amp;gt;digital signatures&amp;lt;/i&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7424</id>
		<title>Gpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gpg&amp;diff=7424"/>
		<updated>2004-04-04T15:21:56Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;gpg&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
gpg [option] &amp;lt;i&amp;gt;command&amp;lt;/i&amp;gt;&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:All_commands&amp;diff=21966</id>
		<title>Talk:All commands</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:All_commands&amp;diff=21966"/>
		<updated>2004-03-09T05:05:25Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here's a suggestion for a new format:&lt;br /&gt;
&lt;br /&gt;
[[a commands|A]]&lt;br /&gt;
*[[alias]], [[at]], [[anacron]], [[apropos]]  ''[[a commands|More]]''&lt;br /&gt;
&lt;br /&gt;
The goal is to make the &amp;quot;most important&amp;quot; commands--the ones that crop up in normal use--quickly accessible.  Of course,  there will be disagreement over which ones are the most important,  but I don't see that being a major problem.&lt;br /&gt;
&lt;br /&gt;
It would also get rid of the somewhat repetitive &amp;quot;Commands beginning with the letter [letter]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Anyways,  that's what I'm going to do.  If anyone's really unhappy about it,  go ahead and revert.&lt;br /&gt;
&lt;br /&gt;
[[User:Chalupamaster92|Chalupamaster92]] 12:21, Mar 7, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
This is a good collection and nice effort by you but how about also providing the link to the site where you got all this from.&lt;br /&gt;
&lt;br /&gt;
Plus I will be adding links to these commands. Feel free to join in.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I have broken this page down as each time I wanted to edit, it said that the page is too big, break it down. I also kinda like the way it looks now. Easy accesibility. &lt;br /&gt;
&lt;br /&gt;
Now it would be easy for people to contribute or edit the commands.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Beginning to look ok. ==&lt;br /&gt;
&lt;br /&gt;
Finally it looks decent. Good job people.&amp;lt;br&amp;gt;&lt;br /&gt;
[[User:Streg|Streg]] 13:08, Mar 7, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Just a point, but shouldn't we make a distinction between an ''actual'' command like &amp;quot;kill&amp;quot; or &amp;quot;alias&amp;quot; and a call to an external binary like &amp;quot;ls&amp;quot; or &amp;quot;cat&amp;quot;? That could either be useful or it could confuse people :-\&lt;br /&gt;
&lt;br /&gt;
[[User:Moth7|Moth7]] 13:24, Mar 7, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
It all lokks very cool now. Nice. But, just one thing. You have added links to all the commands. Are you going to explain them all as well?? I mean, I thought that we should add links to only those commands which already have a page or whicg you intend to explain sooner or later. &lt;br /&gt;
&lt;br /&gt;
But making links to all the commands is not such a good idea as not all of these commands need a page of their own to explain switches and things.&lt;br /&gt;
&lt;br /&gt;
I am not against this and I really like the new look. But all I am saying is that since these pages have been created we shouold all take out some time and give proper description of these commands.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]] Mar 9&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Encryption&amp;diff=4123</id>
		<title>Encryption</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Encryption&amp;diff=4123"/>
		<updated>2004-03-06T11:18:37Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;b&amp;gt;Encrypting Files&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*[[mcrypt]]- Encrypts the specified file.&lt;br /&gt;
*[[gpg]]- Encrypts data using GNU Privacy Guard.&lt;br /&gt;
*[[mimencode]]- Encodes the specified binary file to on eof the ASCII encoding formats.&lt;br /&gt;
*[[uuencode]]- Encodes the specified binary file so that it can be transferred over a medium which does not support non-ASCII characters.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Decrypting Files&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*[[gpg]]- Dencrypts data using GNU Privacy Guard.&lt;br /&gt;
*[[mdecrypt]]- Decrypts any file with the .enc suffix, that was encrypted by [[mcrypt]].&lt;br /&gt;
*[[uudecode]]- Decodes the [[uuencode]] coded file.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Bunzip2&amp;diff=22245</id>
		<title>Bunzip2</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Bunzip2&amp;diff=22245"/>
		<updated>2004-03-06T11:16:56Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Spelling corrections.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===bunzip2===&lt;br /&gt;
&lt;br /&gt;
bunzip2 [option] &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Decompresses the specified filename using a sophisticated algorithm that is up to 30 percent faster than that used by [[gzip]].&lt;br /&gt;
&lt;br /&gt;
By default, &amp;lt;b&amp;gt;bunzip2&amp;lt;/b&amp;gt; does nor overwrite existing output files. Use the --force option to override this setting. However, the program deletes input files by default. Use --keep option to override this setting and writes the compressed file with the .bz2 extension.&lt;br /&gt;
&lt;br /&gt;
===OPTIONS===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;-c,--compress&amp;lt;/b&amp;gt;: Force binzip2 to compress the files. This is same as running [[bzip2]].&lt;br /&gt;
*&amp;lt;b&amp;gt;-f,--force&amp;lt;/b&amp;gt;: Force overwrite of output files.&lt;br /&gt;
*&amp;lt;b&amp;gt;-k,--keep&amp;lt;/b&amp;gt;: Keep the input files.&lt;br /&gt;
*&amp;lt;b&amp;gt;-L,--license&amp;lt;/b&amp;gt;: Displays the license terms and conditions&lt;br /&gt;
*&amp;lt;b&amp;gt;-V,--version&amp;lt;/b&amp;gt;: Displays the software version.&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;bunzip2 off.tar.bz2&amp;lt;/b&amp;gt;: Decompresses the specified file.&lt;br /&gt;
*&amp;lt;b&amp;gt;bunzip2 --keep off.tar.bz2&amp;lt;/b&amp;gt;: Decompresses the specified file without deleting the input file.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Bunzip2&amp;diff=1893</id>
		<title>Bunzip2</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Bunzip2&amp;diff=1893"/>
		<updated>2004-03-06T11:15:34Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===bunzip2===&lt;br /&gt;
&lt;br /&gt;
bunzip2 [option] &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Decompreses the specified filenaem using a sophisticated algorithm that is up to 30 percent faster than that used by [[gzip]].&lt;br /&gt;
&lt;br /&gt;
By default, &amp;lt;b&amp;gt;bunzip2&amp;lt;/b&amp;gt; does nor overwrite existing output files. Use the --force option to override this setting. However, the program deletes input files by default. Use --keep option to override this setting and writes the compressed file with the .bz2 extension.&lt;br /&gt;
&lt;br /&gt;
===OPTIONS===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;-c,--compress&amp;lt;/b&amp;gt;: Force binzip2 to compress the files. This is asmae as running [[bzip2]].&lt;br /&gt;
*&amp;lt;b&amp;gt;-f,--force&amp;lt;/b&amp;gt;: Force oberwrite of output files.&lt;br /&gt;
*&amp;lt;b&amp;gt;-k,--kepp&amp;lt;/b&amp;gt;: Keep the input files.&lt;br /&gt;
*&amp;lt;b&amp;gt;-L,--license&amp;lt;/b&amp;gt;: Displays the license terms and conditions&lt;br /&gt;
*&amp;lt;b&amp;gt;-V,--version&amp;lt;/b&amp;gt;: Displays the software version.&lt;br /&gt;
&lt;br /&gt;
===EXAMPLES===&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;bunzip2 off.tar.bz2&amp;lt;/b&amp;gt;: Decompresses the specified file.&lt;br /&gt;
*&amp;lt;b&amp;gt;bunzip2 --keep off.tar.bz2&amp;lt;/b&amp;gt;: Decompresses the specified file without deleting the input file.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Zmore&amp;diff=11137</id>
		<title>Zmore</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Zmore&amp;diff=11137"/>
		<updated>2004-03-06T11:04:29Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===zmore===&lt;br /&gt;
&lt;br /&gt;
zmore &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Displays filename, a file compressed with [[gzip]] or [[compress]] without decompressing the file.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Zcat&amp;diff=6568</id>
		<title>Zcat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Zcat&amp;diff=6568"/>
		<updated>2004-03-06T11:02:06Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===zcat===&lt;br /&gt;
&lt;br /&gt;
zcat &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Displays the specified [[gzip]] compressed file without decompressing the file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;EXAMPLE&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
zcat test.gz | less - Displays the compressed file(test.gz) and pipes the output to [[less]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;See also&amp;lt;/u&amp;gt;: [[zmore]]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Gunzip&amp;diff=6567</id>
		<title>Gunzip</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Gunzip&amp;diff=6567"/>
		<updated>2004-03-06T10:58:30Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===gunzip===&lt;br /&gt;
&lt;br /&gt;
gunzip [option] &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Decompresses the specified filename. This utility can be used to decompress files created with: [[compress]](.Z), [[gzip]](.gz,.tgz) and [[zip]](.zip).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;OPTIONS&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;-f, --force&amp;lt;/b&amp;gt;: Force overwrite to output files.  &lt;br /&gt;
*&amp;lt;b&amp;gt;-h, --help&amp;lt;/b&amp;gt;: Displays available options.&lt;br /&gt;
*&amp;lt;b&amp;gt;-l, --list&amp;lt;/b&amp;gt;: For each compressed file, list the compressed and uncompressed size, compression ratio and name of the uncompressed file.&lt;br /&gt;
*&amp;lt;b&amp;gt;-L, --license&amp;lt;/b&amp;gt;: Displays the software version and license terms and conditions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;See also&amp;lt;/u&amp;gt;: [[zcat]], [[zmore]]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Main_Page&amp;diff=3034</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Main_Page&amp;diff=3034"/>
		<updated>2004-03-06T07:11:43Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Main_Page&amp;diff=1158</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Main_Page&amp;diff=1158"/>
		<updated>2004-03-05T16:38:54Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Main_Page&amp;diff=1157</id>
		<title>Talk:Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Main_Page&amp;diff=1157"/>
		<updated>2004-03-05T16:37:13Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=LQWiki:Sandbox&amp;diff=1163</id>
		<title>LQWiki:Sandbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=LQWiki:Sandbox&amp;diff=1163"/>
		<updated>2004-03-05T16:33:01Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Checked some stuff.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello people, this page is for testing.&lt;br /&gt;
&lt;br /&gt;
-Joey&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hey, this sandbox really works. Use it to test if you are not sure about the wiki markup.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hi There Linux people from Barbados.  Come play in our real sandboxes!&lt;br /&gt;
Linux Rules!&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=LQWiki:Sandbox&amp;diff=1155</id>
		<title>LQWiki:Sandbox</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=LQWiki:Sandbox&amp;diff=1155"/>
		<updated>2004-03-05T16:32:36Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello people, this page is for testing.&lt;br /&gt;
&lt;br /&gt;
-Joey&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hey, this sandbox really works. Use it to test if you are not sure about the wiki markup.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hi There Linux people from Barbados.  Come play in our real sandboxes!&lt;br /&gt;
Linux Rules!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
# Just want to see if hash is recognised.&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:All_commands&amp;diff=2962</id>
		<title>Talk:All commands</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:All_commands&amp;diff=2962"/>
		<updated>2004-03-05T09:55:13Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a good collection and nice effort by you but how about also providing the link to the site where you got all this from.&lt;br /&gt;
&lt;br /&gt;
Plus I will be adding links to these commands. Feel free to join in.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I have broken this page down as each time I wanted to edit, it said that the page is too big, break it down. I also kinda like the way it looks now. Easy accesibility. &lt;br /&gt;
&lt;br /&gt;
Now it would be easy for people to contribute or edit the commands.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Etc_files&amp;diff=4905</id>
		<title>Etc files</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Etc_files&amp;diff=4905"/>
		<updated>2004-03-05T09:32:20Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Coorected spacing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;b&amp;gt;/etc commands&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*/etc/hosts - Configures names and aliases of IP-addresses. Fields should be separated with Tab or white space.&lt;br /&gt;
&lt;br /&gt;
*/etc/inittab - Controls process dispatching. Used by init.&lt;br /&gt;
&lt;br /&gt;
*/etc/lilo.conf - Is the configuration file used by the Linux Loader while booting.&lt;br /&gt;
&lt;br /&gt;
*/etc/modules.conf - Loads modules specific options at startup.&lt;br /&gt;
&lt;br /&gt;
*/etc/nologin - Is a text file that, if it exists in /etc/, will prevent non-root users from logging in. If a user attempts to login, it will be shown the contents of the file, and then be disconnected.&lt;br /&gt;
&lt;br /&gt;
*/etc/nsswitch.conf - Specifies how the lookup for different databases are performed and in what order. Lookups are done left to right.&lt;br /&gt;
&lt;br /&gt;
*/etc/printcap - Describes printers and allows dynamic addition and deletion of printers by the spooling system.&lt;br /&gt;
&lt;br /&gt;
*/etc/resolv.conf - Configures DNS name servers to use for hostname lookups.&lt;br /&gt;
&lt;br /&gt;
*/etc/sysconfig/network - Configures the system's network. Specifies hostname and gateway.&lt;br /&gt;
&lt;br /&gt;
*/etc/xinetd.conf - Contains the configuration for the extended internet services started by the xinetd command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt; All of these commands are in Chapter 9 of the Universal Command Guide for Operating Systems.&amp;lt;/i&amp;gt;&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Etc_files&amp;diff=1128</id>
		<title>Etc files</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Etc_files&amp;diff=1128"/>
		<updated>2004-03-05T09:30:54Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;b&amp;gt;/etc commands&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*/etc/hosts - Configures names and aliases of IP-addresses. Fields should be separated with Tab or white space. &lt;br /&gt;
&lt;br /&gt;
*/etc/inittab - Controls process dispatching. Used by init. &lt;br /&gt;
 &lt;br /&gt;
*/etc/lilo.conf - Is the configuration file used by the Linux Loader while booting. &lt;br /&gt;
 &lt;br /&gt;
*/etc/modules.conf - Loads modules specific options at startup. &lt;br /&gt;
 &lt;br /&gt;
*/etc/nologin - Is a text file that, if it exists in /etc/, will prevent non-root users from logging in. If a user attempts to login, it will be shown the contents of the file, and then be disconnected. &lt;br /&gt;
&lt;br /&gt;
*/etc/nsswitch.conf - Specifies how the lookup for different databases are performed and in what order. Lookups are done left to right. &lt;br /&gt;
 &lt;br /&gt;
*/etc/printcap - Describes printers and allows dynamic addition and deletion of printers by the spooling system. &lt;br /&gt;
 &lt;br /&gt;
*/etc/resolv.conf - Configures DNS name servers to use for hostname lookups. &lt;br /&gt;
 &lt;br /&gt;
*/etc/sysconfig/network - Configures the system's network. Specifies hostname and gateway. &lt;br /&gt;
 &lt;br /&gt;
*/etc/xinetd.conf - Contains the configuration for the extended internet services started by the xinetd command. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;i&amp;gt; All of these commands are in Chapter 9 of the Universal Command Guide for Operating Systems.&amp;lt;/i&amp;gt;&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:Programming_tips_%26_tricks&amp;diff=1151</id>
		<title>Talk:Programming tips &amp; tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:Programming_tips_%26_tricks&amp;diff=1151"/>
		<updated>2004-03-05T08:16:39Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Love the ifconfig&amp;gt;grep&amp;gt;awk command! But it's not necessary to be root on my box - I don't think my perms are screwed up, but it's possible.&lt;br /&gt;
&lt;br /&gt;
[[User:Digiot|Digiot]] 17:26, Mar 1, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Me again. This section seems kind of sparse. Is it maybe due to people not wanting to just plop down any old tip in the middle of nowhere? What do folks think of the idea of moving 'scripting' over here as 'shell scripting' and coming up with some more subcategories. I know it seems paradoxical to categorize very little content, but maybe that'll shake loose some tips from folks.&lt;br /&gt;
&lt;br /&gt;
?&lt;br /&gt;
&lt;br /&gt;
[[User:Digiot|Digiot]] 01:41, Mar 5, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
That's a pretty big maybe Digiot. But having shell scripting here would be nice. How about letting folks jot down other tips too. I mean not restricting folks to just Programming. Maybe tips about using some GUI tool and things like that.&lt;br /&gt;
&lt;br /&gt;
What say?&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Talk:All_commands&amp;diff=1134</id>
		<title>Talk:All commands</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Talk:All_commands&amp;diff=1134"/>
		<updated>2004-03-05T08:10:29Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Just a suggestion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a good collection and nice effort by you but how about also providing the link to the site where you got all this from.&lt;br /&gt;
&lt;br /&gt;
Plus I will be adding links to these commands. Feel free to join in.&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Zipinfo&amp;diff=6419</id>
		<title>Zipinfo</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Zipinfo&amp;diff=6419"/>
		<updated>2004-03-04T13:37:13Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: The WIKI said - GIMME MORE - So here I am&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;zipinfo [option] [archive] &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Displays information about the files stored in a zip archive. If you specify a filename, the utility shows information about the specified file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;OPTIONS&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;-1&amp;lt;/b&amp;gt;: List only filenames.&lt;br /&gt;
*&amp;lt;b&amp;gt;-2&amp;lt;/b&amp;gt;: List the filenames, headers, trailers and comments.&lt;br /&gt;
*&amp;lt;b&amp;gt;-m&amp;lt;/b&amp;gt;: List information in a format similar to &amp;lt;b&amp;gt;ls -l&amp;lt;/b&amp;gt;&lt;br /&gt;
*&amp;lt;b&amp;gt;-v&amp;lt;/b&amp;gt;: List information in a verbose, multipage format.&lt;br /&gt;
*&amp;lt;b&amp;gt;-z&amp;lt;/b&amp;gt;: Show the comments if any.&lt;br /&gt;
&lt;br /&gt;
See also: [[zipnote]]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Zip&amp;diff=12454</id>
		<title>Zip</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Zip&amp;diff=12454"/>
		<updated>2004-03-04T13:30:29Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: The WIKI said - GIMME MORE - So here I am&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;b&amp;gt;zip&amp;lt;/b&amp;gt; [option] [archive] &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Archives and compresses files using a format compatible with PKZIP and WinZip. Unlike [[Linux]] or UNIX compression and archiving utilities, &amp;lt;b&amp;gt;zip&amp;lt;/b&amp;gt; combines archiving and compression.&lt;br /&gt;
&lt;br /&gt;
With the &amp;lt;b&amp;gt;-R&amp;lt;/b&amp;gt; option, you can quickly compress all the files in the working directory and all it's associated subdirectories. By default, zip does not delete input files. To decompress files use [[unzip]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;OPTIONS&amp;lt;b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;-b &amp;lt;i&amp;gt;pathname&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;: Use the specified pathname for the temporary zip archive&lt;br /&gt;
*&amp;lt;b&amp;gt;-c&amp;lt;/b&amp;gt;: Add one line comments to each file. You will be prompted to add the comments after the file operations are complete.&lt;br /&gt;
*&amp;lt;b&amp;gt;-d&amp;lt;/b&amp;gt;: Delete the specified files from an existing archive.&lt;br /&gt;
*&amp;lt;b&amp;gt;-D&amp;lt;/b&amp;gt;: Omit Directory names from archive.&lt;br /&gt;
*&amp;lt;b&amp;gt;-e&amp;lt;/b&amp;gt;: Specify a password.&lt;br /&gt;
*&amp;lt;b&amp;gt;-F&amp;lt;/b&amp;gt;: Repair a damaged archive if possible.&lt;br /&gt;
*&amp;lt;b&amp;gt;-g&amp;lt;/b&amp;gt;: Append to the existing structure.&lt;br /&gt;
*&amp;lt;b&amp;gt;-h&amp;lt;/b&amp;gt;: Show available options.&lt;br /&gt;
*&amp;lt;b&amp;gt;-j&amp;lt;/b&amp;gt;: Omit path information from names of the archived files. Store only the filenames.&lt;br /&gt;
*&amp;lt;b&amp;gt;-L&amp;lt;/b&amp;gt;: Displays the program license.&lt;br /&gt;
*&amp;lt;b&amp;gt;-r &amp;lt;i&amp;gt;directory&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;: Archives all the files in the specified directory.&lt;br /&gt;
*&amp;lt;b&amp;gt;-R&amp;lt;/b&amp;gt; Archives all the files in the working directory and all its associated subdirectories.&lt;br /&gt;
*&amp;lt;b&amp;gt;-t &amp;lt;i&amp;gt;time&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;: Skip files modified before specified time. Use the &amp;lt;i&amp;gt;ddmmyyyy&amp;lt;/i&amp;gt; form to specify time.&lt;br /&gt;
*&amp;lt;b&amp;gt;-tt &amp;lt;i&amp;gt;time&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;: Skip files modified after the specified time. Use the &amp;lt;i&amp;gt;ddmmyyyy&amp;lt;/i&amp;gt; form to specify time.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;EXAMPLES&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;u&amp;gt;zip documents *&amp;lt;/u&amp;gt;- Creates the specified archive(documents.zip).&lt;br /&gt;
*&amp;lt;u&amp;gt;zip documents *.sdw&amp;lt;/u&amp;gt;- Creates the specified archive using all the .sdw files in the working directory.&lt;br /&gt;
*&amp;lt;u&amp;gt;zip -g documents essays/*&amp;lt;/u&amp;gt;- Appends all the files in the specified subdirectory(essays/) to the existing archive(documents.zip).&lt;br /&gt;
*&amp;lt;u&amp;gt;zip -mT documents *&amp;lt;/u&amp;gt;- Moves all the files in the working directory to the specified archive(documents.zip) and deletes the input files.&lt;br /&gt;
*&amp;lt;u&amp;gt;zip R archive * -x *.doc&amp;lt;/u&amp;gt;- Archives all the files in the working directory and all its associated subdirectories excluding those with the .doc suffix.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;See also&amp;lt;/b&amp;gt;: [[zipinfo]], [[zipnote]], [[zipsplit]]&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Uncompress&amp;diff=3185</id>
		<title>Uncompress</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Uncompress&amp;diff=3185"/>
		<updated>2004-03-04T07:08:27Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Added content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;b&amp;gt;uncompress&amp;lt;/b&amp;gt; decompresses the [[compress]](.Z) compressed file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Usage&amp;lt;/u&amp;gt;- uncompress [option] &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt; &lt;br /&gt;
&lt;br /&gt;
By default, the program prompts the user before overwriting existing files. You can override this procedure by using the &amp;lt;b.-f&amp;lt;/b&amp;gt; option. Use of this utility is discouraged because it's underlying compression algorithm is patented. You can use [[gunzip]] to decompress &amp;lt;b&amp;gt;.Z&amp;lt;/b&amp;gt; files.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;&amp;lt;u&amp;gt;OPTIONS&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;b&amp;gt;-c&amp;lt;/b&amp;gt; : Write to standard output&lt;br /&gt;
*&amp;lt;b&amp;gt;-f&amp;lt;/b&amp;gt; : Overwrite files without asking for confirmation&lt;br /&gt;
*&amp;lt;b&amp;gt;-V&amp;lt;/b&amp;gt; : Show version number&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User_talk:Linuxlala&amp;diff=18278</id>
		<title>User talk:Linuxlala</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User_talk:Linuxlala&amp;diff=18278"/>
		<updated>2004-03-02T15:55:15Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Talk to me. Use this page or use my e-mail id to pass on your views to me. My profile is where it should be, [http://www.linuxquestions.org/questions/member.php?s=&amp;amp;action=getinfo&amp;amp;userid=50243 HERE]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
See? Two edits. I thought I was on Skyline's page. Too many tabs open. Sorry.&lt;br /&gt;
&lt;br /&gt;
[[User:Digiot|Digiot]] 03:28, Feb 25, 2004 (EST)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hey, NP [[User:Digiot|Digiot]]&lt;br /&gt;
&lt;br /&gt;
[[User:Linuxlala|Linuxlala]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Command&amp;diff=1089</id>
		<title>Command</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Command&amp;diff=1089"/>
		<updated>2004-03-02T15:54:33Z</updated>

		<summary type="html">&lt;p&gt;Linuxlala: Edited a link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Commands ==&lt;br /&gt;
&lt;br /&gt;
Here is a short list of Linux commands which still needs to be added to.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;Note:&amp;lt;/b&amp;gt; Not all distributions will contain all of these commands. Also, some may vary from one distro to another.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
*[[Shells]]&lt;br /&gt;
*[[File Commands]]&lt;br /&gt;
*[[Directory Commands]]&lt;br /&gt;
*[[User Commands]]&lt;br /&gt;
*[[Kernel Commands]]&lt;br /&gt;
*[[Startup/Shutdown Commands]]&lt;br /&gt;
*[[Managing Sessions]]&lt;br /&gt;
*[[Disk and Tape Drive Commands]]&lt;br /&gt;
*[[Internet and Network Commands]]&lt;br /&gt;
*[[Using Text Editors]]&lt;br /&gt;
*[[Text Viewing and Processing Tools]]&lt;br /&gt;
*[[Compressing files]]&lt;br /&gt;
*[[Uncompressing Files]]&lt;br /&gt;
*[[Encrypting files|Encrypting/Decrypting Files]]&lt;br /&gt;
*[[Scripting]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
See the [http://man.linuxquestions.org/ LQ Manual Pages] for how to use the commands. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;i&amp;gt; This list is not complete yet :) &amp;lt;/i&amp;gt;&lt;/div&gt;</summary>
		<author><name>Linuxlala</name></author>
	</entry>
</feed>