<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ihitc.net/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=WarnerGouin</id>
	<title>ITCwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ihitc.net/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=WarnerGouin"/>
	<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/w/Special:Contributions/WarnerGouin"/>
	<updated>2026-04-30T16:38:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.5</generator>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3891</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3891"/>
		<updated>2010-12-15T21:51:04Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Getting Help ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;man &amp;lt;command&amp;gt;&#039;&#039;&#039; – Display command help&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;man find | grep &amp;lt;search string&amp;gt;&#039;&#039;&#039; – Locate specific help text within the manual&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;info&#039;&#039;&#039; – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Directory navigation, basic shell tasks, and File Management ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;cd&#039;&#039;&#039; – Change working directory&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;cd ..&#039;&#039;&#039; – Change to parent directory&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;cd ~&#039;&#039;&#039; – Change to home working directory&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;pwd&#039;&#039;&#039; – Display working directory&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;echo &amp;lt;line of text&amp;gt;&#039;&#039;&#039; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;echo $PATH&#039;&#039;&#039; – Display assignment to the environmental variable&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;time &amp;lt;command&amp;gt;&#039;&#039;&#039; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ls&#039;&#039;&#039; – Lists files in the current working directory&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ls -a&#039;&#039;&#039; –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ls -l&#039;&#039;&#039; – Shows file detail&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ls –F&#039;&#039;&#039; – Shows File type as part of file listing&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;history&#039;&#039;&#039; – Records commands typed at command prompt&lt;br /&gt;
     &#039;&#039;&#039;Ctrl+R&#039;&#039;&#039; to begin a backward search through history&lt;br /&gt;
     &#039;&#039;&#039;Ctrl+S&#039;&#039;&#039; to search forward through history&lt;br /&gt;
     &#039;&#039;&#039;Up Arrow&#039;&#039;&#039; and &#039;&#039;&#039;Down Arrow&#039;&#039;&#039; to move a line at a time through history&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;mkdir ch1&#039;&#039;&#039; – Creates new directory ch1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;mv file1 file2&#039;&#039;&#039; – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;mv testfile changedfile&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;less&#039;&#039;&#039; – View file contents page-by-page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;unset MYNAME&#039;&#039;&#039; – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;exit&#039;&#039;&#039; – Terminate shell&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;cp -R one newone&#039;&#039;&#039; – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;rm etcbackup.tar.gz&#039;&#039;&#039; – Deletes file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Redirection and piping ==&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;ls &amp;gt; List-of-files.txt&#039;&#039;&#039; – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;pwd &amp;gt;&amp;gt; List-of-files.txt&#039;&#039;&#039; – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ps ax | grep string&#039;&#039;&#039; – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Text processing commands ==&lt;br /&gt;
 &lt;br /&gt;
&#039;&#039;&#039;cat&#039;&#039;&#039; – Concatenate files together&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;cat /proc/interrupts&#039;&#039;&#039; – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;join&#039;&#039;&#039; – Merge file data from multiple files&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;sort&#039;&#039;&#039; – Sort file contents&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;nl&#039;&#039;&#039; – Generate line numbers for each line in a file&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;tail -20 /var/log/syslog&#039;&#039;&#039; – View last 20 entries posted to syslog file&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;less&#039;&#039;&#039; – File paging utility&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;grep string /var/log/*&#039;&#039;&#039; – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Package Management ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;rpm Utility&#039;&#039;&#039;&lt;br /&gt;
     &#039;&#039;&#039;rpm -q zsh&#039;&#039;&#039; – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
     &#039;&#039;&#039;rpm -i zsh-4.3.9-4.fc11.i586.rpm&#039;&#039;&#039; – Installs the zsh RPM package&lt;br /&gt;
     &#039;&#039;&#039;remove zsh: rpm -e zsh&#039;&#039;&#039; – Uninstalls the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;yum Utility&#039;&#039;&#039;&lt;br /&gt;
     &#039;&#039;&#039;yum install zsh&#039;&#039;&#039; – Downloads and installs zsh package&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;apt-get Utility&#039;&#039;&#039;&lt;br /&gt;
     &#039;&#039;&#039;sudo apt-get install alien&#039;&#039;&#039; – Downloads and installs the program “alien”&lt;br /&gt;
     &#039;&#039;&#039;sudo apt-get install chkconfig&#039;&#039;&#039; – Downloads and installs the program “chkconfig”&lt;br /&gt;
     &#039;&#039;&#039;sudo apt-get remove package&#039;&#039;&#039; – Remove package&lt;br /&gt;
     &#039;&#039;&#039;sudo apt-get install sysv-rc-conf&#039;&#039;&#039; - Provides gui view of all services running at each runlevel (works under server)&lt;br /&gt;
     &#039;&#039;&#039;apt-get autoremove&#039;&#039;&#039; – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ldd /bin/ls&#039;&#039;&#039; – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful Management Commands ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ps aux&#039;&#039;&#039; – &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;top&#039;&#039;&#039; – &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;kill pid&#039;&#039;&#039; – Send kill signal to process (pid)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;jobs&#039;&#039;&#039; – List all currently running jobs&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;dmesg | less&#039;&#039;&#039; – &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;dmesg | grep sdb&#039;&#039;&#039; – &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;tar -czf BackupFileneme.tar.gz /Folder&#039;&#039;&#039; – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;tar -xvfz BackupFileneme.tar.gz&#039;&#039;&#039; – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt&#039;&#039;&#039; – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful Configuration Files ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Shell Configuration files&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;Per user configuration files&#039;&#039;&#039;&lt;br /&gt;
          ~/.bashrc&lt;br /&gt;
          ~/.profile&lt;br /&gt;
&lt;br /&gt;
     &#039;&#039;&#039;Global configuration files&#039;&#039;&#039;&lt;br /&gt;
          /etc/bash.bashrc&lt;br /&gt;
          /etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3890</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3890"/>
		<updated>2010-12-15T21:41:29Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Getting Help ==&lt;br /&gt;
