<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-1862961023949718938</atom:id><lastBuildDate>Mon, 07 Oct 2024 05:03:20 +0000</lastBuildDate><title>all about opensources</title><description></description><link>http://free-opensources.blogspot.com/</link><managingEditor>noreply@blogger.com (Anonymous)</managingEditor><generator>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-9002759047051990357</guid><pubDate>Fri, 16 Jul 2010 09:48:00 +0000</pubDate><atom:updated>2010-08-14T03:59:49.759+07:00</atom:updated><title>How to Setup a Wireless Ubuntu Router</title><description>I hope this helps others and gives hobbyists a fun project. &lt;br /&gt;
Here&#39;s the hardware used: &lt;br /&gt;
Celeron based PC (755MHz) &lt;br /&gt;
512MB RAM &lt;br /&gt;
10GB ATA HDD &lt;br /&gt;
Realtek 10/100 NIC (2 of them) &lt;br /&gt;
There is an integrated NIC on the motherboard, but I couldn&#39;t find any drivers that worked. &lt;br /&gt;
AtlantisLand I-Fly A02WP54G (which I borrowed from another PC).&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;b&gt;A Basic Server Install:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;First thing you&#39;ll need to complete is&lt;/span&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt; a base server install on the PC (don&#39;t use LAMP or DNS). From googling, I found out that the wireless card I&#39;m using will work from Ubuntu versions 5.10 (Breezy) and newer.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;After the installation of the server is complete, make sure that you configure your repositories to use &quot;Universe&quot;.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
Edit this file: /etc/apt/sources.list&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo nano -w /etc/apt/sources.list&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;And add this: universe &lt;br /&gt;
The lines you edit, will look something like this:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;deb http://ca.archive.ubuntu.com/ubuntu/ edgy main restricted &lt;br /&gt;
deb-src http://ca.archive.ubuntu.com/ubuntu/ edgy main restricted&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Make sure you create a backup copy of this file BEFORE you do anything. I should also note that when examining your sources.list, if you see an entry for CD,remove it. (For people interested in enhancing their repositories, please see here: &lt;a href=&quot;http://ubuntulinuxhelp.com/the-best-ubuntu-linux-repository-list/&quot; title=&quot;http://ubuntulinuxhelp.com/the-best-ubuntu-linux-repository-list/&quot;&gt;http://ubuntulinuxhelp.com/the-best-ubuntu-linux-repository-list/&lt;/a&gt;)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;After editing the sources.list file, use this command to update, so that you will receive the most recent versions of updates as we complete the installation:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo apt-get update&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;b&gt;The Network:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;This PC needs to work like the broken router did. Therefore:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;eth0 = (Which is on the motherboard) is not working, and I think it&#39;s a driver related issue. &lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;fullpost&quot;&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt; &lt;br /&gt;
eth1 = The external WAN connection to my ISP. &lt;br /&gt;
eth2 = Is the internal LAN connection to the network. &lt;br /&gt;
ath0 = Wireless connection. &lt;br /&gt;
br0 = The virtual bridge connecting eth2 (LAN) to ath0 (Wireless) - So that wireless connections can communicate on the network, which in turn can communicate with the Internet.&lt;/span&gt;  &lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Adding the bridge is not too difficult. First we need to get the package like this:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo apt-get install bridge-utils&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Now edit the network configuration file (interfaces) with this command (you don&#39;t have to use nano, you can use any text based editor):&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo nano /etc/network/interfaces&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Edit the open file like this: &lt;br /&gt;
(I have included notes in this code below, please make sure that you check them).&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;# This file describes the network interfaces available on your system &lt;br /&gt;
# and how to activate them. For more information, see interfaces(5). &lt;br /&gt;
#The loopback network interface &lt;br /&gt;
auto lo &lt;br /&gt;
iface lo inet loopback&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;#etho is on the motherboard and the driver is not available? So... I had to disable this section. &lt;br /&gt;
#auto eth0 &lt;br /&gt;
#iface eth0 inet dhcp &lt;br /&gt;
#pre-up iptables-restore &amp;lt; /etc/iptables.conf&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;#This is the WAN section. It connects to the Internet. &lt;br /&gt;
#Normally this uses DHCP from your ISP, so leave it as DHCP if your ISP uses DHCP. &lt;br /&gt;
#The &quot;pre-up&quot; command loads up the firewall iptables. Leave it enabled. &lt;br /&gt;
auto eth1 &lt;br /&gt;
iface eth1 inet dhcp &lt;br /&gt;
pre-up iptables-restore &amp;lt; /etc/iptables.conf&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;#This is the Wireless section. &lt;br /&gt;
auto ath0 &lt;br /&gt;
iface ath0 inet manual &lt;br /&gt;
wireless-mode master &lt;br /&gt;
#You must enter your own ESSID below - Change the word &quot;nomadic&quot; to your own ESSID. &lt;br /&gt;
wireless-essid nomadic&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;#This is the Bridge section. You don&#39;t have to use the 10.1.1.0, which is a proper private IP (LAN) network range, you can change it to your needs. &lt;br /&gt;
auto br0 &lt;br /&gt;
iface br0 inet static &lt;br /&gt;
address 10.1.1.1 &lt;br /&gt;
network 10.1.1.0 &lt;br /&gt;
netmask 255.255.255.0 &lt;br /&gt;
broadcast 10.1.1.255 &lt;br /&gt;
bridge-ports eth2 ath0&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Save the file and exit. &lt;br /&gt;
With regards to the &quot;eth1&quot; section, if your ISP does not use DHCP, then they can provide you with the correct information. That section should then be configured to look like this:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;auto eth1&lt;/code&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;; font-size: 100%;&quot;&gt; &lt;br /&gt;
&lt;code&gt;iface eth1 inet static&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;address 72.138.51.135&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;netmask 255.255.254.0&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;gateway 72.138.50.1&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;pre-up iptables-restore &amp;lt; /etc/iptables.conf&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Note: DNS settings for the LAN (to be able to access web sites), is covered further down in the DHCP section.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;b&gt;Get WiFi Working:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;The network card uses a madwifi driver and you can check here to see how to detect and install it: &lt;a href=&quot;https://help.ubuntu.com/community/Router/Madwifi&quot; target=&quot;_blank&quot; title=&quot;https://help.ubuntu.com/community/Router/Madwifi&quot;&gt;https://help.ubuntu.com/community/Router/Madwifi&lt;/a&gt; &lt;br /&gt;
I should point out that this resource helps to tell if your WiFi card is compatible: &lt;a href=&quot;https://help.ubuntu.com/community/WifiDocs/WirelessCardsSupported&quot; target=&quot;_blank&quot; title=&quot;https://help.ubuntu.com/community/WifiDocs/WirelessCardsSupported&quot;&gt;https://help.ubuntu.com/community/WifiDocs/WirelessCardsSupported&lt;/a&gt; but I don&#39;t think it is an exclusive list. You can also try here: &lt;a href=&quot;http://ubuntulinuxhelp.com/ubuntu-hardware-compatability-list-hcl/&quot; title=&quot;http://ubuntulinuxhelp.com/ubuntu-hardware-compatability-list-hcl/&quot;&gt;http://ubuntulinuxhelp.com/ubuntu-hardware-compatability-list-hcl/&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;We need WAP in Master mode, from one of the help.Ubuntu.com links (above):&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;i&gt;&quot;If you are plan on using this wireless network adapter in &quot;master&quot; mode (i. e. for the purposes of setting up a wireless router)...&quot;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;So, let&#39;s do this to install the madwifi drivers:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;wget http://umn.dl.sourceforge.net/sourceforge/madwifi/madwifi-0.9.3.1.tar.gz&lt;/code&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;; font-size: 100%;&quot;&gt; &lt;br /&gt;
&lt;code&gt;tar -xvzf madwifi-0.9.3.1.tar.gz&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;cd madwifi-0.9.3.1&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;And this to install the tools + compile and install the needed module: &lt;br /&gt;
Just as the link said, we need to switch to master mode. We do this by creating the required file:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo nano /etc/modprobe.d/madwifi&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;And adding this code to the madwifi file:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;options ath_pci autocreate=ap&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Our wireless card is now in Master mode and we just have to load it by doing this:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo modprobe ath_pci&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Time to move on...&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;b&gt;The Firewall Needs to Forward Data:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;We are setting up this firewall to simply forward data, not to protect the network! (Network protection is a whole other topic). &lt;br /&gt;
As with the WiFi section above, Ubuntu also has a great resource for that here: &lt;a href=&quot;https://help.ubuntu.com/6.10/ubuntu/serverguide/C/firewall-configuration.html&quot; target=&quot;_blank&quot; title=&quot;https://help.ubuntu.com/6.10/ubuntu/serverguide/C/firewall-configuration.html&quot;&gt;https://help.ubuntu.com/6.10/ubuntu/serverguide/C/firewall-configuration.html&lt;/a&gt; &lt;br /&gt;
And again, I am able to use their help in this guide.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Remember that eth0 is the WAN (Gateway) connection to the Internet, so (using the Ubuntu information), we need to do this:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo iptables -t nat -A POSTROUTING -s 10.1.1.0/24 -o eth1 -j MASQUERADE&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo iptables -A FORWARD -s 10.1.1.0/24 -o eth1 -j ACCEPT&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo iptables -A FORWARD -d 10.1.1.0/24 -m state --state ESTABLISHED,RELATED -i eth1 -j ACCEPT&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Logging is a good idea. Logs should be found here:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;/var/log/messages &lt;br /&gt;
/var/log/syslog &lt;br /&gt;
/var/log/kern.log.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;And to enable the logging, use this code:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo iptables -A INPUT -m state --state NEW -p tcp --dport 80 -j LOG --log-prefix &quot;NEW_HTTP_CONN: &quot;&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Remember when we entered this line &quot;pre-up iptables-restore &amp;lt; /etc/iptables.conf&quot; into the network setup? Let&#39;s make sure we save the file accordingly (so that this works):&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo iptables-save &amp;gt; /etc/iptables.conf&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;We need the router to be able to forward data (packets) using IPv4 (which most everyone uses). You can edit this file:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo nano /etc/sysctl.conf&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;To change this line:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;#net.ipv4.conf.default.forwarding=1&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;So that it looks like this:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;net.ipv4.conf.forwarding=1&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;DHCP needs to run so PC&#39;s can connect easily.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;b&gt;Install DHCP:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo apt-get install dhcpd&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Edit the configuration file for DHCP:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo nano /etc/dhcpd.conf&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;To look like this (your LAN based IP network address might be different, just make sure it matches what you set up in the &quot;Network&quot; section above): &lt;br /&gt;
(I use openDNS: &lt;a href=&quot;http://www.opendns.com/&quot; target=&quot;_blank&quot; title=&quot;http://www.opendns.com/&quot;&gt;http://www.opendns.com/&lt;/a&gt;)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;#/etc/dhcpd.conf&lt;/code&gt;&lt;/span&gt;&lt;span style=&quot;font-family: &amp;quot;; font-size: 100%;&quot;&gt; &lt;br /&gt;
&lt;code&gt;default-lease-time 600;&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;max-lease-time 7200;&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;#Change the following to the DNS from your ISP or use openDNS&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;option domain-name-servers 208.67.222.222, 208.67.220.220;&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;#I don&#39;t need this but if I wanted an internal web server or something via FQDN...&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;option domain-name &quot;nomad.int&quot;;&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;#Subnet for DHCP clients&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;subnet 10.1.1.0 netmask 255.255.255.0 {&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;#Range of 10 machines - If you need more, increase the range&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;range 10.1.1.20 10.1.1.29;&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;option subnet-mask 255.255.255.0;&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;option broadcast-address 10.1.1.255;&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;option routers 10.1.1.1;&lt;/code&gt; &lt;br /&gt;
&lt;code&gt;}&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;DHCP failed to work properly, that&#39;s when I forgot that DHCP listens for address requests on the first physical NIC and I still need it to work with wireless (eth0 is dead). That means it needs to work with the virtual bridge connecting eth2 (LAN) to ath0 (Wireless) - So that wireless connections can communicate on the network, which in turn can communicate with the Internet. Edit the DCHP file:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;sudo nano /etc/default/dhcp&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;And add the bridge:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;code&gt;INTERFACES=&quot;br0&quot;&lt;/code&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;Everything should be done now.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: 100%;&quot;&gt;After restarting - a cold restart get&#39;s the whole thing working - (I had to reboot and restart a few times before writing this - I made a few mistakes), everything should work.&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-size: 100%;&quot;&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2010/07/how-to-setup-wireless-ubuntu-router.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-1081933770801951643</guid><pubDate>Mon, 07 Dec 2009 14:04:00 +0000</pubDate><atom:updated>2010-08-14T04:00:16.012+07:00</atom:updated><title>JUAL KONEKSI IIX MURAH KUALITAS NO.1</title><description>&lt;meta content=&quot;text/html; charset=utf-8&quot; equiv=&quot;Content-Type&quot;&gt;&lt;/meta&gt;&lt;meta content=&quot;Word.Document&quot; name=&quot;ProgId&quot;&gt;&lt;/meta&gt;&lt;meta content=&quot;Microsoft Word 10&quot; name=&quot;Generator&quot;&gt;&lt;/meta&gt;&lt;meta content=&quot;Microsoft Word 10&quot; name=&quot;Originator&quot;&gt;&lt;/meta&gt;&lt;link href=&quot;file:///F:%5CDOCUME%7E1%5Carif%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml&quot; rel=&quot;File-List&quot;&gt;&lt;/link&gt;&lt;style&gt;
 &lt;!--  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:&quot;&quot;; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:&quot;Times New Roman&quot;; 	mso-fareast-font-family:&quot;Times New Roman&quot;;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.25in 1.0in 1.25in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; 
&lt;/style&gt;  &lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;KONEKSI IIX only (UNTUK GAME CENTER) &lt;br /&gt;
WILAYAH : SURABAYA, SIDOARJO &lt;br /&gt;
■  Free trial selama 1 minggu &lt;br /&gt;
■  Koneksi langsung ke IIX (Indonesia Internet Exchange) &lt;br /&gt;
■  Layanan Service 24 Jam &lt;br /&gt;
■  Penggunaan Unlimited tanpa Kuota / Pembatasan pemakaian &lt;br /&gt;
■  Backbone Fiber Optik full backup (Xl, Indosat, Telkom) &lt;br /&gt;
■  SLA (Service Level Agreement) 99% &lt;br /&gt;
■  Bebas masa berlangganan, Tidak ada sistem kontrak, kualitas dijamin provider, &lt;br /&gt;
jika kualitas tidak sesuai dengan yang diharapkan bisa putus berlangganan setiap &lt;br /&gt;
saat. &lt;/div&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;■  Free maintenance,  Kunjungan Staff Support gratis (tanpa biaya tambahan) &lt;br /&gt;
■  Perangkat Wireless dan Routerboard dipinjamkan (tanpa biaya deposit) selama &lt;br /&gt;
berlangganan., termasuk penggantian perangkat jika terjadi kerusakan (free). &lt;br /&gt;
■  Ngenet dan Ngegame simultan bersamaan tanpa lag/ DC &lt;br /&gt;
&lt;br /&gt;
PAKET DEDICATED 1 : 1 &lt;br /&gt;
&lt;br /&gt;
Dedicated 1 : 1 256 kbps Rp. 1.500.000,- &lt;br /&gt;
Dedicated 1 : 1 512 kbps Rp. 2.500.000,- &lt;br /&gt;
Dedicated 1 : 1    1 Mbps Rp. 2.500.000,- &lt;br /&gt;
&lt;br /&gt;
*BONUS KONEKSI INTERNASIONAL LINK UP 1 Mbps &lt;br /&gt;
&lt;br /&gt;
Call / sms : 085746420783/03177107268 ARIF&lt;o:p&gt;&lt;/o:p&gt;</description><link>http://free-opensources.blogspot.com/2009/12/jual-koneksi-iix-murah-kualitas-no1.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-8871284507024598921</guid><pubDate>Thu, 19 Mar 2009 06:36:00 +0000</pubDate><atom:updated>2010-08-14T04:00:33.880+07:00</atom:updated><title></title><description>&lt;span style=&quot;font-size: 130%;&quot;&gt;&lt;span style=&quot;color: yellow;&quot;&gt;Install Billing CCL (CafeConLenche) di Ubuntu 7.10 atau 8.04 Hardy&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Pertama yang harus dilakukan adalah download CafeConLenche, ada 4 paket debian ke folder /home/”nama user”/ &lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;libccls_0.7.1-2_i386.deb&lt;/span&gt; (untuk diinstall di server)&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;cclfox_0.7.1-2_i386.deb&lt;/span&gt; (untuk diisntall di server)&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;libcclc_0.7.1-2_i386.deb&lt;/span&gt; (untuk diinstall di client)&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;cclcfox_0.7.1-2_i386.deb&lt;/span&gt; (untuk diinstall di client)&lt;br /&gt;
bisa didownload &lt;a href=&quot;http://www.esnips.com/web/CafeConLenche&quot;&gt;disini&lt;/a&gt;&lt;br /&gt;
sebelum menginstall billing harus menginstall library dibawah ini terlebih dahulu&lt;span id=&quot;more-3&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;sqlite3&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;glib2.0&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;libfox-1.6-0&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;openssl&lt;/span&gt;&lt;br /&gt;
memulai installasi&lt;br /&gt;
pertama buka terminal, lalu ketikan kode dibawah ini satu-persatu:&lt;br /&gt;
$ sudo apt-get install sqlite3 libsqlite3-dev&lt;br /&gt;
$ sudo apt-get install libfox-1.6-0&lt;br /&gt;
$ sudo apt-get install libglib2.0-dev&lt;br /&gt;
$ sudo apt-get install libssl-dev&lt;br /&gt;
$ sudo apt-get install libfox-1.6-0  (untuk ubuntu Hardy Heron)&lt;br /&gt;
setelah itu edit &lt;span style=&quot;font-weight: bold;&quot;&gt;/etc/ld.so.conf&lt;/span&gt;, masih diterminal ketikan kode berikut&lt;br /&gt;
$ sudo gedit /etc/ld.so.conf&lt;br /&gt;
lalu copykan baris dibawah ini:&lt;br /&gt;
/usr/lib&lt;br /&gt;
/usr/local/lib&lt;br /&gt;
install billing server di server pastikan paket (libccls_0.7.1-2_i386.deb) dan (cclfox_0.7.1-2_i386.deb) sudah ada di folder /home/”nama user”/&lt;br /&gt;
masih diterminal ketikan kode berikut&lt;br /&gt;
$ sudo dpkg -i libccls_0.7.1-2_i386.deb&lt;br /&gt;
$ sudo dpkg -i cclfox_0.7.1-2_i386.deb&lt;br /&gt;
(atau kalau malas menginstall di terminal bisa di double click 2 paket diatas tersebut)&lt;br /&gt;
lalu jalankan Server Billing CCL dengan perintah:&lt;br /&gt;
install billing client di client dan pastikan jug paket (libcclc_0.7.1-2_i386.deb) dan (cclcfox_0.7.1-2_i386.deb) sudah ada di folder/home/”nama user”/&lt;br /&gt;
diterminal ketikan kode berikut:&lt;br /&gt;
$ sudo dpkg -i libcclc_0.7.1-2_i386.deb&lt;br /&gt;
$ sudo dpkg -i cclcfox_0.7.1-2_i386.deb&lt;br /&gt;
(atau kalau malas menginstall di terminal bisa di double click 2 paket diatas tersebut)&lt;br /&gt;
agar billing client langsung Lock Screen saat komputer dihidupkan.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Download certificate &lt;a href=&quot;http://ccl.sourceforge.net/tmp/CA.pem&quot;&gt;CA.pem&lt;/a&gt; dan &lt;a href=&quot;http://ccl.sourceforge.net/tmp/cert.pem&quot;&gt;cert.pem&lt;/a&gt;&lt;br /&gt;
buat folder di /home/”nama user”/.cclfox diserver dan di client copykan CA.pem dan cert.pem ke /home/”nama user”/.cclfox diserver dan di client.&lt;br /&gt;
untuk menjalankan billing di komputer server di terminal ketikan kode “cclfox” tanpa tanda kutip, dan untuk menjalankan billing komputer client ketikan kode “cclcfox -host (ip address server) -name ws1” tanpa tanda kutip&lt;br /&gt;
Agar billing client dan server bisa otomatis jalan saat komputer dihidupkan&lt;br /&gt;
Klik &lt;span style=&quot;font-weight: bold;&quot;&gt;System&lt;/span&gt; &amp;gt; &lt;span style=&quot;font-weight: bold;&quot;&gt;Preferences&lt;/span&gt; &amp;gt; &lt;span style=&quot;font-weight: bold;&quot;&gt;Sessions&lt;/span&gt; &amp;gt; &lt;span style=&quot;font-weight: bold;&quot;&gt;Startup programs&lt;/span&gt;&lt;br /&gt;
Klik &lt;span style=&quot;font-weight: bold;&quot;&gt;Add&lt;/span&gt; untuk menambah Startup Programs&lt;br /&gt;
Isikan:&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;di Server billing&lt;/span&gt;&lt;br /&gt;
Name         : Billing CCL Server&lt;br /&gt;
Command  : cclfox&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;di Client&lt;/span&gt;&lt;br /&gt;
Name          : Billing CCL Client&lt;br /&gt;
Command   : cclcfox -host “ip address billing server” -name ws1&lt;br /&gt;
Tekan tombol Close&lt;br /&gt;
buat nama-nama client di server billing dengan cara klik tombol klien baru, masukan nama client misalnya &lt;span style=&quot;font-weight: bold;&quot;&gt;ws1&lt;/span&gt; click ok, lakukan langkah ini sesuai jumlah komputer yang ada di warnet anda contoh kalau diwarnet anda ada 5 client bisa memberi 5 client tersebut dengan nama “ws1, ws2, ws3, ws4, ws5)&lt;br /&gt;
Agar jika ada user lain yang mau memakai komputer bisa langsung memakainya dengan mengklik “&lt;span style=&quot;font-weight: bold;&quot;&gt;Klik disini untuk mulai&lt;/span&gt;” di Server Billing CCL, klik kanan nama client, lalu beri tanda centang pada “&lt;span style=&quot;font-weight: bold;&quot;&gt;perbolehkan klien memulai session baru&lt;/span&gt;”.&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;Mengganti background lock screen di CCL client&lt;/span&gt;&lt;br /&gt;
Buat gambar yang Anda inginkan dengan nama file &lt;span style=&quot;font-weight: bold;&quot;&gt;lockpix.gif &lt;/span&gt;&lt;br /&gt;
Masukan wallpaper tadi ke /home/”nama user”/.cclcfo&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2009/03/install-billing-ccl-cafeconlenche-di.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-2966628199711007776</guid><pubDate>Tue, 17 Mar 2009 15:18:00 +0000</pubDate><atom:updated>2010-08-14T04:00:49.201+07:00</atom:updated><title></title><description>&lt;span style=&quot;font-size: 130%;&quot;&gt;&lt;span style=&quot;color: #ff6666; font-family: times new roman; font-weight: bold;&quot;&gt;Driver printer Epson C90/C58/T11&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
1. Open System → Administration → Printing → New Printer, on Select Connection Device chose EPSON C90 USB#1 → Forward&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRjz65sxR7YsCFBdCzhmSNlkfcsQhK0FyIT7_SxhstCxNzGdyex6J9cKVONbTkAbYVJ5kPdhemomGMrcXpBIa0HP8IJ3oqhEKgYSWpE2Sxz8MFUGqmclWO_zWNw8nt4u2otUOBruS47-k/s1600-h/C90_4.png&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5314177083392654402&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRjz65sxR7YsCFBdCzhmSNlkfcsQhK0FyIT7_SxhstCxNzGdyex6J9cKVONbTkAbYVJ5kPdhemomGMrcXpBIa0HP8IJ3oqhEKgYSWpE2Sxz8MFUGqmclWO_zWNw8nt4u2otUOBruS47-k/s320/C90_4.png&quot; style=&quot;cursor: pointer; display: block; height: 235px; margin: 0px auto 10px; text-align: center; width: 320px;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
2. For printer driver chose Select Printer from database than chose Epson → Forward&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnqMqF8IxaRY2_S_ntV2n7XHUPCY6lOBHCbRjRUOx8BEneGlMIOM2NGbvYaKOipAXKo6BOz-Wdfcasj05f6zXPPp1nu3lN8QuSfj7ok0coev8VZG4JodD9Oni6_Gx89-6W3xvUMhhC8dg/s1600-h/C90_3.png&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5314177077016358114&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnqMqF8IxaRY2_S_ntV2n7XHUPCY6lOBHCbRjRUOx8BEneGlMIOM2NGbvYaKOipAXKo6BOz-Wdfcasj05f6zXPPp1nu3lN8QuSfj7ok0coev8VZG4JodD9Oni6_Gx89-6W3xvUMhhC8dg/s320/C90_3.png&quot; style=&quot;cursor: pointer; display: block; height: 235px; margin: 0px auto 10px; text-align: center; width: 320px;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
3. For Models chose Stylus C64 and Drivers chose Epson Stylus C64+Gutenprint v5.0.1 Simplified (recommended) → Forward&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNVkWvQdohWeGSFkTpMBPtt0JNrfjm-jzUM0MzDLHUIWArDlgYRSeRyxbFzaHMDw-9rOS872AlyGrApeuojR9ObQMkSi5n1oaLK_u6CG5ELnvnUGZLZAHBn1dRLZ-7WEje5-3NhEomkVo/s1600-h/C90_2.png&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5314177077020744498&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNVkWvQdohWeGSFkTpMBPtt0JNrfjm-jzUM0MzDLHUIWArDlgYRSeRyxbFzaHMDw-9rOS872AlyGrApeuojR9ObQMkSi5n1oaLK_u6CG5ELnvnUGZLZAHBn1dRLZ-7WEje5-3NhEomkVo/s320/C90_2.png&quot; style=&quot;cursor: pointer; display: block; height: 235px; margin: 0px auto 10px; text-align: center; width: 320px;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
4. For Printer Name gave the name Stylus_C90 or Epson_C90 → Apply&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3o5haKTFfmN75-wtwghUw-QOP2mKofIy04G8Ew7p3APaJBmMiv2iol7CUo2y1BldNUDJeDNfw6XUMg8cxS-6iDKj8kezTVtv79pi3NGqlfqfyXnn0LZiWw-Co_U0ts7Xh1utyIaHgvDU/s1600-h/C90_1.png&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5314177072655179826&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3o5haKTFfmN75-wtwghUw-QOP2mKofIy04G8Ew7p3APaJBmMiv2iol7CUo2y1BldNUDJeDNfw6XUMg8cxS-6iDKj8kezTVtv79pi3NGqlfqfyXnn0LZiWw-Co_U0ts7Xh1utyIaHgvDU/s320/C90_1.png&quot; style=&quot;cursor: pointer; display: block; height: 235px; margin: 0px auto 10px; text-align: center; width: 320px;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2009/03/driver-printer-epson-c90c58t11-1.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRjz65sxR7YsCFBdCzhmSNlkfcsQhK0FyIT7_SxhstCxNzGdyex6J9cKVONbTkAbYVJ5kPdhemomGMrcXpBIa0HP8IJ3oqhEKgYSWpE2Sxz8MFUGqmclWO_zWNw8nt4u2otUOBruS47-k/s72-c/C90_4.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-4553165884798929130</guid><pubDate>Sun, 21 Dec 2008 09:55:00 +0000</pubDate><atom:updated>2008-12-21T17:13:34.277+07:00</atom:updated><title>Game-game keren di linux</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-LB1OlqWoT4C9TMmULKotPwDluDU_FvkA_sFEH8193hgK7DLF0bn3rzWppOf1CN-CBa5LrDcvnT2MBPPMTAlrbgjHOtxZyRSKDJJSwO3NeTIeGpcRn7X7bf9zALvi4QBeETIZ3RYUxmc/s1600-h/savage2ep5.jpg&quot;&gt;&lt;img style=&quot;float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 200px; height: 150px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-LB1OlqWoT4C9TMmULKotPwDluDU_FvkA_sFEH8193hgK7DLF0bn3rzWppOf1CN-CBa5LrDcvnT2MBPPMTAlrbgjHOtxZyRSKDJJSwO3NeTIeGpcRn7X7bf9zALvi4QBeETIZ3RYUxmc/s200/savage2ep5.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5282180979971054850&quot; /&gt;&lt;/a&gt;Siapa bilang dilinux tidak ada game yang keren?, berikut adalah beberapa game yang pernah saya mainin di linux dan tak kalah serunya dengan game wincrot xp.&lt;br /&gt;&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt;nih saya kasih link downloadnya, silahkan di download dan dicoba sendiri&lt;br /&gt;- &lt;a href=&quot;http://savage2.s2games.com/download.php&quot;&gt;savage (online game)&lt;/a&gt;&lt;br /&gt;- &lt;a href=&quot;http://torcs.sourceforge.net/&quot;&gt;Torch (racing simulation)&lt;/a&gt;&lt;br /&gt;- &lt;a href=&quot;http://fretsonfire.sourceforge.net/&quot;&gt;Fretsonfire (mirip Guitar hero)&lt;/a&gt;&lt;br /&gt;- &lt;a href=&quot;http://www.americasarmy.com/&quot;&gt;american army&lt;/a&gt;&lt;br /&gt;- &lt;a href=&quot;http://www.alientrap.org/nexuiz/&quot;&gt;Nexuiz&lt;/a&gt;&lt;br /&gt;- &lt;a href=&quot;http://www.enemyterritory.com/&quot;&gt;Enemy territory&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2008/12/game-game-keren-di-linux.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-LB1OlqWoT4C9TMmULKotPwDluDU_FvkA_sFEH8193hgK7DLF0bn3rzWppOf1CN-CBa5LrDcvnT2MBPPMTAlrbgjHOtxZyRSKDJJSwO3NeTIeGpcRn7X7bf9zALvi4QBeETIZ3RYUxmc/s72-c/savage2ep5.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-8347086000064288953</guid><pubDate>Sun, 21 Dec 2008 09:47:00 +0000</pubDate><atom:updated>2008-12-21T16:53:19.578+07:00</atom:updated><title>GBilling: Warnet Billing System</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLPyegaAy5_gDiZsMyjtQ3by8XpwxTRzAKhQkesBbhfSREQMj4F-8GNyz2qM_I8pDYkKJlckX5D_DkBkK7nJeYfIaQcISzsn-mpfFehs4FSlrkgy5q-zhH8gwfxSLXLxXEJBut5xlFrHI/s1600-h/server_client_linux.png&quot;&gt;&lt;img style=&quot;float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 200px; height: 150px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLPyegaAy5_gDiZsMyjtQ3by8XpwxTRzAKhQkesBbhfSREQMj4F-8GNyz2qM_I8pDYkKJlckX5D_DkBkK7nJeYfIaQcISzsn-mpfFehs4FSlrkgy5q-zhH8gwfxSLXLxXEJBut5xlFrHI/s200/server_client_linux.png&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5282179136801495490&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;gBilling adalah aplikasi sistem pembayaran warnet (warnet billing system) yang terdiri&lt;br /&gt;&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt;dari server dan client, gBilling diharapkan bisa berjalan di multi-platform (Linux, BSD, MacOS, atau Microsoft Windows). gBilling di tulis dalam bahasa C, dengan GUI toolkit GTK2 (The GIMP Toolkit), dan menggunakan SQLite sebagai sistem database dan penyimpanan data.&lt;br /&gt;&lt;br /&gt;Download &lt;a href=&quot;http://gbilling.sourceforge.net/&quot;&gt;Here&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2008/12/gbilling-warnet-billing-system.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLPyegaAy5_gDiZsMyjtQ3by8XpwxTRzAKhQkesBbhfSREQMj4F-8GNyz2qM_I8pDYkKJlckX5D_DkBkK7nJeYfIaQcISzsn-mpfFehs4FSlrkgy5q-zhH8gwfxSLXLxXEJBut5xlFrHI/s72-c/server_client_linux.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-1261526582742600249</guid><pubDate>Sun, 21 Dec 2008 09:33:00 +0000</pubDate><atom:updated>2008-12-21T16:45:49.508+07:00</atom:updated><title>electronic schematic capture and simulation di Linux</title><description>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfk7GYi7c-03IzPM_kp6UhFYUD8xhnw8Asm-NOtteqPaqMl-vmfnv-Nzxu_acp5SD8dPkdMmXzDdQGa7FWBoeKAB7XJcg1sB0KLIaWVnfl25JIgxs7AIdY0hnFXFvnD7oGHe0JxJ38j94/s1600-h/screenshot-gschem2.png&quot;&gt;&lt;img style=&quot;float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 200px; height: 168px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfk7GYi7c-03IzPM_kp6UhFYUD8xhnw8Asm-NOtteqPaqMl-vmfnv-Nzxu_acp5SD8dPkdMmXzDdQGa7FWBoeKAB7XJcg1sB0KLIaWVnfl25JIgxs7AIdY0hnFXFvnD7oGHe0JxJ38j94/s200/screenshot-gschem2.png&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5282175212158248786&quot; /&gt;&lt;/a&gt;&lt;br /&gt;The gEDA project has produced and continues working on a full GPL&#39;d suite and toolkit of Electronic Design Automation tools. These tools are used for electrical circuit design, schematic capture, simulation, prototyping, and production.&lt;br /&gt;&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt; Currently, the gEDA project offers a mature suite of free software applications for electronics design, including schematic capture, attribute management, bill of materials (BOM) generation, netlisting into over 20 netlist formats, analog and digital simulation, and printed circuit board (PCB) layout.&lt;br /&gt;&lt;br /&gt;The gEDA project was started because of the lack of free EDA tools for POSIX systems with the primary purpose of advancing the state of free hardware or open source hardware. The suite is mainly being developed on the GNU/Linux platform with some development effort going into making sure the tools run on other platforms as well. &lt;br /&gt;&lt;br /&gt;download here&lt;br /&gt;&lt;a href=&quot;http://packages.debian.org/search?keywords=geda&quot;&gt;debian (.deb)&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://fedoraproject.org/wiki/Extras?highlight=%28extras%29&quot;&gt;fedora core 5 &amp; 6 (.rpm)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;and other program electronic schematic capture and simulation&lt;br /&gt;- &lt;a href=&quot;http://pcb.sourceforge.net/&quot;&gt;PCB&lt;/a&gt;&lt;br /&gt;- &lt;a href=&quot;http://www.gnucap.org/&quot;&gt;Gnucap&lt;/a&gt;&lt;br /&gt;- &lt;a href=&quot;http://www.gnucap.org/&quot;&gt;Ngspice&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2008/12/geda-project-has-produced-and-continues.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfk7GYi7c-03IzPM_kp6UhFYUD8xhnw8Asm-NOtteqPaqMl-vmfnv-Nzxu_acp5SD8dPkdMmXzDdQGa7FWBoeKAB7XJcg1sB0KLIaWVnfl25JIgxs7AIdY0hnFXFvnD7oGHe0JxJ38j94/s72-c/screenshot-gschem2.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-8506288491638609861</guid><pubDate>Fri, 19 Dec 2008 10:26:00 +0000</pubDate><atom:updated>2008-12-19T17:45:07.199+07:00</atom:updated><title>7-Zip</title><description>7-Zip is a file archiver with a high compression ratio&lt;br /&gt;The main features of 7-Zip&lt;br /&gt;&lt;br /&gt;    * High compression ratio in new 7z format with LZMA compression&lt;br /&gt;    * Supported formats:&lt;br /&gt;          o Packing / unpacking: 7z, ZIP, GZIP, BZIP2 and TAR&lt;br /&gt;          o Unpacking only: ARJ, CAB, CHM, CPIO, DEB, DMG, HFS, ISO, LZH, LZMA, MSI, NSIS, RAR, RPM, UDF, WIM, XAR and Z.&lt;br /&gt;    * For ZIP and GZIP formats, 7-Zip provides a compression ratio that is 2-10 % better than the ratio provided by PKZip and WinZip&lt;br /&gt;&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt;    * Strong AES-256 encryption in 7z and ZIP formats&lt;br /&gt;    * Self-extracting capability for 7z format&lt;br /&gt;    * Integration with Windows Shell&lt;br /&gt;    * Powerful File Manager&lt;br /&gt;    * Powerful command line version&lt;br /&gt;    * Plugin for FAR Manager&lt;br /&gt;    * Localizations for 74 languages&lt;br /&gt;&lt;br /&gt;7-Zip works in Windows 98/ME/NT/2000/XP/Vista. There is a port of the command line version to Linux/Unix.&lt;br /&gt;&lt;br /&gt;you can download 7-zip here&lt;br /&gt;&lt;a href=&quot;http://downloads.sourceforge.net/sevenzip/7z462.exe&quot;&gt;windows 32-bit version&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://downloads.sourceforge.net/sevenzip/7z462-x64.msi&quot;&gt;windows x64 version&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://downloads.sourceforge.net/sevenzip/7z462.tar.bz2&quot;&gt;linux source&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://packages.debian.org/unstable/utils/p7zip&quot;&gt;debian i386&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://timeoff.wsisiz.edu.pl/rpms.html&quot;&gt;fedora i386&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://homepage.mac.com/krmathis/&quot;&gt;mac OSX&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://sourceforge.net/project/showfiles.php?group_id=111810&quot;&gt;linux x86 (64-bit)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2008/12/7-zip.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-2803338177867647130</guid><pubDate>Thu, 18 Dec 2008 06:37:00 +0000</pubDate><atom:updated>2008-12-21T17:16:30.718+07:00</atom:updated><title>install Tv di ubuntu 7.04 Feisty Fawn pakai usb tv gadmei utv330</title><description>Lihat tv di ubuntu 7.04 Feisty Fawn pakai usb tv gadmei utv330&lt;br /&gt;saya menggunakan driver em28xx devices.&lt;br /&gt;sebenarnya ada 2 jenis tv turner yaitu:&lt;br /&gt;&lt;br /&gt;1.Digital devices:&lt;br /&gt;&lt;br /&gt;* Pinnacle/800e|Pinnacle HD Pro Stick (North American version, NTSC/ATSC)&lt;br /&gt;* Kworld 350 U DVB-T&lt;br /&gt;* Kworld 310 U&lt;br /&gt;* MSI DigiVox A/D (USB2.0)&lt;br /&gt;* Hauppauge HVR 950 (NTSC/ATSC)&lt;br /&gt;* Hauppauge WinTV HVR 900 M/R: 65008/A1C0&lt;br /&gt;* Terratec Cinergy Hybrid T XS – ZL10353&lt;br /&gt;* Terratec Cinergy Hybrid T XS – MT352&lt;br /&gt;* Terratec Cinergy Hybrid T XS France&lt;br /&gt;* Terratec Prodigy Hybrid T XS&lt;br /&gt;* Terratec Cinergy T XS – xc3028&lt;br /&gt;* Terratec Cinergy T XS – mt2060&lt;br /&gt;* Pinnacle PCTV USB Stick&lt;br /&gt;* DNT DA2 Hybrid&lt;br /&gt;* Pinnacle PCTV Hybrid Pro Stick&lt;br /&gt;* Empire USB 2.0 Pen Dual TV&lt;br /&gt;* BestBuy Easy TV USB hybrid&lt;br /&gt;&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt;2.Analog devices:&lt;br /&gt;&lt;br /&gt;* Usbgear VD204v9&lt;br /&gt;* Leadtek Winfast USB II deluxe&lt;br /&gt;* SIIG AVTuner-PVR&lt;br /&gt;* Prolink PlayTV USB 2.0&lt;br /&gt;* Terratec Cinergy 250 USB&lt;br /&gt;* Pinnacle PCTV USB 2&lt;br /&gt;* Hauppauge WinTV USB 2&lt;br /&gt;* MSI VOX USB 2.0&lt;br /&gt;* Pinnacle Dazzle DVC 90&lt;br /&gt;* Kworld PVR TV 2800 RF&lt;br /&gt;* Hercules Smart TV USB 2.0&lt;br /&gt;* MSI Movie Vox&lt;br /&gt;* D-Link DUB-T210 TV Tuner&lt;br /&gt;* Gadmei UTV 330&lt;br /&gt;* Gadmei UTV 310&lt;br /&gt;* Supertronindia Supercomp TV USB 2.0&lt;br /&gt;&lt;br /&gt;jadi gadmeiku adalah analog device&lt;br /&gt;&lt;br /&gt;A.Program yang dibutuhkan dalam ubuntu:&lt;br /&gt;# mercurial&lt;br /&gt;# gcc&lt;br /&gt;# build-essential&lt;br /&gt;# linux-source&lt;br /&gt;# linux-headers-`uname -r` (kernel linux yang anda gunakan saat ini minimal 2.6.15)&lt;br /&gt;# axwtv (aplikasi tv turner)&lt;br /&gt;&lt;br /&gt;jadi dapat tulis code di terminalnya :&lt;br /&gt;&lt;br /&gt;sudo apt-get install mercurial gcc build-essential linux-source linux-headers-`uname -r`&lt;br /&gt;&lt;br /&gt;B.download driver firmwire:&lt;br /&gt;kita memerlukan firmwire yang kita butuhkan sesuai jenisnya:&lt;br /&gt;firmware version 1:&lt;br /&gt;&lt;br /&gt;* Terratec Cinergy Hybrid T XS (french edition)&lt;br /&gt;* Terratec Cinergy T XS&lt;br /&gt;* DNT DA2 Hybrid&lt;br /&gt;* Kworld 350U&lt;br /&gt;&lt;br /&gt;firmware version 2:&lt;br /&gt;&lt;br /&gt;* MSI DigiVox A/D&lt;br /&gt;* Kworld 310U&lt;br /&gt;* Terratec Cinergy Hybrid T XS (USB ID=0ccd:005e)&lt;br /&gt;* Gadmei UTV 330&lt;br /&gt;&lt;br /&gt;firmware version 3:&lt;br /&gt;&lt;br /&gt;* HVR 900 B2C0&lt;br /&gt;* HVR 900 A1C0&lt;br /&gt;* Terratec Cinergy Hybrid T XS&lt;br /&gt;* Pinnacle PCTV Hybrid Pro&lt;br /&gt;* Pinnacle PCTV Hybrid Pro Stick (320e) (USB ID=eb1a:2881)&lt;br /&gt;&lt;br /&gt;firmware version 4:&lt;br /&gt;&lt;br /&gt;* Pinnacle HD Pro Stick (North American version, NTSC/ATSC)&lt;br /&gt;&lt;br /&gt;Firmware dapat diunduh di http://konstantin.filtschew.de/v4l-firmware/&lt;br /&gt;extraks firmware lalu masukkan /lib/firmware&lt;br /&gt;&lt;br /&gt;sudo tar zxvf filename.tar.gz&lt;br /&gt;&lt;br /&gt;sebelum di masukkan di /lib/firmware jangan lupa harus privillage harus root di ubuntu&lt;br /&gt;&lt;br /&gt;sudo chmod 777 /lib/firmware&lt;br /&gt;&lt;br /&gt;setelah di copy pastekan jangan lupa untuk menutupnya&lt;br /&gt;&lt;br /&gt;sudo chmod 755 /lib/firmware&lt;br /&gt;&lt;br /&gt;C.download dan compiling driver:&lt;br /&gt;&lt;br /&gt;Buat folder bernama driver sebaiknya di home&lt;br /&gt;&lt;br /&gt;mkdir driver&lt;br /&gt;&lt;br /&gt;dengan menggunakan terminal pergi ke folder dan menuliskan&lt;br /&gt;&lt;br /&gt;hg clone http://mcentral.de/hg/~mrec/v4l-dvb-kernel&lt;br /&gt;&lt;br /&gt;compile&lt;br /&gt;cd v4l-dvb-kernel&lt;br /&gt;make&lt;br /&gt;sudo make install&lt;br /&gt;Apabila ada pesan eroor untuk pergi ke folder yang di tentukan maka jalankan make install sekali lagi di folder itu.&lt;br /&gt;&lt;br /&gt;D.reboot terlebih dahulu&lt;br /&gt;&lt;br /&gt;E.Jalankan perintahnya dengan :&lt;br /&gt;&lt;br /&gt;sudo modprobe em28xx&lt;br /&gt;&lt;br /&gt;F.lalu install aplikasi xawtv atau tvtime lalu jalankan &lt;br /&gt;&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2008/12/install-tv-di-ubuntu-704-feisty-fawn.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-8885023708804535646</guid><pubDate>Mon, 08 Dec 2008 18:03:00 +0000</pubDate><atom:updated>2008-12-09T14:57:31.886+07:00</atom:updated><title>GNU</title><description>GNU is a computer operating system composed entirely of free software. Its name is a recursive acronym for GNU&#39;s Not Unix, it was chosen because its design is Unix-like, but differs from Unix by being free software and containing no Unix code. Development of GNU was initiated by Richard Stallman and was the original focus of the Free Software Foundation (FSF).&lt;br /&gt;&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt;GNU is developed by the GNU Project, and programs released under the auspices of the project are called GNU packages or GNU programs. The system&#39;s basic components include the GNU Compiler Collection (GCC), the GNU Binary Utilities (binutils), the bash shell, the GNU C library (glibc), and GNU Core Utilities (coreutils).&lt;br /&gt;&lt;br /&gt;GNU is in active development. Although nearly all components have been completed long ago and have been in production use for a decade or more, its official kernel, GNU Hurd, is incomplete and not all GNU components work with it. Thus, the third-party Linux kernel is most commonly used instead. While this kernel has not been officially adopted by the GNU project, some third-party software is included, such as the X.Org release of the X Window System and the TeX typesetting system. Many GNU programs have also been ported to numerous other operating systems such as Microsoft Windows, BSD variants, Solaris and Mac OS.&lt;br /&gt;&lt;br /&gt;The GNU General Public License (GPL), the GNU Lesser General Public License (LGPL), and the GNU Free Documentation License (GFDL) were written for GNU, but are also used by many unrelated projects. :)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2008/12/gnu-is-computer-operating-system.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1862961023949718938.post-9080306207428667284</guid><pubDate>Mon, 08 Dec 2008 15:43:00 +0000</pubDate><atom:updated>2008-12-09T14:27:15.588+07:00</atom:updated><title>OPEN SOURCE</title><description>&lt;span style=&quot;font-weight:bold;&quot;&gt;Open source&lt;/span&gt; is a development methodology, which offers practical accessibility to a product&#39;s source (goods and knowledge). Some consider open source as one of various possible design approaches,&lt;br /&gt;&lt;div class=&quot;fullpost&quot;&gt;&lt;br /&gt;while others consider it a critical strategic element of their operations. Before open source became widely adopted, developers and producers used a variety of phrases to describe the concept, the term open source gained popularity with the rise of the Internet, which provided access to diverse production models, communication paths, and interactive communities.&lt;br /&gt;&lt;/div&gt;</description><link>http://free-opensources.blogspot.com/2008/12/open-source-is-development-methodology.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item></channel></rss>