<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.cas.mcmaster.ca/skins/common/feed.css?207"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.cas.mcmaster.ca/index.php?feed=atom&amp;target=RobertLi&amp;title=Special%3AContributions</id>
		<title>Computing and Software Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.cas.mcmaster.ca/index.php?feed=atom&amp;target=RobertLi&amp;title=Special%3AContributions"/>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Special:Contributions/RobertLi"/>
		<updated>2026-04-25T21:18:43Z</updated>
		<subtitle>From Computing and Software Wiki</subtitle>
		<generator>MediaWiki 1.15.1</generator>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/.forward</id>
		<title>.forward</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/.forward"/>
				<updated>2007-04-10T15:11:04Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;.forward moved to Forward emails from my CAS account to my other email accounts automatically&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Forward emails from my CAS account to my other email accounts automatically]]&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically</id>
		<title>Forward emails from my CAS account to my other email accounts automatically</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically"/>
				<updated>2007-04-10T15:11:04Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;.forward moved to Forward emails from my CAS account to my other email accounts automatically&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''How to Forward emails from my CAS account to my other email accounts automatically'''  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Everyone who has an account with CAS has an email box. The email box is ACCOUNT_LOGIN_NAME@mcmaster.cas.ca. If you do not want to check this mail box often, you can have emails sent to this mailbox automatically forwarded to your other email boxes. &lt;br /&gt;
 &lt;br /&gt;
A file named .forward under your home directory can make all the messages sent to your CAS email box be automatically forwarded to another email box. If there is no such a file, create one for yourself. &lt;br /&gt;
&lt;br /&gt;
Edit this file using a text editor and put the email addresses to which you would like to forward your emails from your CAS account. Then all the emails to your CAS email account will be automatically forwarded(redirected) to the specified email accounts.&lt;br /&gt;
&lt;br /&gt;
If you want to keep a copy of message in your CAS email box, add &amp;quot;\YOUR_Login_Name,&amp;quot; (without quotation marks) before your forwarding address. &lt;br /&gt;
&lt;br /&gt;
An example of .forward file:&lt;br /&gt;
&lt;br /&gt;
\johndoe, \johndoe@univmail.mcmaster.ca&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Compressed_by_gzip</id>
		<title>Compressed by gzip</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Compressed_by_gzip"/>
				<updated>2007-04-09T20:36:16Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;New page: page exist!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;page exist!&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/.tar.gz</id>
		<title>.tar.gz</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/.tar.gz"/>
				<updated>2007-04-09T20:35:33Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;.tar.gz moved to Extract files from a .tar.gz file&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Extract files from a .tar.gz file]]&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file</id>
		<title>Extract files from a .tar.gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file"/>
				<updated>2007-04-09T20:35:33Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;.tar.gz moved to Extract files from a .tar.gz file&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Extract files from a .tar.gz file ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
A .tar.gz file that contains a bundle of files [[packaged by tar utility]] and then [[compressed by gzip]]  program, therefore basically two steps are required to restore such a file:&lt;br /&gt;
&lt;br /&gt;
1) uncompress it use gzip of gunzip:&lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.tar.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.tar.gz &lt;br /&gt;
This will make the file File_Name.tar.gz replaced by a uncompressed File_Name.tar file. &lt;br /&gt;
&lt;br /&gt;
2) Unpackage the .tar file:&lt;br /&gt;
&lt;br /&gt;
	  tar -xvf  File_Name.tar &lt;br /&gt;
You can combine the two steps together by:&lt;br /&gt;
&lt;br /&gt;
		gzip -dc File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
or &lt;br /&gt;
		gunzip -c File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
(The &amp;quot;-&amp;quot; after the &amp;quot;tar -xvf&amp;quot; is to tell tar to read from the standard input.)&lt;br /&gt;
&lt;br /&gt;
Our Solaris system has a gtar program available. With gtar, users can specify a -z option to tell gtar to zip or unzip the target file thus makes it possible to handle a .tar.gz file truely in a single step:&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file using gtar: &lt;br /&gt;
&lt;br /&gt;
	   gtar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: &lt;br /&gt;
&lt;br /&gt;
	    gtar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file</id>
		<title>Extract files from a .tar.gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file"/>
				<updated>2007-04-09T20:33:55Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Extract files from a .tar.gz file ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
A .tar.gz file that contains a bundle of files [[packaged by tar utility]] and then [[compressed by gzip]]  program, therefore basically two steps are required to restore such a file:&lt;br /&gt;
&lt;br /&gt;
1) uncompress it use gzip of gunzip:&lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.tar.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.tar.gz &lt;br /&gt;
This will make the file File_Name.tar.gz replaced by a uncompressed File_Name.tar file. &lt;br /&gt;
&lt;br /&gt;
2) Unpackage the .tar file:&lt;br /&gt;
&lt;br /&gt;
	  tar -xvf  File_Name.tar &lt;br /&gt;
You can combine the two steps together by:&lt;br /&gt;
&lt;br /&gt;
		gzip -dc File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
or &lt;br /&gt;
		gunzip -c File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
(The &amp;quot;-&amp;quot; after the &amp;quot;tar -xvf&amp;quot; is to tell tar to read from the standard input.)&lt;br /&gt;
&lt;br /&gt;
Our Solaris system has a gtar program available. With gtar, users can specify a -z option to tell gtar to zip or unzip the target file thus makes it possible to handle a .tar.gz file truely in a single step:&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file using gtar: &lt;br /&gt;
&lt;br /&gt;
	   gtar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: &lt;br /&gt;
&lt;br /&gt;
	    gtar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file</id>
		<title>Extract files from a .tar.gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file"/>
				<updated>2007-04-09T20:32:21Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Extract files from a .tar.gz file ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
A .tar.gz file that contains a bundle of files [[packaged by tar utility]] and then compressed by gzip [http://www.cas.mcmaster.ca/wiki/index.php/Compress_to_and_Uncompress_a_.gz_file] program, therefore basically two steps are required to restore such a file:&lt;br /&gt;
&lt;br /&gt;
1) uncompress it use gzip of gunzip:&lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.tar.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.tar.gz &lt;br /&gt;
This will make the file File_Name.tar.gz replaced by a uncompressed File_Name.tar file. &lt;br /&gt;
&lt;br /&gt;
2) Unpackage the .tar file:&lt;br /&gt;
&lt;br /&gt;
	  tar -xvf  File_Name.tar &lt;br /&gt;
You can combine the two steps together by:&lt;br /&gt;
&lt;br /&gt;
		gzip -dc File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
or &lt;br /&gt;
		gunzip -c File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
(The &amp;quot;-&amp;quot; after the &amp;quot;tar -xvf&amp;quot; is to tell tar to read from the standard input.)&lt;br /&gt;
&lt;br /&gt;
Our Solaris system has a gtar program available. With gtar, users can specify a -z option to tell gtar to zip or unzip the target file thus makes it possible to handle a .tar.gz file truely in a single step:&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file using gtar: &lt;br /&gt;
&lt;br /&gt;
	   gtar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: &lt;br /&gt;
&lt;br /&gt;
	    gtar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file</id>
		<title>Extract files from a .tar.gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file"/>
				<updated>2007-04-09T20:31:10Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Extract files from a .tar.gz file ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
A .tar.gz file that contains a bundle of files [[packaged by tar utility]] and then [compressed by gzip http://www.google.com] program, therefore basically two steps are required to restore such a file:&lt;br /&gt;
&lt;br /&gt;
1) uncompress it use gzip of gunzip:&lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.tar.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.tar.gz &lt;br /&gt;
This will make the file File_Name.tar.gz replaced by a uncompressed File_Name.tar file. &lt;br /&gt;
&lt;br /&gt;
2) Unpackage the .tar file:&lt;br /&gt;
&lt;br /&gt;
	  tar -xvf  File_Name.tar &lt;br /&gt;
You can combine the two steps together by:&lt;br /&gt;
&lt;br /&gt;
		gzip -dc File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
or &lt;br /&gt;
		gunzip -c File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
(The &amp;quot;-&amp;quot; after the &amp;quot;tar -xvf&amp;quot; is to tell tar to read from the standard input.)&lt;br /&gt;
&lt;br /&gt;
Our Solaris system has a gtar program available. With gtar, users can specify a -z option to tell gtar to zip or unzip the target file thus makes it possible to handle a .tar.gz file truely in a single step:&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file using gtar: &lt;br /&gt;
&lt;br /&gt;
	   gtar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: &lt;br /&gt;
&lt;br /&gt;
	    gtar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file</id>
		<title>Extract files from a .tar.gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file"/>
				<updated>2007-04-09T20:29:49Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Extract files from a .tar.gz file ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
A .tar.gz file that contains a bundle of files [[packaged by tar utility]] and then [compressed by gzip] program, therefore basically two steps are required to restore such a file:&lt;br /&gt;
&lt;br /&gt;
1) uncompress it use gzip of gunzip:&lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.tar.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.tar.gz &lt;br /&gt;
This will make the file File_Name.tar.gz replaced by a uncompressed File_Name.tar file. &lt;br /&gt;
&lt;br /&gt;
2) Unpackage the .tar file:&lt;br /&gt;
&lt;br /&gt;
	  tar -xvf  File_Name.tar &lt;br /&gt;
You can combine the two steps together by:&lt;br /&gt;
&lt;br /&gt;
		gzip -dc File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
or &lt;br /&gt;
		gunzip -c File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
(The &amp;quot;-&amp;quot; after the &amp;quot;tar -xvf&amp;quot; is to tell tar to read from the standard input.)&lt;br /&gt;
&lt;br /&gt;
Our Solaris system has a gtar program available. With gtar, users can specify a -z option to tell gtar to zip or unzip the target file thus makes it possible to handle a .tar.gz file truely in a single step:&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file using gtar: &lt;br /&gt;
&lt;br /&gt;
	   gtar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: &lt;br /&gt;
&lt;br /&gt;
	    gtar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file</id>
		<title>Extract files from a .tar.gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file"/>
				<updated>2007-04-09T20:28:57Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Extract files from a .tar.gz file ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
A .tar.gz file that contains a bundle of files [[packaged by tar utility]] and then [[compressed by gzip]] program, therefore basically two steps are required to restore such a file:&lt;br /&gt;
&lt;br /&gt;
1) uncompress it use gzip of gunzip:&lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.tar.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.tar.gz &lt;br /&gt;
This will make the file File_Name.tar.gz replaced by a uncompressed File_Name.tar file. &lt;br /&gt;
&lt;br /&gt;
2) Unpackage the .tar file:&lt;br /&gt;
&lt;br /&gt;
	  tar -xvf  File_Name.tar &lt;br /&gt;
You can combine the two steps together by:&lt;br /&gt;
&lt;br /&gt;
		gzip -dc File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
or &lt;br /&gt;
		gunzip -c File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
(The &amp;quot;-&amp;quot; after the &amp;quot;tar -xvf&amp;quot; is to tell tar to read from the standard input.)&lt;br /&gt;
&lt;br /&gt;
Our Solaris system has a gtar program available. With gtar, users can specify a -z option to tell gtar to zip or unzip the target file thus makes it possible to handle a .tar.gz file truely in a single step:&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file using gtar: &lt;br /&gt;
&lt;br /&gt;
	   gtar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: &lt;br /&gt;
&lt;br /&gt;
	    gtar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Compress_to_and_Uncompress_a_.gz_file</id>
		<title>Compress to and Uncompress a .gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Compress_to_and_Uncompress_a_.gz_file"/>
				<updated>2007-04-09T20:21:55Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;New page:  == '''Compress to and Uncompress a .gz file''' ==   gzip utility will compress a file and create a .gz file:       gzip File_Name This will make the file File_Name replaced by a compresse...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== '''Compress to and Uncompress a .gz file''' ==&lt;br /&gt;
 &lt;br /&gt;
gzip utility will compress a file and create a .gz file:&lt;br /&gt;
&lt;br /&gt;
     gzip File_Name&lt;br /&gt;
This will make the file File_Name replaced by a compressed file File_Name.gz. If you want keep the original file while creating a compressed .gz file, use the following command:&lt;br /&gt;
&lt;br /&gt;
     gzip -c File_Name &amp;gt; new_file.gz&lt;br /&gt;
To uncompress a .gz or .GZ file, use utility gzip or gunzip: &lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.gz &lt;br /&gt;
This will uncompress the file File_Name.gz, create a new file File_Name replacing File_Name.gz. &lt;br /&gt;
&lt;br /&gt;
If for some reasons you want to keep the compressed file, use the following command:&lt;br /&gt;
&lt;br /&gt;
	    gzip -dc  File_Name.gz&amp;gt;File_Name &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  -c File_Name.gz&amp;gt;File_Name&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file</id>
		<title>Extract files from a .tar.gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file"/>
				<updated>2007-04-09T17:39:38Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''Extract files from a .tar.gz file ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
A .tar.gz file that contains a bundle of files [[packaged by tar utility]] and then compressed by gzip program, therefore basically two steps are required to restore such a file:&lt;br /&gt;
&lt;br /&gt;
1) uncompress it use gzip of gunzip:&lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.tar.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.tar.gz &lt;br /&gt;
This will make the file File_Name.tar.gz replaced by a uncompressed File_Name.tar file. &lt;br /&gt;
&lt;br /&gt;
2) Unpackage the .tar file:&lt;br /&gt;
&lt;br /&gt;
	  tar -xvf  File_Name.tar &lt;br /&gt;
You can combine the two steps together by:&lt;br /&gt;
&lt;br /&gt;
		gzip -dc File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
or &lt;br /&gt;
		gunzip -c File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
(The &amp;quot;-&amp;quot; after the &amp;quot;tar -xvf&amp;quot; is to tell tar to read from the standard input.)&lt;br /&gt;
&lt;br /&gt;
Our Solaris system has a gtar program available. With gtar, users can specify a -z option to tell gtar to zip or unzip the target file thus makes it possible to handle a .tar.gz file truely in a single step:&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file using gtar: &lt;br /&gt;
&lt;br /&gt;
	   gtar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: &lt;br /&gt;
&lt;br /&gt;
	    gtar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Packaged_by_tar_utility</id>
		<title>Packaged by tar utility</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Packaged_by_tar_utility"/>
				<updated>2007-04-09T17:37:35Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== '''Package to and Unpackag a .tar File''' ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
The Unix utility tar allowing users to coalesce many files into a single file. This is especially useful when users want to transfer or distribute their files. The archive file created by tar usually indicated by the extension of .tar.&lt;br /&gt;
&lt;br /&gt;
To pack files of directories into a single file, do the following:&lt;br /&gt;
&lt;br /&gt;
     tar  -cvf NewFile.tar file1  file2  file3 ....&lt;br /&gt;
This will package file1, file2, file3 and other files in the file list into a single file: NewFile.tar. &lt;br /&gt;
&lt;br /&gt;
To extract files from a .tar file, do the following:&lt;br /&gt;
&lt;br /&gt;
     tar  -xvf NewFile.tar&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Package_to_and_Unpackag_a_.tar_File</id>
		<title>Package to and Unpackag a .tar File</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Package_to_and_Unpackag_a_.tar_File"/>
				<updated>2007-04-09T17:37:10Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== '''Package to and Unpackag a .tar File''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
