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

<channel>
	<title>Acoenoc.com</title>
	<atom:link href="http://www.acoenoc.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.acoenoc.com/blog</link>
	<description>Freezin' the hell of boredom</description>
	<pubDate>Sat, 25 Jul 2009 19:07:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Installing Xen on NetBSD-5 on VMWare Player</title>
		<link>http://www.acoenoc.com/blog/2009/07/installing-xen-on-netbsd-5-on-vmware-player/</link>
		<comments>http://www.acoenoc.com/blog/2009/07/installing-xen-on-netbsd-5-on-vmware-player/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 18:59:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[BSD/ Unix/ Linux]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/?p=39</guid>
		<description><![CDATA[I gave up installing Xen since I can&#8217;t find any vmx&#124;svm flags on my debian&#8217;s /proc/cpuinfo and/or since I have been unable to make Xen to work on it. The last installation hanged at booting domO process. I can&#8217;t remember what the error messages were.
Then I found this awesome page  about netbsd/xen.  Combining the [...]]]></description>
			<content:encoded><![CDATA[<p>I gave up installing Xen since I can&#8217;t find any vmx|svm flags on my debian&#8217;s /proc/cpuinfo and/or since I have been unable to make Xen to work on it. The last installation hanged at booting domO process. I can&#8217;t remember what the error messages were.</p>
<p>Then I found this <a href="  http://pbraun.nethence.com/doc/sysutils/xen_netbsd.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/pbraun.nethence.com');" target="_blank">awesome page </a> about netbsd/xen.  Combining the info from this page with some trial and error processes of getting the configuration files right, I finally managed to get NetBSD dom0 and domU running.</p>
<p><strong>Installing dom0</strong></p>
<ol>
<li>Install NetBSD-5 to vmware player as usual (use <a href="http://www.easyvmx.com " onclick="javascript:pageTracker._trackPageview('/outbound/article/www.easyvmx.com ');">www.easyvmx.com</a> to get vmplayer config and virtual disks)</li>
<li>Install the followings using pkg_add:<br />
sysutils/grub<br />
sysutils/xentools3<br />
sysutils/xenkernel3<br />
sysutils/e2fsprogs</li>
<li>cp /usr/pkg/share/examples/rc.d/xen* /etc/rc.d</li>
<li>vi /etc/rc.conf<br />
xend=YES<br />
xenbackendd=YES<br />
xendomains=YES</li>
<li>cd /dev<br />
sh MAKEDEV xen</li>
<li>Get &#8220;netbsd-XEN3_DOM0.gz&#8221; from <a href="ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-5.0/i386/binary/kernel/" onclick="javascript:pageTracker._trackPageview('/outbound/article/ftp.netbsd.org');" target="_blank">ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-5.0/i386/binary/kernel/</a> or from netbsd installation iso/cdrom.</li>
<li>Backup original netbsd kernel<br />
cp /netbsd /netbsd.old</li>
<li>gunzip netbsd-XEN3_DOM0.gz<br />
mv netbsd-XEN3_DOM0 /netbsd</li>
<li>cp /usr/pkg/xen3-kernel/xen.gz /<br />
cd /<br />
gunzip xen.gz</li>
<li>mkdir /grub<br />
vi /grub/menu.lst<br />
default=0<br />
timeout=5<br />
title XEN3<br />
root(hd0,0)<br />
kernel (hd0,a)/xen dom0_mem=128M<br />
module (hd0,a)/netbsd bootdev=wd0a ro console=pc<br />
title NetBSD<br />
root (hd0,0,a)<br />
kernel /netbsd.old</li>
<li>grub-install &#8216;(hd0)&#8217;</li>
<li>grub &#8211;no-floppy<br />
root (hd0,a)<br />
setup (hd0)<br />
quit</li>
<li>vi /etc/ifconfig.bridge0<br />
create<br />
!brconfig $int add pcn0 up    # replace pcn0 with your shared network interface.</li>
<li>cd /dev<br />
sh MAKEDEV all<br />
sh MAKEDEV xen</li>
<li>shutdown -r now</li>
</ol>
<p><strong>Installing self-made domU</strong></p>
<ol>
<li>You need to mount the NetBSD-5 installation cd<br />
mkdir /mnt/cdrom<br />
mount /dev/cd0a /mnt/cdrom</li>
<li>Make a directory to contain NetBSD-5 sets<br />
mkdir /root/lala</li>
<li>Make a directory to contain domU kernel<br />
mkdir /root/kernels</li>
<li>Get netbsd-XEN3_DOMU.gz from <a href="ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-5.0/i386/binary/kernel/" onclick="javascript:pageTracker._trackPageview('/outbound/article/ftp.netbsd.org');" target="_blank">ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-5.0/i386/binary/kernel/</a> or from netbsd installation iso/cdrom.</li>
<li>cp netbsd-XEN3_DOMU.gz /root/kernels<br />
cd /root/kernels<br />
gunzip netbsd-XEN3_DOMU.gz</li>
<li>Extract NetBSD sets:<br />
tar xzpfe /mnt/cdrom/i386/binary/sets/kern-XEN_DOMU&#8230; -C /root/lala<br />
tar xzpfe /mnt/cdrom/i386/binary/sets/base.tgz -C /root/lala<br />
tar xzpfe /mnt/cdrom/i386/binary/sets/comp.tgz -C /root/lala<br />
(&#8230; and the rest)</li>
<li>cd /root<br />
makefs -M 1073741824 lala.ffs lala<br />
(Note. 1G=1073741824 and 2.5G=2684354560)</li>
<li>A flat swap<br />
dd if=/dev/zero of=lala/swap bs=1024 count=400</li>
<li>mv lala lala.old<br />
mkdir lala<br />
vnconfig vnd0 lala.ffs<br />
mount /dev/vnd0a lala</li>
<li>vi lala/etc/fstab,<br />
/dev/xbd0a / ffs rw 1 1<br />
/swap none swap sw 0 0<br />
kernfs /kern kernfs rw<br />
procfs /proc procfs rw,noauto</li>
<li>vi /etc/rc.conf<br />
rc_configured=YES<br />
hostname=blah<br />
dhclient=YES<br />
sshd=YES<br />
(&#8230; etc)</li>
<li>vi /usr/pkg/etc/xen/nbsd<br />
kernel = &#8220;/root/kernels/netbsd_XEN3_DOMU&#8221;<br />
memory = 256<br />
name = &#8220;nbsd&#8221;<br />
vif = [ 'bridge=bridge0' ]<br />
disk = ['file:/root/lala.fs,0x01,w']<br />
root = &#8220;xbd0&#8243;</li>
<li>To make nbsd domain start at boot<br />
vi /etc/rc.conf<br />
xendomains=&#8221;nbsd&#8221;   # edit this line  add your domains separated by space instead of &#8220;YES&#8221;</li>
<li>shutdown -r now</li>
</ol>
<p>Now, you should have NetBSD dom0 and domU running at boot. Use &#8220;xm list&#8221; to list domains and &#8220;xm console ID&#8221; to access domU console.</p>
<p>I am new to UNIX,  follow above instructions at your own risk.</p>
<p>References:<br />
NetBSD/xen Howto : <a href="http://www.netbsd.org/ports/xen/howto.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.netbsd.org');">www.netbsd.org/ports/xen/howto.html</a><br />
Xen on NetBSD : <a href="http://www.gutch.de/NetBSD/docs/xen.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.gutch.de');">www.gutch.de/NetBSD/docs/xen.html</a><br />
<a href="http://pbraun.nethence.com/doc/sysutils/xen_netbsd.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/pbraun.nethence.com');">http://pbraun.nethence.com/doc/sysutils/xen_netbsd.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2009/07/installing-xen-on-netbsd-5-on-vmware-player/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing mod_fastcgi Apache on Windows</title>
		<link>http://www.acoenoc.com/blog/2008/10/installing-mod_fastcgi-apache-on-windows/</link>
		<comments>http://www.acoenoc.com/blog/2008/10/installing-mod_fastcgi-apache-on-windows/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 06:34:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[mod_fastcgi]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/installing-mod_fastcgi-apache-on-windows/</guid>
		<description><![CDATA[This installation assumes installed Apache. Here you go:

Download mod_fastcgi dll from http://www.fastcgi.com/dist/.
Copy the dll into c:\program files\apache software foundation\apache2.2\modules\ (if you are using default installation directory) and rename it to mod_fastcgi.dll.
Edit httpd.conf and add the following line:LoadModule fastcgi_module modules/mod_fastcgi.dll
Restart Apache.

]]></description>
			<content:encoded><![CDATA[<p>This installation assumes installed Apache. Here you go:</p>
<ol>
<li>Download <strong>mod_fastcgi dll </strong>from <a href="http://www.fastcgi.com/dist/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.fastcgi.com');">http://www.fastcgi.com/dist/</a>.</li>
<li>Copy the dll into <strong>c:\program files\apache software foundation\apache2.2\modules\ (if you are using default installation directory) and rename it to </strong>mod_fastcgi.dll<strong>.</strong></li>
<li>Edit <strong>httpd.conf</strong> and add the following line:<br /><strong>LoadModule fastcgi_module modules/mod_fastcgi.dll</strong></li>
<li>Restart Apache.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2008/10/installing-mod_fastcgi-apache-on-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing mod_python apache on windows</title>
		<link>http://www.acoenoc.com/blog/2008/10/installing-mod_python-apache-on-windows/</link>
		<comments>http://www.acoenoc.com/blog/2008/10/installing-mod_python-apache-on-windows/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 02:06:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[mod_python]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/installing-mod_python-apache-on-windows/</guid>
		<description><![CDATA[To install and test mod_python Apache on Windows (assuming that you&#8217;ve already had Apache and Python installed):

Download mod_python Win32 Binaries from http://httpd.apache.org/modules/python-download.cgi
Run the installer. When prompted for Apache installation directory, type C:\Program Files\Apache Software Foundation\Apache2.2 (Assuming default Apache installation).
Edit httpd.conf.
Add the following line:LoadModule python_module modules/mod_python.so
Configure your Apache &#60;Directory&#62; directives to include AddHandler, PythonHandler, and PythonDebug [...]]]></description>
			<content:encoded><![CDATA[<p>To install and test mod_python Apache on Windows (assuming that you&#8217;ve already had Apache and Python installed):</p>
<ol>
<li>Download mod_python <strong>Win32 Binaries</strong> from <a href="http://httpd.apache.org/modules/python-download.cgi" onclick="javascript:pageTracker._trackPageview('/outbound/article/httpd.apache.org');">http://httpd.apache.org/modules/python-download.cgi</a>
<li>Run the installer. When prompted for Apache installation directory, type <strong>C:\Program Files\Apache Software Foundation\Apache2.2 </strong>(Assuming default Apache installation).
<li>Edit <strong>httpd.conf.</strong>
<li>Add the following line:<br /><strong>LoadModule python_module modules/mod_python.so</strong>
<li>Configure your Apache <strong>&lt;Directory&gt;</strong> directives to include <strong>AddHandler, PythonHandler, and PythonDebug </strong>(examples below).</li>
</ol>
<p>To test your mod_python installation:</p>
<ol>
<li>Create a file named <strong>mptest.py</strong> in say <strong>C:\sites. </strong>
<li>The file will contain:<br /><strong>from mod_python import apache<br />def handler(req):<br />&nbsp; req.content_type = &#8216;text/plain&#8217;<br />&nbsp; req.write(&#8221;Hello World&#8221;)<br />&nbsp; return apache.OK</strong>
<li>Edit <strong>httpd.conf.</strong>
<li>Under <strong>&lt;Directory &#8220;C:/sites&#8221;&gt;</strong> directive add:<br /><strong>AddHandler mod_python .py<br />PythonHandler mptest<br />PythonDebug On</strong>
<li>Restart Apache and point your browser to the <strong>mptest.py</strong> url.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2008/10/installing-mod_python-apache-on-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Disabling vista user account control (UAC) and its warnings</title>
		<link>http://www.acoenoc.com/blog/2008/10/disabling-vista-user-account-control-uac-and-its-warnings/</link>
		<comments>http://www.acoenoc.com/blog/2008/10/disabling-vista-user-account-control-uac-and-its-warnings/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 03:37:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[disable UAC]]></category>

		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/disabling-vista-user-account-control-uac-and-its-warnings/</guid>
		<description><![CDATA[To disable UAC in Windows Vista:

Go to Start &#62; Control Panel &#62; User Accounts, and click Turn User Account Control on or off.
Search &#8220;regedit&#8221; in Vista Start Menu. Execute regedit.exe.
Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center
Right click on the right column, and New &#62; DWORD (32-bit) VALUE.
Enter Value name: UACDisableNotify, and Value data: 1.
Save and reboot your computer.

]]></description>
			<content:encoded><![CDATA[<p>To disable UAC in Windows Vista:</p>
<ol>
<li>Go to <strong>Start &gt; Control Panel &gt; User Accounts</strong>, and click <strong>Turn User Account Control on or off</strong>.</li>
<li>Search &#8220;regedit&#8221; in Vista <strong>Start Menu.</strong> Execute <strong>regedit.exe</strong>.</li>
<li>Go to <strong>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center</strong></li>
<li>Right click on the right column, and <strong>New &gt; DWORD (32-bit) VALUE.</strong></li>
<li>Enter Value name: <strong>UACDisableNotify</strong>, and Value data: <strong>1</strong>.</li>
<li>Save and reboot your computer.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2008/10/disabling-vista-user-account-control-uac-and-its-warnings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Apache2 ssl windows</title>
		<link>http://www.acoenoc.com/blog/2008/10/apache2-ssl-windows/</link>
		<comments>http://www.acoenoc.com/blog/2008/10/apache2-ssl-windows/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 06:15:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[apache2 windows]]></category>

		<category><![CDATA[https]]></category>

		<category><![CDATA[openssl]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/apache2-ssl-windows/</guid>
		<description><![CDATA[To enable https for your site using VirtualHost follow the following steps.

Download Apache 2.2.9 with openssl (MSI Installer) from http://httpd.apache.org/download.cgi
Execute the installer and follow the instructions.
Make sure Apache is installed properly by pointing your web browser to http://127.0.0.1/ or http//localhost/.
If you are using default Apache installation directory, navigate to c:\program files\apache software foundation\apache2.2\conf.
Execute: openssl req [...]]]></description>
			<content:encoded><![CDATA[<p>To enable <strong>https</strong> for your site using <strong>VirtualHost</strong> follow the following steps.</p>
<ol>
<li>Download <strong>Apache 2.2.9 with openssl</strong> (MSI Installer) from <a href="http://httpd.apache.org/download.cgi" onclick="javascript:pageTracker._trackPageview('/outbound/article/httpd.apache.org');">http://httpd.apache.org/download.cgi</a></li>
<li>Execute the installer and follow the instructions.</li>
<li>Make sure Apache is installed properly by pointing your web browser to <a href="http://127.0.0.1/" onclick="javascript:pageTracker._trackPageview('/outbound/article/127.0.0.1');">http://127.0.0.1/</a> or http//localhost/.</li>
<li>If you are using default Apache installation directory, navigate to <strong>c:\program files\apache software foundation\apache2.2\conf.</strong></li>
<li>Execute: <br /><strong>openssl req -config openssl.cnf -new -out <i>domainname</i>.csr -keyout domainname.pem<br /></strong>to create a <strong>.pem </strong>key.</li>
<li>Execute:<br /><strong>openssl rsa -in domainname.pem -out domainname.key<br /></strong>to create a <strong>.key</strong> key.</li>
<li>Delete <strong>.rnd </strong>file.</li>
<li>Execute:<br /><strong>openssl x509 -in domainname.csr -out domainname.cert -req -signkey domainname.key -days 365<br /></strong>to create <strong>.cert </strong>key.</li>
<li>Create a directory called <strong>ssl</strong> in the <strong>conf </strong>directory. Move all keys (cert,csr,key,pem) to the newly created directory.</li>
<li>Edit <strong>httpd.conf</strong>.</li>
<li>Uncomment line that says:<br /><strong>LoadModule ssl_module modules/mod_ssl.so.</strong></li>
<li>Uncomment line that says:<br /><strong>Include conf/extra/httpd-ssl.conf</strong></li>
<li>Edit <strong>extra\httpd-ssl.conf.</strong></li>
<li>Under directive <strong>&lt;VirtualHost _default_:443&gt;,</strong> edit <strong>DocumentRoot</strong> and <strong>ServerName</strong> to reflect your site name.</li>
<li>Point <strong>SSLCertificateFile</strong> to <strong>conf/ssl/domainname.cert</strong></li>
<li>Point <strong>SSLCertificateKeyFile </strong>to <strong>conf/ssl/domainname.key</strong></li>
<li>Modify options under <strong>&lt;Directory&gt;</strong> directives as required.</li>
</ol>
<p>To know more about what each command does refer to <a href="http://www.neilstuff.com/apache/apache2-ssl-windows.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.neilstuff.com');">http://www.neilstuff.com/apache/apache2-ssl-windows.htm</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2008/10/apache2-ssl-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing phpmyadmin on windows</title>
		<link>http://www.acoenoc.com/blog/2008/10/installing-phpmyadmin-on-windows/</link>
		<comments>http://www.acoenoc.com/blog/2008/10/installing-phpmyadmin-on-windows/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 07:09:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[phpmyadmin]]></category>

		<category><![CDATA[virtualhost]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/installing-phpmyadmin-on-windows/</guid>
		<description><![CDATA[Download the latest version of phpMyAdmin from http://www.phpmyadmin.net/home_page/downloads.php.
Extract the content to your desired installation location. (I will use D:\sites\phpmyadmin for this article).
Edit httpd.conf (Apache) to setup a virtual host by adding
NameVirtualHost *:80
&#60;VirtualHost *:80&#62;
DocumentRoot &#8220;D:/sites/phpMyAdmin&#8221;
ServerName phpMyAdmin
&#60;Directory &#8220;D:/sites/phpMyAdmin&#8221;&#62;
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    &#60;/Directory&#62;
&#60;/VirtualHost&#62;
lines to the bottom of the file.
Restart Apache.
Navigate to phpmyadmin [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Download the latest version of phpMyAdmin from <a title="http://www.phpmyadmin.net/home_page/downloads.php" href="http://www.phpmyadmin.net/home_page/downloads.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.phpmyadmin.net');">http://www.phpmyadmin.net/home_page/downloads.php</a>.</li>
<li>Extract the content to your desired installation location. (I will use <strong>D:\sites\phpmyadmin</strong> for this article).</li>
<li>Edit <strong>httpd.conf</strong> (Apache) to setup a virtual host by adding<br />
<strong><em>NameVirtualHost *:80</em></strong></li>
<p><strong><em>&lt;VirtualHost *:80&gt;<br />
DocumentRoot &#8220;D:/sites/phpMyAdmin&#8221;<br />
ServerName phpMyAdmin<br />
&lt;Directory &#8220;D:/sites/phpMyAdmin&#8221;&gt;<br />
        AllowOverride None<br />
        Options None<br />
        Order allow,deny<br />
        Allow from all<br />
    &lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;<br />
</em></strong>lines to the bottom of the file.</p>
<li>Restart Apache.</li>
<li>Navigate to <strong>phpmyadmin</strong> installation directory and copy the file <strong>config.sample.inc.php</strong> to <strong>config.inc.php</strong> and edit it as you desired <strong>(or download mine <a title="config.inc.php" href="http://www.acoenoc.com/blog/wp-content/uploads/2008/10/configinc.zip" onclick="javascript:pageTracker._trackPageview('/downloads/blog/wp-content/uploads/2008/10/configinc.zip');">here</a>)</strong>.</li>
<li>You need to enable a few extensions (<strong>edit php.ini</strong>) in order to use phpmyadmin. Here&#8217;s a few:<br />
<strong><em>extension=php_mysql.dll<br />
extension=php_mysqli.dll<br />
extension=php_mcrypt.dll</em></strong></li>
<li>Since you are using <strong>virtual host,</strong> you need to edit your <strong>hosts </strong>file (<strong>%SystemRoot%\system32\drivers\etc\hosts</strong>).<br />
<strong><em>127.0.0.1 phpMyAdmin</em></strong></li>
<li>Point your browser to <strong><a href="http://phpMyAdmin/" onclick="javascript:pageTracker._trackPageview('/outbound/article/phpMyAdmin');">http://phpMyAdmin/</a> . </strong></li>
<li>You should now be able to login.</li>
<li>Navigate to <strong>Import</strong> tab.</li>
<li>Click <strong>Choose File.</strong></li>
<li>On the popup box, navigate to <strong>D:\sites\phpmyadmin\scripts </strong>and select <strong>create_tables.sql. </strong>SQL commands should successfully execute.</li>
<li>Now, navigate to <strong>SQL </strong>tab.</li>
<li>Type: <strong>grant all on pmadb.* to &#8216;pma&#8217;@'localhost&#8217; identified by &#8216;pmapass&#8217;</strong>.</li>
<li>Click <strong>Go.</strong></li>
<li>You are all set to use phpMyAdmin now.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2008/10/installing-phpmyadmin-on-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing php on vista (And configure APACHE)</title>
		<link>http://www.acoenoc.com/blog/2008/10/installing-php-on-vista-and-configure-apache/</link>
		<comments>http://www.acoenoc.com/blog/2008/10/installing-php-on-vista-and-configure-apache/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 07:07:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/installing-php-on-vista-and-configure-apache/</guid>
		<description><![CDATA[Apache installation on Vista is a breeze. Just use the installer downloaded from http://httpd.apache.org/download.cgi.
If you are looking steps to install PHP using MSI Installer, this isn&#8217;t for you. I have tried installing PHP using MSI installer on Vista, and it was a pain. So I decided to manually install and setup the PHP environments.
Below are [...]]]></description>
			<content:encoded><![CDATA[<p>Apache installation on Vista is a breeze. Just use the installer downloaded from <a title="http://httpd.apache.org/download.cgi" href="http://httpd.apache.org/download.cgi" onclick="javascript:pageTracker._trackPageview('/outbound/article/httpd.apache.org');">http://httpd.apache.org/download.cgi</a>.</p>
<p>If you are looking steps to install PHP using MSI Installer, this isn&#8217;t for you. I have tried installing PHP using MSI installer on Vista, and it was a pain. So I decided to manually install and setup the PHP environments.</p>
<p>Below are the steps:</p>
<ol>
<li>Download PHP Windows Binaries from <a title="http://www.php.net/downloads.php#v5" href="http://www.php.net/downloads.php#v5" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.php.net');">http://www.php.net/downloads.php#v5</a> (<strong>zip package</strong>).</li>
<li>Unzip them to your desired location. I recommend not to install PHP on the partition where your Vista resides (e.g. <strong>D:\PHP)</strong> to avoid UAC annoyance.</li>
<li>Click on <strong>&#8220;Vista&#8221; icon</strong> (or <strong>&#8220;Start&#8221; button</strong>) on your desktop, right click on <strong>Computer</strong> and select <strong>Properties</strong>. Click on <strong>Advanced system settings.</strong></li>
<li>A dialog box pops up. Click on <strong>Environment Variables</strong>.</li>
<li>Under <strong>System Variables</strong> scroll to find <strong>Path </strong>variable. Select and click <strong>Edit&#8230;</strong></li>
<li>Append your PHP path (e.g. D:\PHP) to the beginning of <strong>Variable value. </strong>Don&#8217;t forget to insert <strong>; </strong>after it. And save it<strong>.</strong></li>
<li>Under <strong>System Variables </strong>click <strong>New&#8230;</strong></li>
<li>Variable name: <strong>PHPRC,</strong> Variable Value: <strong>D:\PHP</strong>. And save it.</li>
<li>And just click OK buttons all the way to close all the dialog boxes.</li>
<li>Open a <strong>Command Prompt</strong> and execute &#8220;php -v&#8221; to see if PHP is correctly installed.</li>
<li>Edit <strong>php.ini</strong> file (under D:\PHP) and set your <strong>extension_dir </strong>to &#8220;./ext&#8221;.</li>
<li>Edit <strong>httpd.conf</strong> (Apache&#8217;s) and add<br />
<strong><em>LoadModule php5_module &#8220;D:/PHP/php5apache2_2.dll&#8221;<br />
AddType application/x-httpd-php .php</em></strong><br />
line to the bottom of the file.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2008/10/installing-php-on-vista-and-configure-apache/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Configuring vista Sidebar &#34;rss feed&#34; gadget via outlook 2007</title>
		<link>http://www.acoenoc.com/blog/2008/10/configuring-vista-sidebar-rss-feed-gadget-via-outlook-2007/</link>
		<comments>http://www.acoenoc.com/blog/2008/10/configuring-vista-sidebar-rss-feed-gadget-via-outlook-2007/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 05:25:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<category><![CDATA[outlook 2007]]></category>

		<category><![CDATA[RSS Feed Gadget]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/?p=6</guid>
		<description><![CDATA[It took me sometime to understand that the Sidebar RSS Feed is tied to Internet Explorer RSS Feed.
First things first, you need to configure Outlook 2007 to share its RSS Feed. Follow the following steps if you haven&#8217;t already enabled Common Feed List:

In outlook, go to Tools &#62; Options &#62; Others &#62; Advanced Options.
Put a [...]]]></description>
			<content:encoded><![CDATA[<p>It took me sometime to understand that <strong>the Sidebar RSS Feed is tied to Internet Explorer RSS Feed.</strong></p>
<p>First things first, you need to configure Outlook 2007 to share its RSS Feed. Follow the following steps if you haven&#8217;t already enabled <strong>Common Feed List:</strong></p>
<ol>
<li>In outlook, go to <strong>Tools &gt; Options &gt; Others &gt; Advanced Options.</strong></li>
<li>Put a check in the checkbox next to <strong>Sync RSS Feeds to the Common Feed List.</strong></li>
</ol>
<p>Next is to add RSS Feeds in Outlook 2007. If you look at the list of RSS Feeds in the Gadget, you are able to see the RSS Feed you just added, however, it doesn&#8217;t show any contents.</p>
<p>The last step is to open Internet Explorer. Click on the <strong>&#8220;Star&#8221; icon</strong> (or <strong>press Ctrl+J</strong>) and choose <strong>Feeds</strong>. You will see your newly added Feed, click it.</p>
<p>Refresh your Gadget, and you should see your new Feed entries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2008/10/configuring-vista-sidebar-rss-feed-gadget-via-outlook-2007/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing FreeBSD via FTP on VMWare Workstation 6</title>
		<link>http://www.acoenoc.com/blog/2008/09/installing-freebsd-via-ftp-on-vmware-workstation-6/</link>
		<comments>http://www.acoenoc.com/blog/2008/09/installing-freebsd-via-ftp-on-vmware-workstation-6/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 12:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[BSD/ Unix/ Linux]]></category>

		<category><![CDATA[freebsd]]></category>

		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.acoenoc.com/blog/?p=3</guid>
		<description><![CDATA[For me, a UNIX/ Linux newbie, FreeBSD installer is a bit dodgy to use. So I want to share the successful FTP installation steps.
To get FreeBSD, go to http://www.freebsd.org/where.html. I&#8217;m using livefs version of FreeBSD ISO.
I created a new VMWare virtal machine with the following settings: NAT networking, 256MB RAM, 8GB HD, and CD-Rom pointing [...]]]></description>
			<content:encoded><![CDATA[<p>For me, a UNIX/ Linux newbie, FreeBSD installer is a bit dodgy to use. So I want to share the successful FTP installation steps.</p>
<p>To get FreeBSD, go to <a title="http://www.freebsd.org/where.html" href="http://www.freebsd.org/where.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.freebsd.org');">http://www.freebsd.org/where.html</a>. I&#8217;m using <strong><em>livefs </em></strong>version of FreeBSD ISO.</p>
<p>I created a new VMWare virtal machine with the following settings: <strong>NAT </strong>networking, 256MB RAM, 8GB HD, and CD-Rom pointing to the downloaded ISO.</p>
<p>Start up the Virtual Machine.</p>
<ol>
<li>On &#8220;Welcome to FreeBSD!&#8221; page, press Enter to choose default boot option.</li>
<li>Select your &#8220;Country Selection&#8221;.</li>
<li>Arriving at &#8220;Sysinstall Main Menu&#8221;, choose &#8220;Standard&#8221;.</li>
<li>On &#8220;FDISK Partition Editor&#8221; page, choose &#8220;A&#8221; for &#8220;Use Entire Disk&#8221;, and &#8220;Q&#8221; to exit.</li>
<li>On &#8220;Install Boot Manager&#8221; page, choose &#8220;BootMgr&#8221;.</li>
<li>On &#8220;FreeBSD Disklabel Editor&#8221;, create 2 labels: 512M for &#8220;Swap&#8221; and the rest for root (/) &#8220;FS&#8221;. Press &#8220;Q&#8221; to exit.</li>
<li>On &#8220;Choose Distribution&#8221;, choose Minimal and Custom: base, kernels, info, man, ports.</li>
<li>On &#8220;Choose Installation Media&#8221;, choose &#8220;FTP Passive&#8221;.</li>
<li>On &#8220;FTP distribution site&#8221;, choose &#8220;URL&#8221; and enter the &#8220;IP Address&#8221; of your nearest FreeBSD distribution site e.g. <a href="ftp://210.171.226.46/pub/FreeBSD" onclick="javascript:pageTracker._trackPageview('/outbound/article/210.171.226.46');">ftp://210.171.226.46/pub/FreeBSD</a> (for <a href="ftp://ftp.jp.freebsd.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/ftp.jp.freebsd.org');">ftp.jp.freebsd.org</a>).</li>
<li>On &#8220;Network interface information&#8221;, choose &#8220;le0&#8243;.</li>
<li>Choose &#8220;No&#8221; for IPv6 configuration.</li>
<li>Choose &#8220;No&#8221; for DHCP configuration.</li>
<li>Enter your hostname, domain, IPv4 Gateway, Name Server, IPv4 Address, Netmask.</li>
</ol>
<p>Step number 8, 9, 12, and 13 are critical. I never got the installer working, by choosing other choices on those steps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acoenoc.com/blog/2008/09/installing-freebsd-via-ftp-on-vmware-workstation-6/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
