<?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>Becouz.Net</title>
	<atom:link href="http://becouz.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://becouz.net</link>
	<description>Computer, Hardware, Software</description>
	<lastBuildDate>Fri, 03 Sep 2010 08:28:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x</title>
		<link>http://becouz.net/installing-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html</link>
		<comments>http://becouz.net/installing-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html#comments</comments>
		<pubDate>Fri, 03 Sep 2010 08:28:38 +0000</pubDate>
		<dc:creator>baddoel</dc:creator>
				<category><![CDATA[operating system]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[broadband router]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computer networking]]></category>
		<category><![CDATA[desktop server]]></category>
		<category><![CDATA[drupal 6.x]]></category>
		<category><![CDATA[gnome desktop]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[linksys routers]]></category>
		<category><![CDATA[mallware]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spam sites]]></category>
		<category><![CDATA[spyware]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu lts]]></category>
		<category><![CDATA[Ubuntu Server]]></category>
		<category><![CDATA[vps server]]></category>

		<guid isPermaLink="false">http://becouz.net/?p=3009</guid>
		<description><![CDATA[Besides its success on the desktop, Ubuntu has become a popular server distribution as well. With the release of Hardy Heron 8.04, Canonical is making this release a Long Term Support (LTS) version, with 5 years support on servers. Many hosting companies offering dedicted and virtual private servers (VPS) offer Ubuntu as an option. That [...]


Related posts:<ol><li><a href='http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html' rel='bookmark' title='Permanent Link: Tips Using Nmap IP and Port Scanner on Ubuntu'>Tips Using Nmap IP and Port Scanner on Ubuntu</a></li>
<li><a href='http://becouz.net/cctv-server-with-ubuntu-and-zoneminder.html' rel='bookmark' title='Permanent Link: CCTV server with Ubuntu and Zoneminder'>CCTV server with Ubuntu and Zoneminder</a></li>
<li><a href='http://becouz.net/install-driver-wifi-atheros-di-acer.html' rel='bookmark' title='Permanent Link: Install Driver WiFi Acer Aspire 4315 di Ubuntu Hardy Heron'>Install Driver WiFi Acer Aspire 4315 di Ubuntu Hardy Heron</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbecouz.net%2Finstalling-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbecouz.net%2Finstalling-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Besides its success on the desktop, Ubuntu has become a popular server distribution  as well. With the release of Hardy Heron 8.04, Canonical is making this release a Long Term Support (LTS) version, with 5 years support on servers.</p>
<p>Many hosting companies offering dedicted and virtual private servers (VPS) offer Ubuntu as an option. That is not a surprise, because Ubuntu provides all the benefits that Debian provides: community maintained, vast repository of software packages, and superior dependency management, with more up to date packages.<span id="more-3009"></span></p>
<p>Drupal runs best on the LAMP stack (Linux, Apache, MySQL, PHP). This article describes how to setup Ubuntu Server 8.04 LTS for use with Drupal, making sure all the required software is configured, with special tweaks for performance and development.</p>
<p>The article assumes that this is either a dedicated server, or a VPS. The usage of the server can be either a live server, or a development machine.<br />
Installing Ubuntu Server</p>
<p>If you are on a VPS provided by a hosting company, they would have installed Ubuntu for you from images they maintain. Therefore, you can skip this section if you are using a VPS.</p>
<p>Install Ubuntu normally using the installation instructions on Ubuntu&#8217;s web site.</p>
<p>When you reach the stage of selecting a Package Task, only select OpenSSH server. Do not select LAMP server nor Mail server. We will do those manually later, in order to control exactly what gets installed.<br />
Configuring a Static IP address</p>
<p>Note: If you are on a VPS, skip this section. In fact, you can lose access to your server inadverently if you make a mistake here.</p>
<p>When the system reboots, you need to assign a static address to it if it is a live server.</p>
<p>Edit the file /etc/network/interfaces to be as follows. Replace the IP address in the address and gateway with the correct values.</p>
<p>auto eth0<br />
iface eth0 inet static<br />
address 192.168.0.240<br />
netmask 255.255.255.0<br />
gateway 192.168.0.1</p>
<p>Restart the networking stack.</p>
<p># /etc/init.d/networking restart</p>
<p>If this is a remote server, with no console access, then it is best if you double check the settings and reboot instead of restarting the network.<br />
Update to the latest packages</p>
<p>If you are installing from a CD, then the repository would have updated packages that are more recent than the ones on your CD. Before we install any software, let us make sure that we have the latest packages</p>
<p># aptitude update &amp;&amp; aptitude dist-upgrade</p>
<p>If the upgrade includes new kernel versions, we need to reboot now, so that we don&#8217;t have to do it later.</p>
<p># shutdown -r now</p>
<p>Install Apache, MySQL and PHP5</p>
<p>We now proceed with installing Apache, MySQL and PHP5 (the AMP part of the LAMP software stack). This configuration assumes that you will be using mod_php to run PHP as an Apache module. This is suitable for most regular traffic sites. For a more high performance option for higher traffic sites, you may want to run Apache with PHP as fcgid.</p>
<p>For a mail server, we first install postfix as a personal preference. Ubuntu provides exim4 by default. If you are more comfortable with exim4 as a mail server, then skip this step. Ubuntu will install exim4 as part of the LAMP stack automatically.</p>
<p># aptitude install postfix</p>
<p>When prompted, select &#8220;Internet site&#8221;.</p>
<p>Then we install Apache2:</p>
<p># aptitude install apache2 apache2-threaded-dev</p>
<p>After that we install the MySQL database server:</p>
<p># aptitude install mysql-server</p>
<p>When asked for a root password for MySQL, just hit Enter.</p>
<p>And then we follow that by PHP5, PHP5&#8242;s image handling (gd) and its connection to MySQL:</p>
<p># aptitude install php5 php5-gd php5-mysql</p>
<p>Finally, we install a few packages that would allow us to install things from PHP&#8217;s PECL and PEAR repositories. This would make installing apc and xdebug far easier than doing that from source.</p>
<p># aptitude install php5-dev php-pear make</p>
<p>Optional: Install APC</p>
<p>If this is a live server, it is recommended that you install APC to boost PHP&#8217;s performance.</p>
<p># pecl install apc</p>
<p>Create a config file for it named /etc/php5/conf.d/apc.ini and put the following lines in it:</p>
<p>extension=apc.so<br />
apc.shm_size=40</p>
<p>Optional: Install XCache</p>
<p>Alternatively, you can use the XCache op-code cache.</p>
<p># aptitude install php5-xcache</p>
<p>For more details check our article on configuring XCache.<br />
Optional: Install Xdebug</p>
<p>If this is a development server, you may want to install Xdebug if you are using a development environment that supports it. It helps with debugging and profiling PHP applications.</p>
<p>Different IDEs like Komodo, Eclipse and even vim have support for Xdebug.</p>
<p># pecl install xdebug</p>
<p>We have an article on using vim and Xdebug for debugging Drupal that you may want to check.<br />
Increase the memory for PHP</p>
<p>Ubuntu has changed the default for PHP&#8217;s maximum memory size for scripts often. It used to be 8MB, then was pushed to 128MB with 7.10, and now with 8.04, it is back to 16MB. While this is adequate for Drupal&#8217;s core, installing several contributed modules will often exhaust that. So start with 32MB by creating a new file /etc/php5/conf.d/local.ini and put the following memory_limit line to:</p>
<p>memory_limit = 32M</p>
<p>Configure Apache&#8217;s mod_rewrite</p>
<p>Drupal&#8217;s Clean URLs are a very useful feature. It requires the Apache mod_rewrite.</p>
<p>First, enable the Apache module by executing this command:</p>
<p># a2enmod rewrite</p>
<p>Then, edit the file /etc/apache2/sites-enabled/000-default, and change this section:<br />
Options Indexes FollowSymLinks MultiViews<br />
AllowOverride None<br />
Order allow,deny<br />
Allow from all</p>
<p>So the line will be:</p>
<p>AllowOverride All</p>
<p>More Apache Configuration</p>
<p>There are a few Apache modules that are not really needed. We better disable them to save some memory.</p>
<p># a2dismod cgi<br />
# a2dismod autoindex</p>
<p>We may also get better performance if we compress the HTML before we send it to the browser. For this we enable the deflate module.</p>
<p># a2enmod deflate</p>
<p>Finally, restart Apache</p>
<p># /etc/init.d/apache2 restart</p>
<p>Download and Extract Drupal</p>
<p>First download Drupal by doing this:</p>
<p># cd /tmp/<br />
# wget http://ftp.osuosl.org/pub/drupal/files/projects/drupal-6.14.tar.gz</p>
<p>Then extract the tarball</p>
<p># cd /var/www/<br />
# tar xzf /tmp/drupal-6.14.tar.gz</p>
<p>Move the files to the web root of the server</p>
<p># mv drupal-6.14/* /var/www</p>
<p>And don&#8217;t forget the hidden file &#8230;</p>
<p># mv drupal-6.14/.htaccess /var/www</p>
<p>Remove the file index.html, so Drupal&#8217;s index.php will be the one that is executed by Apache</p>
<p># rm index.html</p>
<p>Then change the permissions of all the Drupal files to be owned by something other than the user Apache runs as: www-data</p>
<p># chown -R root:root /var/www</p>
<p>Then, create a files directory that is owned by the www-data user, so Drupal can write images, pictures and uploaded files there. Note that if you have a multi site install, you will need to create one files directory for each site, e.g. /var/www/sites/example.com/files:</p>
<p># mkdir /var/www/sites/default/files<br />
# chown -R www-data:www-data /var/www/sites/default/files</p>
<p>Create the Drupal database</p>
<p>The following command will create a database for Drupal:</p>
<p># mysqladmin create db</p>
<p>Then grant privileges to it:</p>
<p># mysql</p>
<p>Then enter the following two lines at the MySQL prompt:</p>
<p>GRANT ALL PRIVILEGES ON db.* TO user@localhost IDENTIFIED BY &#8216;something&#8217;;<br />
FLUSH PRIVILEGES;</p>
<p>Installing Drupal</p>
<p>We are now ready to install Drupal.</p>
<p>Point your browser to the server (e.g. http://example.com) and you should be greeted by Drupal&#8217;s installer.</p>
<p>You will need to use the following values:</p>
<p>Database name: db</p>
<p>Database user name: user</p>
<p>Database password: something</p>
<p>Enjoy &#8230;</p>
<p>Source : http://2bits.com/articles/installing-a-dedicated-server-or-a-vps-with-ubuntu-server-804-lts-hardy-heron-drupal-6x.html</p>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2543" title="Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x" url="http://becouz.net/installing-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html"></script>

<p>Related posts:<ol><li><a href='http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html' rel='bookmark' title='Permanent Link: Tips Using Nmap IP and Port Scanner on Ubuntu'>Tips Using Nmap IP and Port Scanner on Ubuntu</a></li>
<li><a href='http://becouz.net/cctv-server-with-ubuntu-and-zoneminder.html' rel='bookmark' title='Permanent Link: CCTV server with Ubuntu and Zoneminder'>CCTV server with Ubuntu and Zoneminder</a></li>
<li><a href='http://becouz.net/install-driver-wifi-atheros-di-acer.html' rel='bookmark' title='Permanent Link: Install Driver WiFi Acer Aspire 4315 di Ubuntu Hardy Heron'>Install Driver WiFi Acer Aspire 4315 di Ubuntu Hardy Heron</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://becouz.net/installing-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips Using Nmap IP and Port Scanner on Ubuntu</title>
		<link>http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html</link>
		<comments>http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html#comments</comments>
		<pubDate>Mon, 30 Aug 2010 11:14:01 +0000</pubDate>
		<dc:creator>baddoel</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[broadband router]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computer networking]]></category>
		<category><![CDATA[desktop server]]></category>
		<category><![CDATA[gnome desktop]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[ip scanner]]></category>
		<category><![CDATA[linksys routers]]></category>
		<category><![CDATA[mallware]]></category>
		<category><![CDATA[netork scanner]]></category>
		<category><![CDATA[nmap]]></category>
		<category><![CDATA[port scanner]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spam sites]]></category>
		<category><![CDATA[spyware]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://becouz.net/?p=3005</guid>
		<description><![CDATA[Nmap (Network Mapper) is a security scanner originally written by Gordon Lyon (also known by his pseudonym Fyodor Vaskovich) used to discover hosts and services on a computer network, thus creating a &#8220;map&#8221; of the network. Nmap runs on Linux, Microsoft Windows, Solaris, HP-UX and BSD variants (including Mac OS X), and also on AmigaOS [...]


Related posts:<ol><li><a href='http://becouz.net/installing-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html' rel='bookmark' title='Permanent Link: Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x'>Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x</a></li>
<li><a href='http://becouz.net/tips-using-zenmap-on-ubuntu.html' rel='bookmark' title='Permanent Link: Tips Using Zenmap on Ubuntu'>Tips Using Zenmap on Ubuntu</a></li>
<li><a href='http://becouz.net/tips-to-change-your-login-and-boot-screen-in-ubuntu-lucid.html' rel='bookmark' title='Permanent Link: Tips to Change Your Login And Boot Screen In Ubuntu Lucid'>Tips to Change Your Login And Boot Screen In Ubuntu Lucid</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbecouz.net%2Ftips-using-nmap-ip-and-port-scanner-on-ubuntu.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbecouz.net%2Ftips-using-nmap-ip-and-port-scanner-on-ubuntu.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Nmap (Network Mapper) is a security scanner originally written by Gordon Lyon (also known by his pseudonym Fyodor Vaskovich) used to discover hosts and services on a computer network, thus creating a &#8220;map&#8221; of the network. Nmap runs on Linux, Microsoft Windows, Solaris, HP-UX and BSD variants (including Mac OS X), and also on AmigaOS and SGI IRIX.[2] Linux is the most popular nmap platform with Windows following it closely.</p>
<p>It’s very easy to install nmap in Ubuntu, just download from the internet :<span id="more-3005"></span></p>
<p>zullfree@zullfree:~$ <strong>sudo apt-get install nmap</strong><br />
[sudo] password for zullfree:<br />
Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
The following packages were automatically installed and are no longer required:<br />
  linux-headers-2.6.32-21 linux-headers-2.6.32-21-generic<br />
Use &#8216;apt-get autoremove&#8217; to remove them.<br />
The following extra packages will be installed:<br />
  liblua5.1-0<br />
The following NEW packages will be installed:<br />
  liblua5.1-0 nmap<br />
0 upgraded, 2 newly installed, 0 to remove and 29 not upgraded.<br />
Need to get 1,671kB of archives.<br />
After this operation, 6,541kB of additional disk space will be used.<br />
Do you want to continue [Y/n]? y<br />
Get:1 http://id.archive.ubuntu.com/ubuntu/ lucid/main liblua5.1-0 5.1.4-5 [82.2kB]<br />
Get:2 http://id.archive.ubuntu.com/ubuntu/ lucid/main nmap 5.00-3 [1,589kB]<br />
Fetched 1,671kB in 5s (303kB/s)<br />
Selecting previously deselected package liblua5.1-0.<br />
(Reading database &#8230; 149317 files and directories currently installed.)<br />
Unpacking liblua5.1-0 (from &#8230;/liblua5.1-0_5.1.4-5_i386.deb) &#8230;<br />
Selecting previously deselected package nmap.<br />
Unpacking nmap (from &#8230;/archives/nmap_5.00-3_i386.deb) &#8230;<br />
Processing triggers for man-db &#8230;<br />
Setting up liblua5.1-0 (5.1.4-5) &#8230;</p>
<p>Setting up nmap (5.00-3) &#8230;</p>
<p>Processing triggers for libc-bin &#8230;<br />
ldconfig deferred processing now taking place</p>
<p>to run nmap to scan ip address with range 10.10.28.0 &#8211; 10.10.28.254, you just run command :</p>
<p>zullfree@zullfree:~$ <strong>nmap -sP 10.10.28.0/24</strong></p>
<p>and the result :  </p>
<p>Starting Nmap 5.00 ( http://nmap.org ) at 2010-08-30 17:23 WIT<br />
Host 10.10.28.1 is up (0.00025s latency).<br />
Host 10.10.28.3 is up (0.00032s latency).<br />
Host 10.10.28.7 is up (0.000098s latency).<br />
Host 10.10.28.9 is up (0.00022s latency).<br />
Host 10.10.28.21 is up (0.00032s latency).<br />
Host 10.10.28.22 is up (0.00030s latency).<br />
Host 10.10.28.41 is up (0.0012s latency).<br />
Host 10.10.28.42 is up (0.0011s latency).<br />
Host 10.10.28.43 is up (0.0010s latency).<br />
Host 10.10.28.44 is up (0.0010s latency).<br />
Host 10.10.28.45 is up (0.0013s latency).<br />
Host 10.10.28.46 is up (0.0012s latency).<br />
Host 10.10.28.47 is up (0.0016s latency).<br />
Host 10.10.28.48 is up (0.0015s latency).<br />
Host 10.10.28.49 is up (0.0015s latency).<br />
Host 10.10.28.50 is up (0.0015s latency).<br />
Host 10.10.28.51 is up (0.0012s latency).<br />
Host 10.10.28.100 is up (0.012s latency).<br />
Host 10.10.28.105 is up (0.0041s latency).<br />
Host 10.10.28.131 is up (0.0041s latency).<br />
Nmap done: 256 IP addresses (20 hosts up) scanned in 2.36 seconds</p>
<p>Port Scanning with range 100-150</p>
<p>zullfree@zullfree:~$ <strong>nmap 10.10.28.22 -p100-150</strong></p>
<p>Starting Nmap 5.00 ( http://nmap.org ) at 2010-08-30 17:33 WIT<br />
Interesting ports on 10.10.28.22:<br />
Not shown: 49 closed ports<br />
PORT    STATE SERVICE<br />
135/tcp open  msrpc<br />
139/tcp open  netbios-ssn</p>
<p>Nmap done: 1 IP address (1 host up) scanned in 1.16 seconds</p>
<p>for Scan Operating System :</p>
<p>zullfree@zullfree:~$ <strong>sudo nmap 10.10.28.22 -O</strong></p>
<p>Starting Nmap 5.00 ( http://nmap.org ) at 2010-08-30 17:35 WIT<br />
Interesting ports on 10.10.28.22:<br />
Not shown: 988 closed ports<br />
PORT      STATE SERVICE<br />
135/tcp   open  msrpc<br />
139/tcp   open  netbios-ssn<br />
445/tcp   open  microsoft-ds<br />
3389/tcp  open  ms-term-serv<br />
5101/tcp  open  admdog<br />
49152/tcp open  unknown<br />
49153/tcp open  unknown<br />
49154/tcp open  unknown<br />
49155/tcp open  unknown<br />
49156/tcp open  unknown<br />
49157/tcp open  unknown<br />
49160/tcp open  unknown<br />
MAC Address: 00:04:4B:16:59:89 (Nvidia)<br />
Device type: general purpose<br />
Running: Microsoft Windows Vista|2008|7<br />
OS details: Microsoft Windows Vista SP0 or SP1, Server 2008, or Windows 7 Ultimate (build 7000)<br />
Network Distance: 1 hop</p>
<p>OS detection performed. Please report any incorrect results at http://nmap.org/submit/ .<br />
Nmap done: 1 IP address (1 host up) scanned in 8.39 seconds</p>
<p>nmap Faster Execution</p>
<p>If you want to make faster scan, use -T4 option on nmap command.</p>
<p> zullfree@zullfree:~$ sudo nmap -A -T4 10.10.28.3</p>
<p>Starting Nmap 5.00 ( http://nmap.org ) at 2010-08-30 17:38 WIT<br />
Interesting ports on 10.10.28.3:<br />
Not shown: 998 closed ports<br />
PORT      STATE SERVICE           VERSION<br />
5009/tcp  open  airport-admin     Apple AirPort admin<br />
10000/tcp open  snet-sensor-mgmt?<br />
MAC Address: 00:1F:F3:42:BD:75 (Apple)<br />
Device type: general purpose<br />
Running: NetBSD 4.X<br />
OS details: NetBSD 4.99.4<br />
Network Distance: 1 hop</p>
<p>OS and Service detection performed. Please report any incorrect results at http://nmap.org/submit/ .<br />
Nmap done: 1 IP address (1 host up) scanned in 83.68 seconds</p>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2543" title="Tips Using Nmap IP and Port Scanner on Ubuntu" url="http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html"></script>

<p>Related posts:<ol><li><a href='http://becouz.net/installing-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html' rel='bookmark' title='Permanent Link: Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x'>Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x</a></li>
<li><a href='http://becouz.net/tips-using-zenmap-on-ubuntu.html' rel='bookmark' title='Permanent Link: Tips Using Zenmap on Ubuntu'>Tips Using Zenmap on Ubuntu</a></li>
<li><a href='http://becouz.net/tips-to-change-your-login-and-boot-screen-in-ubuntu-lucid.html' rel='bookmark' title='Permanent Link: Tips to Change Your Login And Boot Screen In Ubuntu Lucid'>Tips to Change Your Login And Boot Screen In Ubuntu Lucid</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beware of &#8216;Artist or Celebrity&#8217; on the Internet</title>
		<link>http://becouz.net/beware-of-artist-or-celebrity-on-the-internet.html</link>
		<comments>http://becouz.net/beware-of-artist-or-celebrity-on-the-internet.html#comments</comments>
		<pubDate>Thu, 19 Aug 2010 06:37:59 +0000</pubDate>
		<dc:creator>baddoel</dc:creator>
				<category><![CDATA[Internet News]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[broadband router]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computer networking]]></category>
		<category><![CDATA[desktop server]]></category>
		<category><![CDATA[gnome desktop]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[linksys routers]]></category>
		<category><![CDATA[mallware]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[spam sites]]></category>
		<category><![CDATA[spyware]]></category>

		<guid isPermaLink="false">http://becouz.net/?p=3003</guid>
		<description><![CDATA[According to security company McAfee, the article&#8217;s top celebrities including drawings has long been a soft bait to lead Internet users to visit a dangerous site. Should be careful when looking for articles or photos of Hollywood celebrities like Cameron Diaz, Julia Roberts or Jessica Biel. Instead of profiting, the netter can even be constrained [...]


Related posts:<ol><li><a href='http://becouz.net/installing-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html' rel='bookmark' title='Permanent Link: Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x'>Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x</a></li>
<li><a href='http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html' rel='bookmark' title='Permanent Link: Tips Using Nmap IP and Port Scanner on Ubuntu'>Tips Using Nmap IP and Port Scanner on Ubuntu</a></li>
<li><a href='http://becouz.net/list-of-the-most-dangerous-web-domains.html' rel='bookmark' title='Permanent Link: List of The Most Dangerous Web Domains'>List of The Most Dangerous Web Domains</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbecouz.net%2Fbeware-of-artist-or-celebrity-on-the-internet.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbecouz.net%2Fbeware-of-artist-or-celebrity-on-the-internet.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>According to security company McAfee, the article&#8217;s top celebrities including drawings has long been a soft bait to lead Internet users to visit a dangerous site.</p>
<p>Should be careful when looking for articles or photos of Hollywood celebrities like Cameron Diaz, Julia Roberts or Jessica Biel. Instead of profiting, the netter can even be constrained loss</p>
<p>Once the netter clicking on the site, even when the computer will be infected. Well, once infected by the hackers to easily crack passwords and commit other crimes is certainly detrimental to the account or computer owner.<span id="more-3003"></span>The third addition to the artist&#8217;s name on these boards, it seems that there are still some names that often dicatutkan in dangerous sites. Gisele Bundchen instance, Brad Pitt, Andriana Lima, Jennifer Love Hewitt, Nicole Kidman, Tom Cruise, Heidi Klum, Penelope Cruz and Anna Paquin.</p>
<p>McAffee own testing since last July with his company uses advanced technology to identify dangerous sites. Most people take photos or videos on these celebrity articles, but instead ended up in a dangerous site.</p>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2543" title="Beware of 'Artist or Celebrity' on the Internet" url="http://becouz.net/beware-of-artist-or-celebrity-on-the-internet.html"></script>

<p>Related posts:<ol><li><a href='http://becouz.net/installing-a-vps-with-ubuntu-server-8-04-lts-hardy-heron-for-drupal-6-x.html' rel='bookmark' title='Permanent Link: Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x'>Installing a VPS with Ubuntu Server 8.04 LTS (Hardy Heron) for Drupal 6.x</a></li>
<li><a href='http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html' rel='bookmark' title='Permanent Link: Tips Using Nmap IP and Port Scanner on Ubuntu'>Tips Using Nmap IP and Port Scanner on Ubuntu</a></li>
<li><a href='http://becouz.net/list-of-the-most-dangerous-web-domains.html' rel='bookmark' title='Permanent Link: List of The Most Dangerous Web Domains'>List of The Most Dangerous Web Domains</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://becouz.net/beware-of-artist-or-celebrity-on-the-internet.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips to Change Your Login And Boot Screen In Ubuntu Lucid</title>
		<link>http://becouz.net/tips-to-change-your-login-and-boot-screen-in-ubuntu-lucid.html</link>
		<comments>http://becouz.net/tips-to-change-your-login-and-boot-screen-in-ubuntu-lucid.html#comments</comments>
		<pubDate>Mon, 16 Aug 2010 08:47:57 +0000</pubDate>
		<dc:creator>baddoel</dc:creator>
				<category><![CDATA[Computer Tips]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[blackberry os 6]]></category>
		<category><![CDATA[broadband router]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computer networking]]></category>
		<category><![CDATA[desktop server]]></category>
		<category><![CDATA[gnome desktop]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[linksys routers]]></category>
		<category><![CDATA[ubuntu lucid]]></category>
		<category><![CDATA[Ubuntu Server]]></category>
		<category><![CDATA[wireles radio]]></category>

		<guid isPermaLink="false">http://becouz.net/?p=2999</guid>
		<description><![CDATA[The latest version of Ubuntu (10.04 Lucid) comes with a plymouth theme that allows more cool and animated screen to be displayed during boot up. While this is a great improvement, it also means that all the previous method of setting your own boot screen and login screen is no longer valid. For those who [...]


Related posts:<ol><li><a href='http://becouz.net/tips-to-change-the-login-screen-ubuntu-lucid-with-gdm2.html' rel='bookmark' title='Permanent Link: Tips to Change The Login Screen Ubuntu Lucid with GDM2'>Tips to Change The Login Screen Ubuntu Lucid with GDM2</a></li>
<li><a href='http://becouz.net/very-easy-ways-to-recover-or-reinstall-grub-boot-loader.html' rel='bookmark' title='Permanent Link: Very Easy Ways to Recover or Reinstall Grub Boot Loader'>Very Easy Ways to Recover or Reinstall Grub Boot Loader</a></li>
<li><a href='http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html' rel='bookmark' title='Permanent Link: Tips Using Nmap IP and Port Scanner on Ubuntu'>Tips Using Nmap IP and Port Scanner on Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbecouz.net%2Ftips-to-change-your-login-and-boot-screen-in-ubuntu-lucid.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbecouz.net%2Ftips-to-change-your-login-and-boot-screen-in-ubuntu-lucid.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The latest version of Ubuntu (10.04 Lucid) comes with a plymouth theme that allows more cool and animated screen to be displayed during boot up. While this is a great improvement, it also means that all the previous method of setting your own boot screen and login screen is no longer valid. For those who are not happy with the default boot and login screen, here is how you can change them in Ubuntu Lucid. At this moment, there is no GUI to handle this, so everything has to be done via the command line. Follow closely and you’ll be fine.</p>
<p><strong><span style="text-decoration: underline;">Changing the login screen</span></strong></p>
<p>1. Move your favorite login wallpaper to your Home folder. Make sure that it is of .JPG format.<span id="more-2999"></span></p>
<p>2. Move the wallpaper to the system wallpaper directory. In the terminal:</p>
<p style="padding-left: 60px;">sudo mv ~/your-wallpaper-name.jpg /usr/share/backgrounds</p>
<p>3. Activate the Appearance window upon login</p>
<p style="padding-left: 60px;">sudo cp /usr/share/applications/gnome-appearance-properties.desktop /usr/share/</p>
<p>Close the terminal. Log out of your current session. At the login screen, the Appearance window will show up. Go to the background tab and select your favorite wallpaper as the background. (If you can’t find your favorite wallpaper, click Add. You should be able to find your wallpaper in the /usr/share/backgrounds directory).</p>
<p style="text-align: center;"><a href="http://becouz.net/wp-content/uploads/2010/08/desktop.png"><img class="alignnone size-medium wp-image-3000" title="Becouz" src="http://becouz.net/wp-content/uploads/2010/08/desktop-300x168.png" alt="Becouz" width="300" height="168" /></a></p>
<p>5. Your login background will instantly change to the wallpaper you have selected. Now login to your desktop.</p>
<p>6. Open a terminal. Type the following command to deactivate the Appearance  window upon login.</p>
<p style="padding-left: 60px;">sudo unlink /usr/share/gdm/autostart/LoginWindow/gnome-appearance-properties.desktop</p>
<p><span style="text-decoration: underline;"><strong>Changing the boot screen</strong></span></p>
<p>The plymouth theme uses a theme framework to display the background and animation, so you won’t be able to take a simple wallpaper and put it on the boot screen. The Ubuntu repository comes with several plymouth themes that you can install in your system.</p>
<p style="padding-left: 60px;">sudo apt-get install plymouth-theme-*</p>
<p>This will install all the plymouth themes in the repository.</p>
<p>Next, select the theme that you want to display:</p>
<p style="padding-left: 60px;">sudo update-alternatives &#8211;config default.plymouth</p>
<p>you will see a list of the theme for you to choose. Type in the number of the theme you want and press Enter.</p>
<p>Update: According to Pvalley67, you have to run the following command to update the system. I have got it working without having to run the command, but you can do it if you are not seeing the new splash screen.</p>
<p style="padding-left: 60px;">sudo update-initramfs -u</p>
<p>Restart your computer. You should see your new boot screen in action.</p>
<p>Source : maketecheasier.com/change-login-and-boot-screen-in-ubuntu-lucid/2010/05/13</p>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2543" title="Tips to Change Your Login And Boot Screen In Ubuntu Lucid" url="http://becouz.net/tips-to-change-your-login-and-boot-screen-in-ubuntu-lucid.html"></script>

<p>Related posts:<ol><li><a href='http://becouz.net/tips-to-change-the-login-screen-ubuntu-lucid-with-gdm2.html' rel='bookmark' title='Permanent Link: Tips to Change The Login Screen Ubuntu Lucid with GDM2'>Tips to Change The Login Screen Ubuntu Lucid with GDM2</a></li>
<li><a href='http://becouz.net/very-easy-ways-to-recover-or-reinstall-grub-boot-loader.html' rel='bookmark' title='Permanent Link: Very Easy Ways to Recover or Reinstall Grub Boot Loader'>Very Easy Ways to Recover or Reinstall Grub Boot Loader</a></li>
<li><a href='http://becouz.net/tips-using-nmap-ip-and-port-scanner-on-ubuntu.html' rel='bookmark' title='Permanent Link: Tips Using Nmap IP and Port Scanner on Ubuntu'>Tips Using Nmap IP and Port Scanner on Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://becouz.net/tips-to-change-your-login-and-boot-screen-in-ubuntu-lucid.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reflection of The Heart of RIM for The User is BlackBerry OS 6</title>
		<link>http://becouz.net/reflection-of-the-heart-of-rim-for-the-user-is-blackberry-os-6.html</link>
		<comments>http://becouz.net/reflection-of-the-heart-of-rim-for-the-user-is-blackberry-os-6.html#comments</comments>
		<pubDate>Sun, 08 Aug 2010 09:07:17 +0000</pubDate>
		<dc:creator>baddoel</dc:creator>
				<category><![CDATA[Other Tecnology]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[blackberry os 6]]></category>
		<category><![CDATA[broadband router]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computer networking]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[linksys routers]]></category>
		<category><![CDATA[RIM]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[tech tips]]></category>
		<category><![CDATA[wireles radio]]></category>

		<guid isPermaLink="false">http://becouz.net/?p=2990</guid>
		<description><![CDATA[Although some analysts still doubt, the BlackBerry OS 6 still harvest a row of praise from Mike Lazaridis, President &#38; co-CEO of Research In Motion (RIM). In fact, the operating system as a reflection digadang-gadang heart of RIM. 6 The BlackBerry operating system, according to Lazaridis, equipped with powerful features that distinguish BlackBerry connectivity with [...]


Related posts:<ol><li><a href='http://becouz.net/blackberry-torch-was-launched-as-the-iphone-killer.html' rel='bookmark' title='Permanent Link: BlackBerry Torch was Launched as The iPhone Killer'>BlackBerry Torch was Launched as The iPhone Killer</a></li>
<li><a href='http://becouz.net/rim-with-blackberry-storm-3-coming-end-of-year.html' rel='bookmark' title='Permanent Link: RIM with BlackBerry Storm 3 Coming End of Year'>RIM with BlackBerry Storm 3 Coming End of Year</a></li>
<li><a href='http://becouz.net/info-blackberry-shortcuts-for-beginner.html' rel='bookmark' title='Permanent Link: Info Blackberry Shortcuts for Beginner'>Info Blackberry Shortcuts for Beginner</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbecouz.net%2Freflection-of-the-heart-of-rim-for-the-user-is-blackberry-os-6.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbecouz.net%2Freflection-of-the-heart-of-rim-for-the-user-is-blackberry-os-6.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Although some analysts still doubt, the BlackBerry OS 6 still harvest a row of praise from Mike Lazaridis, President &amp; co-CEO of Research In Motion (RIM). In fact, the operating system as a reflection digadang-gadang heart of RIM.</p>
<p>6 The BlackBerry operating system, according to Lazaridis, equipped with powerful features that distinguish BlackBerry connectivity with other handsets.</p>
<p>Changes can be directly felt from the user interface, redesigned so that claimed to be able to work seamless with touch screen and trackpad. While her expanded messaging capabilities as well as simplify the management of social media and RSS feeds.<span id="more-2990"></span></p>
<p>As for the multimedia user experience, OS 6 features a new search universal tool and a new WebKit-based browser that is claimed to be able to render web pages quickly.</p>
<p>&#8220;BlackBerry OS 6 is a form of passion that is owned RIM to deliver a powerful user experience, simplicity, and good for those that enjoy optimal touch screen and keyboard,&#8221; said Lazaridis, who quoted in his statement on Saturday (08/07/2010).</p>
<p>&#8220;Through intensive research and development to address the needs and desires of our customers, we bring the experience of communication, browsing and multimedia that we believe will be popular users, and we are very excited for the first time used on BlackBerry smartphones BlackBerry six new Torch amazing,&#8221; he continued</p>
<p>OS 6 itself first appeared in the arena of World Enterprise Symposium 2010 held in Orlando, USA some time ago. BlackBerry OS 6 finally officially released to the market together with the presence of Research In Motion&#8217;s latest handset, the BlackBerry 9800 Torch.</p>
<p>As a new handset, it is clear Torch will was asked as the first BlackBerry that will run OS 6. And what about the new series of previous BlackBerry? What will also be able to run the operating system tergress it?</p>
<p>RIM is also apparently going to provide for the BlackBerry OS 6 series long. But not necessarily all of the previous series directly BlackBerry can run this OS.</p>
<p>Initially, the handsets Torch besides being groomed to be able to run OS 6 is Bold 9700 (Onyx), Bold 9650, Pearl and 3G. Only, unfortunately, RIM does not give any deadline must upgrade the OS services that are available in every country. They just say, it will happen in a matter of months.</p>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2543" title="Reflection of The Heart of RIM for The User is BlackBerry OS 6" url="http://becouz.net/reflection-of-the-heart-of-rim-for-the-user-is-blackberry-os-6.html"></script>

<p>Related posts:<ol><li><a href='http://becouz.net/blackberry-torch-was-launched-as-the-iphone-killer.html' rel='bookmark' title='Permanent Link: BlackBerry Torch was Launched as The iPhone Killer'>BlackBerry Torch was Launched as The iPhone Killer</a></li>
<li><a href='http://becouz.net/rim-with-blackberry-storm-3-coming-end-of-year.html' rel='bookmark' title='Permanent Link: RIM with BlackBerry Storm 3 Coming End of Year'>RIM with BlackBerry Storm 3 Coming End of Year</a></li>
<li><a href='http://becouz.net/info-blackberry-shortcuts-for-beginner.html' rel='bookmark' title='Permanent Link: Info Blackberry Shortcuts for Beginner'>Info Blackberry Shortcuts for Beginner</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://becouz.net/reflection-of-the-heart-of-rim-for-the-user-is-blackberry-os-6.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motorola Droid Upgrade Process to Android 2.2</title>
		<link>http://becouz.net/motorola-droid-upgrade-process-to-android-2-2.html</link>
		<comments>http://becouz.net/motorola-droid-upgrade-process-to-android-2-2.html#comments</comments>
		<pubDate>Sat, 07 Aug 2010 09:23:03 +0000</pubDate>
		<dc:creator>baddoel</dc:creator>
				<category><![CDATA[Other Tecnology]]></category>
		<category><![CDATA[broadband router]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[computer networking]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[linksys routers]]></category>
		<category><![CDATA[motorola android]]></category>
		<category><![CDATA[motorola droid]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[tech tips]]></category>
		<category><![CDATA[wireles radio]]></category>

		<guid isPermaLink="false">http://becouz.net/?p=2992</guid>
		<description><![CDATA[Yesterday, Erictric reported that shortly after unnamed bugs were encountered in build FRG01B of Android 2.2 [Froyo] for the original Motorola Droid, Verizon Wireless halted the upgrading process. Then, Android 2.2 build FRG22 was spotted on a few devices, suggesting that Verizon Wireless would replace build FRG01B with FRG22. However, things are becoming a bit [...]


Related posts:<ol><li><a href='http://becouz.net/blackberry-torch-was-launched-as-the-iphone-killer.html' rel='bookmark' title='Permanent Link: BlackBerry Torch was Launched as The iPhone Killer'>BlackBerry Torch was Launched as The iPhone Killer</a></li>
<li><a href='http://becouz.net/reflection-of-the-heart-of-rim-for-the-user-is-blackberry-os-6.html' rel='bookmark' title='Permanent Link: Reflection of The Heart of RIM for The User is BlackBerry OS 6'>Reflection of The Heart of RIM for The User is BlackBerry OS 6</a></li>
<li><a href='http://becouz.net/the-easy-way-to-configure-motorola-canopy-backhaul.html' rel='bookmark' title='Permanent Link: The Easy Way to Configure Motorola Canopy Backhaul'>The Easy Way to Configure Motorola Canopy Backhaul</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbecouz.net%2Fmotorola-droid-upgrade-process-to-android-2-2.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbecouz.net%2Fmotorola-droid-upgrade-process-to-android-2-2.html&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Yesterday, Erictric reported that shortly after unnamed bugs were encountered in build FRG01B of Android 2.2 [Froyo] for the original Motorola Droid, Verizon Wireless halted the upgrading process. Then, Android 2.2 build FRG22 was spotted on a few devices, suggesting that Verizon Wireless would replace build FRG01B with FRG22.</p>
<p>However, things are becoming a bit confusing. While Droid Life states that the Android 2.2 OTA update roll out will resume with FRG22 on August 12 — the same day in which the new Motorola Droid 2 is said to be released — MyDroidWorld reports that both Verizon Wireless and Motorola have decided to pull all of the Android 2.2 FRG builds and completely halt the upgrade process to Froyo due to incompatibility and licensing issues with Adobe Flash.<span id="more-2992"></span></p>
<p style="text-align: center;"><a href="http://becouz.net/wp-content/uploads/2010/08/Motorola-Droid-Android-2.2.jpg"><img class="alignnone size-medium wp-image-2993" title="Motorola-Droid-Android-2.2" src="http://becouz.net/wp-content/uploads/2010/08/Motorola-Droid-Android-2.2-300x223.jpg" alt="Motorola-Droid-Android-2.2" width="300" height="223" /></a></p>
<p>The leaked Android 2.2 FRG22 build is still available on the Internet to update manually. However, this is shocking to those who were expecting an official OTA update.</p>
<p>We have asked Verizon Wireless to provide us with more information regarding the Motorola Droid upgrade process to Android 2.2 [Froyo]. We will update as soon as the carrier sends us an official response. Stay tuned.</p>
<p>Source : erictric.com</p>
<script type="text/javascript" class="owbutton" src="http://www.onlywire.com/btn/button_2543" title="Motorola Droid Upgrade Process to Android 2.2" url="http://becouz.net/motorola-droid-upgrade-process-to-android-2-2.html"></script>

<p>Related posts:<ol><li><a href='http://becouz.net/blackberry-torch-was-launched-as-the-iphone-killer.html' rel='bookmark' title='Permanent Link: BlackBerry Torch was Launched as The iPhone Killer'>BlackBerry Torch was Launched as The iPhone Killer</a></li>
<li><a href='http://becouz.net/reflection-of-the-heart-of-rim-for-the-user-is-blackberry-os-6.html' rel='bookmark' title='Permanent Link: Reflection of The Heart of RIM for The User is BlackBerry OS 6'>Reflection of The Heart of RIM for The User is BlackBerry OS 6</a></li>
<li><a href='http://becouz.net/the-easy-way-to-configure-motorola-canopy-backhaul.html' rel='bookmark' title='Permanent Link: The Easy Way to Configure Motorola Canopy Backhaul'>The Easy Way to Configure Motorola Canopy Backhaul</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://becouz.net/motorola-droid-upgrade-process-to-android-2-2.html/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