The Unix utility tar allowing users to coalesce many files into a single file. This is especially useful when users want to transfer or distribute their files. The archive file created by tar usually indicated by the extension of .tar.&lt;br /&gt;
&lt;br /&gt;
To pack files of directories into a single file, do the following:&lt;br /&gt;
&lt;br /&gt;
     tar  -cvf NewFile.tar file1  file2  file3 ....&lt;br /&gt;
This will package file1, file2, file3 and other files in the file list into a single file: NewFile.tar. &lt;br /&gt;
&lt;br /&gt;
To extract files from a .tar file, do the following:&lt;br /&gt;
&lt;br /&gt;
     tar  -xvf NewFile.tar&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Device_is_busy</id>
		<title>Device is busy</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Device_is_busy"/>
				<updated>2007-04-09T17:36:22Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;              &lt;br /&gt;
==  '''umount ---&amp;quot;device is busy!&amp;quot; ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
When using Linux, after finishing using CDROM or floppy disk, when try to un-mount them, sometimes users may get an error message &amp;quot;device is busy&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In this situation, first, make sure you are not in the /mnt/floppy or /mnt/cdrom directory when issuing the &amp;quot;umount&amp;quot; command. Second make sure no file and directory in the floppy disk or cdrom is used by any applications. If you still get the &amp;quot;device is busy&amp;quot; error message, &amp;quot;fuser&amp;quot; command may be used to further trouble shooting.&lt;br /&gt;
&lt;br /&gt;
Command &amp;quot;fuser -u /dev/fd0&amp;quot; or &amp;quot;fuser -u /dev/cdrom&amp;quot; will give you information as which processes and users are using the floppy drive or cdrom. Then you can kill the processes. This may help you to unmount the device.&lt;br /&gt;
&lt;br /&gt;
You may also use the command &amp;quot;fuser -k /dev/fd0&amp;quot; or &amp;quot;fuser -k /dev/cdrom&amp;quot; to directly kill the processes which are using the filesystem.&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file</id>
		<title>Extract files from a .tar.gz file</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Extract_files_from_a_.tar.gz_file"/>
				<updated>2007-04-09T17:36:06Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== '''Extract files from a .tar.gz file ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
