<?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 (Ubuntu)</title>
	<atom:link href="http://hydtechblog.com/category/linux-ubuntu/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>How to check Plesk version and update the admin password</title>
		<link>http://hydtechblog.com/2011/05/14/how-to-check-plesk-version-and-update-the-admin-password/</link>
		<comments>http://hydtechblog.com/2011/05/14/how-to-check-plesk-version-and-update-the-admin-password/#comments</comments>
		<pubDate>Sun, 15 May 2011 00:20:03 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Linux (Ubuntu)]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=1071</guid>
		<description><![CDATA[You can type: rpm -q psa or cat /usr/local/psa/version The password is located under: /etc/psa/.psa.shadow]]></description>
			<content:encoded><![CDATA[<p>You can type:</p>
<p>rpm -q psa</p>
<p>or </p>
<p>cat /usr/local/psa/version</p>
<p>The password is located under:</p>
<p>/etc/psa/.psa.shadow</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=1071&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2011/05/14/how-to-check-plesk-version-and-update-the-admin-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Serve files with no extension as PHP</title>
		<link>http://hydtechblog.com/2011/05/11/serve-files-with-no-extenshion-as-php/</link>
		<comments>http://hydtechblog.com/2011/05/11/serve-files-with-no-extenshion-as-php/#comments</comments>
		<pubDate>Wed, 11 May 2011 22:00:14 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=1057</guid>
		<description><![CDATA[So I recently wget mirrored a whole website and uploaded them to my web server. The PHP files from the original server had no extension and when trying to load them, Apache did not serve them as PHP, loading a bunch of jibberish. To solve this problem, I had to edit .htaccess : < FilesMatch [...]]]></description>
			<content:encoded><![CDATA[<p>So I recently <a href="http://hydtechblog.com/2011/05/11/offline-browsing-in-linux-wget-and-some-tricks/">wget mirrored a whole website</a> and uploaded them to my web server. The PHP files from the original server had no extension and when trying to load them, Apache did not serve them as PHP, loading a bunch of jibberish.</p>
<p>To solve this problem, I had to edit .htaccess :</p>
<p><code><br />
< FilesMatch '^[^.]+$' ><br />
 ForceType application/x-httpd-php<br />
< /FilesMatch ></p>
<p>#OR</p>
<p>#AddHandler server-parsed .php</p>
<p>#SetHandler application/x-httpd-php</p>
<p>#AddHandler application/x-httpd-php .php</p>
<p>#OR</p>
<p>#RewriteEngine On<br />
#RewriteRule ^[^.]+$ – [T=application/x-httpd-php,L]</code></p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=1057&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2011/05/11/serve-files-with-no-extenshion-as-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Offline Browsing in Linux: wget and some tricks</title>
		<link>http://hydtechblog.com/2011/05/11/offline-browsing-in-linux-wget-and-some-tricks/</link>
		<comments>http://hydtechblog.com/2011/05/11/offline-browsing-in-linux-wget-and-some-tricks/#comments</comments>
		<pubDate>Wed, 11 May 2011 21:52:43 +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[OSX]]></category>
		<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[backup wget]]></category>
		<category><![CDATA[linux wget]]></category>
		<category><![CDATA[offline browser linux]]></category>
		<category><![CDATA[website backup linux]]></category>
		<category><![CDATA[wget mirror]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=1052</guid>
		<description><![CDATA[Ever since I joined Hostgator.com, I&#8217;ve been learning a lot of Linux in the hopes that I switch my career into Linux. Hopefully Forensics related. So this new dilemma I had was to download a website for offline browsing. I went on the hunt for an offline file browser for Linux&#8230;. I found that I [...]]]></description>
			<content:encoded><![CDATA[<p>Ever since I joined Hostgator.com, I&#8217;ve been learning a lot of Linux in the hopes that I switch my career into Linux. Hopefully Forensics related.</p>
<p>So this new dilemma I had was to download a website for offline browsing. I went on the hunt for an offline file browser for Linux&#8230;. I found that I could use wget to mirror a whole website.</p>
<p>For example, I want to make a copy of <a href="http://www.blackberrysimunlockcode.com">blackberrysimunlockcode.com</a>, Here&#8217;s how:</p>
<p><code> wget -m http://blackberrysimunlockcode.com </code></p>
<p>Here the -m option is telling wget to mirror the website. This is the basic command. But say I need some advanced options. What do I do?</p>
<p>I was trying to get all the script files off of a website to save for later learning and all it was downloading was the index.html and robots.txt<br />
The robots.txt file was blocking user agent wget. To confirm this I used the debug option in wget:</p>
<p><code> wget -m -d http://blackberrysimunlockcode.com </code></p>
<p>You&#8217;ll get something like:</p>
<p>Not following http://blackberrysimunlockcode.com/privacy.shtml because robots.txt forbids it.</p>
<p>or</p>
<p>Rejecting path sh/eg/talk.sh.txt because of rule `sh&#8217;</p>
<p>or </p>
<p>no-follow in index.html</p>
<p>I tried using the option &#8211;user-agent &#8220;Mozilla&#8221;  &#8230;.. no luck</p>
<p>I tried adding the following in .wgetrc :</p>
<p>## Local settings (for a user to set in his $HOME/.wgetrc).  It is<br />
## *highly* undesirable to put these settings in the global file, since<br />
## they are potentially dangerous to &#8220;normal&#8221; users.<br />
##<br />
## Even when setting up your own ~/.wgetrc, you should know what you<br />
## are doing before doing so.<br />
##</p>
<p>header = Accept-Language: en-us,en;q=0.5<br />
header = Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5<br />
header = Accept-Encoding: gzip,deflate<br />
header = Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7<br />
header = Keep-Alive: 300<br />
user_agent = Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6<br />
referer = http://www.google.com</p>
<p>&#8230;Still no luck.</p>
<p>The trick is to use option -e robots=off</p>
<p>So my new command became:</p>
<p><code> wget -m -k -e robots=off -w 2 --random-wait -U "Mozilla" -np http://blackberrysimunlockcode.com </code></p>
<p>Heres what the options do:</p>
<p>-m mirrors website<br />
-k fix links so you don&#8217;t get directed to www.blackberrysimunlockcode.com/sh/eg instead of /sh/eg (relative vs absolute)<br />
-e executes command robots=off<br />
-w 2 sets wait time as 2 seconds so you don&#8217;t overload server and get ip blocked<br />
&#8211;random-wait can be random in 2 secon increments<br />
-U sets user agent<br />
-np no parent, so if the current subdirectory/page links to parent pages, it might crawl whole website</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=1052&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2011/05/11/offline-browsing-in-linux-wget-and-some-tricks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Hosting Review</title>
		<link>http://hydtechblog.com/2011/02/03/free-wordpress-hosting/</link>
		<comments>http://hydtechblog.com/2011/02/03/free-wordpress-hosting/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 20:15:40 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[Webhosting]]></category>
		<category><![CDATA[AAMP server]]></category>
		<category><![CDATA[Android based hosting]]></category>
		<category><![CDATA[free wordpress hosting]]></category>
		<category><![CDATA[wordpress host]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=1018</guid>
		<description><![CDATA[Free WordPress Hosting for 3 months with Code: FREE3 They provide 1GB space and 10GB Bandwidth. Host WordPress with an easy 1-click wordpress install setup with Softaculous. They are a linux based hosting provider, most probably CentOs.The customer support is 24/7 and excellent. Check them out. I was wondering, does an Android OS based webhosting [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://fiberlightning.com/webhosting.php">Free WordPress Hosting</a> for 3 months with Code: FREE3</p>
<p>They provide 1GB space and 10GB Bandwidth. <a href="http://fiberlightning.com">Host WordPress with an easy 1-click wordpress install setup</a> with Softaculous. They are a linux based hosting provider, most probably CentOs.The customer support is 24<a href="http://www.hydtechblog.com/">/</a>7 and excellent. Check them out.  </p>
<p>I was wondering, does an <a href="http://fiberlightning.com">Android OS based webhosting</a> exist? I haven&#8217;t seen one yet but it would be interesting if someone starts that. So that would be like running an <a href="http://androidjunkie.net/">AAMP server</a>, right?</p>
<p>keywords: <a href="http://fiberlightning.com">Free WordPress Host</a>, <a href="http://fiberlightning.com">Linux Webhosting</a>, <a href="http://fiberlightning.com">Shared Hosting Plan</a>, <a href="http://fiberlightning.com">WordPress Hosting Review</a>, <a href="http://fiberlightning.com">WordPress with Fantastico</a></p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=1018&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2011/02/03/free-wordpress-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FreeNX, NXserver, NeatX and more NX problems</title>
		<link>http://hydtechblog.com/2010/04/20/freenx-nxserver-neatx-and-more-nx-problems/</link>
		<comments>http://hydtechblog.com/2010/04/20/freenx-nxserver-neatx-and-more-nx-problems/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 05:19:48 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[freenx]]></category>
		<category><![CDATA[neatx]]></category>
		<category><![CDATA[nx error]]></category>
		<category><![CDATA[nxagent]]></category>
		<category><![CDATA[nxnode]]></category>
		<category><![CDATA[nxserver]]></category>
		<category><![CDATA[nxsession]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=798</guid>
		<description><![CDATA[After upgrading to Lucid, I noticed I was having problems with nxserver. I couldn&#8217;t lock my screen from work anymore. I tried everything under the sun but I still kept getting the &#8220;Error: couldn&#8217;t find RGB GLX visual or fbconfig&#8221; message with glxinfo in my forwarded screen. glxinfo works fine when at the computer itself. [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading to Lucid, I noticed I was having problems with nxserver.  I couldn&#8217;t lock my screen from work anymore.  I tried everything under the sun but I still kept getting the &#8220;Error: couldn&#8217;t find RGB GLX visual or fbconfig&#8221; message with glxinfo in my forwarded screen.  glxinfo works fine when at the computer itself.  I read that X11 forwarding has had some problems with this recently.  I uninstalled nxserver and reinstalled the latest version. no luck.  It made it worse and now I couldn&#8217;t even get CAPS lock to work on the remote screen. Then I found neatx.  Neatx is google&#8217;s version of nxserver and which is based on nxserver.  My first thoughts on neatx were that is looks the same as nxserver but a little slower.  My keyboard and mouse, however, function properly but still no lock screen or screen saver.  My next option: Try KDE.  I installed KDE but still got the glxinfo error. Screen lock worked though! Waiting for a fix on X11 forwarding with ssh, in the mean while, I keep KDE.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=798&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2010/04/20/freenx-nxserver-neatx-and-more-nx-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Kiba Dock on Karmic and Lucid</title>
		<link>http://hydtechblog.com/2010/03/23/how-to-install-kiba-dock-on-karmic-and-lucid/</link>
		<comments>http://hydtechblog.com/2010/03/23/how-to-install-kiba-dock-on-karmic-and-lucid/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 21:20:22 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[automake]]></category>
		<category><![CDATA[beryl]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[kiba dock]]></category>
		<category><![CDATA[lucid lynx]]></category>
		<category><![CDATA[metacity]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=728</guid>
		<description><![CDATA[Just managed to install kiba dock on my system today. I wanted to see what the hype was all about. I followed this guide on ubuntu-forums. make sure you have compiz running before you install kiba dock. 1. sudo apt-get remove automake1.4 2. sudo apt-get install fakeroot automake1.9 build-essential libpango1.0-dev libgtk2.0-dev libgconf2-dev libglitz-glx1-dev librsvg2-dev libglade2-dev [...]]]></description>
			<content:encoded><![CDATA[<p>Just managed to install kiba dock on my system today.  I wanted to see what the hype was all about.  <a href="http://ubuntuforums.org/showthread.php?t=554127">I followed this guide on ubuntu-forums</a>.</p>
<p>make sure you have compiz running before you install kiba dock.</p>
<p><code><br />
1. sudo apt-get remove automake1.4</p>
<p>2. sudo apt-get install fakeroot automake1.9 build-essential libpango1.0-dev libgtk2.0-dev libgconf2-dev libglitz-glx1-dev librsvg2-dev libglade2-dev libxcomposite-dev subversion libtool libgtop2-dev python-gtk2-dev libgnome-menu-dev libgnomeui-dev libgnomevfs2-dev intltool libxml2-dev libglitz1-dev libcairo2 libdbus-1-dev libgtop2-7 libgnomevfs2-0 libgnomeui-0 librsvg2-2 python-feedparser libasound2-dev libsdl1.2-dev libdbus-glib-1-dev libgstreamer-plugins-base0.10-dev libgstreamer0.10-dev libgstreamer0.10-0 pidgin-dev libpurple-dev</pre>
<p>3. svn co https://kibadock.svn.sourceforge.net/svnroot/kibadock/trunk/akamaru/ akamaru</pre>
<p>4. svn co https://kibadock.svn.sourceforge.net/svnroot/kibadock/trunk/kiba-dock/ kiba-dock</pre>
<p>5. svn co https://kibadock.svn.sourceforge.net/svnroot/kibadock/trunk/kiba-plugins/ kiba-plugins</pre>
<p>6. svn co https://kibadock.svn.sourceforge.net/svnroot/kibadock/trunk/kiba-dbus-plugins/ kiba-dbus-plugins</pre>
<p>7. svn co https://kibadock.svn.sourceforge.net/svnroot/kibadock/trunk/kiba-gaim-plugin kiba-gaim-plugin</p>
<p>8. svn co https://kibadock.svn.sourceforge.net/svnroot/kibadock/trunk/kiba-ephy-extension kiba-ephy-extension</pre>
<p>9. cd kiba-dock</p>
<p>10. svn update -r 602 *</p>
<p><font size="4"><font color="Red">Follow this if you have 32 bit</font></font>
</p>
<p>cd akamaru/<br />
./autogen.sh --prefix=/usr --exec-prefix=/usr<br />
sudo make install<br />
cd ..</p>
<p>cd kiba-dock/<br />
./autogen.sh<br />
sudo make install<br />
cd ..</p>
<p>cd kiba-plugins/<br />
./autogen.sh<br />
sudo make install<br />
cd ..</p>
<p>cd kiba-dbus-plugins/<br />
./autogen.sh<br />
sudo make install<br />
cd ..</p>
<p><font size="4"><font color="red">Follow this if you have 64 bit</font></font>
</p>
<p>cd akamaru/<br />
./autogen.sh --prefix=/usr --exec-prefix=/usr --libdir=/usr/lib64<br />
sudo make install<br />
cd ..</p>
<p>cd kiba-dock/<br />
./autogen.sh --prefix=/usr --libdir=/usr/lib64<br />
sudo make install<br />
cd ..</p>
<p>cd kiba-plugins/<br />
CC=&quot;gcc -fPIC&quot; ./autogen.sh --prefix=/usr --libdir=/usr/lib64<br />
sudo make install<br />
cd ..</pre>
<p>cd kiba-dbus-plugins/<br />
./autogen.sh --prefix=/usr --libdir=/usr/lib64<br />
sudo make install<br />
cd ..</p>
<p><font size="4" color="red"><br />
Now add it to the startup applications</font></p>
<p>Go to System -&gt; Preferences -&gt; Startup Applications and add. </p>
<p>Name = Kiba Dock</p>
<p>Command = kiba-dock</p>
<p><strong><font size="4" color=red>Troubleshooting:</font></strong></p>
<p>If you are getting compilation errors, then automake is probably causing problems.  You need to gedit configuration.in or configuration.ac and change all the AC_SUBST("$WHATEVER") to AC_SUBST(WHATEVER)</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=728&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2010/03/23/how-to-install-kiba-dock-on-karmic-and-lucid/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Getting root on your new Nexus One Android Google Phone</title>
		<link>http://hydtechblog.com/2010/01/05/getting-root-on-your-new-nexus-one-android-google-phone/</link>
		<comments>http://hydtechblog.com/2010/01/05/getting-root-on-your-new-nexus-one-android-google-phone/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 23:29:09 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[BackTrack]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=638</guid>
		<description><![CDATA[The Nexus one was rooted before it even got released. Paul at modaco forums showed us how to perform this hack. I&#8217;ll try to simplify the method here. 1. First unlock your bootloader if you have a T-mobile Nexus One (this voids the warranty) or get an unlocked version from Google for like $550: a. [...]]]></description>
			<content:encoded><![CDATA[<p>The Nexus one was rooted before it even got released.  Paul at modaco forums showed us how to perform this hack.  I&#8217;ll try to simplify the method here.</p>
<p>1. First unlock your bootloader if you have a T-mobile Nexus One (this voids the warranty) or get an unlocked version from Google for like $550:</p>
<p>a. <a href="http://hydtechblog.com/filez/fastboot.zip">download fastboot</a><br />
b. open terminal or command line and type<br />
 &#8211; Windows <code>fastboot-windows oem unlock</code><br />
 &#8211; Mac <code>./fastboot-mac oem unlock</code><br />
 &#8211; Linux <code>./fastboot-linux oem unlock</code></p>
<p>2. Rewrite the Bootloader to obtain root privileges:</p>
<p>a. Download either <a href="http://hydtechblog.com/filez/1.1-nexusone-superboot.zip">SuperBoot</a> or  <a href="http://hydtechblog.com/filez/1.1-nexusone-insecure.zip">InsecureBoot</a> and extract. (The difference is that with the insecure boot you won&#8217;t make any changes to the system and you would have to launch su manually)<br />
b. Put the device in bootloader mode:<br />
 &#8211; Turn off the phone and restart holding the trackball.<br />
c. Flash the bootloader:<br />
 &#8211; Windows = double click the windows bat file<br />
 &#8211; Mac = open terminal and cd to the directory containing the file.  type <br /><code>chmod +x install-superboot-mac.sh<br />
./install-superboot-mac.sh</code><br />
 &#8211; Linux = open terminal and cd to the directory containing the file.  type <br /><code>chmod +x install-superboot-linux.sh<br />
./install-superboot-linux.sh</code></p>
<p>Now you should have root!</p>
<p><img src="http://content.modaco.net/imagewell/rootednexusone.jpg" alt="Rooted Nexus One Google Phone" /><br />
Pic courtesy of Stericson.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=638&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2010/01/05/getting-root-on-your-new-nexus-one-android-google-phone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Automatic website backup without SSH enabled over FTP</title>
		<link>http://hydtechblog.com/2009/12/03/automatic-website-backup-without-ssh-enabled/</link>
		<comments>http://hydtechblog.com/2009/12/03/automatic-website-backup-without-ssh-enabled/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 22:34:42 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[BackTrack]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Lenovo S10]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=597</guid>
		<description><![CDATA[Last time I backed up my website with rsync and ssh, but on my new host they disabled SSH. Rsync does not work over ftp. I do not want to do incremental backups with delta files like is done with rdiff-backup or duplicity. I need to have an exact mirror of my site. But remember [...]]]></description>
			<content:encoded><![CDATA[<p>Last time I backed up my website with rsync and ssh, but on my new host they disabled SSH.  Rsync does not work over ftp.  I do not want to do incremental backups with delta files like is done with rdiff-backup or duplicity. I need to have an exact mirror of my site.  But remember that your sql databases won&#8217;t be backed up.</p>
<p>Curlftpfs is the key! In this tutorial I will show you how to backup from one server to a backup location which can be your hard drive, another web host, dropbox folder, Box.net via webdav, etc.</p>
<p>Download curlftpfs, rsync and ncftp:<br />
<code>sudo apt-get install curlftpfs ncftp rsync</code></p>
<p>make directories to mount your ftp server:<br />
<code>sudo mkdir /media/hydtechblog</code><br />
<code>sudo mkdir /media/hydtechbackupserver</code></p>
<p>edit fstab to mount the ftp servers using curlftpfs:<br />
<code>sudo gedit /etc/fstab</code></p>
<p>add the lines and modify them according to your server:<br />
curlftpfs#username:password@hydtechblog.com /media/hydtechblog fuse rw,allow_other,uid=root 0 0<br />
curlftpfs#username:password@hydtechbackupserver /media/hydtechbackupserver fuse rw,allow_other,uid=root 0 0</p>
<p>One thing to remember is that these two will not mount automatically because when the computer restarts, the fstab is done while you are not connected to the network.  To fix this we can just add the mount commands in our crontab.</p>
<p>Edit crontab:<br />
<code>sudo crontab -e</code><br />
enter the following lines and modify accordingly:<br />
00 09 * * * mount /media/hydtechblog<br />
00 09 * * * mount /media/hydtechbackup<br />
01 09 * * * rsync -avz &#8211;rsync-path=/usr/bin/rsync /media/hydtechblog/public_html /media/hydtechbackup/public_html</p>
<p>ctrl + o to write and ctrl + x to save</p>
<p>This will tell cron to mount the folders at 9:00 am and start rsync at 9:01 am.  You can replace the backup location to another folder on your hard drive or your dropbox or ubuntu one folder.  You can also mount box.net with webdav and use this method.</p>
<p>For encrypted incremental backups checkout duplicity, it also works with webdav and ftp.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=597&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/12/03/automatic-website-backup-without-ssh-enabled/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Revealing Opera wand passwords on Ubuntu Linux and OS X</title>
		<link>http://hydtechblog.com/2009/11/23/revealing-opera-wand-passwords-on-ubuntu-linux-and-os-x/</link>
		<comments>http://hydtechblog.com/2009/11/23/revealing-opera-wand-passwords-on-ubuntu-linux-and-os-x/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 20:28:09 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[BackTrack]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[opensuse]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=586</guid>
		<description><![CDATA[There are several utilities in Windows which reveal the opera wand password and I haven&#8217;t used windows in forever. The Opera wiki has a Power button which can help capture your password while logging in to the site. Click this link in Opera and it will install a button which you can drag to any [...]]]></description>
			<content:encoded><![CDATA[<p>There are several utilities in Windows which reveal the opera wand password and I haven&#8217;t used windows in forever.  The Opera wiki has a Power button which can help capture your password while logging in to the site. <a class="button" title="Click this link in Opera" href="opera:/button/Wand &amp; Go to page, &quot;javascript:(function(){var s,F,j,f,i; s=%27%27; F=document.forms; for(j=0; j&lt;F.length; ++j){f=F[j]; for(i=0; i&lt;f.length; ++i){if(f[i].type &amp;&amp; f[i].type.toLowerCase()==%27password%27)s+=f[i].value+%27%5cn%27;}}if(s)alert(%27Passwords in forms on this page:%5cn%5cn%27+s);else alert(%27There are no passwords in forms on this page.%27);})();&quot;,1,,&quot;Wand&quot;">Click this link in Opera</a> and it will install a button which you can drag to any panel.  While on a page which requires a password, you can click on this new wand instead of your original wand.</p>
<p>Voila!</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=586&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/11/23/revealing-opera-wand-passwords-on-ubuntu-linux-and-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

