<?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>HowTo Config</title>
	<atom:link href="http://howtoconfig.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://howtoconfig.org</link>
	<description>howto configure, setup and install server, network, and all</description>
	<lastBuildDate>Tue, 09 Mar 2010 14:00:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Defining an Abstract Class with Restrictive Constructors in PHP 5</title>
		<link>http://howtoconfig.org/2010/03/defining-an-abstract-class-with-restrictive-constructors-in-php-5/</link>
		<comments>http://howtoconfig.org/2010/03/defining-an-abstract-class-with-restrictive-constructors-in-php-5/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 14:00:09 +0000</pubDate>
		<dc:creator>Dev Shed - RSS Feeds</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://www.devshed.com/c/a/PHP/Defining-an-Abstract-Class-with-Restrictive-Constructors-in-PHP-5/?kc=rss</guid>
		<description><![CDATA[
In this second part of a four-part series, I rebuild the example application developed in the previous tutorial. As you'll recall, it used a protected constructor to prevent the instantiation of the base array iterator class. In this case, a better result will be achieved by declaring the iterator abstract; still, the example demonstrates a simple utilization of a restrictive constructor in a concrete situation.<br />   -  Unquestionably, the introduction of a more robust object model in PHP 5 has provided developers with  additional features that allow them  to build efficient and thorough object-oriented applications without the need to appeal to the ugly programming hacks used frequently in the bad old days of PHP ...]]></description>
			<content:encoded><![CDATA[
In this second part of a four-part series, I rebuild the example application developed in the previous tutorial. As you'll recall, it used a protected constructor to prevent the instantiation of the base array iterator class. In this case, a better result will be achieved by declaring the iterator abstract; still, the example demonstrates a simple utilization of a restrictive constructor in a concrete situation.<br />   -  Unquestionably, the introduction of a more robust object model in PHP 5 has provided developers with  additional features that allow them  to build efficient and thorough object-oriented applications without the need to appeal to the ugly programming hacks used frequently in the bad old days of PHP ...]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/defining-an-abstract-class-with-restrictive-constructors-in-php-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Willy Sudiarto Raharjo: Running Rsync Via Proxy</title>
		<link>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-running-rsync-via-proxy/</link>
		<comments>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-running-rsync-via-proxy/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 07:02:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Slackware]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-7534848307469799413.post-965992441123724</guid>
		<description><![CDATA[One way to get the latest Slackware updates is by running rsync to syncronize your local repository and  the main repository that hold the Slackware packages. <a href="http://alien.slackbook.org/blog/">Eric Hameleers</a> has provided a great script called <a href="http://connie.slackware.com/~alien/tools/rsync_current.sh">rsync_current.sh</a> and how i modified this tool has been discussed on <a href="http://slackblogs.blogspot.com/2009/10/rsync-slackware-current.html">my previous post</a>. In general, it works, except for one problem, when your computer is connecting to the Internet through a proxy.<br /><br />My workstation at my office is connected to the Internet through a proxy, so i can't use normal rsync to work normally. I browsed the web and i found this <a href="http://www.sai.msu.su/~er/rsync_proxy.html">site</a> which tells us about how we should modify our squid configuration to allow rsync connection from any computer from our local networks. I asked my sysadmin to try this script. He agreed and he updated the squid configuration on the proxy.<br /><br />Next, i need to update my environment variable <span>RSYNC_PROXY</span> to the host of the proxy and also the port. Let's say you are running a proxy on 192.168.1.1 and port 8080, then you need to run <span>export RSYNC_PROXY="192.168.1.1:8080</span> and then you can start running your rsync command (or script in my case).<br /><br />Remember that this change is not permanent. It will last until you close your terminal, so the solution is to add this line into your ~/.bash_profile or /etc/profile if you want it to be globaly available to all of your users.<br /><br />If you want to run the script periodically, you can use cronjobs to do it for you. I set to download the update from Slackware mirrors at around 11 PM at night when the bandwidth is not utilized.<br /><br />Hope this small article helps you out to work with rsync when you are behind a proxy<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/7534848307469799413-965992441123724?l=slackblogs.blogspot.com" alt="" /></div>]]></description>
			<content:encoded><![CDATA[One way to get the latest Slackware updates is by running rsync to syncronize your local repository and  the main repository that hold the Slackware packages. <a href="http://alien.slackbook.org/blog/">Eric Hameleers</a> has provided a great script called <a href="http://connie.slackware.com/~alien/tools/rsync_current.sh">rsync_current.sh</a> and how i modified this tool has been discussed on <a href="http://slackblogs.blogspot.com/2009/10/rsync-slackware-current.html">my previous post</a>. In general, it works, except for one problem, when your computer is connecting to the Internet through a proxy.<br /><br />My workstation at my office is connected to the Internet through a proxy, so i can't use normal rsync to work normally. I browsed the web and i found this <a href="http://www.sai.msu.su/~er/rsync_proxy.html">site</a> which tells us about how we should modify our squid configuration to allow rsync connection from any computer from our local networks. I asked my sysadmin to try this script. He agreed and he updated the squid configuration on the proxy.<br /><br />Next, i need to update my environment variable <span>RSYNC_PROXY</span> to the host of the proxy and also the port. Let's say you are running a proxy on 192.168.1.1 and port 8080, then you need to run <span>export RSYNC_PROXY="192.168.1.1:8080</span> and then you can start running your rsync command (or script in my case).<br /><br />Remember that this change is not permanent. It will last until you close your terminal, so the solution is to add this line into your ~/.bash_profile or /etc/profile if you want it to be globaly available to all of your users.<br /><br />If you want to run the script periodically, you can use cronjobs to do it for you. I set to download the update from Slackware mirrors at around 11 PM at night when the bandwidth is not utilized.<br /><br />Hope this small article helps you out to work with rsync when you are behind a proxy<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/7534848307469799413-965992441123724?l=slackblogs.blogspot.com" alt="" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-running-rsync-via-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dua kampus di solo berlomba-lomba membuat Linux</title>
		<link>http://howtoconfig.org/2010/03/dua-kampus-di-solo-berlomba-lomba-membuat-linux/</link>
		<comments>http://howtoconfig.org/2010/03/dua-kampus-di-solo-berlomba-lomba-membuat-linux/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 02:14:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://solo.foss-id.web.id/?p=720</guid>
		<description><![CDATA[Linux Sinau, itulah linux yang di promotori ficos UNS

Linux Tajdid, Itulah linux yang di promotori POSS UMS, Website resminya ada di http://tajdidlinux.org

]]></description>
			<content:encoded><![CDATA[Linux Sinau, itulah linux yang di promotori ficos UNS

Linux Tajdid, Itulah linux yang di promotori POSS UMS, Website resminya ada di http://tajdidlinux.org

]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/dua-kampus-di-solo-berlomba-lomba-membuat-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Willy Sudiarto Raharjo: Security Update: HTTPD</title>
		<link>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-security-update-httpd/</link>
		<comments>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-security-update-httpd/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 00:05:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Slackware]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-7534848307469799413.post-5824726871832774093</guid>
		<description><![CDATA[Apache has just released a security update for httpd package and Slackware-Current has included the fix on the latest batch. It fixed three problems described on the Changelog.<br /><br />Other news is that cupsddk is now being part of the main CUPS package, so we don't need separate package, thus cupsddk package is now removed. OpenSSH is also upgraded to the latest version, which is a major upgrade.<br /><br />Here's the latest -Current changelog:<br /><blockquote>M<span>on Mar 8 20:49:02 UTC 2010<br />ap/cupsddk-1.2.3-i486-2.txz: Removed.<br />The CUPS Driver Development Kit (DDK) is part of the main CUPS package now.<br /><br />ap/hplip-3.10.2-i486-1.txz: Upgraded.<br /><br />n/httpd-2.2.15-i486-1.txz: Upgraded.<br />This update addresses a few security issues.<br />mod_ssl: A partial fix for the TLS renegotiation prefix injection attack by rejecting any client-initiated renegotiations.<br />mod_proxy_ajp: Respond with HTTP_BAD_REQUEST when the body is not sent when request headers indicate a request body is incoming; not a case of HTTP_INTERNAL_SERVER_ERROR.<br />mod_isapi: Do not unload an isapi .dll module until the request processing is completed, avoiding orphaned callback pointers.<br />[This is the most serious flaw, but does not affect Linux systems]<br />For more information, see:<br />http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3555<br />http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0408<br />http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0425<br />(* Security fix *)<br /><br />n/openssh-5.4p1-i486-1.txz: Upgraded.</span></blockquote><div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/7534848307469799413-5824726871832774093?l=slackblogs.blogspot.com" alt="" /></div>]]></description>
			<content:encoded><![CDATA[Apache has just released a security update for httpd package and Slackware-Current has included the fix on the latest batch. It fixed three problems described on the Changelog.<br /><br />Other news is that cupsddk is now being part of the main CUPS package, so we don't need separate package, thus cupsddk package is now removed. OpenSSH is also upgraded to the latest version, which is a major upgrade.<br /><br />Here's the latest -Current changelog:<br /><blockquote>M<span>on Mar 8 20:49:02 UTC 2010<br />ap/cupsddk-1.2.3-i486-2.txz: Removed.<br />The CUPS Driver Development Kit (DDK) is part of the main CUPS package now.<br /><br />ap/hplip-3.10.2-i486-1.txz: Upgraded.<br /><br />n/httpd-2.2.15-i486-1.txz: Upgraded.<br />This update addresses a few security issues.<br />mod_ssl: A partial fix for the TLS renegotiation prefix injection attack by rejecting any client-initiated renegotiations.<br />mod_proxy_ajp: Respond with HTTP_BAD_REQUEST when the body is not sent when request headers indicate a request body is incoming; not a case of HTTP_INTERNAL_SERVER_ERROR.<br />mod_isapi: Do not unload an isapi .dll module until the request processing is completed, avoiding orphaned callback pointers.<br />[This is the most serious flaw, but does not affect Linux systems]<br />For more information, see:<br />http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3555<br />http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0408<br />http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0425<br />(* Security fix *)<br /><br />n/openssh-5.4p1-i486-1.txz: Upgraded.</span></blockquote><div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/7534848307469799413-5824726871832774093?l=slackblogs.blogspot.com" alt="" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-security-update-httpd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keluarga Besar UBUNTU</title>
		<link>http://howtoconfig.org/2010/03/keluarga-besar-ubuntu/</link>
		<comments>http://howtoconfig.org/2010/03/keluarga-besar-ubuntu/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 20:19:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[KPLI]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://solo.linux.or.id/?p=197</guid>
		<description><![CDATA[repost : http://mashendri.com/ubuntu-dan-keluarganya.html/
Hari gini siapa sich yang nggak kenal ubuntu&#8230;? Distro linux terlaris versi distrowatch.com ini ternyata memiliki banyak turunan dalam keluarganya. Tentunya Ubuntu tidak sembarangan membuat banyak sekali produknya tersebut, karena  dari masing-masing produk tersebut memiliki keunggulan dan fungsinya  masing-masing. Berikut perbedaan dan fungsi masing-masing produk ubuntu  tersebut.
UBUNTU
Distro linux turunan dari [...]]]></description>
			<content:encoded><![CDATA[repost : http://mashendri.com/ubuntu-dan-keluarganya.html/
Hari gini siapa sich yang nggak kenal ubuntu&#8230;? Distro linux terlaris versi distrowatch.com ini ternyata memiliki banyak turunan dalam keluarganya. Tentunya Ubuntu tidak sembarangan membuat banyak sekali produknya tersebut, karena  dari masing-masing produk tersebut memiliki keunggulan dan fungsinya  masing-masing. Berikut perbedaan dan fungsi masing-masing produk ubuntu  tersebut.
UBUNTU
Distro linux turunan dari [...]]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/keluarga-besar-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Reflection API: Working with Reflected Methods</title>
		<link>http://howtoconfig.org/2010/03/the-reflection-api-working-with-reflected-methods/</link>
		<comments>http://howtoconfig.org/2010/03/the-reflection-api-working-with-reflected-methods/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 14:00:12 +0000</pubDate>
		<dc:creator>Dev Shed - RSS Feeds</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://www.devshed.com/c/a/PHP/The-Reflection-API-Working-with-Reflected-Methods/?kc=rss</guid>
		<description><![CDATA[
This third part of a seven-part series explores the methods of the PHP Reflection API. You will learn how to take advantage of their functionality to retrieve useful information about the methods defined by a reflected class.<br />   -  One of today's most powerful approaches  for retrieving information about the internal structure of classes and interfaces in PHP 5 is via the language's native reflection API. What's more, not only does this API comes packaged with a huge variety of methods that let developers perform all sorts of ...]]></description>
			<content:encoded><![CDATA[
This third part of a seven-part series explores the methods of the PHP Reflection API. You will learn how to take advantage of their functionality to retrieve useful information about the methods defined by a reflected class.<br />   -  One of today's most powerful approaches  for retrieving information about the internal structure of classes and interfaces in PHP 5 is via the language's native reflection API. What's more, not only does this API comes packaged with a huge variety of methods that let developers perform all sorts of ...]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/the-reflection-api-working-with-reflected-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Willy Sudiarto Raharjo: Latest CUPS and Canon Problem Fixed</title>
		<link>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-latest-cups-and-canon-problem-fixed/</link>
		<comments>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-latest-cups-and-canon-problem-fixed/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 02:34:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Slackware]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-7534848307469799413.post-5954459451936389308</guid>
		<description><![CDATA[Today, i wanted to print something, but i noticed the printer is not responding to my request. It seems the latest CUPS in -Current has made some changes so that it didn't detect my printer anymore (it's a major upgrade after all). I have tried to remove my printer and re-adding it again, but i'm stuck with this error message: <b>Bad device-uri "cnij_usb:/dev/usb/lp0"!</b><br /><br />When i read this <a href="http://www.linuxquestions.org/questions/slackware-14/printer-doesnt-work-after-upgrade-793574/">thread in LQ</a>, i realized that i didn't have the same problem (the problem in LQ did happened on my workstation at my office where i got a blank paper instead of a text). So, i searched for solution on the Internet and i got to <a href="http://bugs.gentoo.org/show_bug.cgi?id=258244">Gentoo BugZilla</a> which said about cnijfilter-common 3.00 package. Mine is 2.7.0 which i got from official repository of Canon.<br /><br />I searched the Internet and got this package (3.00) from <a href="http://support-my.canon-asia.com/contents/MY/EN/0100159804.html">Canon Asia Support</a> and i converted it to tgz using rpm2tgz application provided in Slackware and i removed the old cnijfilter-common package and install this new package. Next, i restarted my CUPS service and i'm able to get my printer working again after re-adding it again.<br /><br />The correct device URI is supposed to be <span>cnijusb:/dev/usb/lp0 </span>which is fixed with the latest cnijfilter-common package.<br /><br />I hope this helps when you encounter a problem with Canon printers and you are using CUPS 1.4.x.<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/7534848307469799413-5954459451936389308?l=slackblogs.blogspot.com" alt="" /></div>]]></description>
			<content:encoded><![CDATA[Today, i wanted to print something, but i noticed the printer is not responding to my request. It seems the latest CUPS in -Current has made some changes so that it didn't detect my printer anymore (it's a major upgrade after all). I have tried to remove my printer and re-adding it again, but i'm stuck with this error message: <b>Bad device-uri "cnij_usb:/dev/usb/lp0"!</b><br /><br />When i read this <a href="http://www.linuxquestions.org/questions/slackware-14/printer-doesnt-work-after-upgrade-793574/">thread in LQ</a>, i realized that i didn't have the same problem (the problem in LQ did happened on my workstation at my office where i got a blank paper instead of a text). So, i searched for solution on the Internet and i got to <a href="http://bugs.gentoo.org/show_bug.cgi?id=258244">Gentoo BugZilla</a> which said about cnijfilter-common 3.00 package. Mine is 2.7.0 which i got from official repository of Canon.<br /><br />I searched the Internet and got this package (3.00) from <a href="http://support-my.canon-asia.com/contents/MY/EN/0100159804.html">Canon Asia Support</a> and i converted it to tgz using rpm2tgz application provided in Slackware and i removed the old cnijfilter-common package and install this new package. Next, i restarted my CUPS service and i'm able to get my printer working again after re-adding it again.<br /><br />The correct device URI is supposed to be <span>cnijusb:/dev/usb/lp0 </span>which is fixed with the latest cnijfilter-common package.<br /><br />I hope this helps when you encounter a problem with Canon printers and you are using CUPS 1.4.x.<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/7534848307469799413-5954459451936389308?l=slackblogs.blogspot.com" alt="" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-latest-cups-and-canon-problem-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Willy Sudiarto Raharjo: Minor Kernel Tweak</title>
		<link>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-minor-kernel-tweak/</link>
		<comments>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-minor-kernel-tweak/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 01:39:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Slackware]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-7534848307469799413.post-6946822100215255995</guid>
		<description><![CDATA[Pat has just updated two kernel packages in -Current to improve it's compatibility and also upgraded libarchive to 2.8.0. It's a small updates, but this should fix some problems with the huge kernel after the introduction of XOrg and 2.6.33 few days ago.<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/7534848307469799413-6946822100215255995?l=slackblogs.blogspot.com" alt="" /></div>]]></description>
			<content:encoded><![CDATA[Pat has just updated two kernel packages in -Current to improve it's compatibility and also upgraded libarchive to 2.8.0. It's a small updates, but this should fix some problems with the huge kernel after the introduction of XOrg and 2.6.33 few days ago.<div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/7534848307469799413-6946822100215255995?l=slackblogs.blogspot.com" alt="" /></div>]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/willy-sudiarto-raharjo-minor-kernel-tweak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multimedia pada openSUSE 11.2</title>
		<link>http://howtoconfig.org/2010/03/multimedia-pada-opensuse-11-2/</link>
		<comments>http://howtoconfig.org/2010/03/multimedia-pada-opensuse-11-2/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 07:18:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[openSUSE]]></category>

		<guid isPermaLink="false">http://kirmann.wordpress.com/?p=321</guid>
		<description><![CDATA[
Sebagian besar kebutuhan pokok seorang pengguna komputer adalah multimedia, misalnya musik atau film. Tanpa hal tersebut, hidup ini terasa hampa   . Akan tetapi seperti kebanyakan linux, misalnya openSUSE dan distro-distro lain, dukungan untuk beberapa format multimedia tidak dapat disertakan karena proprietary mereka dipatenkan, atau biasa disebut sebagai Restricted Formats. Beberapa format itu di [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kirmann.wordpress.com&#38;blog=2327547&#38;post=321&#38;subd=kirmann&#38;ref=&#38;feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://kirmann.files.wordpress.com/2010/03/multimedia.png"><img class="alignleft size-full wp-image-322" title="Multimedia" src="http://kirmann.files.wordpress.com/2010/03/multimedia.png?w=128&#038;h=128" alt="Multimedia openSUSE 11.2" width="128" height="128" /></a>
</p><p align="justify">Sebagian besar kebutuhan pokok seorang pengguna komputer adalah multimedia, misalnya musik atau film. Tanpa hal tersebut, hidup ini terasa hampa <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' />  . Akan tetapi seperti kebanyakan linux, misalnya openSUSE dan distro-distro lain, dukungan untuk beberapa format multimedia tidak dapat disertakan karena proprietary mereka dipatenkan, atau biasa disebut sebagai Restricted Formats. Beberapa format itu di antaranya adalah MP3, MPEG-4, DVD, dll. Dengan demikian kita perlu sedikit melakukan konfigurasi agar format-format tersebut dapat kita nikmati.</p>
<p><span id="more-321"></span><br />
Caranya tidak terlalu susah, cukup tambahkan repository packman lalu install:<br />
- Menambahkan repository packman :</p>
<pre>
# zypper ar http://packman.jacobs-university.de/suse/11.2/ packman-Germany
</pre>
<p>packman-Germany : nama paket repository, ini bisa diubah sesuai keinginan kita.</p>
<p>- Mencari paket codec</p>
<pre>
# zypper se codec
New repository or package signing key received:
Key ID: 45A1D0671ABD1AFB
Key Name: PackMan Project (signing key) &lt;packman@links2linux.de&gt;
Key Fingerprint: F8875B880D518B6B8C530D1345A1D0671ABD1AFB
Repository: packman-Germany

Do you want to reject the key, trust temporarily, or trust always? [r/t/a/?] (r):
</pre>
<p>Ketikkan huruf &#8220;t&#8221; (tanpa tanda petik), bahwa kita percaya (trust) dengan sign key tersebut.</p>
<pre>
Building repository 'packman-Germany' cache [done]
Loading repository data...
Reading installed packages...

S | Name                      | Summary                                                      | Type
--+---------------------------+--------------------------------------------------------------+-----------
| jakarta-commons-codec     | Implementations of common encoders and decoders              | package
| k3b-codecs                | A Universal CD and DVD Burning Application Build Environemnt | package
| k3b-codecs-debuginfo      | Debug information for package k3b-codecs                     | package
| kde3-k3b-codecs           | MP3 Encoding and Video Decoding/Encoding Plugins             | package
| kde3-k3b-codecs-debuginfo | Debug information for package kde3-k3b-codecs                | package
| libAtlasCodecs-0_6-1      | Shared library for Atlas protocol                            | package
| libavcodec52              | Ffmpeg libavcodec                                            | package
| libxine1-codecs           | Xine plugins for watching DVDs, DivX and more                | package
| opensuse-codecs-installer | Cross platform codec installation for openSUSE               | package
| w32codec-all              | Win32 and other binary Codecs                                | package
| w32codec-all              | Win32 and other binary Codecs                                | srcpackage
</pre>
<p>- Install paket-paket format multimedia.</p>
<pre>
# zypper in kde3-k3b-codecs libxine1-codecs libavcodec52 w32codec-all

Problem: nothing provides libvcdinfo.so.0 needed by libxine1-codecs-1.1.18.1-1.pm.36.1.i586
Solution 1: do not ask to install a solvable providing libxine1-codecs
Solution 2: break libxine1-codecs by ignoring some of its dependencies

Choose from above solutions by number or skip, retry or cancel [1/2/s/r/c] (c):
</pre>
<p>Ketikkan pilihan 2 agar dependensi yang dibutuhkan terpenuhi sehingga paket-paket bisa diinstall dengan sempurna.</p>
<p>Tunggulah sampai instalasi selesai, selanjutnya kita bisa menikmati format restricted multimedia yang awalnya tidak bisa kita jalankan.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kirmann.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kirmann.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kirmann.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kirmann.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kirmann.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kirmann.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kirmann.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kirmann.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kirmann.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kirmann.wordpress.com/321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kirmann.wordpress.com&blog=2327547&post=321&subd=kirmann&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/multimedia-pada-opensuse-11-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pelatihan Linux</title>
		<link>http://howtoconfig.org/2010/03/pelatihan-linux/</link>
		<comments>http://howtoconfig.org/2010/03/pelatihan-linux/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 04:06:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[KPLI]]></category>

		<guid isPermaLink="false">7 at http://makassar.linux.or.id</guid>
		<description><![CDATA[<p>LUGU akan melakukan pelatihan linux, yang rencananya diselenggarakan di PTIK Unhas, tanggal 13 maret jam 10. </p>
<p>Materi pelatihan linux meliputi :<br />
- instalasi<br />
- konfigurasi<br />
- multimedia<br />
- aplikasi tambahan<br />
- troubleshooting</p>
<p>Fasilitas ;<br />
- sertifikat<br />
- modul<br />
- lunch</p>
<p>Biaya kontribusi : Rp. 50.000,-</p>
]]></description>
			<content:encoded><![CDATA[<p>LUGU akan melakukan pelatihan linux, yang rencananya diselenggarakan di PTIK Unhas, tanggal 13 maret jam 10. </p>
<p>Materi pelatihan linux meliputi :<br />
- instalasi<br />
- konfigurasi<br />
- multimedia<br />
- aplikasi tambahan<br />
- troubleshooting</p>
<p>Fasilitas ;<br />
- sertifikat<br />
- modul<br />
- lunch</p>
<p>Biaya kontribusi : Rp. 50.000,-</p>
]]></content:encoded>
			<wfw:commentRss>http://howtoconfig.org/2010/03/pelatihan-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