A .tar.gz file that contains a bundle of files [[packaged by tar utility]] and then compressed by gzip program, therefore basically two steps are required to restore such a file:&lt;br /&gt;
&lt;br /&gt;
1) uncompress it use gzip of gunzip:&lt;br /&gt;
&lt;br /&gt;
	    gzip -d  File_Name.tar.gz &lt;br /&gt;
or &lt;br /&gt;
	    gunzip  File_Name.tar.gz &lt;br /&gt;
This will make the file File_Name.tar.gz replaced by a uncompressed File_Name.tar file. &lt;br /&gt;
&lt;br /&gt;
2) Unpackage the .tar file:&lt;br /&gt;
&lt;br /&gt;
	  tar -xvf  File_Name.tar &lt;br /&gt;
You can combine the two steps together by:&lt;br /&gt;
&lt;br /&gt;
		gzip -dc File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
or &lt;br /&gt;
		gunzip -c File_Name.tar.gz | tar -xvf -	&lt;br /&gt;
(The &amp;quot;-&amp;quot; after the &amp;quot;tar -xvf&amp;quot; is to tell tar to read from the standard input.)&lt;br /&gt;
&lt;br /&gt;
Our Solaris system has a gtar program available. With gtar, users can specify a -z option to tell gtar to zip or unzip the target file thus makes it possible to handle a .tar.gz file truely in a single step:&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file using gtar: &lt;br /&gt;
&lt;br /&gt;
	   gtar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: .&lt;br /&gt;
