<?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/"
	>

<channel>
	<title>coretan si cuplis &#187; Ubuntu</title>
	<atom:link href="http://cuplis.net/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://cuplis.net</link>
	<description>learn the way, define your own way</description>
	<lastBuildDate>Thu, 20 May 2010 08:25:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ubuntu ssh-copy-id : setting ssh tanpa password</title>
		<link>http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/</link>
		<comments>http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 15:40:53 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=752</guid>
		<description><![CDATA[﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password. seiring bertambahnya mesin yang kita handle, bertambah pula record password yang ada di pikiran kita. apa yang terjadi jika ada banyak mesin dengan password yang berbeda2? yang paling mungkin saat salah masukin password, kita tanya teman yang lain atau melihat dokumentasi mesin dan password (kalo [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/' rel='bookmark' title='Permanent Link: how to solve : vmware error while getting interfaces flag'>how to solve : vmware error while getting interfaces flag</a> <small>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password. seiring bertambahnya mesin yang kita handle, bertambah pula record password yang ada di pikiran kita. apa yang terjadi jika ada banyak mesin dengan password yang berbeda2? yang paling mungkin saat salah masukin password, kita tanya teman yang lain atau melihat dokumentasi mesin dan password (kalo ada). dan itu pasti makan waktu entah 1-2 menit.</p>
<p>untuk efisiensi waktu, salah satu solusinya adalah penggunaan command ssh-copy-id. ssh-copy-id digunakan untuk mengopikan id yang ada id file [HOME_CLIENT]/ssh/id_rsa.pub ke mesin lain di path [HOME_SERVER]/.ssh/authorized_keys. setelah pengopian dilakukan, setiap kita melakukan dari [CLIENT] ke [SERVER] tidak akan diminta untuk memasukkan password lagi, kecuali id_rsa.pub-nya [CLIENT] yang dikopikan tadi dihapus dari [HOME_SERVER]/.ssh/authorized_keys.</p>
<p>untuk melakukan ssh-copy-id secara hampir bersamaan di seluruh mesin, bisa menggunakan suatu script. daftar ip mesin dan password bisa diletakkan di dalam 1 file (jika user yang kita punya di seluruh mesin sama).</p>
<p>berikut langkah2nya :</p>
<p>install library python-pexpect :</p>

<div class="wp-terminal">user@computer:$ sudo apt-get install python-pexpect<br/><br/></div>

<p>kemudian siapkan file ~/ipserver.txt yang berisi daftar ip mesin dan passwordnya :</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">192.168.1.10|password10
192.168.1.11|password11
192.168.1.12|password12</pre></div></div>

<p>setelah itu, buat suatu file misalnya <em>autossh.py</em> di home folder dan isi dengan code berikut :</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
<span style="color: #808080; font-style: italic;"># -*- coding: utf-8 -*-</span>
<span style="color: #ff7700;font-weight:bold;">import</span> pexpect
&nbsp;
ssh_newkey = <span style="color: #483d8b;">'Are you sure you want to continue connecting'</span>
ip = <span style="color: #008000;">open</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'~/ipserver.txt'</span>, <span style="color: #483d8b;">'r'</span><span style="color: black;">&#41;</span>
<span style="color: #808080; font-style: italic;"># my ssh command line</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">for</span> b <span style="color: #ff7700;font-weight:bold;">in</span> ip:
	iplist		= b.<span style="color: black;">split</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;|&quot;</span><span style="color: black;">&#41;</span>
	passwordlist	= iplist<span style="color: black;">&#91;</span><span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span>.<span style="color: black;">split</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: black;">&#41;</span>
	ipaddress	= iplist<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span>
	password	= passwordlist<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span>
&nbsp;
	p=pexpect.<span style="color: black;">spawn</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'ssh-copy-id -i .ssh/id_rsa.pub user@'</span> + ipaddress<span style="color: black;">&#41;</span>
&nbsp;
	i=p.<span style="color: black;">expect</span><span style="color: black;">&#40;</span><span style="color: black;">&#91;</span>ssh_newkey,<span style="color: #483d8b;">'password:'</span>,pexpect.<span style="color: black;">EOF</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
	<span style="color: #ff7700;font-weight:bold;">if</span> i==<span style="color: #ff4500;">0</span>:
		<span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;I say yes&quot;</span>
		p.<span style="color: black;">sendline</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'yes'</span><span style="color: black;">&#41;</span>
		i=p.<span style="color: black;">expect</span><span style="color: black;">&#40;</span><span style="color: black;">&#91;</span>ssh_newkey,<span style="color: #483d8b;">'password:'</span>,pexpect.<span style="color: black;">EOF</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
	<span style="color: #ff7700;font-weight:bold;">if</span> i==<span style="color: #ff4500;">1</span>:
		<span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;I give password &quot;</span> + ipaddress + <span style="color: #483d8b;">&quot; &quot;</span> + password,
		p.<span style="color: black;">sendline</span><span style="color: black;">&#40;</span>password<span style="color: black;">&#41;</span>
		i=p.<span style="color: black;">expect</span><span style="color: black;">&#40;</span><span style="color: black;">&#91;</span>ssh_newkey,<span style="color: #483d8b;">'password:'</span>,pexpect.<span style="color: black;">EOF</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
	<span style="color: #ff7700;font-weight:bold;">elif</span> i==<span style="color: #ff4500;">2</span>:
		<span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;I either got key or connection timeout&quot;</span>
		<span style="color: #ff7700;font-weight:bold;">pass</span>
	<span style="color: #ff7700;font-weight:bold;">print</span> p.<span style="color: black;">before</span> <span style="color: #808080; font-style: italic;"># print out the result</span>
ip.<span style="color: black;">close</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></div></div>

<p>kemudian jalankan di terminal :</p>

<div class="wp-terminal">user@computer:$ python ~/autossh.py<br/><br/></div>

<p>udah gitu aja, sekarang coba ssh ke salah satu mesin yang ip-nya ada di ~/ipserver.txt. normalnya sih udah gak diminta masukkan password lagi.</p>
<p>source : <a href="http://linux.byexamples.com/archives/346/python-how-to-access-ssh-with-pexpect/" target="_blank">http://linux.byexamples.com/archives/346/python-how-to-access-ssh-with-pexpect/</a></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2010%2F04%2Fubuntu-ssh-copy-id-setting-ssh-tanpa-password%2F&amp;t=ubuntu%20ssh-copy-id%20%3A%20setting%20ssh%20tanpa%20password" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2010%2F04%2Fubuntu-ssh-copy-id-setting-ssh-tanpa-password%2F&amp;title=ubuntu%20ssh-copy-id%20%3A%20setting%20ssh%20tanpa%20password&amp;annotation=%EF%BB%BF%EF%BB%BF%EF%BB%BF%EF%BB%BF%EF%BB%BFsebenernya%20proses%20ssh%20ke%20mirror%20dapat%20dipercepat%20dengan%20tanpa%20password.%20seiring%20bertambahnya%20mesin%20yang%20kita%20handle%2C%20bertambah%20pula%20record%20password%20yang%20ada%20di%20pikiran%20kita.%20apa%20yang%20terjadi%20jika%20ada%20banyak%20mesin%20dengan%20password%20yang%20b" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2010%2F04%2Fubuntu-ssh-copy-id-setting-ssh-tanpa-password%2F&amp;title=ubuntu%20ssh-copy-id%20%3A%20setting%20ssh%20tanpa%20password&amp;bodytext=%EF%BB%BF%EF%BB%BF%EF%BB%BF%EF%BB%BF%EF%BB%BFsebenernya%20proses%20ssh%20ke%20mirror%20dapat%20dipercepat%20dengan%20tanpa%20password.%20seiring%20bertambahnya%20mesin%20yang%20kita%20handle%2C%20bertambah%20pula%20record%20password%20yang%20ada%20di%20pikiran%20kita.%20apa%20yang%20terjadi%20jika%20ada%20banyak%20mesin%20dengan%20password%20yang%20b" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2010%2F04%2Fubuntu-ssh-copy-id-setting-ssh-tanpa-password%2F&amp;title=ubuntu%20ssh-copy-id%20%3A%20setting%20ssh%20tanpa%20password&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=%EF%BB%BF%EF%BB%BF%EF%BB%BF%EF%BB%BF%EF%BB%BFsebenernya%20proses%20ssh%20ke%20mirror%20dapat%20dipercepat%20dengan%20tanpa%20password.%20seiring%20bertambahnya%20mesin%20yang%20kita%20handle%2C%20bertambah%20pula%20record%20password%20yang%20ada%20di%20pikiran%20kita.%20apa%20yang%20terjadi%20jika%20ada%20banyak%20mesin%20dengan%20password%20yang%20b" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=ubuntu%20ssh-copy-id%20%3A%20setting%20ssh%20tanpa%20password%20-%20http%3A%2F%2Fcuplis.net%2F2010%2F04%2Fubuntu-ssh-copy-id-setting-ssh-tanpa-password%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/' rel='bookmark' title='Permanent Link: how to solve : vmware error while getting interfaces flag'>how to solve : vmware error while getting interfaces flag</a> <small>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to install wordpress mu on nginx</title>
		<link>http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/</link>
		<comments>http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 11:16:15 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=686</guid>
		<description><![CDATA[setting dns server

tambahkan zone sarunkgenk.com di file /etc/bind/named.conf

user@computer:$ sudo vim /etc/bind/named.confzone "sarunkgenk.com" IN {type master;file "/etc/bind/db.sarunkgenk.com";allow-update { none; };};


ubah file /etc/bind/db.sarunkgenk.com

user@computer:$ sudo vim /etc/bind/db.sarunkgenk.com;; BIND data file for local loopback interface;$TTL    604800$ORIGIN sarunkgenk.com.@       IN      SOA     ns1.sarunkgenk.com. me.cuplis.net. (128       ; Serial604800         ; Refresh86400         ; Retry2419200         ; Expire604800 )       ; Negative Cache TTLIN      NS      ns1.sarunkgenk.com.ns1                     IN      A       [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/' rel='bookmark' title='Permanent Link: how to configure php as fastcgi on nginx'>how to configure php as fastcgi on nginx</a> <small> install php user@computer:$ sudo apt-get install php5-cgi buat file...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><strong>setting dns server</strong></p>
<ol>
<li>tambahkan zone sarunkgenk.com di file /etc/bind/named.conf

<div class="wp-terminal">user@computer:$ sudo vim /etc/bind/named.conf<br/>zone "sarunkgenk.com" IN {<br/>type master;<br/>file "/etc/bind/db.sarunkgenk.com";<br/>allow-update { none; };<br/>};<br/></div>

</li>
<li>ubah file /etc/bind/db.sarunkgenk.com

<div class="wp-terminal">user@computer:$ sudo vim /etc/bind/db.sarunkgenk.com<br/>;<br/>; BIND data file for local loopback interface<br/>;<br/>$TTL    604800<br/>$ORIGIN sarunkgenk.com.<br/>@       IN      SOA     ns1.sarunkgenk.com. me.cuplis.net. (<br/>128       ; Serial<br/>604800         ; Refresh<br/>86400         ; Retry<br/>2419200         ; Expire<br/>604800 )       ; Negative Cache TTL<br/><br/>IN      NS      ns1.sarunkgenk.com.<br/>ns1                     IN      A       192.168.22.115<br/>@                       IN      A       192.168.22.115<br/><br/>www                     IN      CNAME   @<br/>*                       IN      A       192.168.22.115<br/>@                       IN      MX      5 ASPMX.L.GOOGLE.COM.<br/>IN      MX      10 ALT2.ASPMX.L.GOOGLE.COM.<br/>IN      MX      1 ASPMX2.GOOGLEMAIL.COM.<br/></div>

</li>
<li>cek konfigurasi dns

<div class="wp-terminal">user@computer:$ sudo named-checkzone sarunkgenk.com /etc/bind/db.sarunkgenk.com<br/>zone sarunkgenk.com/IN: loaded serial 128<br/>OK<br/></div>

</li>
<li>restart bind

<div class="wp-terminal">user@computer:$ sudo /etc/init.d/bind9 restart<br/></div>

</li>
<li>cek hasil

<div class="wp-terminal">user@computer:$ dig sarunkgenk.com;<br/>; &lt;&lt;&gt;&gt; DiG 9.4.2 &lt;&lt;&gt;&gt; sarunkgenk.com<br/>;; global options:  printcmd<br/>;; Got answer:<br/>;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 22729<br/>;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1<br/><br/>;; QUESTION SECTION:<br/>;sarunkgenk.com.            IN    A<br/><br/>;; ANSWER SECTION:<br/>sarunkgenk.com.        604800    IN    A    192.168.22.115<br/><br/>;; AUTHORITY SECTION:<br/>sarunkgenk.com.        604800    IN    NS    ns1.sarunkgenk.com.<br/><br/>;; ADDITIONAL SECTION:<br/>ns1.sarunkgenk.com.    604800    IN    A    192.168.22.115<br/><br/>;; Query time: 0 msec<br/>;; SERVER: 192.168.22.115#53(192.168.22.115)<br/>;; WHEN: Sun Oct  4 15:41:20 2009<br/>;; MSG SIZE  rcvd: 82<br/></div>

</li>
</ol>
<p><span id="more-686"></span></p>
<p><strong>setting vhost sarunkgenk.com on nginx</strong></p>
<ol>
<li>buat file /etc/nginx/sites-available/sarunkgenk.com

<div class="wp-terminal">user@computer:$ sudo vim /etc/nginx/sites-available/sarunkgenk.com<br/>server {<br/>listen      [::]:80;<br/>server_name  sarunkgenk.com;<br/>server_name  *.sarunkgenk.com;<br/>server_name www.sarunkgenk.com;<br/>access_log /var/log/nginx/access_sarunkgenk.log info;<br/>error_log /var/log/nginx/error_sarunkgenk.log;<br/>location ~* ^.+\.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$ {<br/>root /home/arditto/wordpress-mu/;<br/>expires 30d;<br/>break;<br/>}<br/>location / {<br/>root   /home/arditto/wordpress-mu/;<br/>index  index.php index.html index.htm;<br/>if (!-e $request_filename) {<br/>rewrite ^.+/?(/wp-.*) $1 last;<br/>rewrite ^.+/?(/.*\.php)$ $1 last;<br/>rewrite ^(.+)$ /index.php?q=$1 last;<br/>}<br/><br/>fastcgi_pass   127.0.0.1:8888;<br/>fastcgi_index  index.php;<br/>fastcgi_param  SCRIPT_FILENAME /home/arditto/wordpress-mu$fastcgi_script_name;<br/>include        /etc/nginx/fastcgi_params;<br/>}<br/>}<br/></div>

</li>
<li>aktifkan konfigurasi vhost

<div class="wp-terminal">user@computer:$ sudo ln -s /etc/nginx/sites-available/sarunkgenk.com /etc/nginx/sites-enabled/<br/></div>

</li>
</ol>
<p><strong>install wordpress mu</strong></p>
<ol>
<li>download wordpressmu di <a href="http://mu.wordpress.org/latest.zip" target="_blank">sini</a></li>
<li>buat database wordpressmu</li>
<li>buat file .htaccess di document root nya dalam hal ini /home/arditto/wordpress-mu<br />
touch /home/arditto/wordpress-mu/.htaccess</li>
<li>ubah permissionnya<br />
chmod 777 /home/arditto/wordpress-mu/.htaccess</li>
<li>ubah setting pengiriman email (dari sendmail ke phpmailer) jika diperlukan bisa edit file /home/arditto/wordpress-mu/wp-includes/class-phpmailer.php dan /home/arditto/wordpress-mu/wp-includes/pluggable.php</li>
<li>buka sarunkgenk.com, kemudian ikuti petunjuk installasinya</li>
</ol>
<p>environments :<br />
nginx version: nginx/0.6.35<br />
Linux cuplis 2.6.24-16-server #1 SMP Thu Apr 10 13:58:00 UTC 2008 i686 GNU/Linux<br />
wordpress mu 2.8.4a<br />
PHP 5.2.6-3ubuntu4.2 with Suhosin-Patch 0.9.6.2 (cli) (built: Aug 21 2009 19:14:44)</p>
<p>source : <a href="http://mu.wordpress.org/forums/topic/13277?replies=7">http://mu.wordpress.org/forums/topic/13277?replies=7</a></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-wordpress-mu-on-nginx%2F&amp;t=how%20to%20install%20wordpress%20mu%20on%20nginx" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-wordpress-mu-on-nginx%2F&amp;title=how%20to%20install%20wordpress%20mu%20on%20nginx&amp;annotation=setting%20dns%20server%0D%0A%0D%0A%09tambahkan%20zone%20sarunkgenk.com%20di%20file%20%2Fetc%2Fbind%2Fnamed.conf%0D%0Asudo%20vim%20%2Fetc%2Fbind%2Fnamed.conf%0D%0Azone%20%22sarunkgenk.com%22%20IN%20%7B%0D%0Atype%20master%3B%0D%0Afile%20%22%2Fetc%2Fbind%2Fdb.sarunkgenk.com%22%3B%0D%0Aallow-update%20%7B%20none%3B%20%7D%3B%0D%0A%7D%3B%0D%0A%0D%0A%09ubah%20file%20%2Fetc%2Fbind%2Fdb.sa" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-wordpress-mu-on-nginx%2F&amp;title=how%20to%20install%20wordpress%20mu%20on%20nginx&amp;bodytext=setting%20dns%20server%0D%0A%0D%0A%09tambahkan%20zone%20sarunkgenk.com%20di%20file%20%2Fetc%2Fbind%2Fnamed.conf%0D%0Asudo%20vim%20%2Fetc%2Fbind%2Fnamed.conf%0D%0Azone%20%22sarunkgenk.com%22%20IN%20%7B%0D%0Atype%20master%3B%0D%0Afile%20%22%2Fetc%2Fbind%2Fdb.sarunkgenk.com%22%3B%0D%0Aallow-update%20%7B%20none%3B%20%7D%3B%0D%0A%7D%3B%0D%0A%0D%0A%09ubah%20file%20%2Fetc%2Fbind%2Fdb.sa" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-wordpress-mu-on-nginx%2F&amp;title=how%20to%20install%20wordpress%20mu%20on%20nginx&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=setting%20dns%20server%0D%0A%0D%0A%09tambahkan%20zone%20sarunkgenk.com%20di%20file%20%2Fetc%2Fbind%2Fnamed.conf%0D%0Asudo%20vim%20%2Fetc%2Fbind%2Fnamed.conf%0D%0Azone%20%22sarunkgenk.com%22%20IN%20%7B%0D%0Atype%20master%3B%0D%0Afile%20%22%2Fetc%2Fbind%2Fdb.sarunkgenk.com%22%3B%0D%0Aallow-update%20%7B%20none%3B%20%7D%3B%0D%0A%7D%3B%0D%0A%0D%0A%09ubah%20file%20%2Fetc%2Fbind%2Fdb.sa" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20install%20wordpress%20mu%20on%20nginx%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-wordpress-mu-on-nginx%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/' rel='bookmark' title='Permanent Link: how to configure php as fastcgi on nginx'>how to configure php as fastcgi on nginx</a> <small> install php user@computer:$ sudo apt-get install php5-cgi buat file...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>how to configure php as fastcgi on nginx</title>
		<link>http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/</link>
		<comments>http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 10:27:06 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=691</guid>
		<description><![CDATA[
install php

user@computer:$ sudo apt-get install php5-cgi


buat file /etc/default/php-fastcgi

user@computer:$ sudo vim /etc/default/php-fastcgiSTART=yes# Which user runs PHP? (default: www-data)EXEC_AS_USER=www-data# Host and TCP port for FASTCGI-Listener (default: localhost:9000)FCGI_HOST=localhostFCGI_PORT=8888# Environment variables, which are processed by PHPPHP_FCGI_CHILDREN=4PHP_FCGI_MAX_REQUESTS=1000


buat file /etc/init.d/php-fastcgi

user@computer:$ sudo vim /etc/init.d/php-fastcgi#! /bin/bash### BEGIN INIT INFO# Provides:          php-fastcgi# Required-Start:    $all# Required-Stop:     $all# Default-Start:     2 3 4 5# Default-Stop:      0 1 [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/' rel='bookmark' title='Permanent Link: how to install wordpress mu on nginx'>how to install wordpress mu on nginx</a> <small>setting dns server tambahkan zone sarunkgenk.com di file /etc/bind/named.conf user@computer:$...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<ol>
<li>install php

<div class="wp-terminal">user@computer:$ sudo apt-get install php5-cgi<br/></div>

</li>
<li>buat file /etc/default/php-fastcgi

<div class="wp-terminal">user@computer:$ sudo vim /etc/default/php-fastcgi<br/>START=yes<br/><br/># Which user runs PHP? (default: www-data)<br/>EXEC_AS_USER=www-data<br/><br/># Host and TCP port for FASTCGI-Listener (default: localhost:9000)<br/>FCGI_HOST=localhost<br/>FCGI_PORT=8888<br/><br/># Environment variables, which are processed by PHP<br/>PHP_FCGI_CHILDREN=4<br/>PHP_FCGI_MAX_REQUESTS=1000<br/></div>

<p><span id="more-691"></span></li>
<li>buat file /etc/init.d/php-fastcgi

<div class="wp-terminal">user@computer:$ sudo vim /etc/init.d/php-fastcgi<br/>#! /bin/bash<br/>### BEGIN INIT INFO<br/># Provides:          php-fastcgi<br/># Required-Start:    $all<br/># Required-Stop:     $all<br/># Default-Start:     2 3 4 5<br/># Default-Stop:      0 1 6<br/># Short-Description: Start and stop php-cgi in external FASTCGI mode<br/># Description:       Start and stop php-cgi in external FASTCGI mode<br/>### END INIT INFO<br/><br/># Author: Kurt Zankl<br/><br/># Do NOT "set -e"<br/><br/>PATH=/sbin:/usr/sbin:/bin:/usr/bin<br/>DESC="php-cgi in external FASTCGI mode"<br/>NAME=php-fastcgi<br/>DAEMON=/usr/bin/php-cgi<br/>PIDFILE=/var/run/$NAME.pid<br/>SCRIPTNAME=/etc/init.d/$NAME<br/>PHP_CONFIG_FILE=/etc/php5/cgi/php.ini<br/><br/># Exit if the package is not installed<br/>[ -x "$DAEMON" ] || exit 0<br/><br/># Read configuration variable file if it is present<br/>[ -r /etc/default/$NAME ] &amp;&amp; . /etc/default/$NAME<br/><br/># Load the VERBOSE setting and other rcS variables<br/>. /lib/init/vars.sh<br/><br/># Define LSB log_* functions.<br/># Depend on lsb-base (&gt;= 3.0-6) to ensure that this file is present.<br/>. /lib/lsb/init-functions<br/><br/># If the daemon is not enabled, give the user a warning and then exit,<br/># unless we are stopping the daemon<br/>if [ "$START" != "yes" -a "$1" != "stop" ]; then<br/>log_warning_msg "To enable $NAME, edit /etc/default/$NAME and set START=yes"<br/>exit 0<br/>fi<br/><br/># Process configuration<br/>export PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS<br/>DAEMON_ARGS="-q -b $FCGI_HOST:$FCGI_PORT -c $PHP_CONFIG_FILE"<br/><br/>do_start()<br/>{<br/># Return<br/>#   0 if daemon has been started<br/>#   1 if daemon was already running<br/>#   2 if daemon could not be started<br/>start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test &gt; /dev/null \<br/>|| return 1<br/>start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON \<br/>--background --make-pidfile --chuid $EXEC_AS_USER --startas $DAEMON -- \<br/>$DAEMON_ARGS \<br/>|| return 2<br/><br/>}<br/><br/>do_stop()<br/>{<br/># Return<br/>#   0 if daemon has been stopped<br/>#   1 if daemon was already stopped<br/>#   2 if daemon could not be stopped<br/>#   other if a failure occurred<br/>start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE &gt; /dev/null # --name $DAEMON<br/>RETVAL="$?"<br/>[ "$RETVAL" = 2 ] &amp;&amp; return 2<br/># Wait for children to finish too if this is a daemon that forks<br/># and if the daemon is only ever run from this initscript.<br/># If the above conditions are not satisfied then add some other code<br/># that waits for the process to drop all resources that could be<br/># needed by services started subsequently.  A last resort is to<br/># sleep for some time.<br/>start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON<br/>[ "$?" = 2 ] &amp;&amp; return 2<br/># Many daemons don’t delete their pidfiles when they exit.<br/>rm -f $PIDFILE<br/>return "$RETVAL"<br/>}<br/><br/>case "$1" in<br/>start)<br/>[ "$VERBOSE" != no ] &amp;&amp; log_daemon_msg "Starting $DESC" "$NAME"<br/>do_start<br/>case "$?" in<br/>0|1) [ "$VERBOSE" != no ] &amp;&amp; log_end_msg 0 ;;<br/>2) [ "$VERBOSE" != no ] &amp;&amp; log_end_msg 1 ;;<br/>esac<br/>;;<br/>stop)<br/>[ "$VERBOSE" != no ] &amp;&amp; log_daemon_msg "Stopping $DESC" "$NAME"<br/>do_stop<br/>case "$?" in<br/>0|1) [ "$VERBOSE" != no ] &amp;&amp; log_end_msg 0 ;;<br/>2) [ "$VERBOSE" != no ] &amp;&amp; log_end_msg 1 ;;<br/>esac<br/>;;<br/>restart|force-reload)<br/>log_daemon_msg "Restarting $DESC" "$NAME"<br/>do_stop<br/>case "$?" in<br/>0|1)<br/>do_start<br/>case "$?" in<br/>0) log_end_msg 0 ;;<br/>1) log_end_msg 1 ;; # Old process is still running<br/>*) log_end_msg 1 ;; # Failed to start<br/>esac<br/>;;<br/>*)<br/># Failed to stop<br/>log_end_msg 1<br/>;;<br/>esac<br/>;;<br/>*)<br/>echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" &gt;&amp;2<br/>exit 3<br/>;;<br/>esac<br/></div>

</li>
<li>setting permission agar bisa dieksekusi

<div class="wp-terminal">user@computer:$ sudo chmod 755 /etc/init.d/php-fastcgi<br/></div>

</li>
<li>contoh konfigurasi vhost

<div class="wp-terminal">user@computer:$ sudo less /etc/nginx/sites-available/sarunkgenk.com<br/>server {<br/>listen      *:80;<br/>server_name  sarunkgenk.com www.sarunkgenk.com *.sarunkgenk.com;<br/>access_log /var/log/nginx/access_sarunkgenk.log;<br/>error_log /var/log/nginx/error_sarunkgenk.log;<br/>location ~* ^.+\.(html|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$ {<br/>root /home/arditto/wordpress-mu/;<br/>expires 30d;<br/>break;<br/>}<br/>location / {<br/>root   /home/arditto/wordpress-mu/;<br/>index  index.php index.html index.htm;<br/>if (!-e $request_filename) {<br/>rewrite ^.+/?(/wp-.*) $1 last;<br/>rewrite ^.+/?(/.*\.php)$ $1 last;<br/>rewrite ^(.+)$ /index.php?q=$1 last;<br/>}<br/><br/>fastcgi_pass   127.0.0.1:8888;<br/>fastcgi_index  index.php;<br/>fastcgi_param  SCRIPT_FILENAME /home/arditto/wordpress-mu$fastcgi_script_name;<br/>include        /etc/nginx/fastcgi_params;<br/>}<br/>}<br/></div>

</li>
<li>jalankan php dalam mode fastcgi

<div class="wp-terminal">user@computer:$ sudo /etc/init.d/php-fastcgi start<br/></div>

</li>
<li>supaya proses no 6 dijalankan otomatis saat booting, jalankan perintah :

<div class="wp-terminal">user@computer:$ sudo update-rc.d php-fastcgi defaults<br/></div>

</li>
</ol>
<p>source : <a href="http://ngadimin.com/2009/07/11/instalasi-php-sebagai-fastcgi-di-nginx/" target="_blank">http://ngadimin.com/2009/07/11/instalasi-php-sebagai-fastcgi-di-nginx/</a></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 184px; width: 1px; height: 1px;">
<div class="wp_syntax">
<div class="code">
<pre class="bash" style="font-family: monospace;"><span style="color: #666666; font-style: italic;">#! /bin/bash</span>
<span style="color: #666666; font-style: italic;">### BEGIN INIT INFO</span>
<span style="color: #666666; font-style: italic;"># Provides:          php-fastcgi</span>
<span style="color: #666666; font-style: italic;"># Required-Start:    $all</span>
<span style="color: #666666; font-style: italic;"># Required-Stop:     $all</span>
<span style="color: #666666; font-style: italic;"># Default-Start:     2 3 4 5</span>
<span style="color: #666666; font-style: italic;"># Default-Stop:      0 1 6</span>
<span style="color: #666666; font-style: italic;"># Short-Description: Start and stop php-cgi in external FASTCGI mode</span>
<span style="color: #666666; font-style: italic;"># Description:       Start and stop php-cgi in external FASTCGI mode</span>
<span style="color: #666666; font-style: italic;">### END INIT INFO</span>

<span style="color: #666666; font-style: italic;"># Author: Kurt Zankl</span>

<span style="color: #666666; font-style: italic;"># Do NOT "set -e"</span>

<span style="color: #007800;">PATH</span>=<span style="color: #000000; font-weight: bold;">/</span>sbin:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin:<span style="color: #000000; font-weight: bold;">/</span>bin:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin
<span style="color: #007800;">DESC</span>=<span style="color: #ff0000;">"php-cgi in external FASTCGI mode"</span>
<span style="color: #007800;">NAME</span>=php-fastcgi
<span style="color: #007800;">DAEMON</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>php-cgi
<span style="color: #007800;">PIDFILE</span>=<span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>run<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$NAME</span>.pid
<span style="color: #007800;">SCRIPTNAME</span>=<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$NAME</span>
<span style="color: #007800;">PHP_CONFIG_FILE</span>=<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>php5<span style="color: #000000; font-weight: bold;">/</span>cgi<span style="color: #000000; font-weight: bold;">/</span>php.ini

<span style="color: #666666; font-style: italic;"># Exit if the package is not installed</span>
<span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #660033;">-x</span> <span style="color: #ff0000;">"<span style="color: #007800;">$DAEMON</span>"</span> <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">||</span> <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span>

<span style="color: #666666; font-style: italic;"># Read configuration variable file if it is present</span>
<span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #660033;">-r</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>default<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$NAME</span> <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> . <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>default<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$NAME</span>

<span style="color: #666666; font-style: italic;"># Load the VERBOSE setting and other rcS variables</span>
. <span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>init<span style="color: #000000; font-weight: bold;">/</span>vars.sh

<span style="color: #666666; font-style: italic;"># Define LSB log_* functions.</span>
<span style="color: #666666; font-style: italic;"># Depend on lsb-base (&gt;= 3.0-6) to ensure that this file is present.</span>
. <span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>lsb<span style="color: #000000; font-weight: bold;">/</span>init-functions

<span style="color: #666666; font-style: italic;"># If the daemon is not enabled, give the user a warning and then exit,</span>
<span style="color: #666666; font-style: italic;"># unless we are stopping the daemon</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"<span style="color: #007800;">$START</span>"</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #ff0000;">"yes"</span> <span style="color: #660033;">-a</span> <span style="color: #ff0000;">"$1"</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #ff0000;">"stop"</span> <span style="color: #7a0874; font-weight: bold;">]</span>; <span style="color: #000000; font-weight: bold;">then</span>
        log_warning_msg <span style="color: #ff0000;">"To enable <span style="color: #007800;">$NAME</span>, edit /etc/default/<span style="color: #007800;">$NAME</span> and set START=yes"</span>
        <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span>
<span style="color: #000000; font-weight: bold;">fi</span>

<span style="color: #666666; font-style: italic;"># Process configuration</span>
<span style="color: #7a0874; font-weight: bold;">export</span> PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS
<span style="color: #007800;">DAEMON_ARGS</span>=<span style="color: #ff0000;">"-q -b <span style="color: #007800;">$FCGI_HOST</span>:<span style="color: #007800;">$FCGI_PORT</span> -c <span style="color: #007800;">$PHP_CONFIG_FILE</span>"</span>

do_start<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #7a0874; font-weight: bold;">)</span>
<span style="color: #7a0874; font-weight: bold;">{</span>
        <span style="color: #666666; font-style: italic;"># Return</span>
        <span style="color: #666666; font-style: italic;">#   0 if daemon has been started</span>
        <span style="color: #666666; font-style: italic;">#   1 if daemon was already running</span>
        <span style="color: #666666; font-style: italic;">#   2 if daemon could not be started</span>
        start-stop-daemon <span style="color: #660033;">--start</span> <span style="color: #660033;">--quiet</span> <span style="color: #660033;">--pidfile</span> <span style="color: #007800;">$PIDFILE</span> <span style="color: #660033;">--exec</span> <span style="color: #007800;">$DAEMON</span> <span style="color: #660033;">--test</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null \
                <span style="color: #000000; font-weight: bold;">||</span> <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">1</span>
        start-stop-daemon <span style="color: #660033;">--start</span> <span style="color: #660033;">--quiet</span> <span style="color: #660033;">--pidfile</span> <span style="color: #007800;">$PIDFILE</span> <span style="color: #660033;">--exec</span> <span style="color: #007800;">$DAEMON</span> \
                <span style="color: #660033;">--background</span> <span style="color: #660033;">--make-pidfile</span> <span style="color: #660033;">--chuid</span> <span style="color: #007800;">$EXEC_AS_USER</span> <span style="color: #660033;">--startas</span> <span style="color: #007800;">$DAEMON</span> <span style="color: #660033;">--</span> \
                <span style="color: #007800;">$DAEMON_ARGS</span> \
                <span style="color: #000000; font-weight: bold;">||</span> <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">2</span>

<span style="color: #7a0874; font-weight: bold;">}</span>

do_stop<span style="color: #7a0874; font-weight: bold;">(</span><span style="color: #7a0874; font-weight: bold;">)</span>
<span style="color: #7a0874; font-weight: bold;">{</span>
        <span style="color: #666666; font-style: italic;"># Return</span>
        <span style="color: #666666; font-style: italic;">#   0 if daemon has been stopped</span>
        <span style="color: #666666; font-style: italic;">#   1 if daemon was already stopped</span>
        <span style="color: #666666; font-style: italic;">#   2 if daemon could not be stopped</span>
        <span style="color: #666666; font-style: italic;">#   other if a failure occurred</span>
        start-stop-daemon <span style="color: #660033;">--stop</span> <span style="color: #660033;">--quiet</span> <span style="color: #660033;">--retry</span>=TERM<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">30</span><span style="color: #000000; font-weight: bold;">/</span>KILL<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">5</span> <span style="color: #660033;">--pidfile</span> <span style="color: #007800;">$PIDFILE</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #666666; font-style: italic;"># --name $DAEMON</span>
        <span style="color: #007800;">RETVAL</span>=<span style="color: #ff0000;">"$?"</span>
        <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"<span style="color: #007800;">$RETVAL</span>"</span> = <span style="color: #000000;">2</span> <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">2</span>
        <span style="color: #666666; font-style: italic;"># Wait for children to finish too if this is a daemon that forks</span>
        <span style="color: #666666; font-style: italic;"># and if the daemon is only ever run from this initscript.</span>
        <span style="color: #666666; font-style: italic;"># If the above conditions are not satisfied then add some other code</span>
        <span style="color: #666666; font-style: italic;"># that waits for the process to drop all resources that could be</span>
        <span style="color: #666666; font-style: italic;"># needed by services started subsequently.  A last resort is to</span>
        <span style="color: #666666; font-style: italic;"># sleep for some time.</span>
        start-stop-daemon <span style="color: #660033;">--stop</span> <span style="color: #660033;">--quiet</span> <span style="color: #660033;">--oknodo</span> <span style="color: #660033;">--retry</span>=<span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">30</span><span style="color: #000000; font-weight: bold;">/</span>KILL<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">5</span> <span style="color: #660033;">--exec</span> <span style="color: #007800;">$DAEMON</span>
        <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"$?"</span> = <span style="color: #000000;">2</span> <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #000000;">2</span>
        <span style="color: #666666; font-style: italic;"># Many daemons don’t delete their pidfiles when they exit.</span>
        <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-f</span> <span style="color: #007800;">$PIDFILE</span>
        <span style="color: #7a0874; font-weight: bold;">return</span> <span style="color: #ff0000;">"<span style="color: #007800;">$RETVAL</span>"</span>
<span style="color: #7a0874; font-weight: bold;">}</span>

<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">"$1"</span> <span style="color: #000000; font-weight: bold;">in</span>
  start<span style="color: #7a0874; font-weight: bold;">)</span>
        <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"<span style="color: #007800;">$VERBOSE</span>"</span> <span style="color: #000000; font-weight: bold;">!</span>= no <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> log_daemon_msg <span style="color: #ff0000;">"Starting <span style="color: #007800;">$DESC</span>"</span> <span style="color: #ff0000;">"<span style="color: #007800;">$NAME</span>"</span>
        do_start
        <span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">"$?"</span> <span style="color: #000000; font-weight: bold;">in</span>
                <span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">|</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">)</span> <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"<span style="color: #007800;">$VERBOSE</span>"</span> <span style="color: #000000; font-weight: bold;">!</span>= no <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> log_end_msg <span style="color: #000000;">0</span> <span style="color: #000000; font-weight: bold;">;;</span>
                <span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">)</span> <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"<span style="color: #007800;">$VERBOSE</span>"</span> <span style="color: #000000; font-weight: bold;">!</span>= no <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> log_end_msg <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">;;</span>
        <span style="color: #000000; font-weight: bold;">esac</span>
        <span style="color: #000000; font-weight: bold;">;;</span>
  stop<span style="color: #7a0874; font-weight: bold;">)</span>
        <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"<span style="color: #007800;">$VERBOSE</span>"</span> <span style="color: #000000; font-weight: bold;">!</span>= no <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> log_daemon_msg <span style="color: #ff0000;">"Stopping <span style="color: #007800;">$DESC</span>"</span> <span style="color: #ff0000;">"<span style="color: #007800;">$NAME</span>"</span>
        do_stop
        <span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">"$?"</span> <span style="color: #000000; font-weight: bold;">in</span>
                <span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">|</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">)</span> <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"<span style="color: #007800;">$VERBOSE</span>"</span> <span style="color: #000000; font-weight: bold;">!</span>= no <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> log_end_msg <span style="color: #000000;">0</span> <span style="color: #000000; font-weight: bold;">;;</span>
                <span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">)</span> <span style="color: #7a0874; font-weight: bold;">[</span> <span style="color: #ff0000;">"<span style="color: #007800;">$VERBOSE</span>"</span> <span style="color: #000000; font-weight: bold;">!</span>= no <span style="color: #7a0874; font-weight: bold;">]</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> log_end_msg <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">;;</span>
        <span style="color: #000000; font-weight: bold;">esac</span>
        <span style="color: #000000; font-weight: bold;">;;</span>
  restart<span style="color: #000000; font-weight: bold;">|</span>force-reload<span style="color: #7a0874; font-weight: bold;">)</span>
        log_daemon_msg <span style="color: #ff0000;">"Restarting <span style="color: #007800;">$DESC</span>"</span> <span style="color: #ff0000;">"<span style="color: #007800;">$NAME</span>"</span>
        do_stop
        <span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">"$?"</span> <span style="color: #000000; font-weight: bold;">in</span>
          <span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">|</span><span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">)</span>
                do_start
                <span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">"$?"</span> <span style="color: #000000; font-weight: bold;">in</span>
                        <span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">)</span> log_end_msg <span style="color: #000000;">0</span> <span style="color: #000000; font-weight: bold;">;;</span>
                        <span style="color: #000000;">1</span><span style="color: #7a0874; font-weight: bold;">)</span> log_end_msg <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">;;</span> <span style="color: #666666; font-style: italic;"># Old process is still running</span>
                        <span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">)</span> log_end_msg <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">;;</span> <span style="color: #666666; font-style: italic;"># Failed to start</span>
                <span style="color: #000000; font-weight: bold;">esac</span>
                <span style="color: #000000; font-weight: bold;">;;</span>
          <span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">)</span>
                <span style="color: #666666; font-style: italic;"># Failed to stop</span>
                log_end_msg <span style="color: #000000;">1</span>
                <span style="color: #000000; font-weight: bold;">;;</span>
        <span style="color: #000000; font-weight: bold;">esac</span>
        <span style="color: #000000; font-weight: bold;">;;</span>
  <span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">)</span>
        <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">"Usage: <span style="color: #007800;">$SCRIPTNAME</span> {start|stop|restart|force-reload}"</span> <span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">2</span>
        <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">3</span>
        <span style="color: #000000; font-weight: bold;">;;</span>
<span style="color: #000000; font-weight: bold;">esac</span></pre>
</div>
</div>
</div>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-configure-php-as-fastcgi-on-nginx%2F&amp;t=how%20to%20configure%20php%20as%20fastcgi%20on%20nginx" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-configure-php-as-fastcgi-on-nginx%2F&amp;title=how%20to%20configure%20php%20as%20fastcgi%20on%20nginx&amp;annotation=%0D%0A%09install%20php%0D%0Asudo%20apt-get%20install%20php5-cgi%0D%0A%0D%0A%09buat%20file%20%2Fetc%2Fdefault%2Fphp-fastcgi%0D%0Asudo%20vim%20%2Fetc%2Fdefault%2Fphp-fastcgi%0D%0ASTART%3Dyes%0D%0A%0D%0A%23%20Which%20user%20runs%20PHP%3F%20%28default%3A%20www-data%29%0D%0AEXEC_AS_USER%3Dwww-data%0D%0A%0D%0A%23%20Host%20and%20TCP%20port%20for%20FASTCGI-Listener%20%28defau" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-configure-php-as-fastcgi-on-nginx%2F&amp;title=how%20to%20configure%20php%20as%20fastcgi%20on%20nginx&amp;bodytext=%0D%0A%09install%20php%0D%0Asudo%20apt-get%20install%20php5-cgi%0D%0A%0D%0A%09buat%20file%20%2Fetc%2Fdefault%2Fphp-fastcgi%0D%0Asudo%20vim%20%2Fetc%2Fdefault%2Fphp-fastcgi%0D%0ASTART%3Dyes%0D%0A%0D%0A%23%20Which%20user%20runs%20PHP%3F%20%28default%3A%20www-data%29%0D%0AEXEC_AS_USER%3Dwww-data%0D%0A%0D%0A%23%20Host%20and%20TCP%20port%20for%20FASTCGI-Listener%20%28defau" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-configure-php-as-fastcgi-on-nginx%2F&amp;title=how%20to%20configure%20php%20as%20fastcgi%20on%20nginx&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=%0D%0A%09install%20php%0D%0Asudo%20apt-get%20install%20php5-cgi%0D%0A%0D%0A%09buat%20file%20%2Fetc%2Fdefault%2Fphp-fastcgi%0D%0Asudo%20vim%20%2Fetc%2Fdefault%2Fphp-fastcgi%0D%0ASTART%3Dyes%0D%0A%0D%0A%23%20Which%20user%20runs%20PHP%3F%20%28default%3A%20www-data%29%0D%0AEXEC_AS_USER%3Dwww-data%0D%0A%0D%0A%23%20Host%20and%20TCP%20port%20for%20FASTCGI-Listener%20%28defau" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20configure%20php%20as%20fastcgi%20on%20nginx%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-configure-php-as-fastcgi-on-nginx%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/' rel='bookmark' title='Permanent Link: how to install wordpress mu on nginx'>how to install wordpress mu on nginx</a> <small>setting dns server tambahkan zone sarunkgenk.com di file /etc/bind/named.conf user@computer:$...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to install and configure nginx webserver on ubuntu</title>
		<link>http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/</link>
		<comments>http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 06:26:18 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=677</guid>
		<description><![CDATA[caranya cukup mudah :

install nginx

user@computer:$ sudo apt-get install nginx


jalankan nginx

user@computer:$ sudo /etc/init.d/nginx start


kemudian buka browser dan buka url http://youripaddress dan seharusnya sudah ada tampilan seperti berikut :

nginx meletakkan vhost2-nya path /etc/nginx/sites-available/
sedangkan vhost2 yang aktif ada di path /etc/nginx/sites-enabled/. file2 di folder ini akan lebih mudah di symbolic link dari path /etc/nginx/sites-available/ yang berisi daftar vhost [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/' rel='bookmark' title='Permanent Link: how to install wordpress mu on nginx'>how to install wordpress mu on nginx</a> <small>setting dns server tambahkan zone sarunkgenk.com di file /etc/bind/named.conf user@computer:$...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/' rel='bookmark' title='Permanent Link: how to configure php as fastcgi on nginx'>how to configure php as fastcgi on nginx</a> <small> install php user@computer:$ sudo apt-get install php5-cgi buat file...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>caranya cukup mudah :</p>
<ol>
<li>install nginx

<div class="wp-terminal">user@computer:$ sudo apt-get install nginx<br/></div>

</li>
<li>jalankan nginx

<div class="wp-terminal">user@computer:$ sudo /etc/init.d/nginx start<br/></div>

</li>
<li>kemudian buka browser dan buka url http://youripaddress dan seharusnya sudah ada tampilan seperti berikut :
<p><div id="attachment_678" class="wp-caption alignnone" style="width: 310px"><a href="http://cuplis.net/wp-content/uploads/2009/10/20091003130257Screenshot-Welcome-to-nginx-Mozilla-Firefox.png"><img class="size-medium wp-image-678" title="20091003130257Screenshot-Welcome to nginx! - Mozilla Firefox" src="http://cuplis.net/wp-content/uploads/2009/10/20091003130257Screenshot-Welcome-to-nginx-Mozilla-Firefox-300x139.png" alt="Welcome to nginx!" width="300" height="139" /></a><p class="wp-caption-text">Welcome to nginx!</p></div></li>
<li>nginx meletakkan vhost2-nya path /etc/nginx/sites-available/</li>
<li>sedangkan vhost2 yang aktif ada di path /etc/nginx/sites-enabled/. file2 di folder ini akan lebih mudah di symbolic link dari path /etc/nginx/sites-available/ yang berisi daftar vhost yang sudah kita setting.</li>
<li>nginx akan membuat vhost default yang aktif :

<div class="wp-terminal">user@computer:$ ls -lah /etc/nginx/sites-enabled/<br/>total 8.0K<br/>drwxr-xr-x 2 root root 4.0K 2009-10-03 12:41 .<br/>drwxr-xr-x 5 root root 4.0K 2009-10-03 12:54 ..<br/>lrwxrwxrwx 1 root root   34 2009-10-03 12:41 default -&gt; /etc/nginx/sites-available/default<br/></div>

</li>
</ol>
<p>nginx version: nginx/0.6.35<br />
Linux cuplis 2.6.24-16-server #1 SMP Thu Apr 10 13:58:00 UTC 2008 i686 GNU/Linux</p>
<p>source : <a href="http://www.ubuntugeek.com/howto-install-nginx-webserver-in-ubuntu-804-hardy-heron.html" target="_blank">http://www.ubuntugeek.com/howto-install-nginx-webserver-in-ubuntu-804-hardy-heron.html</a></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-and-configure-nginx-webserver-on-ubuntu%2F&amp;t=how%20to%20install%20and%20configure%20nginx%20webserver%20on%20ubuntu" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-and-configure-nginx-webserver-on-ubuntu%2F&amp;title=how%20to%20install%20and%20configure%20nginx%20webserver%20on%20ubuntu&amp;annotation=caranya%20cukup%20mudah%20%3A%0D%0A%0D%0A%09install%20nginx%0D%0Asudo%20apt-get%20install%20nginx%0D%0A%0D%0A%09jalankan%20nginx%0D%0Asudo%20%2Fetc%2Finit.d%2Fnginx%20start%0D%0A%0D%0A%09kemudian%20buka%20browser%20dan%20buka%20url%20http%3A%2F%2Fyouripaddress%20dan%20seharusnya%20sudah%20ada%20tampilan%20seperti%20berikut%20%3A%0D%0A%0D%0A%0D%0A%09nginx%20meletakka" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-and-configure-nginx-webserver-on-ubuntu%2F&amp;title=how%20to%20install%20and%20configure%20nginx%20webserver%20on%20ubuntu&amp;bodytext=caranya%20cukup%20mudah%20%3A%0D%0A%0D%0A%09install%20nginx%0D%0Asudo%20apt-get%20install%20nginx%0D%0A%0D%0A%09jalankan%20nginx%0D%0Asudo%20%2Fetc%2Finit.d%2Fnginx%20start%0D%0A%0D%0A%09kemudian%20buka%20browser%20dan%20buka%20url%20http%3A%2F%2Fyouripaddress%20dan%20seharusnya%20sudah%20ada%20tampilan%20seperti%20berikut%20%3A%0D%0A%0D%0A%0D%0A%09nginx%20meletakka" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-and-configure-nginx-webserver-on-ubuntu%2F&amp;title=how%20to%20install%20and%20configure%20nginx%20webserver%20on%20ubuntu&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=caranya%20cukup%20mudah%20%3A%0D%0A%0D%0A%09install%20nginx%0D%0Asudo%20apt-get%20install%20nginx%0D%0A%0D%0A%09jalankan%20nginx%0D%0Asudo%20%2Fetc%2Finit.d%2Fnginx%20start%0D%0A%0D%0A%09kemudian%20buka%20browser%20dan%20buka%20url%20http%3A%2F%2Fyouripaddress%20dan%20seharusnya%20sudah%20ada%20tampilan%20seperti%20berikut%20%3A%0D%0A%0D%0A%0D%0A%09nginx%20meletakka" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20install%20and%20configure%20nginx%20webserver%20on%20ubuntu%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F10%2Fhow-to-install-and-configure-nginx-webserver-on-ubuntu%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/' rel='bookmark' title='Permanent Link: how to install wordpress mu on nginx'>how to install wordpress mu on nginx</a> <small>setting dns server tambahkan zone sarunkgenk.com di file /etc/bind/named.conf user@computer:$...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/' rel='bookmark' title='Permanent Link: how to configure php as fastcgi on nginx'>how to configure php as fastcgi on nginx</a> <small> install php user@computer:$ sudo apt-get install php5-cgi buat file...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to install and configure dhcp server</title>
		<link>http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/</link>
		<comments>http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 07:54:18 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualisasi]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=670</guid>
		<description><![CDATA[salah satu cara untuk configure dhcp server adalah sbb :

install dhcp server

user@computer:$ sudo apt-get install dhcp3-server


ubah file /etc/dhcp3/dhcpd.conf :

user@computer:$ sudo vim /etc/dhcp3/dhcpd.confddns-update-style none;option domain-name "cuplis.lokal";option domain-name-servers 192.168.17.12;option routers 192.168.22.1;default-lease-time 42300;max-lease-time 84600;subnet 192.168.22.0 netmask 255.255.255.0 {range 192.168.22.1 192.168.22.10;}



note :
option domain-name &#8220;cuplis.lokal&#8221;; =&#62; untuk menentukan domain name untuk client DHCP
option domain-name-servers 192.168.17.12; =&#62; untuk menentukan ip DNS [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/' rel='bookmark' title='Permanent Link: how to configure php as fastcgi on nginx'>how to configure php as fastcgi on nginx</a> <small> install php user@computer:$ sudo apt-get install php5-cgi buat file...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>salah satu cara untuk configure dhcp server adalah sbb :</p>
<ol>
<li>install dhcp server

<div class="wp-terminal">user@computer:$ sudo apt-get install dhcp3-server<br/></div>

</li>
<li>ubah file /etc/dhcp3/dhcpd.conf :

<div class="wp-terminal">user@computer:$ sudo vim /etc/dhcp3/dhcpd.conf<br/><br/>ddns-update-style none;<br/>option domain-name "cuplis.lokal";<br/>option domain-name-servers 192.168.17.12;<br/>option routers 192.168.22.1;<br/>default-lease-time 42300;<br/>max-lease-time 84600;<br/>subnet 192.168.22.0 netmask 255.255.255.0 {<br/>range 192.168.22.1 192.168.22.10;<br/>}<br/></div>

</li>
</ol>
<p>note :<br />
option domain-name &#8220;cuplis.lokal&#8221;; =&gt; untuk menentukan domain name untuk client DHCP<br />
option domain-name-servers 192.168.17.12; =&gt; untuk menentukan ip DNS server untuk client DHCP<br />
option routers 192.168.22.1; =&gt; untuk menentukan gateway untuk client DHCP<br />
default-lease-time 42300; =&gt; untuk menentukan lama peminjaman atau sewa default ip address<br />
max-lease-time 84600; =&gt; untuk menentukan lama maksimal peminjaman atau sewa ip address<br />
range 192.168.22.1 192.168.22.10; =&gt; untuk menentukan range ip yang akan disewakan atau dipinjamkan oleh server DHCP</p>
<p>source : <a href="http://www.howtoforge.com/nat-gateway-iptables-port-forwarding-dns-and-dhcp-setup-ubuntu-8.10-server" target="_blank">http://www.howtoforge.com/nat-gateway-iptables-port-forwarding-dns-and-dhcp-setup-ubuntu-8.10-server</a></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 217px; width: 1px; height: 1px;"><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p style="margin-left: 1.13in; text-indent: -0.38in; margin-bottom: 0in;" align="JUSTIFY">Menentukan domain name untuk klient DHCP.</p>
</div>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-install-and-configure-dhcp-server%2F&amp;t=how%20to%20install%20and%20configure%20dhcp%20server" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-install-and-configure-dhcp-server%2F&amp;title=how%20to%20install%20and%20configure%20dhcp%20server&amp;annotation=salah%20satu%20cara%20untuk%20configure%20dhcp%20server%20adalah%20sbb%20%3A%0D%0A%0D%0A%09install%20dhcp%20server%0D%0Asudo%20apt-get%20install%20dhcp3-server%0D%0A%0D%0A%09ubah%20file%20%2Fetc%2Fdhcp3%2Fdhcpd.conf%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fdhcp3%2Fdhcpd.conf%0D%0A%0D%0Addns-update-style%20none%3B%0D%0Aoption%20domain-name%20%22cuplis.lokal%22%3B%0D%0A" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-install-and-configure-dhcp-server%2F&amp;title=how%20to%20install%20and%20configure%20dhcp%20server&amp;bodytext=salah%20satu%20cara%20untuk%20configure%20dhcp%20server%20adalah%20sbb%20%3A%0D%0A%0D%0A%09install%20dhcp%20server%0D%0Asudo%20apt-get%20install%20dhcp3-server%0D%0A%0D%0A%09ubah%20file%20%2Fetc%2Fdhcp3%2Fdhcpd.conf%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fdhcp3%2Fdhcpd.conf%0D%0A%0D%0Addns-update-style%20none%3B%0D%0Aoption%20domain-name%20%22cuplis.lokal%22%3B%0D%0A" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-install-and-configure-dhcp-server%2F&amp;title=how%20to%20install%20and%20configure%20dhcp%20server&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=salah%20satu%20cara%20untuk%20configure%20dhcp%20server%20adalah%20sbb%20%3A%0D%0A%0D%0A%09install%20dhcp%20server%0D%0Asudo%20apt-get%20install%20dhcp3-server%0D%0A%0D%0A%09ubah%20file%20%2Fetc%2Fdhcp3%2Fdhcpd.conf%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fdhcp3%2Fdhcpd.conf%0D%0A%0D%0Addns-update-style%20none%3B%0D%0Aoption%20domain-name%20%22cuplis.lokal%22%3B%0D%0A" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20install%20and%20configure%20dhcp%20server%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-install-and-configure-dhcp-server%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-configure-php-as-fastcgi-on-nginx/' rel='bookmark' title='Permanent Link: how to configure php as fastcgi on nginx'>how to configure php as fastcgi on nginx</a> <small> install php user@computer:$ sudo apt-get install php5-cgi buat file...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to solve : vmware error while getting interfaces flag</title>
		<link>http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/</link>
		<comments>http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 03:23:10 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualisasi]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=658</guid>
		<description><![CDATA[pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika aku melakukan copy virtual machine (dalam kasus ini ubuntu). virtual machine source-nya tidak ada masalah, sedangkan virtual machine hasil copy-nya keluar pesan error &#8220;vmware error while getting interfaces flag&#8221; dan semua eth tidak terdeteksi. untuk mengatasinya lakukan langkah2 berikut :

hapus semua ethernet yang ada di [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
<li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika aku melakukan copy virtual machine (dalam kasus ini ubuntu). virtual machine source-nya tidak ada masalah, sedangkan virtual machine hasil copy-nya keluar pesan error &#8220;vmware error while getting interfaces flag&#8221; dan semua eth tidak terdeteksi. untuk mengatasinya lakukan langkah2 berikut :</p>
<ol>
<li>hapus semua ethernet yang ada di virtual machine hasil copy tadi, kemudian tambahkan ethernet yang dibutuhkan
<p><div id="attachment_660" class="wp-caption alignnone" style="width: 310px"><a href="http://cuplis.net/wp-content/uploads/2009/09/200909161013Screenshot-Virtual-Machine-Settings.png"><img class="size-medium wp-image-660 " title="200909161013Screenshot-Virtual Machine Settings" src="http://cuplis.net/wp-content/uploads/2009/09/200909161013Screenshot-Virtual-Machine-Settings-300x215.png" alt="Remove and Add Ethernet" width="300" height="215" /></a><p class="wp-caption-text">Remove and Add Ethernet</p></div></li>
<li>kemudian jalankan virtual machine tersebut</li>
<li>buka dari terminal file /etc/udev/rules.d/70-persistent-net.rules</li>
<li>hapus baris yang isinya seperti ini :

<div class="wp-terminal">user@computer:$ sudo vim /etc/udev/rules.d/70-persistent-net.rules<br/><br/># PCI device 0x8086:0x10f5 (e1000e)<br/>SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:24:7e:11:55:b6", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"<br/></div>

</li>
<li>kemudian reboot</li>
<li>setelah reboot ethernet akan terdeteksi kembali</li>
</ol>
<p><a href="http://cuplis.net/wp-content/uploads/2009/09/200909161017Screenshot-Ubuntu002-VMware-Server-Console.png"><img class="alignnone size-full wp-image-659" title="200909161017Screenshot-Ubuntu002 - VMware Server Console" src="http://cuplis.net/wp-content/uploads/2009/09/200909161017Screenshot-Ubuntu002-VMware-Server-Console.png" alt="200909161017Screenshot-Ubuntu002 - VMware Server Console" width="750" height="69" /></a></p>
<p>source : <a href="http://www.seno.or.id/2009/03/07/error-while-getting-interface-flags/" target="_blank"></p>
<p>http://www.seno.or.id/2009/03/07/error-while-getting-interface-flags/</a></p>
<p><a href="http://ubuntuforums.org/showthread.php?t=255018" target="_blank">http://ubuntuforums.org/showthread.php?t=255018</a></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-solve-vmware-error-while-getting-interfaces-flag%2F&amp;t=how%20to%20solve%20%3A%20vmware%20error%20while%20getting%20interfaces%20flag" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-solve-vmware-error-while-getting-interfaces-flag%2F&amp;title=how%20to%20solve%20%3A%20vmware%20error%20while%20getting%20interfaces%20flag&amp;annotation=pesan%20error%20%22vmware%20error%20while%20getting%20interfaces%20flag%22%20muncul%20ketika%20aku%20melakukan%20copy%20virtual%20machine%20%28dalam%20kasus%20ini%20ubuntu%29.%20virtual%20machine%20source-nya%20tidak%20ada%20masalah%2C%20sedangkan%20virtual%20machine%20hasil%20copy-nya%20keluar%20pesan%20error%20%22vmware%20erro" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-solve-vmware-error-while-getting-interfaces-flag%2F&amp;title=how%20to%20solve%20%3A%20vmware%20error%20while%20getting%20interfaces%20flag&amp;bodytext=pesan%20error%20%22vmware%20error%20while%20getting%20interfaces%20flag%22%20muncul%20ketika%20aku%20melakukan%20copy%20virtual%20machine%20%28dalam%20kasus%20ini%20ubuntu%29.%20virtual%20machine%20source-nya%20tidak%20ada%20masalah%2C%20sedangkan%20virtual%20machine%20hasil%20copy-nya%20keluar%20pesan%20error%20%22vmware%20erro" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-solve-vmware-error-while-getting-interfaces-flag%2F&amp;title=how%20to%20solve%20%3A%20vmware%20error%20while%20getting%20interfaces%20flag&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=pesan%20error%20%22vmware%20error%20while%20getting%20interfaces%20flag%22%20muncul%20ketika%20aku%20melakukan%20copy%20virtual%20machine%20%28dalam%20kasus%20ini%20ubuntu%29.%20virtual%20machine%20source-nya%20tidak%20ada%20masalah%2C%20sedangkan%20virtual%20machine%20hasil%20copy-nya%20keluar%20pesan%20error%20%22vmware%20erro" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20solve%20%3A%20vmware%20error%20while%20getting%20interfaces%20flag%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-solve-vmware-error-while-getting-interfaces-flag%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
<li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to setting dns server</title>
		<link>http://cuplis.net/2009/09/how-to-setting-dns-server/</link>
		<comments>http://cuplis.net/2009/09/how-to-setting-dns-server/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 09:04:26 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=649</guid>
		<description><![CDATA[pertama install bind9 :

user@computer:$ sudo apt-get install bind9

kemudian tambahkan zone pada file /etc/bind/named.conf :

user@computer:$ sudo vim /etc/bind/named.confzone "cuplis.net" IN {type master;file "/etc/bind/db.cuplis-a";allow-update { none; };};zone "22.168.192.in-addr.arpa" IN {type master;file "/etc/bind/db.cuplis-ptr";allow-update { none; };};

kemudian buat file db.cuplis-a dan db.cuplis-ptr di /etc/bind/ (copy aja dari db.local dan db.127) :

user@computer:$ sudo cp /etc/bind/db.local /etc/bind/db.cuplis-a


user@computer:$ sudo cp /etc/bind/db.127 /etc/bind/db.cuplis-ptr


edit [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/' rel='bookmark' title='Permanent Link: how to install wordpress mu on nginx'>how to install wordpress mu on nginx</a> <small>setting dns server tambahkan zone sarunkgenk.com di file /etc/bind/named.conf user@computer:$...</small></li>
<li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>pertama install bind9 :</p>

<div class="wp-terminal">user@computer:$ sudo apt-get install bind9<br/></div>

<p>kemudian tambahkan zone pada file /etc/bind/named.conf :</p>

<div class="wp-terminal">user@computer:$ sudo vim /etc/bind/named.conf<br/><br/>zone "cuplis.net" IN {<br/>type master;<br/>file "/etc/bind/db.cuplis-a";<br/>allow-update { none; };<br/>};<br/><br/>zone "22.168.192.in-addr.arpa" IN {<br/>type master;<br/>file "/etc/bind/db.cuplis-ptr";<br/>allow-update { none; };<br/>};<br/></div>

<p>kemudian buat file db.cuplis-a dan db.cuplis-ptr di /etc/bind/ (copy aja dari db.local dan db.127) :</p>

<div class="wp-terminal">user@computer:$ sudo cp /etc/bind/db.local /etc/bind/db.cuplis-a<br/></div>


<div class="wp-terminal">user@computer:$ sudo cp /etc/bind/db.127 /etc/bind/db.cuplis-ptr<br/></div>

<p><span id="more-649"></span><br />
edit file /etc/bind/db.cuplis-a, ubah localhost menjadi cuplis.net dan ip 127.0.0.1 menjadi ip 192.168.22.115 (ip dns servernya) :</p>

<div class="wp-terminal">user@computer:$ sudo vim /etc/bind/db.cuplis-a<br/>;<br/>; BIND data file for local loopback interface<br/>;<br/>$TTL    604800<br/>@       IN      SOA     cuplis.net. root.cuplis.net. (<br/>2         ; Serial<br/>604800         ; Refresh<br/>86400         ; Retry<br/>2419200         ; Expire<br/>604800 )       ; Negative Cache TTL<br/>;<br/>IN      NS      ns1.cuplis.net.<br/>cuplis.net.     IN      A       192.168.22.115<br/>ns1.cuplis.net. IN      A       192.168.22.115<br/>@               IN      AAAA    ::1<br/></div>

<p>dengan cara perubahan yang sama dengan perubahan di /etc/bind/db.cuplis-a, ubah file /etc/bind/db.cuplis-ptr :</p>

<div class="wp-terminal">user@computer:$ sudo vim /etc/bind/db.cuplis-ptr<br/>;<br/>; BIND reverse data file for local loopback interface<br/>;<br/>$TTL    604800<br/>@       IN      SOA     cuplis.net. root.cuplis.net. (<br/>1         ; Serial<br/>604800         ; Refresh<br/>86400         ; Retry<br/>2419200         ; Expire<br/>604800 )       ; Negative Cache TTL<br/>;<br/>@       IN      NS      cuplis.net.<br/>1.0.0   IN      PTR     cuplis.net.<br/></div>

<p>kemudian cek apakah ada kesalahan konfigurasi di file2 yang kita buat/ubah :</p>

<div class="wp-terminal">user@computer:$ sudo named-checkconf /etc/bind/named.conf<br/></div>

<p>jika perintah di atas tidak menampilkan suatu pesan, berarti konfigurasi file /etc/bind/named.conf sudah benar.</p>

<div class="wp-terminal">user@computer:$ sudo named-checkzone cuplis.net /etc/bind/db.cuplis-a<br/>zone cuplis.net/IN: loaded serial 2<br/>OK<br/></div>


<div class="wp-terminal">user@computer:$ sudo named-checkzone 22.168.192 /etc/bind/db.cuplis-ptr<br/>zone 22.168.192/IN: loaded serial 1<br/>OK<br/></div>

<p>kemudian restart bind :</p>

<div class="wp-terminal">user@computer:$ sudo /etc/init.d/bind9 restart<br/></div>

<p>lalu cek apakah dns sudah berjalan atau belum dengan menggunakan perintah berikut :</p>

<div class="wp-terminal">user@computer:$ dig cuplis.net<br/>; <<>> DiG 9.4.2 <<>> cuplis.net<br/>;; global options:  printcmd<br/>;; Got answer:<br/>;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 44996<br/>;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1<br/><br/>;; QUESTION SECTION:<br/>;cuplis.net.			IN	A<br/><br/>;; ANSWER SECTION:<br/>cuplis.net.		604800	IN	A	192.168.22.115<br/><br/>;; AUTHORITY SECTION:<br/>cuplis.net.		604800	IN	NS	ns1.cuplis.net.<br/><br/>;; ADDITIONAL SECTION:<br/>ns1.cuplis.net.		604800	IN	A	192.168.22.115<br/><br/>;; Query time: 0 msec<br/>;; SERVER: 192.168.22.115#53(192.168.22.115)<br/>;; WHEN: Wed Sep 16 12:25:26 2009<br/>;; MSG SIZE  rcvd: 78<br/></div>

<p>kemudian untuk menggunakan dns ini, pada komputer client di set dns-nya ke ip dns yang sudah di setting di atas :</p>

<div class="wp-terminal">user@computer:$ sudo vim /etc/resolv.conf<br/>nameserver 192.168.22.115<br/></div>

<p>source : <a href="http://crazynuxer.blogdetik.com/2009/01/21/dns-server/" target="_blank">http://crazynuxer.blogdetik.com/2009/01/21/dns-server/</a></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/09/how-to-setting-dns-server/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-setting-dns-server%2F&amp;t=how%20to%20setting%20dns%20server" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-setting-dns-server%2F&amp;title=how%20to%20setting%20dns%20server&amp;annotation=pertama%20install%20bind9%20%3A%0D%0Asudo%20apt-get%20install%20bind9%0D%0Akemudian%20tambahkan%20zone%20pada%20file%20%2Fetc%2Fbind%2Fnamed.conf%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fbind%2Fnamed.conf%0D%0A%0D%0Azone%20%22cuplis.net%22%20IN%20%7B%0D%0A%20%20%20%20%20%20%20%20type%20master%3B%0D%0A%20%20%20%20%20%20%20%20file%20%22%2Fetc%2Fbind%2Fdb.cuplis-a%22%3B%0D%0A%20%20%20%20%20%20%20%20allow-update%20" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-setting-dns-server%2F&amp;title=how%20to%20setting%20dns%20server&amp;bodytext=pertama%20install%20bind9%20%3A%0D%0Asudo%20apt-get%20install%20bind9%0D%0Akemudian%20tambahkan%20zone%20pada%20file%20%2Fetc%2Fbind%2Fnamed.conf%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fbind%2Fnamed.conf%0D%0A%0D%0Azone%20%22cuplis.net%22%20IN%20%7B%0D%0A%20%20%20%20%20%20%20%20type%20master%3B%0D%0A%20%20%20%20%20%20%20%20file%20%22%2Fetc%2Fbind%2Fdb.cuplis-a%22%3B%0D%0A%20%20%20%20%20%20%20%20allow-update%20" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-setting-dns-server%2F&amp;title=how%20to%20setting%20dns%20server&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=pertama%20install%20bind9%20%3A%0D%0Asudo%20apt-get%20install%20bind9%0D%0Akemudian%20tambahkan%20zone%20pada%20file%20%2Fetc%2Fbind%2Fnamed.conf%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fbind%2Fnamed.conf%0D%0A%0D%0Azone%20%22cuplis.net%22%20IN%20%7B%0D%0A%20%20%20%20%20%20%20%20type%20master%3B%0D%0A%20%20%20%20%20%20%20%20file%20%22%2Fetc%2Fbind%2Fdb.cuplis-a%22%3B%0D%0A%20%20%20%20%20%20%20%20allow-update%20" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20setting%20dns%20server%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F09%2Fhow-to-setting-dns-server%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-wordpress-mu-on-nginx/' rel='bookmark' title='Permanent Link: how to install wordpress mu on nginx'>how to install wordpress mu on nginx</a> <small>setting dns server tambahkan zone sarunkgenk.com di file /etc/bind/named.conf user@computer:$...</small></li>
<li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/09/how-to-setting-dns-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to restore default panel on ubuntu</title>
		<link>http://cuplis.net/2009/05/how-to-restore-default-panel-on-ubuntu/</link>
		<comments>http://cuplis.net/2009/05/how-to-restore-default-panel-on-ubuntu/#comments</comments>
		<pubDate>Sat, 16 May 2009 13:58:55 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=332</guid>
		<description><![CDATA[malam ini sempat terjadi salah pencet sehingga panel atas default dari ubuntu lenyap/terhapus. berikut langkah2 restore ke panel default ubuntu :

user@computer:$ gconftool-2 --shutdown


user@computer:$ rm -rf ~/.gconf/apps/panel


user@computer:$ pkill gnome-panel

source :
http://ubuntuforums.org/showthread.php?t=392387



Bookmarks:


	
	
	
	
	




Related posts:how to install and configure nginx webserver on ubuntu caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...
how to solve : vmware error while getting [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/' rel='bookmark' title='Permanent Link: how to solve : vmware error while getting interfaces flag'>how to solve : vmware error while getting interfaces flag</a> <small>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>malam ini sempat terjadi salah pencet sehingga panel atas default dari ubuntu lenyap/terhapus. berikut langkah2 restore ke panel default ubuntu :</p>

<div class="wp-terminal">user@computer:$ gconftool-2 --shutdown<br/></div>


<div class="wp-terminal">user@computer:$ rm -rf ~/.gconf/apps/panel<br/></div>


<div class="wp-terminal">user@computer:$ pkill gnome-panel<br/></div>

<p>source :<br />
<a href="http://ubuntuforums.org/showthread.php?t=392387">http://ubuntuforums.org/showthread.php?t=392387</a></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/05/how-to-restore-default-panel-on-ubuntu/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-restore-default-panel-on-ubuntu%2F&amp;t=how%20to%20restore%20default%20panel%20on%20ubuntu" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-restore-default-panel-on-ubuntu%2F&amp;title=how%20to%20restore%20default%20panel%20on%20ubuntu&amp;annotation=malam%20ini%20sempat%20terjadi%20salah%20pencet%20sehingga%20panel%20atas%20default%20dari%20ubuntu%20lenyap%2Fterhapus.%20berikut%20langkah2%20restore%20ke%20panel%20default%20ubuntu%20%3A%0D%0Agconftool-2%20--shutdown%0D%0Arm%20-rf%20%7E%2F.gconf%2Fapps%2Fpanel%0D%0Apkill%20gnome-panel%0D%0Asource%20%3A%0D%0Ahttp%3A%2F%2Fubuntuforums.or" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-restore-default-panel-on-ubuntu%2F&amp;title=how%20to%20restore%20default%20panel%20on%20ubuntu&amp;bodytext=malam%20ini%20sempat%20terjadi%20salah%20pencet%20sehingga%20panel%20atas%20default%20dari%20ubuntu%20lenyap%2Fterhapus.%20berikut%20langkah2%20restore%20ke%20panel%20default%20ubuntu%20%3A%0D%0Agconftool-2%20--shutdown%0D%0Arm%20-rf%20%7E%2F.gconf%2Fapps%2Fpanel%0D%0Apkill%20gnome-panel%0D%0Asource%20%3A%0D%0Ahttp%3A%2F%2Fubuntuforums.or" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-restore-default-panel-on-ubuntu%2F&amp;title=how%20to%20restore%20default%20panel%20on%20ubuntu&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=malam%20ini%20sempat%20terjadi%20salah%20pencet%20sehingga%20panel%20atas%20default%20dari%20ubuntu%20lenyap%2Fterhapus.%20berikut%20langkah2%20restore%20ke%20panel%20default%20ubuntu%20%3A%0D%0Agconftool-2%20--shutdown%0D%0Arm%20-rf%20%7E%2F.gconf%2Fapps%2Fpanel%0D%0Apkill%20gnome-panel%0D%0Asource%20%3A%0D%0Ahttp%3A%2F%2Fubuntuforums.or" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20restore%20default%20panel%20on%20ubuntu%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-restore-default-panel-on-ubuntu%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/' rel='bookmark' title='Permanent Link: how to solve : vmware error while getting interfaces flag'>how to solve : vmware error while getting interfaces flag</a> <small>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/05/how-to-restore-default-panel-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>how to install kpdf on ubuntu jaunty</title>
		<link>http://cuplis.net/2009/05/how-to-install-kpdf-on-ubuntu-jaunty/</link>
		<comments>http://cuplis.net/2009/05/how-to-install-kpdf-on-ubuntu-jaunty/#comments</comments>
		<pubDate>Mon, 11 May 2009 05:05:29 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=327</guid>
		<description><![CDATA[1. download dependency libpoppler2:

user@computer:$ wget http://cuplis.net/wp-content/uploads/2009/05/libpoppler2_06-0ubuntu23_i386.deb

2. download kpdf:

user@computer:$ wget http://kambing.vlsm.org/ubuntu/pool/main/k/kdegraphics/kpdf_3.5.9-0ubuntu1_i386.deb

3. install libpoppler2 :

user@computer:$ sudo dpkg -i libpoppler2_0.6-0ubuntu2.3_i386.deb

4. install kpdf :

user@computer:$ sudo dpkg -i kpdf_3.5.9-0ubuntu1_i386.deb

source :
http://ubuntuforums.org/showthread.php?t=965952



Bookmarks:


	
	
	
	
	




Related posts:how to install and configure nginx webserver on ubuntu caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...
ubuntu ssh-copy-id : setting ssh tanpa password ﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/' rel='bookmark' title='Permanent Link: how to solve : vmware error while getting interfaces flag'>how to solve : vmware error while getting interfaces flag</a> <small>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>1. download dependency libpoppler2:</p>

<div class="wp-terminal">user@computer:$ wget <a href="http://cuplis.net/wp-content/uploads/2009/05/libpoppler2_06-0ubuntu23_i386.deb">http://cuplis.net/wp-content/uploads/2009/05/libpoppler2_06-0ubuntu23_i386.deb</a><br/></div>

<p>2. download kpdf:</p>

<div class="wp-terminal">user@computer:$ wget <a href="http://kambing.vlsm.org/ubuntu/pool/main/k/kdegraphics/kpdf_3.5.9-0ubuntu1_i386.deb">http://kambing.vlsm.org/ubuntu/pool/main/k/kdegraphics/kpdf_3.5.9-0ubuntu1_i386.deb</a><br/></div>

<p>3. install libpoppler2 :</p>

<div class="wp-terminal">user@computer:$ sudo dpkg -i libpoppler2_0.6-0ubuntu2.3_i386.deb<br/></div>

<p>4. install kpdf :</p>

<div class="wp-terminal">user@computer:$ sudo dpkg -i kpdf_3.5.9-0ubuntu1_i386.deb<br/></div>

<p>source :<br />
<a href="http://ubuntuforums.org/showthread.php?t=965952">http://ubuntuforums.org/showthread.php?t=965952</a></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/05/how-to-install-kpdf-on-ubuntu-jaunty/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-kpdf-on-ubuntu-jaunty%2F&amp;t=how%20to%20install%20kpdf%20on%20ubuntu%20jaunty" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-kpdf-on-ubuntu-jaunty%2F&amp;title=how%20to%20install%20kpdf%20on%20ubuntu%20jaunty&amp;annotation=1.%20download%20dependency%20libpoppler2%3A%0D%0Awget%20http%3A%2F%2Fcuplis.net%2Fwp-content%2Fuploads%2F2009%2F05%2Flibpoppler2_06-0ubuntu23_i386.deb%0D%0A2.%20download%20kpdf%3A%0D%0Awget%20http%3A%2F%2Fkambing.vlsm.org%2Fubuntu%2Fpool%2Fmain%2Fk%2Fkdegraphics%2Fkpdf_3.5.9-0ubuntu1_i386.deb%0D%0A3.%20install%20libpoppl" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-kpdf-on-ubuntu-jaunty%2F&amp;title=how%20to%20install%20kpdf%20on%20ubuntu%20jaunty&amp;bodytext=1.%20download%20dependency%20libpoppler2%3A%0D%0Awget%20http%3A%2F%2Fcuplis.net%2Fwp-content%2Fuploads%2F2009%2F05%2Flibpoppler2_06-0ubuntu23_i386.deb%0D%0A2.%20download%20kpdf%3A%0D%0Awget%20http%3A%2F%2Fkambing.vlsm.org%2Fubuntu%2Fpool%2Fmain%2Fk%2Fkdegraphics%2Fkpdf_3.5.9-0ubuntu1_i386.deb%0D%0A3.%20install%20libpoppl" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-kpdf-on-ubuntu-jaunty%2F&amp;title=how%20to%20install%20kpdf%20on%20ubuntu%20jaunty&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=1.%20download%20dependency%20libpoppler2%3A%0D%0Awget%20http%3A%2F%2Fcuplis.net%2Fwp-content%2Fuploads%2F2009%2F05%2Flibpoppler2_06-0ubuntu23_i386.deb%0D%0A2.%20download%20kpdf%3A%0D%0Awget%20http%3A%2F%2Fkambing.vlsm.org%2Fubuntu%2Fpool%2Fmain%2Fk%2Fkdegraphics%2Fkpdf_3.5.9-0ubuntu1_i386.deb%0D%0A3.%20install%20libpoppl" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20install%20kpdf%20on%20ubuntu%20jaunty%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-kpdf-on-ubuntu-jaunty%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/' rel='bookmark' title='Permanent Link: how to solve : vmware error while getting interfaces flag'>how to solve : vmware error while getting interfaces flag</a> <small>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/05/how-to-install-kpdf-on-ubuntu-jaunty/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>setting ip dan dns di ubuntu</title>
		<link>http://cuplis.net/2009/05/setting-ip-dan-dns-di-ubuntu/</link>
		<comments>http://cuplis.net/2009/05/setting-ip-dan-dns-di-ubuntu/#comments</comments>
		<pubDate>Sat, 09 May 2009 00:08:28 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=292</guid>
		<description><![CDATA[setting ip address :

user@computer:$ sudo vim /etc/network/interfacesauto loiface lo inet loopbackauto eth0iface eth0 inet staticaddress 192.168.22.15netmask 255.255.240.0gateway 192.168.17.1

setting dns :

user@computer:$ sudo vim /etc/resolv.confnameserver 192.168.17.12




Bookmarks:


	
	
	
	
	




Related posts:ubuntu ssh-copy-id : setting ssh tanpa password ﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....
how to setting dns server pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...
how [...]


Related posts:<ol><li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>setting ip address :</p>

<div class="wp-terminal">user@computer:$ sudo vim /etc/network/interfaces<br/>auto lo<br/>iface lo inet loopback<br/>auto eth0<br/>iface eth0 inet static<br/>address 192.168.22.15<br/>netmask 255.255.240.0<br/>gateway 192.168.17.1<br/></div>

<p>setting dns :</p>

<div class="wp-terminal">user@computer:$ sudo vim /etc/resolv.conf<br/>nameserver 192.168.17.12<br/></div>

<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/05/setting-ip-dan-dns-di-ubuntu/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fsetting-ip-dan-dns-di-ubuntu%2F&amp;t=setting%20ip%20dan%20dns%20di%20ubuntu" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fsetting-ip-dan-dns-di-ubuntu%2F&amp;title=setting%20ip%20dan%20dns%20di%20ubuntu&amp;annotation=setting%20ip%20address%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fnetwork%2Finterfaces%0D%0Aauto%20lo%0D%0Aiface%20lo%20inet%20loopback%0D%0Aauto%20eth0%0D%0Aiface%20eth0%20inet%20static%0D%0Aaddress%20192.168.22.15%0D%0Anetmask%20255.255.240.0%0D%0Agateway%20192.168.17.1%0D%0Asetting%20dns%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fresolv.conf%0D%0Anameserver%20192.1" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fsetting-ip-dan-dns-di-ubuntu%2F&amp;title=setting%20ip%20dan%20dns%20di%20ubuntu&amp;bodytext=setting%20ip%20address%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fnetwork%2Finterfaces%0D%0Aauto%20lo%0D%0Aiface%20lo%20inet%20loopback%0D%0Aauto%20eth0%0D%0Aiface%20eth0%20inet%20static%0D%0Aaddress%20192.168.22.15%0D%0Anetmask%20255.255.240.0%0D%0Agateway%20192.168.17.1%0D%0Asetting%20dns%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fresolv.conf%0D%0Anameserver%20192.1" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fsetting-ip-dan-dns-di-ubuntu%2F&amp;title=setting%20ip%20dan%20dns%20di%20ubuntu&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=setting%20ip%20address%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fnetwork%2Finterfaces%0D%0Aauto%20lo%0D%0Aiface%20lo%20inet%20loopback%0D%0Aauto%20eth0%0D%0Aiface%20eth0%20inet%20static%0D%0Aaddress%20192.168.22.15%0D%0Anetmask%20255.255.240.0%0D%0Agateway%20192.168.17.1%0D%0Asetting%20dns%20%3A%0D%0Asudo%20vim%20%2Fetc%2Fresolv.conf%0D%0Anameserver%20192.1" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=setting%20ip%20dan%20dns%20di%20ubuntu%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fsetting-ip-dan-dns-di-ubuntu%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
<li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/05/setting-ip-dan-dns-di-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to install VMware-server-1.0.8 on Ubuntu Jaunty Jackalope</title>
		<link>http://cuplis.net/2009/05/how-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope/</link>
		<comments>http://cuplis.net/2009/05/how-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope/#comments</comments>
		<pubDate>Thu, 07 May 2009 12:47:26 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualisasi]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=290</guid>
		<description><![CDATA[pertama, download vmware server di http://download3.vmware.com/software/vmserver/VMware-server-1.0.8-126538.tar.gz. setelah itu lakukan proses registrasi untuk mendapatkan serial number vmware free di http://register.vmware.com/content/registration.html. kemudian kita buka terminal dan jalankan command2 berikut :

user@computer:$ sudo apt-get install linux-headers-`uname -r` build-essential xinetd


user@computer:$ cd $_PATH_TO_DOWNLOADED_VMWARE_SERVER


user@computer:$ tar -xzvf VMware-server-1.0.8-126538.tar.gz


user@computer:$ cd vmware-server-distrib/


user@computer:$ ./vmware-install.pl

kemudian akan tampil banyak pertanyaan tentang konfigurasi vmware, ketik saja &#60;ENTER&#62; untuk konfigurasi [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/' rel='bookmark' title='Permanent Link: how to solve : vmware error while getting interfaces flag'>how to solve : vmware error while getting interfaces flag</a> <small>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>pertama, download vmware server di <a href="http://download3.vmware.com/software/vmserver/VMware-server-1.0.8-126538.tar.gz">http://download3.vmware.com/software/vmserver/VMware-server-1.0.8-126538.tar.gz</a>. setelah itu lakukan proses registrasi untuk mendapatkan serial number vmware free di <a href="http://register.vmware.com/content/registration.html">http://register.vmware.com/content/registration.html</a>. kemudian kita buka terminal dan jalankan command2 berikut :</p>

<div class="wp-terminal">user@computer:$ sudo apt-get install linux-headers-`uname -r` build-essential xinetd<br/></div>


<div class="wp-terminal">user@computer:$ cd $_PATH_TO_DOWNLOADED_VMWARE_SERVER<br/></div>


<div class="wp-terminal">user@computer:$ tar -xzvf VMware-server-1.0.8-126538.tar.gz<br/></div>


<div class="wp-terminal">user@computer:$ cd vmware-server-distrib/<br/></div>


<div class="wp-terminal">user@computer:$ ./vmware-install.pl<br/></div>

<p class="command">kemudian akan tampil banyak pertanyaan tentang konfigurasi vmware, ketik saja &lt;ENTER&gt; untuk konfigurasi default dari vmware. ketika kita menemukan pertanyaan :</p>

<div class="wp-terminal">user@computer:$ configure it by invoking the following command: “/usr/bin/vmware-config.pl”. Do you want this program to invoke the command for you now? [yes] &lt;-- no<br/></div>

<p class="command">jawab dengan &#8220;no&#8221; (tanpa kutip) karena kita akan melakukan kompile kernel yang dibutuhkan vmware. abaikan saja jika sudah terlajur mengisikan &#8220;yes&#8221;. kemudian kita lakukan patch pada wmware yang akan kita install dengan mengikuti step2 berikut :</p>

<div class="wp-terminal">user@computer:$ cd $_PATH_TO_PUT_DOWNLOADED_PATCH_VMWARE<br/></div>


<div class="wp-terminal">user@computer:$ wget <a href="http://www.insecure.ws/warehouse/vmware-update-2.6.27-5.5.7-2.tar.gz">http://www.insecure.ws/warehouse/vmware-update-2.6.27-5.5.7-2.tar.gz</a><br/></div>


<div class="wp-terminal">user@computer:$ tar -xzvf vmware-update-2.6.27-5.5.7-2.tar.gz<br/></div>


<div class="wp-terminal">user@computer:$ cd vmware-update-2.6.27-5.5.7-2/<br/></div>


<div class="wp-terminal">user@computer:$ sudo ./runme.pl<br/></div>

<p class="command">patch vmware ini akan muncul pertanyaan seperti ini, dan kemudian kita jawab &#8220;yes&#8221; (tanpa kutip) :</p>

<div class="wp-terminal">user@computer:$ Before running VMware for the first time after update, you need to configure it for your running kernel by invoking the following command: “/usr/bin/vmware-config.pl”. Do you want this script to invoke the command for you now? [no] &lt;-- yes<br/></div>

<p class="command">tekan &lt;ENTER&gt; untuk pertanyaan2 berikutnya. setelah itu, kita kopikan file vmmon.tar dan vmnet.tar hasil ekstrakan vmware-update-2.6.27-5.5.7-2.tar.gz (patch vmware terupdate saat artikel ini ditulis) ke /usr/lib/vmware/modules/source :</p>

<div class="wp-terminal">user@computer:$ sudo cp vmmon.tar /usr/lib/vmware/modules/source/<br/></div>


<div class="wp-terminal">user@computer:$ sudo cp vmnet.tar /usr/lib/vmware/modules/source/<br/></div>


<div class="wp-terminal">user@computer:$ sudo /usr/bin/vmware-config.pl<br/></div>

<p class="command">kemudian jalankan command berikut untuk konfigurasi akhir dalam penginstallan vmware ini, masukkan juga serial number yang telah kita dapatkan saat registrasi di vmware tadi :</p>

<div class="wp-terminal">user@computer:$ sudo /usr/bin/vmware-config.pl<br/>&lt;simply by hitting enter&gt;<br/>Please enter your 20-character serial number.<br/><br/>Type XXXXX-XXXXX-XXXXX-XXXXX or ‘Enter’ to cancel: XXXXX-XXXXX-XXXXX-XXXXX (your serial number)<br/></div>

<p class="system">dan vmware pun sudah bisa dijalankan. temukan shortcutnya di <em><span class="system">Applications &gt; Other &gt; VMware Server Console</span></em>.</p>
<p class="system">jika saat menjalankan vmware kita mengalami masalah pada keyboard <em>(dalam kasus yang aku alami, tombol panah tak berfungsi)</em> lakukan command &#8220;<em>xkeymap.nokeycodeMap = TRUE</em>&#8221; (tanpa kutip) di terminal pada file :</p>

<div class="wp-terminal">user@computer:$ vim ~/.vmware/config<br/></div>

<p class="system">akhirnya vmware pun sudah siap dipakai. selamat mencoba.</p>
<p class="system">source :<br />
<a href="http://tusforyou.com/how-to-install-vmware-server-10x-on-an-ubuntu-810-desktop-2/">http://tusforyou.com/how-to-install-vmware-server-10x-on-an-ubuntu-810-desktop-2/</a><br />
<a href="http://wiki.archlinux.org/index.php/Installing_VMware#VMware_and_kernel_2.6.28_compile_modules_problem">http://wiki.archlinux.org/index.php/Installing_VMware#VMware_and_kernel_2.6.28_compile_modules_problem</a><br />
<a href="http://www.sonoracomm.com/support/18-support/214-how-to-get-up-and-productive-quickly-with-ubuntu-804">http://www.sonoracomm.com/support/18-support/214-how-to-get-up-and-productive-quickly-with-ubuntu-804</a></p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2009/05/how-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope%2F&amp;t=how%20to%20install%20VMware-server-1.0.8%20on%20Ubuntu%20Jaunty%20Jackalope" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope%2F&amp;title=how%20to%20install%20VMware-server-1.0.8%20on%20Ubuntu%20Jaunty%20Jackalope&amp;annotation=pertama%2C%20download%20vmware%20server%20di%20http%3A%2F%2Fdownload3.vmware.com%2Fsoftware%2Fvmserver%2FVMware-server-1.0.8-126538.tar.gz.%20setelah%20itu%20lakukan%20proses%20registrasi%20untuk%20mendapatkan%20serial%20number%20vmware%20free%20di%20http%3A%2F%2Fregister.vmware.com%2Fcontent%2Fregistration.h" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope%2F&amp;title=how%20to%20install%20VMware-server-1.0.8%20on%20Ubuntu%20Jaunty%20Jackalope&amp;bodytext=pertama%2C%20download%20vmware%20server%20di%20http%3A%2F%2Fdownload3.vmware.com%2Fsoftware%2Fvmserver%2FVMware-server-1.0.8-126538.tar.gz.%20setelah%20itu%20lakukan%20proses%20registrasi%20untuk%20mendapatkan%20serial%20number%20vmware%20free%20di%20http%3A%2F%2Fregister.vmware.com%2Fcontent%2Fregistration.h" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope%2F&amp;title=how%20to%20install%20VMware-server-1.0.8%20on%20Ubuntu%20Jaunty%20Jackalope&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=pertama%2C%20download%20vmware%20server%20di%20http%3A%2F%2Fdownload3.vmware.com%2Fsoftware%2Fvmserver%2FVMware-server-1.0.8-126538.tar.gz.%20setelah%20itu%20lakukan%20proses%20registrasi%20untuk%20mendapatkan%20serial%20number%20vmware%20free%20di%20http%3A%2F%2Fregister.vmware.com%2Fcontent%2Fregistration.h" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=how%20to%20install%20VMware-server-1.0.8%20on%20Ubuntu%20Jaunty%20Jackalope%20-%20http%3A%2F%2Fcuplis.net%2F2009%2F05%2Fhow-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-solve-vmware-error-while-getting-interfaces-flag/' rel='bookmark' title='Permanent Link: how to solve : vmware error while getting interfaces flag'>how to solve : vmware error while getting interfaces flag</a> <small>pesan error &#8220;vmware error while getting interfaces flag&#8221; muncul ketika...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-setting-dns-server/' rel='bookmark' title='Permanent Link: how to setting dns server'>how to setting dns server</a> <small>pertama install bind9 : user@computer:$ sudo apt-get install bind9 kemudian...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2009/05/how-to-install-vmware-server-108-on-ubuntu-jaunty-jackalope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install RealPlayer, Opera, dan RMagick di Ubuntu Hardy Heron</title>
		<link>http://cuplis.net/2008/07/install-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron/</link>
		<comments>http://cuplis.net/2008/07/install-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 02:37:06 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Gem]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=33</guid>
		<description><![CDATA[Install RealPlayer
Download file RealPlayer10GOLD.bin di sini kemudian jalankan command berikut pada console: 
chmod +x RealPlayer10GOLD.bin
sudo ./RealPlayer10GOLD.bin
Install Opera Browser
Jalankan perintah di bawah ini:

sudo apt-get install comix kopete gnochm dvdrip easytag kompozer \
             drapes subtitleeditor flashplugin-nonfree opera

Install RMagick
Ketika menjalankan

gem install rmagick

tampil  error

checking for Magick-config... [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<h4><strong>Install RealPlayer</strong></h4>
<p>Download file <span style="font-size: x-small;">RealPlayer10GOLD.bin</span> di <a title="http://www.real.com/linux/" href="http://www.real.com/linux/">sini</a> kemudian jalankan command berikut<span style="font-size: x-small;"> pada console: </span></p>
<blockquote><p><span style="font-size: x-small;">chmod +x RealPlayer10GOLD.bin</span></p>
<p>sudo ./RealPlayer10GOLD.bin</p></blockquote>
<h4><strong>Install Opera Browser</strong></h4>
<p>Jalankan perintah di bawah ini:</p>
<blockquote>
<pre>sudo apt-get install comix kopete gnochm dvdrip easytag kompozer \
             drapes subtitleeditor flashplugin-nonfree opera</pre>
</blockquote>
<h4><strong>Install RMagick</strong></h4>
<p>Ketika menjalankan</p>
<blockquote>
<pre>gem install rmagick</pre>
</blockquote>
<p>tampil  error</p>
<blockquote>
<pre>checking for Magick-config... no
Can't install RMagick 2.5.0. Can't find Magick-config in [...]</pre>
</blockquote>
<p>yang harus dilakukan adalah install package libmagick9-dev</p>
<blockquote>
<pre>apt-get install libmagick9-dev</pre>
</blockquote>
<p>kemudian jalankan</p>
<blockquote>
<pre>gem install rmagick</pre>
</blockquote>
<p><strong>Fix &#8220;uninitialized constant Gem::GemRunner (NameError)&#8221;</strong></p>
<p>Jika tampil error</p>
<blockquote><p>root@ditto:/home/ditto# gem list<br />
/usr/bin/gem:23: uninitialized constant Gem::GemRunner (NameError)</p></blockquote>
<p>Setelah googling sebentar, ketemu hasilnya di <a href="http://www.nickpeters.net/2007/12/31/fix-for-uninitialized-constant-gemgemrunner-nameerror/">http://www.nickpeters.net/2007/12/31/fix-for-uninitialized-constant-gemgemrunner-nameerror/</a>. Menurut yang tertulis di sana perlu dilakukan perubahan pada /usr/bin/gem tinggal menambahkan baris berikut :</p>
<p><code>require 'rubygems/gem_runner'</code></p>
<p>setelah baris</p>
<p><code>require 'rubygems'</code></p>
<p>Kemudian daftar gem sudah dapat dilihat seperti semula :</p>
<p>root@ditto:/home/ditto# gem list</p>
<p>*** LOCAL GEMS ***</p>
<p>actionmailer (2.0.2, 1.3.6, 1.3.3)<br />
actionpack (2.0.2, 1.13.6, 1.13.3)<br />
actionwebservice (1.2.6, 1.2.3)<br />
activerecord (2.0.2, 1.15.6, 1.15.3)<br />
activeresource (2.0.2)<br />
activesupport (2.0.2, 1.4.4, 1.4.2)<br />
archive-tar-external (1.2.1)<br />
archive-tar-minitar (0.5.1)<br />
builder (2.1.2)<br />
capistrano (2.2.0)<br />
cgi_multipart_eof_fix (2.5.0)<br />
daemons (1.0.10, 1.0.9)<br />
fastthread (1.0.1)<br />
gem_plugin (0.2.3)<br />
highline (1.4.0)<br />
hoe (1.5.0)<br />
hpricot (0.6)<br />
mini_magick (1.2.3)<br />
mongrel (1.1.4, 1.1.3)<br />
mongrel_cluster (1.0.5)<br />
needle (1.3.0)<br />
net-sftp (1.1.1)<br />
net-ssh (1.1.2)<br />
rails (1.2.6, 1.2.3)<br />
rake (0.8.1)<br />
rmagick (2.2.2)<br />
rubyforge (0.4.4)<br />
tzinfo (0.3.8)<br />
xml-simple (1.0.11)</p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2008/07/install-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2008%2F07%2Finstall-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron%2F&amp;t=Install%20RealPlayer%2C%20Opera%2C%20dan%20RMagick%20di%20Ubuntu%20Hardy%20Heron" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2008%2F07%2Finstall-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron%2F&amp;title=Install%20RealPlayer%2C%20Opera%2C%20dan%20RMagick%20di%20Ubuntu%20Hardy%20Heron&amp;annotation=Install%20RealPlayer%0ADownload%20file%20RealPlayer10GOLD.bin%20di%20sini%20kemudian%20jalankan%20command%20berikut%20pada%20console%3A%20%0Achmod%20%2Bx%20RealPlayer10GOLD.bin%0A%0Asudo%20.%2FRealPlayer10GOLD.bin%0AInstall%20Opera%20Browser%0AJalankan%20perintah%20di%20bawah%20ini%3A%0A%0Asudo%20apt-get%20install%20comi" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2008%2F07%2Finstall-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron%2F&amp;title=Install%20RealPlayer%2C%20Opera%2C%20dan%20RMagick%20di%20Ubuntu%20Hardy%20Heron&amp;bodytext=Install%20RealPlayer%0ADownload%20file%20RealPlayer10GOLD.bin%20di%20sini%20kemudian%20jalankan%20command%20berikut%20pada%20console%3A%20%0Achmod%20%2Bx%20RealPlayer10GOLD.bin%0A%0Asudo%20.%2FRealPlayer10GOLD.bin%0AInstall%20Opera%20Browser%0AJalankan%20perintah%20di%20bawah%20ini%3A%0A%0Asudo%20apt-get%20install%20comi" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2008%2F07%2Finstall-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron%2F&amp;title=Install%20RealPlayer%2C%20Opera%2C%20dan%20RMagick%20di%20Ubuntu%20Hardy%20Heron&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=Install%20RealPlayer%0ADownload%20file%20RealPlayer10GOLD.bin%20di%20sini%20kemudian%20jalankan%20command%20berikut%20pada%20console%3A%20%0Achmod%20%2Bx%20RealPlayer10GOLD.bin%0A%0Asudo%20.%2FRealPlayer10GOLD.bin%0AInstall%20Opera%20Browser%0AJalankan%20perintah%20di%20bawah%20ini%3A%0A%0Asudo%20apt-get%20install%20comi" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Install%20RealPlayer%2C%20Opera%2C%20dan%20RMagick%20di%20Ubuntu%20Hardy%20Heron%20-%20http%3A%2F%2Fcuplis.net%2F2008%2F07%2Finstall-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2010/04/ubuntu-ssh-copy-id-setting-ssh-tanpa-password/' rel='bookmark' title='Permanent Link: ubuntu ssh-copy-id : setting ssh tanpa password'>ubuntu ssh-copy-id : setting ssh tanpa password</a> <small>﻿﻿﻿﻿﻿sebenernya proses ssh ke mirror dapat dipercepat dengan tanpa password....</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2008/07/install-realplayer-opera-dan-rmagick-di-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Apache, PHP dan MySQL di Ubuntu</title>
		<link>http://cuplis.net/2008/04/install-apache-php-dan-mysql-di-ubuntu/</link>
		<comments>http://cuplis.net/2008/04/install-apache-php-dan-mysql-di-ubuntu/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 09:47:26 +0000</pubDate>
		<dc:creator>cuplis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://cuplis.net/?p=31</guid>
		<description><![CDATA[Langkah-langkah install web Apache, PHP dan server database MySQL :
Instalasi web server Apache
 # apt-get install apache2
Instalasi database server MySQL
 # apt-get install mysql-server
Instalasi php untuk web server Apache
 # apt-get install php5
Instalasi MySQL untuk Apache
 # apt-get install libapache-mod-acct-mysql
# apt-get install php5-mysql
Sekian



Bookmarks:


	
	
	
	
	




Related posts:how to install and configure nginx webserver on ubuntu caranya cukup mudah [...]


Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p class="snap_preview">Langkah-langkah install web Apache, PHP dan server database MySQL :</p>
<p>Instalasi web server Apache<br />
<strong> # apt-get install apache2</strong></p>
<p>Instalasi database server MySQL<br />
<strong> # apt-get install mysql-server</strong></p>
<p>Instalasi php untuk web server Apache<br />
<strong> # apt-get install php5</strong></p>
<p>Instalasi MySQL untuk Apache<br />
<strong> # apt-get install libapache-mod-acct-mysql<br />
# apt-get install php5-mysql</strong></p>
<p>Sekian</p>
<p class="fbconnect_share"><fb:share-button class="url" href="http://cuplis.net/2008/04/install-apache-php-dan-mysql-di-ubuntu/" /></p>
<div class="sociable">
<div class="sociable_tagline">
<strong>Bookmarks:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fcuplis.net%2F2008%2F04%2Finstall-apache-php-dan-mysql-di-ubuntu%2F&amp;t=Install%20Apache%2C%20PHP%20dan%20MySQL%20di%20Ubuntu" title="Facebook"><img src="http://cuplis.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fcuplis.net%2F2008%2F04%2Finstall-apache-php-dan-mysql-di-ubuntu%2F&amp;title=Install%20Apache%2C%20PHP%20dan%20MySQL%20di%20Ubuntu&amp;annotation=Langkah-langkah%20install%20web%20Apache%2C%20PHP%20dan%20server%20database%20MySQL%20%3A%0AInstalasi%20web%20server%20Apache%0A%20%23%20apt-get%20install%20apache2%0A%0AInstalasi%20database%20server%20MySQL%0A%20%23%20apt-get%20install%20mysql-server%0A%0AInstalasi%20php%20untuk%20web%20server%20Apache%0A%20%23%20apt-get%20install%20php5" title="Google Bookmarks"><img src="http://cuplis.net/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fcuplis.net%2F2008%2F04%2Finstall-apache-php-dan-mysql-di-ubuntu%2F&amp;title=Install%20Apache%2C%20PHP%20dan%20MySQL%20di%20Ubuntu&amp;bodytext=Langkah-langkah%20install%20web%20Apache%2C%20PHP%20dan%20server%20database%20MySQL%20%3A%0AInstalasi%20web%20server%20Apache%0A%20%23%20apt-get%20install%20apache2%0A%0AInstalasi%20database%20server%20MySQL%0A%20%23%20apt-get%20install%20mysql-server%0A%0AInstalasi%20php%20untuk%20web%20server%20Apache%0A%20%23%20apt-get%20install%20php5" title="Digg"><img src="http://cuplis.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcuplis.net%2F2008%2F04%2Finstall-apache-php-dan-mysql-di-ubuntu%2F&amp;title=Install%20Apache%2C%20PHP%20dan%20MySQL%20di%20Ubuntu&amp;source=coretan+si+cuplis+learn+the+way%2C+define+your+own+way&amp;summary=Langkah-langkah%20install%20web%20Apache%2C%20PHP%20dan%20server%20database%20MySQL%20%3A%0AInstalasi%20web%20server%20Apache%0A%20%23%20apt-get%20install%20apache2%0A%0AInstalasi%20database%20server%20MySQL%0A%20%23%20apt-get%20install%20mysql-server%0A%0AInstalasi%20php%20untuk%20web%20server%20Apache%0A%20%23%20apt-get%20install%20php5" title="LinkedIn"><img src="http://cuplis.net/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://twitter.com/home?status=Install%20Apache%2C%20PHP%20dan%20MySQL%20di%20Ubuntu%20-%20http%3A%2F%2Fcuplis.net%2F2008%2F04%2Finstall-apache-php-dan-mysql-di-ubuntu%2F" title="Twitter"><img src="http://cuplis.net/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
</ul>
</div>


<p>Related posts:<ol><li><a href='http://cuplis.net/2009/10/how-to-install-and-configure-nginx-webserver-on-ubuntu/' rel='bookmark' title='Permanent Link: how to install and configure nginx webserver on ubuntu'>how to install and configure nginx webserver on ubuntu</a> <small>caranya cukup mudah : install nginx user@computer:$ sudo apt-get install...</small></li>
<li><a href='http://cuplis.net/2009/09/how-to-install-and-configure-dhcp-server/' rel='bookmark' title='Permanent Link: how to install and configure dhcp server'>how to install and configure dhcp server</a> <small>salah satu cara untuk configure dhcp server adalah sbb :...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://cuplis.net/2008/04/install-apache-php-dan-mysql-di-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
