<?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>tantos &#187; Internet</title>
	<atom:link href="http://tantos.web.id/blogs/tag/internet/feed" rel="self" type="application/rss+xml" />
	<link>http://tantos.web.id</link>
	<description>nek wedi ojo wani-wani, nek wani ojo wedi-wedi</description>
	<lastBuildDate>Mon, 23 Aug 2010 23:00:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How To Internet Connection Using Haier CE100 and Ubuntu 9.04</title>
		<link>http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04</link>
		<comments>http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04#comments</comments>
		<pubDate>Sat, 17 Oct 2009 08:54:08 +0000</pubDate>
		<dc:creator>tantos</dc:creator>
				<category><![CDATA[In Moving to Linux]]></category>
		<category><![CDATA[Learning by Playing]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://tantos.web.id/?p=236</guid>
		<description><![CDATA[[ad#ad-post] Nowadays I&#8217;m using Haier CE100 modem with SMART for my internet connection. As a default, Ubuntu 9.04 just know Haier CE100 as a storage device. But using small trick, everything you can do with Ubuntu . This is my system : Ubuntu Jaunty Jackalope (9.04) Kernel 2.6.28-15 Intel Core2duo T6400 So, let&#8217;s begin&#8230; Plug [...]
Related posts:<ol>
<li><a href='http://tantos.web.id/blogs/how-to-internet-connection-using-cdma-evdo-modem-and-karmic-koala-ubuntu-9-10' rel='bookmark' title='How To : Internet Connection using CDMA EVDO Modem and Karmic Koala (Ubuntu 9.10)'>How To : Internet Connection using CDMA EVDO Modem and Karmic Koala (Ubuntu 9.10)</a></li>
<li><a href='http://tantos.web.id/blogs/installing-apache-2-mysql-5-1-and-php-5-2-from-source-in-ubuntu-9-04' rel='bookmark' title='Installing Apache 2, MySQL 5.1, and PHP 5.2 from Source in Ubuntu 9.04 (Jaunty)'>Installing Apache 2, MySQL 5.1, and PHP 5.2 from Source in Ubuntu 9.04 (Jaunty)</a></li>
<li><a href='http://tantos.web.id/blogs/useful-software-for-linux-desktop-1' rel='bookmark' title='Useful Software For Linux Desktop (1)'>Useful Software For Linux Desktop (1)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>[ad#ad-post]<br />
Nowadays I&#8217;m using Haier CE100 modem with <a href="www.smart-telecom.co.id" target="_blank">SMART</a> for my internet connection. As a default, Ubuntu 9.04 just know Haier CE100 as a storage device. But using small trick, everything you can do with Ubuntu <img src='http://tantos.web.id/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<blockquote><p><strong>This is my system :</strong><br />
Ubuntu Jaunty Jackalope (9.04)<br />
Kernel 2.6.28-15<br />
Intel Core2duo T6400</p></blockquote>
<p><strong>So, let&#8217;s begin&#8230;</strong></p>
<p>Plug in your modem to your computer. Check out that Ubuntu can read your modem by typing : lsusb in your terminal and you will see a line like this :</p>
<pre>Bus 006 Device 003: ID 201e:2009</pre>
<p>Run this command in your terminal :</p>
<pre class="prettyprint">sudo su
apt-get install linux-source linux-headers-generic build-essential
cd /usr/src
tar xjf linux-source-2.6.28.tar.bz2
cd linux-source-2.6.28
gedit /usr/src/linux-source-2.6.28/drivers/usb/serial/option.c</pre>
<p>In line 297, you will see a line like this :</p>
<pre class="prettyprint">#define BENQ_PRODUCT_H10			0x4068</pre>
<p>and in line 515, you will see a line like this :</p>
<pre class="prettyprint">{ USB_DEVICE(0x1da5, 0x4515) }, /* BenQ H20 */</pre>
<p>Edit this file by adding this 2 lines in line 298 (below a line : #define BENQ_PRODUCT_H10			0&#215;4068) :</p>
<pre class="prettyprint">+#define HAIER_VENDOR_ID			0x201e
+#define HAIER_PRODUCT_ID			0x2009</pre>
<p>Edit this file by adding this line in line 516 (below a line containing : { USB_DEVICE(0x1da5, 0&#215;4515) }, /* BenQ H20 */):</p>
<pre class="prettyprint">+ { USB_DEVICE(HAIER_VENDOR_ID, HAIER_PRODUCT_ID) },</pre>
<p>If you get confuse, you can using my option.c file <a href="http://nopaste.com/p/aA4GahOF0" target="_blank">here</a>.</p>
<p>Back to your terminal, and continue your command by running the following command :</p>
<pre class="prettyprint">cp /boot/config-$(uname -r) /usr/src/linux-source-2.6.28/.config
make menuconfig
make -C /lib/modules/$(uname -r)/build M=/usr/src/linux-source-2.6.28/drivers/usb/serial
cp /usr/src/linux-source-2.6.28/drivers/usb/serial/option.ko /lib/modules/$(uname -r)/kernel/drivers/usb/serial/
depmod -a
gedit /usr/share/hal/fdi/information/10freedesktop/10-modem.fdi</pre>
<p>Add <a href="http://nopaste.com/p/abujdOIUjb" target="_blank">this file content</a> in line 10 or you can using my 10-modem.fdi <a href="http://nopaste.com/p/a2tk3V64i" target="_blank">here</a>.</p>
<p><strong>Update Oct 18, 2009 :</strong><br />
Create a new file /etc/udev/rules.d/99-haier-ce100.rules, and fill it with :</p>
<pre class="prettyprint">
SYSFS{idVendor}=="201e", SYSFS{idProduct}=="2009", RUN+="/usr/bin/eject %k"
</pre>
<p>That&#8217;s all. Restart your computer, plug in your modem, you should automatically connected!</p>
<p>Resource :<br />
<a href="http://skyisgrey.org/blog/mengoptimalkan-koneksi-modem-smart-zte-2726.html" target="_blank">SkyIsGrey.org</a><br />
<a href="http://blankblondtank.wordpress.com/2009/09/04/mengoptimalkan-koneksi-modem-haier-ce-100-cdma-di-linux/" target="_blank">blankblondtank.wordpress.com</a></p>
<p>[ad#ad-post]</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=24&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=6&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=4&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=How+To+Internet+Connection+Using+Haier+CE100+and+Ubuntu+9.04&amp;link=http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04&amp;notes=%5Bad%23ad-post%5D%0D%0ANowadays%20I%27m%20using%20Haier%20CE100%20modem%20with%20SMART%20for%20my%20internet%20connection.%20As%20a%20default%2C%20Ubuntu%209.04%20just%20know%20Haier%20CE100%20as%20a%20storage%20device.%20But%20using%20small%20trick%2C%20everything%20you%20can%20do%20with%20Ubuntu%20%3A%29.%0D%0AThis%20is%20my%20system%20%3A%0D%0AUbuntu%20Jaunty%20Jackalope%20%289.04%29%0D%0AKernel%202.6.28-15%0D%0AIntel%20Co&amp;short_link=&amp;shortener=none&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

<p>Related posts:<ol>
<li><a href='http://tantos.web.id/blogs/how-to-internet-connection-using-cdma-evdo-modem-and-karmic-koala-ubuntu-9-10' rel='bookmark' title='How To : Internet Connection using CDMA EVDO Modem and Karmic Koala (Ubuntu 9.10)'>How To : Internet Connection using CDMA EVDO Modem and Karmic Koala (Ubuntu 9.10)</a></li>
<li><a href='http://tantos.web.id/blogs/installing-apache-2-mysql-5-1-and-php-5-2-from-source-in-ubuntu-9-04' rel='bookmark' title='Installing Apache 2, MySQL 5.1, and PHP 5.2 from Source in Ubuntu 9.04 (Jaunty)'>Installing Apache 2, MySQL 5.1, and PHP 5.2 from Source in Ubuntu 9.04 (Jaunty)</a></li>
<li><a href='http://tantos.web.id/blogs/useful-software-for-linux-desktop-1' rel='bookmark' title='Useful Software For Linux Desktop (1)'>Useful Software For Linux Desktop (1)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://tantos.web.id/blogs/how-to-internet-connection-using-haier-ce100-and-ubuntu-9-04/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
	</channel>
</rss>