&lt;br /&gt;
	    gtar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/.gz</id>
		<title>.gz</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/.gz"/>
				<updated>2007-04-09T17:35:29Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== '''Use GNU Tar to Handle .tar.gz files ''' ==&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
On Linux, you still can create a .tar.gz file or extract files from a .tar.gz file in the same way as in Unix (as when use a non-GNU tar). &lt;br /&gt;
&lt;br /&gt;
Most Linux are equipped with a GNU tar, which has a -z option allowing users to zip or unzip the target files. With this z option, users can pack and compress ( or unpack and uncompress) files in a single step.&lt;br /&gt;
&lt;br /&gt;
To create a .tar.gz file: &lt;br /&gt;
&lt;br /&gt;
	    tar -czvf File_Name.tar.gz   File1 File2 File3 ... &lt;br /&gt;
This will pack File1, File2, File3 and other files on the list and compress them to create a File_Name.tar.gz file. &lt;br /&gt;
To extract files from a .tar.gz file: .&lt;br /&gt;
&lt;br /&gt;
	    tar -xzvf File_Name.tar.gz  &lt;br /&gt;
This will uncompress and unpack File_Name.tar.gz&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically</id>
		<title>Forward emails from my CAS account to my other email accounts automatically</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically"/>
				<updated>2007-04-09T17:34:45Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;/* Headline text */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''How to Forward emails from my CAS account to my other email accounts automatically'''  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Everyone who has an account with CAS has an email box. The email box is ACCOUNT_LOGIN_NAME@mcmaster.cas.ca. If you do not want to check this mail box often, you can have emails sent to this mailbox automatically forwarded to your other email boxes. &lt;br /&gt;
 &lt;br /&gt;
A file named .forward under your home directory can make all the messages sent to your CAS email box be automatically forwarded to another email box. If there is no such a file, create one for yourself. &lt;br /&gt;
&lt;br /&gt;
Edit this file using a text editor and put the email addresses to which you would like to forward your emails from your CAS account. Then all the emails to your CAS email account will be automatically forwarded(redirected) to the specified email accounts.&lt;br /&gt;
&lt;br /&gt;
If you want to keep a copy of message in your CAS email box, add &amp;quot;\YOUR_Login_Name,&amp;quot; (without quotation marks) before your forwarding address. &lt;br /&gt;
&lt;br /&gt;
An example of .forward file:&lt;br /&gt;
&lt;br /&gt;
\johndoe, \johndoe@univmail.mcmaster.ca&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically</id>
		<title>Forward emails from my CAS account to my other email accounts automatically</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically"/>
				<updated>2007-04-09T17:34:14Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Headline text ==&lt;br /&gt;
'''How to Forward emails from my CAS account to my other email accounts automatically''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Everyone who has an account with CAS has an email box. The email box is ACCOUNT_LOGIN_NAME@mcmaster.cas.ca. If you do not want to check this mail box often, you can have emails sent to this mailbox automatically forwarded to your other email boxes. &lt;br /&gt;
 &lt;br /&gt;
