<?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>ANY KNOWLEDGE IN MY MIND</title>
	<atom:link href="http://iwanknowledge.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://iwanknowledge.wordpress.com</link>
	<description>try to share any knowledge in my mind, maybe useful for all of you</description>
	<lastBuildDate>Sat, 03 Dec 2011 12:24:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='iwanknowledge.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ANY KNOWLEDGE IN MY MIND</title>
		<link>http://iwanknowledge.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://iwanknowledge.wordpress.com/osd.xml" title="ANY KNOWLEDGE IN MY MIND" />
	<atom:link rel='hub' href='http://iwanknowledge.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Squid about</title>
		<link>http://iwanknowledge.wordpress.com/2011/11/24/squid-about/</link>
		<comments>http://iwanknowledge.wordpress.com/2011/11/24/squid-about/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 07:11:26 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[OS Linux]]></category>
		<category><![CDATA[squid]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/?p=142</guid>
		<description><![CDATA[CHECK SQUID with COMMAND LINE Alternatively, you can use the squidclient program that comes with Squid: % squidclient http://www.squid-cache.org/ CHECK CONFIGURATION FILE Before trying to start Squid, you should verify that your squid.conf file makes sense. This is easy to do. Just run the following command: % squid -k parse Re-INIT CACHE with PROGRESS Cache [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=142&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>CHECK SQUID with COMMAND LINE</strong></p>
<p class="docText">Alternatively, you can use the <em>squidclient</em> program that comes with  Squid:</p>
<pre><strong>% squidclient http://www.squid-cache.org/</strong></pre>
<p><span id="more-142"></span><br />
<strong>CHECK CONFIGURATION FILE</strong></p>
<p class="docText">Before trying to start Squid, you <a name="squid-CHP-5-ITERM-1245"></a><a name="squid-CHP-5-ITERM-1246"></a><a name="squid-CHP-5-ITERM-1247"></a>should verify that your <em>squid.conf</em> file  makes sense. This is easy to do. Just run the following command:</p>
<pre><strong>% squid -k parse</strong></pre>
<p><strong>Re-INIT CACHE with PROGRESS</strong></p>
<p class="docText">Cache directory initialization may take a couple of minutes,  depending on the size and number of cache directories, and the speed of your  disk drives. If you want to watch the progress, use the <em>-X</em> option:</p>
<pre><strong>% squid -zX</strong></pre>
<p><strong>EXAMPLE CONFIG SQUID for ACL</strong></p>
<p><strong>(1) To allow http_access for only one machine with MAC Address 00:08:c7:9f:34:41</strong></p>
<p>To use MAC address in ACL rules. Configure with option -enable-arp-acl.</p>
<p>acl all src 0.0.0.0/0.0.0.0<br />
acl pl800_arp arp 00:08:c7:9f:34:41<br />
http_access allow pl800_arp<br />
http_access deny all</p>
<p><strong>(2) To restrict access to work hours (9am &#8211; 5pm, Monday to Friday) from IP 192.168.2/24</strong></p>
<p>acl ip_acl src 192.168.2.0/24<br />
acl time_acl time M T W H F 9:00-17:00<br />
http_access allow ip_acl time_acl<br />
http_access deny all</p>
<p><strong>(3) Can i use multitime access control list for different users for different timing.</strong></p>
<p>AclDefnitions</p>
<p>acl abc src 172.161.163.85<br />
acl xyz src 172.161.163.86<br />
acl asd src 172.161.163.87<br />
acl morning time 06:00-11:00<br />
acl lunch time 14:00-14:30<br />
acl evening time 16:25-23:59</p>
<p>Access Controls<br />
http_access allow abc morning<br />
http_access allow xyz morning lunch<br />
http_access allow asd lunch</p>
<p>This is wrong. The description follows:<br />
Here access line &#8220;http_access allow xyz morning lunch&#8221; will not work. So ACLs are interpreted like this &#8230;</p>
<p>http_access RULE statement1 AND statement2 AND statement3 OR<br />
http_access ACTION statement1 AND statement2 AND statement3 OR</p>
<p>&#8230;&#8230;..</p>
<p>So, the ACL &#8220;http_access allow xyz morning lunch&#8221; will never work, as pointed, because at any given time, morning AND lunch will ALWAYS be false, because both morning and lunch will NEVER be true at the same time. As one of them is false, and acl uses AND logical statement, 0/1 AND 0 will always be 0 (false).</p>
<p>That&#8217;s because this line is in two. If now read:</p>
<p>http_access allow xyz AND morning OR<br />
http_access allow xyz lunch</p>
<p>If request comes from xyz, and we&#8217;re in one of the allowed time, one of the rules will match TRUE. The other will obviously match FALSE. TRUE OR FALSE will be TRUE, and access will be permitted.</p>
<p>Finally Access Control looks&#8230;</p>
<p>http_access allow abc morning<br />
http_access allow xyz morning<br />
http_access allow xyz lunch<br />
http_access allow asd lunch<br />
http_access deny all</p>
<p><strong>(4) Rules are read from top to bottom. The first rule matched will be used. Other rules won&#8217;t be applied.</strong></p>
<p>Example:</p>
<p>http_access allow xyz morning<br />
http_access deny xyz<br />
http_access allow xyz lunch</p>
<p>If xyz tries to access something in the morning, access will be granted. But if he tries to access something at lunchtime, access will be denied. It will be denied by the deny xyz rule, that was matched before the &#8216;xyz lunch&#8217; rule.</p>
<p><strong>FOR LIMIT DOWNLOAD AND UPLOAD</strong></p>
<p><strong>Tag Name  	request_body_max_size</strong><br />
Usage 	request_body_max_size (KB)</p>
<p>Description<br />
This specifies the maximum size for an HTTP request body. In other words, the maximum size of a PUT/POST request. A user, who attempts to send a request with a body larger than this limit receives an &#8220;Invalid Request&#8221; error message. If you set this parameter to a zero, there will be no limit imposed.<br />
Default 	request_body_max_size 1 MB</p>
<p><strong>Tag Name 	reply_body_max_size</strong><br />
Usage 	reply_body_max_size (KB)</p>
<p>Description<br />
This option specifies the maximum size of a reply body. It can be used to prevent users from downloading very large files, such as MP3&#8242;s and movies. The reply size is checked twice. First when we get the reply headers, we check the content-length value. If the content length value exists and is larger than this parameter, the request is denied and the user receives an error message that says &#8220;the request or reply is too large.&#8221; If there is no content-length, and the reply size exceeds this limit, the client&#8217;s connection is just closed and they will receive a partial reply.<br />
Default 	reply_body_max_size 0<br />
If this parameter is set to zero (the default), there will be no limit imposed.</p>
<p>Caution<br />
Downstream caches probably cannot detect a partial reply if there is no content-length header, so they will cache partial responses and give them out as hits. You should NOT use this option, if you have downstream caches.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=142&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2011/11/24/squid-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>Useful links</title>
		<link>http://iwanknowledge.wordpress.com/2011/11/24/useful-links/</link>
		<comments>http://iwanknowledge.wordpress.com/2011/11/24/useful-links/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 07:05:12 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[OS Linux]]></category>
		<category><![CDATA[OS Windows]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/?p=138</guid>
		<description><![CDATA[For read linux partition on windows http://www.webupd8.org/2011/08/access-ext4-ext3-or-ext2-partitions-in.html http://www.soluvas.com/read-browse-explore-open-ext2-ext3-ext4-partition-filesystem-from-windows-7/ About TightVNC http://opensuse.swerdna.org/susetightvnc.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=138&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>For read linux partition on windows</strong><br />
<a href="http://www.webupd8.org/2011/08/access-ext4-ext3-or-ext2-partitions-in.html" title="Access Ext4 or Ext3 Partitions">http://www.webupd8.org/2011/08/access-ext4-ext3-or-ext2-partitions-in.html</a><br />
<a href="http://www.soluvas.com/read-browse-explore-open-ext2-ext3-ext4-partition-filesystem-from-windows-7/" title="Browse or Explore Linux Partition">http://www.soluvas.com/read-browse-explore-open-ext2-ext3-ext4-partition-filesystem-from-windows-7/</a></p>
<p>About TightVNC</p>
<p>http://opensuse.swerdna.org/susetightvnc.html</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=138&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2011/11/24/useful-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>Add domain to bind</title>
		<link>http://iwanknowledge.wordpress.com/2009/12/18/add-domain-to-bind/</link>
		<comments>http://iwanknowledge.wordpress.com/2009/12/18/add-domain-to-bind/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 01:38:38 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[command]]></category>
		<category><![CDATA[Daily Improvement]]></category>
		<category><![CDATA[OS Linux]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/?p=135</guid>
		<description><![CDATA[What have i made: 1) added to named.conf zone &#8220;DOMAIN&#8221; in { allow-transfer { localnets; }; file &#8220;master/DOMAIN&#8221;; type master; }; zone &#8220;2.168.192.in-addr.arpa&#8221; in { allow-transfer { localnets; }; file &#8220;master/2.168.192.zone&#8221;; type master; }; 2) created at /var/named/master files DOMAIN: $TTL 2D @ IN SOA server.DOMAIN. root.DOMAIN. ( 2008120711 ; serial 3H ; refresh 1H [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=135&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>What have i made:<br />
1) added to named.conf</p>
<p>zone &#8220;DOMAIN&#8221; in {<br />
allow-transfer { localnets; };<br />
file &#8220;master/DOMAIN&#8221;;<br />
type master;<br />
};<br />
zone &#8220;2.168.192.in-addr.arpa&#8221; in {<br />
allow-transfer { localnets; };<br />
file &#8220;master/2.168.192.zone&#8221;;<br />
type master;<br />
};</p>
<p>2) created at /var/named/master files<br />
DOMAIN:<br />
$TTL 2D<br />
@ IN SOA server.DOMAIN. root.DOMAIN. (<br />
2008120711 ; serial<br />
3H ; refresh<br />
1H ; retry<br />
1W ; expiry<br />
1D ) ; minimum<br />
IN NS localhost.</p>
<p>DOMAIN. IN A 192.168.2.15<br />
* IN CNAME DOMAIN.</p>
<p>2.168.192.zone:<br />
$TTL 2D<br />
@ IN SOA server.DOMAIN. root.DOMAIN. (<br />
2008120701 ; serial<br />
3H ; refresh<br />
1H ; retry<br />
1W ; expiry<br />
1D ) ; minimum<br />
IN NS localhost.</p>
<p>15 IN PTR DOMAIN.</p>
<p>3) restarted named</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=135&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2009/12/18/add-domain-to-bind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>Check TCP and port</title>
		<link>http://iwanknowledge.wordpress.com/2009/12/18/check-tcp-and-port/</link>
		<comments>http://iwanknowledge.wordpress.com/2009/12/18/check-tcp-and-port/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 01:20:17 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[command]]></category>
		<category><![CDATA[Daily Improvement]]></category>
		<category><![CDATA[OS Linux]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/?p=132</guid>
		<description><![CDATA[Command for check: iptables -tulpen The result is: Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name tcp 0 0 0.0.0.0:39496 0.0.0.0:* LISTEN 1000 52632 15541/skype tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 60 10410 4188/mysqld tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 0 7706 2997/rpcbind tcp 0 0 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=132&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Command for check: <strong>iptables -tulpen</strong></p>
<p>The result is:<br />
Active Internet connections (only servers)<br />
Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name<br />
tcp        0      0 0.0.0.0:39496           0.0.0.0:*               LISTEN      1000       52632      15541/skype<br />
tcp        0      0 0.0.0.0:3306            0.0.0.0:*               LISTEN      60         10410      4188/mysqld<br />
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          7706       2997/rpcbind<br />
tcp        0      0 0.0.0.0:8080            0.0.0.0:*               LISTEN      65534      30477      10521/dansguardian<br />
tcp        0      0 0.0.0.0:6000            0.0.0.0:*               LISTEN      0          8130       3176/X<br />
tcp        0      0 0.0.0.0:21              0.0.0.0:*               LISTEN      0          11794      4494/vsftpd<br />
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          11689      4469/sshd<br />
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      0          9878       4190/cupsd<br />
tcp        0      0 0.0.0.0:3128            0.0.0.0:*               LISTEN      0          30424      10508/(squid)<br />
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          11312      4384/master<br />
tcp        0      0 :::111                  :::*                    LISTEN      0          7711       2997/rpcbind<br />
tcp        0      0 :::6000                 :::*                    LISTEN      0          8129       3176/X<br />
tcp        0      0 :::22                   :::*                    LISTEN      0          11691      4469/sshd<br />
udp        0      0 0.0.0.0:55055           0.0.0.0:*                           31         30418      10508/(squid)<br />
udp        0      0 0.0.0.0:3130            0.0.0.0:*                           0          30425      10508/(squid)<br />
udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          16787      5182/dhclient<br />
udp        0      0 0.0.0.0:39496           0.0.0.0:*                           1000       52633      15541/skype<br />
udp        0      0 0.0.0.0:3401            0.0.0.0:*                           0          30426      10508/(squid)<br />
udp        0      0 0.0.0.0:5353            0.0.0.0:*                           103        9771       4128/avahi-daemon:<br />
udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          7636       2997/rpcbind<br />
udp        0      0 0.0.0.0:631             0.0.0.0:*                           0          9885       4190/cupsd<br />
udp        0      0 0.0.0.0:35450           0.0.0.0:*                           103        9772       4128/avahi-daemon:<br />
udp        0      0 10.0.0.103:123          0.0.0.0:*                           74         18789      4333/ntpd<br />
udp        0      0 172.16.25.1:123         0.0.0.0:*                           0          10762      4333/ntpd<br />
udp        0      0 172.16.91.1:123         0.0.0.0:*                           0          10761      4333/ntpd<br />
udp        0      0 127.0.0.2:123           0.0.0.0:*                           0          10760      4333/ntpd<br />
udp        0      0 127.0.0.1:123           0.0.0.0:*                           0          10759      4333/ntpd<br />
udp        0      0 0.0.0.0:123             0.0.0.0:*                           0          10704      4333/ntpd<br />
udp        0      0 0.0.0.0:1020            0.0.0.0:*                           0          7705       2997/rpcbind<br />
udp        0      0 127.0.0.1:35325         0.0.0.0:*                           1000       49688      15541/skype<br />
udp        0      0 :::177                  :::*                                0          8074       3142/gdm<br />
udp        0      0 :::111                  :::*                                0          7708       2997/rpcbind<br />
udp        0      0 fe80::213:2ff:fe6c::123 :::*                                74         18788      4333/ntpd<br />
udp        0      0 fe80::250:56ff:fec0:123 :::*                                0          10712      4333/ntpd<br />
udp        0      0 ::1:123                 :::*                                0          10711      4333/ntpd<br />
udp        0      0 fe80::250:56ff:fec0:123 :::*                                0          10710      4333/ntpd<br />
udp        0      0 :::123                  :::*                                0          10705      4333/ntpd<br />
udp        0      0 :::1020                 :::*                                0          7710       2997/rpcbind</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=132&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2009/12/18/check-tcp-and-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>Troubleshoot Windows XP boot looping</title>
		<link>http://iwanknowledge.wordpress.com/2009/06/19/troubleshoot-windows-xp-boot-looping/</link>
		<comments>http://iwanknowledge.wordpress.com/2009/06/19/troubleshoot-windows-xp-boot-looping/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 14:46:07 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[OS Windows]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/?p=129</guid>
		<description><![CDATA[If some viruses or something makes your windows XP boot looping and cannot stop, so this steps maybe useful. 1. Use your windows XP boot CD 2. Boot from CD-Rom 3. Choose Repair from Windows Installation Screen 4. Choose partition which Windows Installed 5. Rename your boot.ini into other name ren boot.ini boot.ori 6. If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=129&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If some viruses or something makes your windows XP boot looping<br />
and cannot stop, so this steps maybe useful.</p>
<p>1. Use your windows XP boot CD<br />
2. Boot from CD-Rom<br />
3. Choose Repair from Windows Installation Screen<br />
4. Choose partition which Windows Installed<br />
5. Rename your boot.ini into other name<br />
	ren boot.ini boot.ori<br />
6. If cannot please change attribute file of boot.ini<br />
	attrib -h c:\boot.ini<br />
	attrib -s c:\boot.ini<br />
	attrib -r c:\boot.ini<br />
7. Rebuild boot.ini<br />
	bootcfg /rebuild<br />
8. Check disk that may errors<br />
	chkdsk /r /p<br />
9. Fix boot sector, answer yes or y for any questions<br />
	fixboot<br />
10. Fix master boot record if necessary<br />
	fixmbr<br />
11. Reboot<br />
	press ctrl+alt+del</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=129&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2009/06/19/troubleshoot-windows-xp-boot-looping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>What is ctfmon.exe?</title>
		<link>http://iwanknowledge.wordpress.com/2009/06/19/what-is-ctfmon-exe/</link>
		<comments>http://iwanknowledge.wordpress.com/2009/06/19/what-is-ctfmon-exe/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 13:21:37 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[OS Windows]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/?p=123</guid>
		<description><![CDATA[You are no doubt reading this article because you are frustrated with the ctfmon.exe process that just won’t stop opening no matter what you do. You remove it from the startup items and it just magically reappears. So what is it? Ctfmon is the Microsoft process that controls Alternative User Input and the Office Language [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=123&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You are no doubt reading this article because you are frustrated with the ctfmon.exe process that just won’t stop opening no matter what you do. You remove it from the startup items and it just magically reappears. So what is it?</p>
<p>Ctfmon is the Microsoft process that controls Alternative User Input and the Office Language bar. It’s how you can control the computer via speech or a pen tablet, or using the onscreen keyboard inputs for asian languages.</p>
<p>If you are using any of the above, you should leave it enabled. For everybody else, we’ll get to the job of disabling this annoying service.</p>
<p>You can just completely unregister the dlls that run the alternative input services by running these two commands from the run box (one at a time)</p>
<p>    Regsvr32.exe /u msimtf.dll</p>
<p>    Regsvr32.exe /u msctf.dll</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=123&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2009/06/19/what-is-ctfmon-exe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux or UNIX &#8211; Find and remove file syntax</title>
		<link>http://iwanknowledge.wordpress.com/2009/06/03/linux-or-unix-find-and-remove-file-syntax/</link>
		<comments>http://iwanknowledge.wordpress.com/2009/06/03/linux-or-unix-find-and-remove-file-syntax/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 01:33:15 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[command]]></category>
		<category><![CDATA[OS Linux]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/?p=121</guid>
		<description><![CDATA[To remove multiple files such as *.jpg or *.sh with one command find, use find . -name "FILE-TO-FIND"-exec rm -rf {} \; OR find . -type f -name "FILE-TO-FIND" -exec rm -f {} \; The only difference between above two syntax is that first command can remove directories as well where second command only removes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=121&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To remove multiple files such as *.jpg or *.sh with one command find, use</p>
<p><code>find . -name "FILE-TO-FIND"-exec rm -rf {} \;</code></p>
<p>OR</p>
<p><code>find . -type f -name "FILE-TO-FIND" -exec rm -f {} \;</code></p>
<p>The only difference between above two syntax is that first command can remove directories as well where second command only removes files.</p>
<h2>More Examples of find command</h2>
<p>(a) Find all files having .bak (*.bak) extension in current directory and remove them:<br />
<code>$ find . -type f -name "*.bak" -exec rm -f {} \;</code></p>
<p>(b) Find all core files and remove them:<br />
<code># find / -name core -exec rm -f {} \;</code></p>
<p>(c) Find all *.bak files in current directory and removes them with confirmation from user:<br />
<code>$ find . -type f -name "*.bak" -exec rm -i {} \;</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=121&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2009/06/03/linux-or-unix-find-and-remove-file-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>Optimize Firefox 3</title>
		<link>http://iwanknowledge.wordpress.com/2009/06/03/optimize-firefox-3/</link>
		<comments>http://iwanknowledge.wordpress.com/2009/06/03/optimize-firefox-3/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 01:16:56 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[OS Windows]]></category>
		<category><![CDATA[Optimize Firefox 3]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/2009/06/03/optimize-firefox-3/</guid>
		<description><![CDATA[Now we need to modify some entries: if you can&#8217;t find one of these entries then you have to create it (just right click anywhere in the control panel then choose &#8220;New&#8221; using the proper desired value, remember to use Boolean when it needs to be &#8220;True or False&#8221;!): * network.dns.disableIPv6: true * network.http.max-connections: 48 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=116&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now we need to modify some entries: if you can&#8217;t find one of these entries then you have to create it (just right click anywhere in the control panel then choose &#8220;New&#8221; using the proper desired value, remember to use Boolean when it needs to be &#8220;True or False&#8221;!):</p>
<p>* network.dns.disableIPv6: true<br />
* network.http.max-connections: 48<br />
* network.http.max-connections-per-server: 24<br />
* network.http.max-persistent-connections-per-proxy: 12<br />
* network.http.pipelining.firstrequest: true<br />
* network.http.pipelining: true<br />
* network.http.pipelining.maxrequests: 32<br />
* network.http.proxy.pipelining: true<br />
* nglayout.initialpaint.delay: 0<br />
* network.http.request.max-start-delay: 5<br />
* extensions.checkCompatibility: false</p>
<p><span>Now your browser should be faster but if you want to &#8220;go over&#8221; then you should try this little extension that speed up Firefox startup: <a title="Download Chrome Cleaner" href="http://forum.addonsmirror.net/ext/extfirefox/Chrome_Cleaner_0.3.xpi">Chrome Cleaner</a>.</span></p>
<p><span>Restart your browser and go to (actually I&#8217;m not using the English version so I&#8217;m sorry if the following path it&#8217;s not 100% exactly!) &#8220;Tools&#8221; &gt; &#8220;Add-Ons&#8221; &gt; &#8220;Chrome Cleaner&#8221; &gt; &#8220;Options&#8221; and then click on the &#8220;Clean!&#8221; button. Done!</span></p>
<p><span>Thanks to </span>www.isaytech.com exspecially to <span style="background:transparent url('http://www.romaosc.com/alessio/icon_time.png') no-repeat scroll 0 0;padding-left:20px;">da <span>AleX</span> </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=116&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2009/06/03/optimize-firefox-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>Mount Manual</title>
		<link>http://iwanknowledge.wordpress.com/2009/05/19/mount-manual-4/</link>
		<comments>http://iwanknowledge.wordpress.com/2009/05/19/mount-manual-4/#comments</comments>
		<pubDate>Tue, 19 May 2009 08:44:27 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[command]]></category>
		<category><![CDATA[OS Linux]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/2009/05/19/mount-manual-4/</guid>
		<description><![CDATA[Mount Manual Mounting samba bisa dilakukan secara manual menggunakan konsole. Meski terbilang primitif , cara ini kadang diperlukan untuk memastikan apakah ada suatu kesalahan pada baris perintah yang kita lakukan. Mount pada folder yang hanya bisa diakses oleh user tertentu (butuh user name dan password) mount -t cifs //NamaServerSamba-AtauIPAddressSamba/NamaShare /FolderUntukMount/NamaFolder -o username=UserSamba,password=PasswordSamba,iocharset=utf8,file_mode=0777,dir_mode=0777 Contoh : mount [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=115&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Mount Manual</p>
<p>Mounting samba bisa dilakukan secara manual menggunakan konsole. Meski terbilang primitif <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> , cara ini kadang diperlukan untuk memastikan apakah ada suatu kesalahan pada baris perintah yang kita lakukan.</p>
<p>Mount pada folder yang hanya bisa diakses oleh user tertentu (butuh user name dan password)<br />
mount -t cifs //NamaServerSamba-AtauIPAddressSamba/NamaShare /FolderUntukMount/NamaFolder -o username=UserSamba,password=PasswordSamba,iocharset=utf8,file_mode=0777,dir_mode=0777</p>
<p>Contoh :<br />
mount -t cifs //192.168.0.1/Warehouse /home/vavai/Desktop/whs2 -o username=vavai,password=passwordvavai,iocharset=utf8,file_mode=0777,dir_mode=0777</p>
<p>Penjelasan :<br />
- mount -t cifs adalah perintah untuk mount folder Samba. Jika menggunakan distro lain bisa diganti dengan perintah mount -t smbfs</p>
<p>- 192.168.0.1 adalah IP Address Server Samba. Jika menggunakan Nama HostName / Netbios, kita perlu melakukan setting pada file /etc/nsswitch.conf. Ini belum saya bahas pada panduan ini</p>
<p>- Warehouse adalah nama folder share. Nama folder share pada suatu komputer dapat dicheck dengan perintah smb://ip-address-server-samba pada Konqueror</p>
<p>- /home/vavai/Desktop/whs2 adalah nama folder tujuan untuk proses mounting. Folder ini harus sudah ada. Jika belum ada ya harus dibuat.</p>
<p>- -o username=vavai,password=passwordvavai, adalah nama dan password user samba</p>
<p>- iocharset=utf8, untuk memastikan proses konversi huruf / font. Pada komputer dengan font non latin, ada masalah jika opsi ini tidak didefinisikan.</p>
<p>- file_mode=0777,dir_mode=0777, perintah untuk memastikan bahwa folder atau file yang dibuat pada hasil mount bisa diakses dengan modus read dan write.</p>
<p>Cara ini memiliki kekurangan karena username dan password samba dibuat secara plaintext yang artinya bisa dilihat oleh orang lain dengan mudah. Untuk melindunginya, kita bisa menggunakan opsi file credentials, yang menyimpan user name dan password pada suatu file teks yang diletakkan difolder tertentu dan hanya bisa diakses oleh user tertentu.</p>
<p>Caranya adalah dengan membuat file teks, misalnya root/.filecredentials. Tanda titik pada file menunjukkan bahwa file ini berjenis hidden file. Buatlah file tersebut dengan text editor non GUI, misalnya dengan vi. Kenapa tidak dengan GUI Editor, karena file ini harus berisi perintah teks murni tanpa format macam-macam. Isilah file tersebut dengan isi sebagai berikut</p>
<p>username=UserSamba<br />
password=PasswordSamba</p>
<p>Lakukan chmod pada file tersebut agar hanya root yang bisa mengaksesnya, chmod 700 /root/.smbcredentials</p>
<p>Mount pada folder tanpa user name dan password :<br />
mount -t cifs //NamaServerSamba-AtauIPAddressSamba/NamaShare /FolderUntukMount/NamaFolder -o guest,rw,iocharset=utf8,file_mode=0777,dir_mode=0777<br />
Mount dengan akses read only<br />
mount -t cifs //NamaServerSamba-AtauIPAddressSamba/NamaShare /FolderUntukMount/NamaFolder -o guest,iocharset=utf8</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=115&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2009/05/19/mount-manual-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>
	</item>
		<item>
		<title>My First CSS</title>
		<link>http://iwanknowledge.wordpress.com/2009/02/27/my-first-css/</link>
		<comments>http://iwanknowledge.wordpress.com/2009/02/27/my-first-css/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 00:23:00 +0000</pubDate>
		<dc:creator>johiwan</dc:creator>
				<category><![CDATA[Daily Improvement]]></category>

		<guid isPermaLink="false">http://iwanknowledge.wordpress.com/2009/02/27/my-first-css/</guid>
		<description><![CDATA[I am newbie on CSS so I will try with small one Today is background For all background-repeat: repeat For vertical background-repeat: repeat-y For horizontal background-repeat: repeat-x For position with precentage; background-repeat: no-repeat; background-attachment:fixed; background-position: 30% 20%; For center position background-repeat:no-repeat; background-attachment:fixed; background-position:center; For not scrolling background-image: url(&#8216;smiley.gif&#8217;); background-repeat: no-repeat; background-attachment: fixed Illustration<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=85&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am newbie on CSS so I will try with small one<br />
Today is background</p>
<p><strong>For all</strong><br />
background-repeat: repeat</p>
<p><strong>For vertical</strong><br />
background-repeat: repeat-y</p>
<p><strong>For horizontal</strong><br />
background-repeat: repeat-x</p>
<p><strong>For position with precentage;</strong><br />
background-repeat: no-repeat;<br />
background-attachment:fixed;<br />
background-position: 30% 20%;</p>
<p><strong>For center position</strong><br />
background-repeat:no-repeat;<br />
background-attachment:fixed;<br />
background-position:center; </p>
<p><strong>For not scrolling</strong><br />
background-image:<br />
url(&#8216;smiley.gif&#8217;);<br />
background-repeat:<br />
no-repeat;<br />
background-attachment:<br />
fixed</p>
<p>Illustration<br />

<a href='http://iwanknowledge.wordpress.com/2009/02/27/my-first-css/css-bg/' title='css-bg'><img data-attachment-id='93' data-orig-size='821,315' data-liked='0'width="150" height="57" src="http://iwanknowledge.files.wordpress.com/2009/02/css-bg.jpg?w=150&#038;h=57" class="attachment-thumbnail" alt="Illustration of CSS for background" title="css-bg" /></a>
</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/iwanknowledge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/iwanknowledge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/iwanknowledge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/iwanknowledge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/iwanknowledge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/iwanknowledge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/iwanknowledge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/iwanknowledge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/iwanknowledge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/iwanknowledge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/iwanknowledge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/iwanknowledge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/iwanknowledge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/iwanknowledge.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=iwanknowledge.wordpress.com&amp;blog=3834989&amp;post=85&amp;subd=iwanknowledge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://iwanknowledge.wordpress.com/2009/02/27/my-first-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f52c6a9a768f9c95cf3543a2e0fca345?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">iwan</media:title>
		</media:content>

		<media:content url="http://iwanknowledge.files.wordpress.com/2009/02/css-bg.jpg?w=150" medium="image">
			<media:title type="html">css-bg</media:title>
		</media:content>
	</item>
	</channel>
</rss>