&lt;br /&gt;
man &amp;lt;command&amp;gt; – Display command help&lt;br /&gt;
&lt;br /&gt;
man find | grep &amp;lt;search string&amp;gt; – Locate specific help text within the manual&lt;br /&gt;
&lt;br /&gt;
info – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Directory navigation, basic shell tasks, and File Management ==&lt;br /&gt;
&lt;br /&gt;
cd – Change working directory&lt;br /&gt;
&lt;br /&gt;
cd .. – Change to parent directory&lt;br /&gt;
&lt;br /&gt;
cd ~ – Change to home working directory&lt;br /&gt;
&lt;br /&gt;
pwd – Display working directory&lt;br /&gt;
&lt;br /&gt;
echo &amp;lt;line of text&amp;gt; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
&lt;br /&gt;
echo $PATH – Display assignment to the environmental variable&lt;br /&gt;
&lt;br /&gt;
time &amp;lt;command&amp;gt; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
&lt;br /&gt;
ls – Lists files in the current working directory&lt;br /&gt;
&lt;br /&gt;
ls -a –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
&lt;br /&gt;
ls -l – Shows file detail&lt;br /&gt;
&lt;br /&gt;
ls –F – Shows File type as part of file listing&lt;br /&gt;
&lt;br /&gt;
history – Records commands typed at command prompt&lt;br /&gt;
&lt;br /&gt;
     Ctrl+R to begin a backward search through history&lt;br /&gt;
&lt;br /&gt;
     Ctrl+S to search forward through history&lt;br /&gt;
&lt;br /&gt;
     Up Arrow and Down Arrow to move a line at a time through history&lt;br /&gt;
&lt;br /&gt;
mkdir ch1 – Creates new directory ch1&lt;br /&gt;
&lt;br /&gt;
mv file1 file2 – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
&lt;br /&gt;
mv testfile changedfile&lt;br /&gt;
&lt;br /&gt;
less – View file contents page-by-page&lt;br /&gt;
&lt;br /&gt;
unset MYNAME – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
&lt;br /&gt;
exit – Terminate shell&lt;br /&gt;
&lt;br /&gt;
cp -R one newone – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
&lt;br /&gt;
rm etcbackup.tar.gz – Deletes file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Redirection and piping ==&lt;br /&gt;
 &lt;br /&gt;
ls &amp;gt; List-of-files.txt – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
&lt;br /&gt;
pwd &amp;gt;&amp;gt; List-of-files.txt – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
&lt;br /&gt;
ps ax | grep string – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Text processing commands ==&lt;br /&gt;
 &lt;br /&gt;