A file named .forward under your home directory can make all the messages sent to your CAS email box be automatically forwarded to another email box. If there is no such a file, create one for yourself. &lt;br /&gt;
&lt;br /&gt;
Edit this file using a text editor and put the email addresses to which you would like to forward your emails from your CAS account. Then all the emails to your CAS email account will be automatically forwarded(redirected) to the specified email accounts.&lt;br /&gt;
&lt;br /&gt;
If you want to keep a copy of message in your CAS email box, add &amp;quot;\YOUR_Login_Name,&amp;quot; (without quotation marks) before your forwarding address. &lt;br /&gt;
&lt;br /&gt;
An example of .forward file:&lt;br /&gt;
&lt;br /&gt;
\johndoe, \johndoe@univmail.mcmaster.ca&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically</id>
		<title>Forward emails from my CAS account to my other email accounts automatically</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically"/>
				<updated>2007-04-09T17:33:43Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== '''How to Forward emails from my CAS account to my other email accounts automatically ==''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Everyone who has an account with CAS has an email box. The email box is ACCOUNT_LOGIN_NAME@mcmaster.cas.ca. If you do not want to check this mail box often, you can have emails sent to this mailbox automatically forwarded to your other email boxes. &lt;br /&gt;
 &lt;br /&gt;
A file named .forward under your home directory can make all the messages sent to your CAS email box be automatically forwarded to another email box. If there is no such a file, create one for yourself. &lt;br /&gt;
&lt;br /&gt;
Edit this file using a text editor and put the email addresses to which you would like to forward your emails from your CAS account. Then all the emails to your CAS email account will be automatically forwarded(redirected) to the specified email accounts.&lt;br /&gt;
&lt;br /&gt;
If you want to keep a copy of message in your CAS email box, add &amp;quot;\YOUR_Login_Name,&amp;quot; (without quotation marks) before your forwarding address. &lt;br /&gt;
&lt;br /&gt;
An example of .forward file:&lt;br /&gt;
&lt;br /&gt;
\johndoe, \johndoe@univmail.mcmaster.ca&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically</id>
		<title>Forward emails from my CAS account to my other email accounts automatically</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically"/>
				<updated>2007-04-09T17:33:03Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== '''How to Forward emails from my CAS account to my other email accounts automatically ==&lt;br /&gt;
