<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Bagindast Technologies &#187; Linux</title>
	<atom:link href="http://bagindastech.wordpress.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://bagindastech.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 08 Sep 2008 10:52:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>id</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='bagindastech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/685c6655e787643e3c5b597436aa5301?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Bagindast Technologies &#187; Linux</title>
		<link>http://bagindastech.wordpress.com</link>
	</image>
			<item>
		<title>Useful Commands For The Linux Command Line</title>
		<link>http://bagindastech.wordpress.com/2007/09/23/useful-commands-for-the-linux-command-line/</link>
		<comments>http://bagindastech.wordpress.com/2007/09/23/useful-commands-for-the-linux-command-line/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 09:23:27 +0000</pubDate>
		<dc:creator>lebanon</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://bagindastech.wordpress.com/2007/09/23/useful-commands-for-the-linux-command-line/</guid>
		<description><![CDATA[Useful Commands For The Linux Command Line
March 10, 2007 at 4:19 am · Filed under Linux 

his short guide shows some important commands for your daily work on the Linux command line.
arch
Outputs the processor architecture. 
$ arch
i686
cat
Outputs the contents of a file. 
$ cat lorem.txt
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagindastech.wordpress.com&blog=1444441&post=9&subd=bagindastech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2 class="post-titulo"><a title="Permanent link to Useful Commands For The Linux Command Line" href="http://www.blog.persianadmins.com/useful-commands-for-the-linux-command-line-10.html" rel="bookmark">Useful Commands For The Linux Command Line</a></h2>
<p class="postmeta">March 10, 2007 at 4:19 am · Filed under <a title="View all posts in Linux" href="http://www.blog.persianadmins.com/category/linux/" rel="category tag">Linux</a> </p>
<div class="postentry">
<p>his short guide shows some important commands for your daily work on the Linux command line.</p>
<h3>arch</h3>
<p>Outputs the processor architecture. </p>
<p class="command">$ arch</p>
<p class="system">i686</p>
<h3>cat</h3>
<p>Outputs the contents of a file. </p>
<p class="command">$ cat lorem.txt</p>
<p class="system">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<h3>cd</h3>
<p>Change the working directory. </p>
<p class="command">$ cd /bin</p>
<h3>cksum</h3>
<p>Print CRC checksum and byte counts of each file. </p>
<p class="command">$ cksum lorem.txt moo.txt</p>
<p class="system">3570240675 453 lorem.txt<br />4294967295 0 moo.txt</p>
<h3>cp</h3>
<p>Copies a file. </p>
<p class="command">$ cp lorem.txt copy_of_lorem.txt</p>
<h3>date</h3>
<p>Outputs the current date and time. </p>
<p class="command">$ date</p>
<p class="system">Sat Mar 3 12:07:09 GMT 2007</p>
<h3>df</h3>
<p>Reports the amount of disk space used and available on filesystems. </p>
<p class="command">$ df</p>
<p class="system">Filesystem           1K-blocks      Used Available Use% Mounted on&lt;br&gt;<br />/dev/simfs            39845888    218048  39627840   1% /</p>
<h3>du</h3>
<p>Estimate file space usage. </p>
<p class="command">$ du -h /bin</p>
<p class="system">7.8M    /bin</p>
<h3>echo</h3>
<p>Display a line of text. </p>
<p class="command">$ echo foobar</p>
<p class="system">foobar</p>
<h3>groups</h3>
<p>Outputs the user groups of which your account belongs to. </p>
<p class="command">$ groups</p>
<p class="system">games users</p>
<h3>hostname</h3>
<p>Outputs the machines hostname on the network. </p>
<p class="command">$ hostname</p>
<p class="system">anapnea.net</p>
<h3>id</h3>
<p>Outputs user id, group id, and groups of your account. </p>
<p class="command">$ id</p>
<p class="system">uid=1478(smallfoot) gid=100(users) groups=35(games),100(users)</p>
<h3>man</h3>
<p>Opens the manual page for a software or function. </p>
<p class="command">$ man bash</p>
<h3>md5sum</h3>
<p>Outputs the MD5 hash sum of a file. </p>
<p class="command">$ md5sum lorem.txt</p>
<p class="system">56da9e37259af34345895883e6fd1a27  lorem.txt</p>
<h3>mkdir</h3>
<p>Makes a directory. </p>
<p class="command">$ mkdir foobar</p>
<h3>mv</h3>
<p>Moves a file. </p>
<p class="command">$ mv lorem.txt ipsum.txt</p>
<h3>ping</h3>
<p>Pings a host. </p>
<p class="command">$ ping -c 2 127.0.0.1</p>
<p class="system">PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data.<br />64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.048 ms<br />64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.052 ms</p>
<p>— 127.0.0.1 ping statistics —<br />2 packets transmitted, 2 received, 0% packet loss, time 999ms<br />rtt min/avg/max/mdev = 0.048/0.050/0.052/0.002 ms</p>
<h3>ps</h3>
<p>Outputs running processes. </p>
<p class="command">$ ps</p>
<p class="system">  PID TTY          TIME CMD<br />21542 pts/12   00:00:00 bash<br />27706 pts/12   00:00:00 ps</p>
<h3>pwd</h3>
<p>Outputs the name of current working directory. </p>
<p class="command">$ pwd</p>
<p class="system">/home/smallfoot</p>
<h3>sha1sum</h3>
<p>Outputs the SHA1 hash sum of a file. </p>
<p class="command">$ sha1sum lorem.txt</p>
<p class="system">c942ddebd142ec8bacac9213d48096e74bab4957  lorem.txt</p>
<h3>stat</h3>
<p>Outputs file status. </p>
<p class="command">$ stat lorem.txt</p>
<p class="system">  File: `lorem.txt&rsquo;<br />  Size: 453             Blocks: 8          IO Block: 4096   regular file<br />Device: 77h/119d        Inode: 27312217    Links: 1<br />Access: (0644/-rw-r–r–)  Uid: ( 1478/smallfoot)   Gid: (  100/   users)<br />Access: 2007-03-03 12:24:39.000000000 +0000<br />Modify: 2007-03-03 12:24:39.000000000 +0000<br />Change: 2007-03-03 12:24:39.000000000 +0000</p>
<h3>rm</h3>
<p>Removes a file or directory. </p>
<p class="command">$ rm lorem.txt</p>
<h3>rmdir</h3>
<p>Removes a directory. </p>
<p class="command">$ rmdir foobar</p>
<h3>touch</h3>
<p>Change a file&rsquo;s access and modification timestamps. If file does not exist, create it. </p>
<p class="command">$ touch lorem.txt</p>
<h3>tty</h3>
<p>Outputs the name of the current terminal. </p>
<p class="command">$ tty</p>
<p class="system">/dev/pts/16</p>
<h3>uname</h3>
<p>Outputs operating system, hostname, kernel version, date and timp, and processor. </p>
<p class="command">$ uname -a</p>
<p class="system">Linux anapnea.net 2.6.9 #1 SMP Wed Jul 19 16:24:18 MSD 2006 i686 Intel(R) Xeon(TM) CPU 2.80GHz GenuineIntel GNU/Linux</p>
<h3>uptime</h3>
<p>Outputs the system uptime. </p>
<p class="command">$ uptime</p>
<p class="system"> 14:50:26 up 7 days, 17:52, 18 users,  load average: 0.08, 0.02, 0.01</p>
<h3>w</h3>
<p>Show who is logged on and what they are doing. </p>
<p class="command">$ w</p>
<p class="system"> 12:14:30 up 5 days, 15:16, 19 users,  load average: 0.00, 0.00, 0.00<br />USER     TTY        LOGIN@   IDLE   JCPU   PCPU WHAT<br />charlie  pts/0     Fri21    3:26m  2.52s  2.52s irssi<br />alice    pts/2     Wed17   30:21m  0.00s  0.00s -bash<br />emma     pts/4     11:37   36:57   0.00s  0.00s -bash<br />frank    pts/5     11:48   11:03   0.00s  0.00s -bash<br />smallfoo pts/12    12:01    0.00s  0.04s  0.01s w</p>
<h3>wc</h3>
<p>Counts lines in a file. </p>
<p class="command">$ wc -l lorem.txt</p>
<p class="system">7 lorem.txt</p>
<h3>who</h3>
<p>Outputs who is currently logged into the system. </p>
<p class="command">$ who</p>
<p class="system">charlie  pts/0        Mar  2 21:37 (xtreme-11-65.acme.com)<br />alice    pts/2        Feb 28 17:48 (147.21.16.3)<br />emma     pts/4        Mar  3 11:37 (32.84-48-181.uac.com)<br />frank    pts/5        Mar  3 11:48 (port-212-202-233-2.foobar.org)<br />smallfoot pts/12       Mar  3 12:01 (c-12776f4.cust.example.net)</p>
<h3>whoami</h3>
<p>Outputs your username / the name of your account. </p>
<p class="command">$ whoami</p>
<p class="system">smallfoot</p>
<p class="system"><a href="http://www.howtoforge.com/useful_linux_commands" target="_blank">Source </a></p>
</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bagindastech.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bagindastech.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bagindastech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bagindastech.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bagindastech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bagindastech.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bagindastech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bagindastech.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bagindastech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bagindastech.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bagindastech.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bagindastech.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bagindastech.wordpress.com&blog=1444441&post=9&subd=bagindastech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://bagindastech.wordpress.com/2007/09/23/useful-commands-for-the-linux-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b462aaa4a6fa7a6c2ff6cae625628350?s=96&#38;d=identicon" medium="image">
			<media:title type="html">lebanon</media:title>
		</media:content>
	</item>
	</channel>
</rss>