cat – Concatenate files together&lt;br /&gt;
&lt;br /&gt;
cat /proc/interrupts – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
&lt;br /&gt;
join – Merge file data from multiple files&lt;br /&gt;
&lt;br /&gt;
sort – Sort file contents&lt;br /&gt;
&lt;br /&gt;
nl – Generate line numbers for each line in a file&lt;br /&gt;
&lt;br /&gt;
tail -20 /var/log/syslog – View last 20 entries posted to syslog file&lt;br /&gt;
&lt;br /&gt;
less – File paging utility&lt;br /&gt;
&lt;br /&gt;
grep string /var/log/* – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Package Management ==&lt;br /&gt;
&lt;br /&gt;
rpm Utility&lt;br /&gt;
&lt;br /&gt;
     rpm -q zsh – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
&lt;br /&gt;
     rpm -i zsh-4.3.9-4.fc11.i586.rpm – Installs the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
     remove zsh: rpm -e zsh – Uninstalls the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
yum Utility&lt;br /&gt;
&lt;br /&gt;
     yum install zsh – Downloads and installs zsh package&lt;br /&gt;
&lt;br /&gt;
apt-get Utility&lt;br /&gt;
&lt;br /&gt;
     sudo apt-get install alien – Downloads and installs the program “alien”&lt;br /&gt;
&lt;br /&gt;
     sudo apt-get install chkconfig – Downloads and installs the program “chkconfig”&lt;br /&gt;
&lt;br /&gt;
     sudo apt-get remove package – Remove package&lt;br /&gt;
&lt;br /&gt;
     apt-get autoremove – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ldd /bin/ls – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful Management Commands ==&lt;br /&gt;
&lt;br /&gt;
ps aux – &lt;br /&gt;
&lt;br /&gt;
top – &lt;br /&gt;
&lt;br /&gt;
kill pid – Send kill signal to process (pid)&lt;br /&gt;
&lt;br /&gt;
jobs – List all currently running jobs&lt;br /&gt;
&lt;br /&gt;
dmesg | less – &lt;br /&gt;
&lt;br /&gt;
dmesg | grep sdb – &lt;br /&gt;
&lt;br /&gt;
tar -czf BackupFileneme.tar.gz /Folder – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
&lt;br /&gt;
tar -xvfz BackupFileneme.tar.gz – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
&lt;br /&gt;
find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful Configuration Files ==&lt;br /&gt;
&lt;br /&gt;
Shell Configuration files&lt;br /&gt;
&lt;br /&gt;
     Per user configuration files&lt;br /&gt;
&lt;br /&gt;
          ~/.bashrc&lt;br /&gt;
&lt;br /&gt;
          ~/.profile&lt;br /&gt;
&lt;br /&gt;
     Global configuration files&lt;br /&gt;
&lt;br /&gt;
          /etc/bash.bashrc&lt;br /&gt;
&lt;br /&gt;
          /etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3888</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3888"/>
		<updated>2010-12-15T21:33:44Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
== 1.	Getting Help ==&lt;br /&gt;
&lt;br /&gt;
man &amp;lt;command&amp;gt; – Display command help&lt;br /&gt;
&lt;br /&gt;
man find | grep &amp;lt;search string&amp;gt; – Locate specific help text within the manual&lt;br /&gt;
&lt;br /&gt;
info – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 2.	Directory navigation, basic shell tasks, and File Management ==&lt;br /&gt;
&lt;br /&gt;
cd – Change working directory&lt;br /&gt;
&lt;br /&gt;
cd .. – Change to parent directory&lt;br /&gt;
&lt;br /&gt;
cd ~ – Change to home working directory&lt;br /&gt;
&lt;br /&gt;
pwd – Display working directory&lt;br /&gt;
&lt;br /&gt;
echo &amp;lt;line of text&amp;gt; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
&lt;br /&gt;
echo $PATH – Display assignment to the environmental variable&lt;br /&gt;
&lt;br /&gt;
time &amp;lt;command&amp;gt; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
&lt;br /&gt;
ls – Lists files in the current working directory&lt;br /&gt;
&lt;br /&gt;
ls -a –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
&lt;br /&gt;
ls -l – Shows file detail&lt;br /&gt;
&lt;br /&gt;
ls –F – Shows File type as part of file listing&lt;br /&gt;
&lt;br /&gt;
history – Records commands typed at command prompt&lt;br /&gt;
&lt;br /&gt;
Ctrl+R to begin a backward search through history&lt;br /&gt;
&lt;br /&gt;
Ctrl+S to search forward through history&lt;br /&gt;
&lt;br /&gt;
Up Arrow and Down Arrow to move a line at a time through history&lt;br /&gt;
&lt;br /&gt;
mkdir ch1 – Creates new directory ch1&lt;br /&gt;
&lt;br /&gt;
mv file1 file2 – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
&lt;br /&gt;
mv testfile changedfile&lt;br /&gt;
&lt;br /&gt;
less – View file contents page-by-page&lt;br /&gt;
&lt;br /&gt;
unset MYNAME – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
&lt;br /&gt;
exit – Terminate shell&lt;br /&gt;
&lt;br /&gt;
cp -R one newone – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
&lt;br /&gt;
rm etcbackup.tar.gz – Deletes file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 3.	Redirection and piping ==&lt;br /&gt;
 &lt;br /&gt;
ls &amp;gt; List-of-files.txt – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
&lt;br /&gt;
pwd &amp;gt;&amp;gt; List-of-files.txt – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
&lt;br /&gt;
ps ax | grep string – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 4.	Text processing commands ==&lt;br /&gt;
 &lt;br /&gt;
cat – Concatenate files together&lt;br /&gt;
&lt;br /&gt;
cat /proc/interrupts – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
&lt;br /&gt;
join – Merge file data from multiple files&lt;br /&gt;
&lt;br /&gt;
sort – Sort file contents&lt;br /&gt;
&lt;br /&gt;
nl – Generate line numbers for each line in a file&lt;br /&gt;
&lt;br /&gt;
tail -20 /var/log/syslog – View last 20 entries posted to syslog file&lt;br /&gt;
&lt;br /&gt;
less – File paging utility&lt;br /&gt;
&lt;br /&gt;
grep string /var/log/* – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 5.	Package Management ==&lt;br /&gt;
&lt;br /&gt;
rpm Utility&lt;br /&gt;
&lt;br /&gt;
rpm -q zsh – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
&lt;br /&gt;
rpm -i zsh-4.3.9-4.fc11.i586.rpm – Installs the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
remove zsh: rpm -e zsh – Uninstalls the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
yum Utility&lt;br /&gt;
&lt;br /&gt;
yum install zsh – Downloads and installs zsh package&lt;br /&gt;
&lt;br /&gt;
apt-get Utility&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install alien – Downloads and installs the program “alien”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install chkconfig – Downloads and installs the program “chkconfig”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get remove package – Remove package&lt;br /&gt;
&lt;br /&gt;
apt-get autoremove – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ldd /bin/ls – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 6.	Useful Management Commands ==&lt;br /&gt;
&lt;br /&gt;
ps aux – &lt;br /&gt;
&lt;br /&gt;
top – &lt;br /&gt;
&lt;br /&gt;
kill pid – Send kill signal to process (pid)&lt;br /&gt;
&lt;br /&gt;
jobs – List all currently running jobs&lt;br /&gt;
&lt;br /&gt;
dmesg | less – &lt;br /&gt;
&lt;br /&gt;
dmesg | grep sdb – &lt;br /&gt;
&lt;br /&gt;
tar -czf BackupFileneme.tar.gz /Folder – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
&lt;br /&gt;
tar -xvfz BackupFileneme.tar.gz – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
&lt;br /&gt;
find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 7.	Useful Configuration Files ==&lt;br /&gt;
&lt;br /&gt;
Shell Configuration files&lt;br /&gt;
&lt;br /&gt;
Per user configuration files&lt;br /&gt;
&lt;br /&gt;
~/.bashrc&lt;br /&gt;
&lt;br /&gt;
~/.profile&lt;br /&gt;
&lt;br /&gt;
Global configuration files&lt;br /&gt;
&lt;br /&gt;
/etc/bash.bashrc&lt;br /&gt;
&lt;br /&gt;
/etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3887</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3887"/>
		<updated>2010-12-15T21:33:07Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Contents ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
2.	Directory Navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and Piping&lt;br /&gt;
&lt;br /&gt;
4.	Text Processing&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 1.	Getting Help ==&lt;br /&gt;
&lt;br /&gt;
man &amp;lt;command&amp;gt; – Display command help&lt;br /&gt;
&lt;br /&gt;
man find | grep &amp;lt;search string&amp;gt; – Locate specific help text within the manual&lt;br /&gt;
&lt;br /&gt;
info – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 2.	Directory navigation, basic shell tasks, and File Management ==&lt;br /&gt;
&lt;br /&gt;
cd – Change working directory&lt;br /&gt;
&lt;br /&gt;
cd .. – Change to parent directory&lt;br /&gt;
&lt;br /&gt;
cd ~ – Change to home working directory&lt;br /&gt;
&lt;br /&gt;
pwd – Display working directory&lt;br /&gt;
&lt;br /&gt;
echo &amp;lt;line of text&amp;gt; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
&lt;br /&gt;
echo $PATH – Display assignment to the environmental variable&lt;br /&gt;
&lt;br /&gt;
time &amp;lt;command&amp;gt; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
&lt;br /&gt;
ls – Lists files in the current working directory&lt;br /&gt;
&lt;br /&gt;
ls -a –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
&lt;br /&gt;
ls -l – Shows file detail&lt;br /&gt;
&lt;br /&gt;
ls –F – Shows File type as part of file listing&lt;br /&gt;
&lt;br /&gt;
history – Records commands typed at command prompt&lt;br /&gt;
&lt;br /&gt;
Ctrl+R to begin a backward search through history&lt;br /&gt;
&lt;br /&gt;
Ctrl+S to search forward through history&lt;br /&gt;
&lt;br /&gt;
Up Arrow and Down Arrow to move a line at a time through history&lt;br /&gt;
&lt;br /&gt;
mkdir ch1 – Creates new directory ch1&lt;br /&gt;
&lt;br /&gt;
mv file1 file2 – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
&lt;br /&gt;
mv testfile changedfile&lt;br /&gt;
&lt;br /&gt;
less – View file contents page-by-page&lt;br /&gt;
&lt;br /&gt;
unset MYNAME – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
&lt;br /&gt;
exit – Terminate shell&lt;br /&gt;
&lt;br /&gt;
cp -R one newone – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
&lt;br /&gt;
rm etcbackup.tar.gz – Deletes file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 3.	Redirection and piping ==&lt;br /&gt;
 &lt;br /&gt;
ls &amp;gt; List-of-files.txt – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
&lt;br /&gt;
pwd &amp;gt;&amp;gt; List-of-files.txt – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
&lt;br /&gt;
ps ax | grep string – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 4.	Text processing commands ==&lt;br /&gt;
 &lt;br /&gt;
cat – Concatenate files together&lt;br /&gt;
&lt;br /&gt;
cat /proc/interrupts – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
&lt;br /&gt;
join – Merge file data from multiple files&lt;br /&gt;
&lt;br /&gt;
sort – Sort file contents&lt;br /&gt;
&lt;br /&gt;
nl – Generate line numbers for each line in a file&lt;br /&gt;
&lt;br /&gt;
tail -20 /var/log/syslog – View last 20 entries posted to syslog file&lt;br /&gt;
&lt;br /&gt;
less – File paging utility&lt;br /&gt;
&lt;br /&gt;
grep string /var/log/* – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 5.	Package Management ==&lt;br /&gt;
&lt;br /&gt;
rpm Utility&lt;br /&gt;
&lt;br /&gt;
rpm -q zsh – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
&lt;br /&gt;
rpm -i zsh-4.3.9-4.fc11.i586.rpm – Installs the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
remove zsh: rpm -e zsh – Uninstalls the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
yum Utility&lt;br /&gt;
&lt;br /&gt;
yum install zsh – Downloads and installs zsh package&lt;br /&gt;
&lt;br /&gt;
apt-get Utility&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install alien – Downloads and installs the program “alien”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install chkconfig – Downloads and installs the program “chkconfig”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get remove package – Remove package&lt;br /&gt;
&lt;br /&gt;
apt-get autoremove – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ldd /bin/ls – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 6.	Useful Management Commands ==&lt;br /&gt;
&lt;br /&gt;
ps aux – &lt;br /&gt;
&lt;br /&gt;
top – &lt;br /&gt;
&lt;br /&gt;
kill pid – Send kill signal to process (pid)&lt;br /&gt;
&lt;br /&gt;
jobs – List all currently running jobs&lt;br /&gt;
&lt;br /&gt;
dmesg | less – &lt;br /&gt;
&lt;br /&gt;
dmesg | grep sdb – &lt;br /&gt;
&lt;br /&gt;
tar -czf BackupFileneme.tar.gz /Folder – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
&lt;br /&gt;
tar -xvfz BackupFileneme.tar.gz – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
&lt;br /&gt;
find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== 7.	Useful Configuration Files ==&lt;br /&gt;
&lt;br /&gt;
Shell Configuration files&lt;br /&gt;
&lt;br /&gt;
Per user configuration files&lt;br /&gt;
&lt;br /&gt;
~/.bashrc&lt;br /&gt;
&lt;br /&gt;
~/.profile&lt;br /&gt;
&lt;br /&gt;
Global configuration files&lt;br /&gt;
&lt;br /&gt;
/etc/bash.bashrc&lt;br /&gt;
&lt;br /&gt;
/etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3886</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3886"/>
		<updated>2010-12-15T21:31:31Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Contents ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
2.	Directory Navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and Piping&lt;br /&gt;
&lt;br /&gt;
4.	Text Processing&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
man &amp;lt;command&amp;gt; – Display command help&lt;br /&gt;
&lt;br /&gt;
man find | grep &amp;lt;search string&amp;gt; – Locate specific help text within the manual&lt;br /&gt;
&lt;br /&gt;
info – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2.	Directory navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
cd – Change working directory&lt;br /&gt;
&lt;br /&gt;
cd .. – Change to parent directory&lt;br /&gt;
&lt;br /&gt;
cd ~ – Change to home working directory&lt;br /&gt;
&lt;br /&gt;
pwd – Display working directory&lt;br /&gt;
&lt;br /&gt;
echo &amp;lt;line of text&amp;gt; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
&lt;br /&gt;
echo $PATH – Display assignment to the environmental variable&lt;br /&gt;
&lt;br /&gt;
time &amp;lt;command&amp;gt; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
&lt;br /&gt;
ls – Lists files in the current working directory&lt;br /&gt;
&lt;br /&gt;
ls -a –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
&lt;br /&gt;
ls -l – Shows file detail&lt;br /&gt;
&lt;br /&gt;
ls –F – Shows File type as part of file listing&lt;br /&gt;
&lt;br /&gt;
history – Records commands typed at command prompt&lt;br /&gt;
&lt;br /&gt;
Ctrl+R to begin a backward search through history&lt;br /&gt;
&lt;br /&gt;
Ctrl+S to search forward through history&lt;br /&gt;
&lt;br /&gt;
Up Arrow and Down Arrow to move a line at a time through history&lt;br /&gt;
&lt;br /&gt;
mkdir ch1 – Creates new directory ch1&lt;br /&gt;
&lt;br /&gt;
mv file1 file2 – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
&lt;br /&gt;
mv testfile changedfile&lt;br /&gt;
&lt;br /&gt;
less – View file contents page-by-page&lt;br /&gt;
&lt;br /&gt;
unset MYNAME – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
&lt;br /&gt;
exit – Terminate shell&lt;br /&gt;
&lt;br /&gt;
cp -R one newone – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
&lt;br /&gt;
rm etcbackup.tar.gz – Deletes file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and piping &lt;br /&gt;
&lt;br /&gt;
ls &amp;gt; List-of-files.txt – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
&lt;br /&gt;
pwd &amp;gt;&amp;gt; List-of-files.txt – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
&lt;br /&gt;
ps ax | grep string – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4.	Text processing commands &lt;br /&gt;
&lt;br /&gt;
cat – Concatenate files together&lt;br /&gt;
&lt;br /&gt;
cat /proc/interrupts – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
&lt;br /&gt;
join – Merge file data from multiple files&lt;br /&gt;
&lt;br /&gt;
sort – Sort file contents&lt;br /&gt;
&lt;br /&gt;
nl – Generate line numbers for each line in a file&lt;br /&gt;
&lt;br /&gt;
tail -20 /var/log/syslog – View last 20 entries posted to syslog file&lt;br /&gt;
&lt;br /&gt;
less – File paging utility&lt;br /&gt;
&lt;br /&gt;
grep string /var/log/* – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
rpm Utility&lt;br /&gt;
&lt;br /&gt;
rpm -q zsh – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
&lt;br /&gt;
rpm -i zsh-4.3.9-4.fc11.i586.rpm – Installs the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
remove zsh: rpm -e zsh – Uninstalls the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
yum Utility&lt;br /&gt;
&lt;br /&gt;
yum install zsh – Downloads and installs zsh package&lt;br /&gt;
&lt;br /&gt;
apt-get Utility&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install alien – Downloads and installs the program “alien”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install chkconfig – Downloads and installs the program “chkconfig”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get remove package – Remove package&lt;br /&gt;
&lt;br /&gt;
apt-get autoremove – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ldd /bin/ls – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
ps aux – &lt;br /&gt;
&lt;br /&gt;
top – &lt;br /&gt;
&lt;br /&gt;
kill pid – Send kill signal to process (pid)&lt;br /&gt;
&lt;br /&gt;
jobs – List all currently running jobs&lt;br /&gt;
&lt;br /&gt;
dmesg | less – &lt;br /&gt;
&lt;br /&gt;
dmesg | grep sdb – &lt;br /&gt;
&lt;br /&gt;
tar -czf BackupFileneme.tar.gz /Folder – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
&lt;br /&gt;
tar -xvfz BackupFileneme.tar.gz – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
&lt;br /&gt;
find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
Shell Configuration files&lt;br /&gt;
&lt;br /&gt;
Per user configuration files&lt;br /&gt;
&lt;br /&gt;
~/.bashrc&lt;br /&gt;
&lt;br /&gt;
~/.profile&lt;br /&gt;
&lt;br /&gt;
Global configuration files&lt;br /&gt;
&lt;br /&gt;
/etc/bash.bashrc&lt;br /&gt;
&lt;br /&gt;
/etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3885</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3885"/>
		<updated>2010-12-15T21:30:49Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Contents&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
2.	Directory Navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and Piping&lt;br /&gt;
&lt;br /&gt;
4.	Text Processing&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
man &amp;lt;command&amp;gt; – Display command help&lt;br /&gt;
&lt;br /&gt;
man find | grep &amp;lt;search string&amp;gt; – Locate specific help text within the manual&lt;br /&gt;
&lt;br /&gt;
info – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2.	Directory navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
cd – Change working directory&lt;br /&gt;
&lt;br /&gt;
cd .. – Change to parent directory&lt;br /&gt;
&lt;br /&gt;
cd ~ – Change to home working directory&lt;br /&gt;
&lt;br /&gt;
pwd – Display working directory&lt;br /&gt;
&lt;br /&gt;
echo &amp;lt;line of text&amp;gt; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
&lt;br /&gt;
echo $PATH – Display assignment to the environmental variable&lt;br /&gt;
&lt;br /&gt;
time &amp;lt;command&amp;gt; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
&lt;br /&gt;
ls – Lists files in the current working directory&lt;br /&gt;
&lt;br /&gt;
ls -a –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
&lt;br /&gt;
ls -l – Shows file detail&lt;br /&gt;
&lt;br /&gt;
ls –F – Shows File type as part of file listing&lt;br /&gt;
&lt;br /&gt;
history – Records commands typed at command prompt&lt;br /&gt;
&lt;br /&gt;
Ctrl+R to begin a backward search through history&lt;br /&gt;
&lt;br /&gt;
Ctrl+S to search forward through history&lt;br /&gt;
&lt;br /&gt;
Up Arrow and Down Arrow to move a line at a time through history&lt;br /&gt;
&lt;br /&gt;
mkdir ch1 – Creates new directory ch1&lt;br /&gt;
&lt;br /&gt;
mv file1 file2 – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
&lt;br /&gt;
mv testfile changedfile&lt;br /&gt;
&lt;br /&gt;
less – View file contents page-by-page&lt;br /&gt;
&lt;br /&gt;
unset MYNAME – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
&lt;br /&gt;
exit – Terminate shell&lt;br /&gt;
&lt;br /&gt;
cp -R one newone – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
&lt;br /&gt;
rm etcbackup.tar.gz – Deletes file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and piping &lt;br /&gt;
&lt;br /&gt;
ls &amp;gt; List-of-files.txt – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
&lt;br /&gt;
pwd &amp;gt;&amp;gt; List-of-files.txt – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
&lt;br /&gt;
ps ax | grep string – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4.	Text processing commands &lt;br /&gt;
&lt;br /&gt;
cat – Concatenate files together&lt;br /&gt;
&lt;br /&gt;
cat /proc/interrupts – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
&lt;br /&gt;
join – Merge file data from multiple files&lt;br /&gt;
&lt;br /&gt;
sort – Sort file contents&lt;br /&gt;
&lt;br /&gt;
nl – Generate line numbers for each line in a file&lt;br /&gt;
&lt;br /&gt;
tail -20 /var/log/syslog – View last 20 entries posted to syslog file&lt;br /&gt;
&lt;br /&gt;
less – File paging utility&lt;br /&gt;
&lt;br /&gt;
grep string /var/log/* – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
rpm Utility&lt;br /&gt;
&lt;br /&gt;
rpm -q zsh – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
&lt;br /&gt;
rpm -i zsh-4.3.9-4.fc11.i586.rpm – Installs the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
remove zsh: rpm -e zsh – Uninstalls the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
yum Utility&lt;br /&gt;
&lt;br /&gt;
yum install zsh – Downloads and installs zsh package&lt;br /&gt;
&lt;br /&gt;
apt-get Utility&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install alien – Downloads and installs the program “alien”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install chkconfig – Downloads and installs the program “chkconfig”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get remove package – Remove package&lt;br /&gt;
&lt;br /&gt;
apt-get autoremove – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ldd /bin/ls – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
ps aux – &lt;br /&gt;
&lt;br /&gt;
top – &lt;br /&gt;
&lt;br /&gt;
kill pid – Send kill signal to process (pid)&lt;br /&gt;
&lt;br /&gt;
jobs – List all currently running jobs&lt;br /&gt;
&lt;br /&gt;
dmesg | less – &lt;br /&gt;
&lt;br /&gt;
dmesg | grep sdb – &lt;br /&gt;
&lt;br /&gt;
tar -czf BackupFileneme.tar.gz /Folder – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
&lt;br /&gt;
tar -xvfz BackupFileneme.tar.gz – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
&lt;br /&gt;
find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
Shell Configuration files&lt;br /&gt;
&lt;br /&gt;
Per user configuration files&lt;br /&gt;
&lt;br /&gt;
~/.bashrc&lt;br /&gt;
&lt;br /&gt;
~/.profile&lt;br /&gt;
&lt;br /&gt;
Global configuration files&lt;br /&gt;
&lt;br /&gt;
/etc/bash.bashrc&lt;br /&gt;
&lt;br /&gt;
/etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3884</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3884"/>
		<updated>2010-12-15T21:30:11Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&#039;&#039;&#039;== Contents ==&#039;&#039;&#039;&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
2.	Directory Navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and Piping&lt;br /&gt;
&lt;br /&gt;
4.	Text Processing&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
man &amp;lt;command&amp;gt; – Display command help&lt;br /&gt;
&lt;br /&gt;
man find | grep &amp;lt;search string&amp;gt; – Locate specific help text within the manual&lt;br /&gt;
&lt;br /&gt;
info – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2.	Directory navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
cd – Change working directory&lt;br /&gt;
&lt;br /&gt;
cd .. – Change to parent directory&lt;br /&gt;
&lt;br /&gt;
cd ~ – Change to home working directory&lt;br /&gt;
&lt;br /&gt;
pwd – Display working directory&lt;br /&gt;
&lt;br /&gt;
echo &amp;lt;line of text&amp;gt; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
&lt;br /&gt;
echo $PATH – Display assignment to the environmental variable&lt;br /&gt;
&lt;br /&gt;
time &amp;lt;command&amp;gt; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
&lt;br /&gt;
ls – Lists files in the current working directory&lt;br /&gt;
&lt;br /&gt;
ls -a –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
&lt;br /&gt;
ls -l – Shows file detail&lt;br /&gt;
&lt;br /&gt;
ls –F – Shows File type as part of file listing&lt;br /&gt;
&lt;br /&gt;
history – Records commands typed at command prompt&lt;br /&gt;
&lt;br /&gt;
Ctrl+R to begin a backward search through history&lt;br /&gt;
&lt;br /&gt;
Ctrl+S to search forward through history&lt;br /&gt;
&lt;br /&gt;
Up Arrow and Down Arrow to move a line at a time through history&lt;br /&gt;
&lt;br /&gt;
mkdir ch1 – Creates new directory ch1&lt;br /&gt;
&lt;br /&gt;
mv file1 file2 – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
&lt;br /&gt;
mv testfile changedfile&lt;br /&gt;
&lt;br /&gt;
less – View file contents page-by-page&lt;br /&gt;
&lt;br /&gt;
unset MYNAME – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
&lt;br /&gt;
exit – Terminate shell&lt;br /&gt;
&lt;br /&gt;
cp -R one newone – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
&lt;br /&gt;
rm etcbackup.tar.gz – Deletes file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and piping &lt;br /&gt;
&lt;br /&gt;
ls &amp;gt; List-of-files.txt – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
&lt;br /&gt;
pwd &amp;gt;&amp;gt; List-of-files.txt – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
&lt;br /&gt;
ps ax | grep string – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4.	Text processing commands &lt;br /&gt;
&lt;br /&gt;
cat – Concatenate files together&lt;br /&gt;
&lt;br /&gt;
cat /proc/interrupts – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
&lt;br /&gt;
join – Merge file data from multiple files&lt;br /&gt;
&lt;br /&gt;
sort – Sort file contents&lt;br /&gt;
&lt;br /&gt;
nl – Generate line numbers for each line in a file&lt;br /&gt;
&lt;br /&gt;
tail -20 /var/log/syslog – View last 20 entries posted to syslog file&lt;br /&gt;
&lt;br /&gt;
less – File paging utility&lt;br /&gt;
&lt;br /&gt;
grep string /var/log/* – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
rpm Utility&lt;br /&gt;
&lt;br /&gt;
rpm -q zsh – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
&lt;br /&gt;
rpm -i zsh-4.3.9-4.fc11.i586.rpm – Installs the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
remove zsh: rpm -e zsh – Uninstalls the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
yum Utility&lt;br /&gt;
&lt;br /&gt;
yum install zsh – Downloads and installs zsh package&lt;br /&gt;
&lt;br /&gt;
apt-get Utility&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install alien – Downloads and installs the program “alien”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install chkconfig – Downloads and installs the program “chkconfig”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get remove package – Remove package&lt;br /&gt;
&lt;br /&gt;
apt-get autoremove – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ldd /bin/ls – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
ps aux – &lt;br /&gt;
&lt;br /&gt;
top – &lt;br /&gt;
&lt;br /&gt;
kill pid – Send kill signal to process (pid)&lt;br /&gt;
&lt;br /&gt;
jobs – List all currently running jobs&lt;br /&gt;
&lt;br /&gt;
dmesg | less – &lt;br /&gt;
&lt;br /&gt;
dmesg | grep sdb – &lt;br /&gt;
&lt;br /&gt;
tar -czf BackupFileneme.tar.gz /Folder – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
&lt;br /&gt;
tar -xvfz BackupFileneme.tar.gz – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
&lt;br /&gt;
find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
Shell Configuration files&lt;br /&gt;
&lt;br /&gt;
Per user configuration files&lt;br /&gt;
&lt;br /&gt;
~/.bashrc&lt;br /&gt;
&lt;br /&gt;
~/.profile&lt;br /&gt;
&lt;br /&gt;
Global configuration files&lt;br /&gt;
&lt;br /&gt;
/etc/bash.bashrc&lt;br /&gt;
&lt;br /&gt;
/etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3883</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3883"/>
		<updated>2010-12-15T21:29:05Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Contents&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
2.	Directory Navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and Piping&lt;br /&gt;
&lt;br /&gt;
4.	Text Processing&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
&lt;br /&gt;
man &amp;lt;command&amp;gt; – Display command help&lt;br /&gt;
&lt;br /&gt;
man find | grep &amp;lt;search string&amp;gt; – Locate specific help text within the manual&lt;br /&gt;
&lt;br /&gt;
info – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2.	Directory navigation, basic shell tasks, and File Management&lt;br /&gt;
&lt;br /&gt;
cd – Change working directory&lt;br /&gt;
&lt;br /&gt;
cd .. – Change to parent directory&lt;br /&gt;
&lt;br /&gt;
cd ~ – Change to home working directory&lt;br /&gt;
&lt;br /&gt;
pwd – Display working directory&lt;br /&gt;
&lt;br /&gt;
echo &amp;lt;line of text&amp;gt; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
&lt;br /&gt;
echo $PATH – Display assignment to the environmental variable&lt;br /&gt;
&lt;br /&gt;
time &amp;lt;command&amp;gt; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
&lt;br /&gt;
ls – Lists files in the current working directory&lt;br /&gt;
&lt;br /&gt;
ls -a –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
&lt;br /&gt;
ls -l – Shows file detail&lt;br /&gt;
&lt;br /&gt;
ls –F – Shows File type as part of file listing&lt;br /&gt;
&lt;br /&gt;
history – Records commands typed at command prompt&lt;br /&gt;
&lt;br /&gt;
Ctrl+R to begin a backward search through history&lt;br /&gt;
&lt;br /&gt;
Ctrl+S to search forward through history&lt;br /&gt;
&lt;br /&gt;
Up Arrow and Down Arrow to move a line at a time through history&lt;br /&gt;
&lt;br /&gt;
mkdir ch1 – Creates new directory ch1&lt;br /&gt;
&lt;br /&gt;
mv file1 file2 – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
&lt;br /&gt;
mv testfile changedfile&lt;br /&gt;
&lt;br /&gt;
less – View file contents page-by-page&lt;br /&gt;
&lt;br /&gt;
unset MYNAME – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
&lt;br /&gt;
exit – Terminate shell&lt;br /&gt;
&lt;br /&gt;
cp -R one newone – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
&lt;br /&gt;
rm etcbackup.tar.gz – Deletes file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and piping &lt;br /&gt;
&lt;br /&gt;
ls &amp;gt; List-of-files.txt – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
&lt;br /&gt;
pwd &amp;gt;&amp;gt; List-of-files.txt – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
&lt;br /&gt;
ps ax | grep string – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4.	Text processing commands &lt;br /&gt;
&lt;br /&gt;
cat – Concatenate files together&lt;br /&gt;
&lt;br /&gt;
cat /proc/interrupts – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
&lt;br /&gt;
join – Merge file data from multiple files&lt;br /&gt;
&lt;br /&gt;
sort – Sort file contents&lt;br /&gt;
&lt;br /&gt;
nl – Generate line numbers for each line in a file&lt;br /&gt;
&lt;br /&gt;
tail -20 /var/log/syslog – View last 20 entries posted to syslog file&lt;br /&gt;
&lt;br /&gt;
less – File paging utility&lt;br /&gt;
&lt;br /&gt;
grep string /var/log/* – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
&lt;br /&gt;
rpm Utility&lt;br /&gt;
&lt;br /&gt;
rpm -q zsh – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
&lt;br /&gt;
rpm -i zsh-4.3.9-4.fc11.i586.rpm – Installs the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
remove zsh: rpm -e zsh – Uninstalls the zsh RPM package&lt;br /&gt;
&lt;br /&gt;
yum Utility&lt;br /&gt;
&lt;br /&gt;
yum install zsh – Downloads and installs zsh package&lt;br /&gt;
&lt;br /&gt;
apt-get Utility&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install alien – Downloads and installs the program “alien”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get install chkconfig – Downloads and installs the program “chkconfig”&lt;br /&gt;
&lt;br /&gt;
sudo apt-get remove package – Remove package&lt;br /&gt;
&lt;br /&gt;
apt-get autoremove – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ldd /bin/ls – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
&lt;br /&gt;
ps aux – &lt;br /&gt;
&lt;br /&gt;
top – &lt;br /&gt;
&lt;br /&gt;
kill pid – Send kill signal to process (pid)&lt;br /&gt;
&lt;br /&gt;
jobs – List all currently running jobs&lt;br /&gt;
&lt;br /&gt;
dmesg | less – &lt;br /&gt;
&lt;br /&gt;
dmesg | grep sdb – &lt;br /&gt;
&lt;br /&gt;
tar -czf BackupFileneme.tar.gz /Folder – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
&lt;br /&gt;
tar -xvfz BackupFileneme.tar.gz – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
&lt;br /&gt;
find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
Shell Configuration files&lt;br /&gt;
&lt;br /&gt;
Per user configuration files&lt;br /&gt;
&lt;br /&gt;
~/.bashrc&lt;br /&gt;
&lt;br /&gt;
~/.profile&lt;br /&gt;
&lt;br /&gt;
Global configuration files&lt;br /&gt;
&lt;br /&gt;
/etc/bash.bashrc&lt;br /&gt;
&lt;br /&gt;
/etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
	<entry>
		<id>https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3882</id>
		<title>Linux command guide</title>
		<link rel="alternate" type="text/html" href="https://wiki.ihitc.net/mediawiki/index.php?title=Linux_command_guide&amp;diff=3882"/>
		<updated>2010-12-15T21:23:52Z</updated>

		<summary type="html">&lt;p&gt;WarnerGouin: Created page with &amp;#039;Contents 1.	Getting Help 2.	Directory Navigation, basic shell tasks, and File Management 3.	Redirection and Piping 4.	Text Processing 5.	Package Management 6.	Useful Management C…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Contents&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
2.	Directory Navigation, basic shell tasks, and File Management&lt;br /&gt;
3.	Redirection and Piping&lt;br /&gt;
4.	Text Processing&lt;br /&gt;
5.	Package Management&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
&lt;br /&gt;
1.	Getting Help&lt;br /&gt;
man &amp;lt;command&amp;gt; – Display command help&lt;br /&gt;
man find | grep &amp;lt;search string&amp;gt; – Locate specific help text within the manual&lt;br /&gt;
info – Provide man help in a different format&lt;br /&gt;
&lt;br /&gt;
2.	Directory navigation, basic shell tasks, and File Management&lt;br /&gt;
cd – Change working directory&lt;br /&gt;
cd .. – Change to parent directory&lt;br /&gt;
cd ~ – Change to home working directory&lt;br /&gt;
pwd – Display working directory&lt;br /&gt;
echo &amp;lt;line of text&amp;gt; – Display the line of text (useful for user friendly scripting)&lt;br /&gt;
echo $PATH – Display assignment to the environmental variable&lt;br /&gt;
time &amp;lt;command&amp;gt; - Time how long &amp;lt;command&amp;gt; took to execute&lt;br /&gt;
ls – Lists files in the current working directory&lt;br /&gt;
ls -a –  Shows hidden files (hidden files start with a dot) as part of file listing&lt;br /&gt;
ls -l – Shows file detail&lt;br /&gt;
ls –F – Shows File type as part of file listing&lt;br /&gt;
history – Records commands typed at command prompt&lt;br /&gt;
Ctrl+R to begin a backward search through history&lt;br /&gt;
Ctrl+S to search forward through history&lt;br /&gt;
Up Arrow and Down Arrow to move a line at a time through history&lt;br /&gt;
mkdir ch1 – Creates new directory ch1&lt;br /&gt;
mv file1 file2 – Moves file file1 to file2, renames file1 to file2&lt;br /&gt;
mv testfile changedfile&lt;br /&gt;
less – View file contents page-by-page&lt;br /&gt;
unset MYNAME – Removes the environment variable assignment assigned to MYNAME&lt;br /&gt;
exit – Terminate shell&lt;br /&gt;
cp -R one newone – Copies directory /one recursively to a new directory named /newone&lt;br /&gt;
rm etcbackup.tar.gz – Deletes file&lt;br /&gt;
&lt;br /&gt;
3.	Redirection and piping &lt;br /&gt;
ls &amp;gt; List-of-files.txt – Write list of files in current working directory to the file, List-of-files.txt&lt;br /&gt;
pwd &amp;gt;&amp;gt; List-of-files.txt – Append current working directory to the file “List-of-files.txt”&lt;br /&gt;
ps ax | grep string – Pipe output of ps ax to grep which searches for string.&lt;br /&gt;
&lt;br /&gt;
4.	Text processing commands &lt;br /&gt;
cat – Concatenate files together&lt;br /&gt;
cat /proc/interrupts – Display information from interrupts file (querying kernel about interrupts)&lt;br /&gt;
join – Merge file data from multiple files&lt;br /&gt;
sort – Sort file contents&lt;br /&gt;
nl – Generate line numbers for each line in a file&lt;br /&gt;
tail -20 /var/log/syslog – View last 20 entries posted to syslog file&lt;br /&gt;
less – File paging utility&lt;br /&gt;
grep string /var/log/* – Search for all occurrences of string in all log files in /var/log directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5.	Package Management&lt;br /&gt;
rpm Utility&lt;br /&gt;
rpm -q zsh – Check if RPM package zsh (z shell) is installed&lt;br /&gt;
rpm -i zsh-4.3.9-4.fc11.i586.rpm – Installs the zsh RPM package&lt;br /&gt;
remove zsh: rpm -e zsh – Uninstalls the zsh RPM package&lt;br /&gt;
yum Utility&lt;br /&gt;
yum install zsh – Downloads and installs zsh package&lt;br /&gt;
apt-get Utility&lt;br /&gt;
sudo apt-get install alien – Downloads and installs the program “alien”&lt;br /&gt;
sudo apt-get install chkconfig – Downloads and installs the program “chkconfig”&lt;br /&gt;
sudo apt-get remove package – Remove package&lt;br /&gt;
apt-get autoremove – Removes additional programs associated with the main package installation&lt;br /&gt;
&lt;br /&gt;
ldd /bin/ls – Display information about libraries used by the ls program&lt;br /&gt;
&lt;br /&gt;
6.	Useful Management Commands&lt;br /&gt;
ps aux – &lt;br /&gt;
top – &lt;br /&gt;
kill pid – Send kill signal to process (pid)&lt;br /&gt;
jobs – List all currently running jobs&lt;br /&gt;
dmesg | less – &lt;br /&gt;
dmesg | grep sdb – &lt;br /&gt;
tar -czf BackupFileneme.tar.gz /Folder – Backup a the /Folder and all the files it contains into a single gzipped, tar file (BackupFilename)&lt;br /&gt;
tar -xvfz BackupFileneme.tar.gz – Extract the gzipped, tar file (BackupFilename) to some other location on a hard drive&lt;br /&gt;
find / -perm +6000 -type f &amp;gt; SUID-GUID-bits-Set.txt – Search system for all SUID/GUID files&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7.	Useful Configuration Files&lt;br /&gt;
Shell Configuration files&lt;br /&gt;
Per user configuration files&lt;br /&gt;
~/.bashrc&lt;br /&gt;
~/.profile&lt;br /&gt;
Global configuration files&lt;br /&gt;
/etc/bash.bashrc&lt;br /&gt;
/etc/profile&lt;/div&gt;</summary>
		<author><name>WarnerGouin</name></author>
	</entry>
</feed>