?''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Everyone who has an account with CAS has an email box. The email box is ACCOUNT_LOGIN_NAME@mcmaster.cas.ca. If you do not want to check this mail box often, you can have emails sent to this mailbox automatically forwarded to your other email boxes. &lt;br /&gt;
 &lt;br /&gt;
A file named .forward under your home directory can make all the messages sent to your CAS email box be automatically forwarded to another email box. If there is no such a file, create one for yourself. &lt;br /&gt;
&lt;br /&gt;
Edit this file using a text editor and put the email addresses to which you would like to forward your emails from your CAS account. Then all the emails to your CAS email account will be automatically forwarded(redirected) to the specified email accounts.&lt;br /&gt;
&lt;br /&gt;
If you want to keep a copy of message in your CAS email box, add &amp;quot;\YOUR_Login_Name,&amp;quot; (without quotation marks) before your forwarding address. &lt;br /&gt;
&lt;br /&gt;
An example of .forward file:&lt;br /&gt;
&lt;br /&gt;
\johndoe, \johndoe@univmail.mcmaster.ca&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically</id>
		<title>Forward emails from my CAS account to my other email accounts automatically</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Forward_emails_from_my_CAS_account_to_my_other_email_accounts_automatically"/>
				<updated>2007-04-09T16:11:12Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;Everyone who has an account with CAS has an email box. The email box is ACCOUNT_LOGIN_NAME@mcmaster.cas.ca. If you do not want to check this mail box often, you can have emails sent to this mailbox au&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''How to Forward emails from my CAS account to my other email accounts automatically?''' &lt;br /&gt;
&lt;br /&gt;
Everyone who has an account with CAS has an email box. The email box is ACCOUNT_LOGIN_NAME@mcmaster.cas.ca. If you do not want to check this mail box often, you can have emails sent to this mailbox automatically forwarded to your other email boxes. &lt;br /&gt;
 &lt;br /&gt;
A file named .forward under your home directory can make all the messages sent to your CAS email box be automatically forwarded to another email box. If there is no such a file, create one for yourself. &lt;br /&gt;
&lt;br /&gt;
Edit this file using a text editor and put the email addresses to which you would like to forward your emails from your CAS account. Then all the emails to your CAS email account will be automatically forwarded(redirected) to the specified email accounts.&lt;br /&gt;
&lt;br /&gt;
If you want to keep a copy of message in your CAS email box, add &amp;quot;\YOUR_Login_Name,&amp;quot; (without quotation marks) before your forwarding address. &lt;br /&gt;
&lt;br /&gt;
An example of .forward file:&lt;br /&gt;
&lt;br /&gt;
\johndoe, \johndoe@univmail.mcmaster.ca&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	<entry>
		<id>http://wiki.cas.mcmaster.ca/index.php/Device_is_busy</id>
		<title>Device is busy</title>
		<link rel="alternate" type="text/html" href="http://wiki.cas.mcmaster.ca/index.php/Device_is_busy"/>
				<updated>2007-04-09T15:59:15Z</updated>
		
		<summary type="html">&lt;p&gt;RobertLi:&amp;#32;error message when try to un-mount a CDROM or floppy disk in Linux&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;               '''umount ---&amp;quot;device is busy!&amp;quot; ''' &lt;br /&gt;
&lt;br /&gt;
When using Linux, after finishing using CDROM or floppy disk, when try to un-mount them, sometimes users may get an error message &amp;quot;device is busy&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In this situation, first, make sure you are not in the /mnt/floppy or /mnt/cdrom directory when issuing the &amp;quot;umount&amp;quot; command. Second make sure no file and directory in the floppy disk or cdrom is used by any applications. If you still get the &amp;quot;device is busy&amp;quot; error message, &amp;quot;fuser&amp;quot; command may be used to further trouble shooting.&lt;br /&gt;
&lt;br /&gt;
Command &amp;quot;fuser -u /dev/fd0&amp;quot; or &amp;quot;fuser -u /dev/cdrom&amp;quot; will give you information as which processes and users are using the floppy drive or cdrom. Then you can kill the processes. This may help you to unmount the device.&lt;br /&gt;
&lt;br /&gt;
You may also use the command &amp;quot;fuser -k /dev/fd0&amp;quot; or &amp;quot;fuser -k /dev/cdrom&amp;quot; to directly kill the processes which are using the filesystem.&lt;/div&gt;</summary>
		<author><name>RobertLi</name></author>	</entry>

	</feed>