<?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; Lenovo S10</title>
	<atom:link href="http://hydtechblog.com/category/lenovo-s10/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>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>How to make the Broadcom 4312 Wireless driver work in BackTrack 4 on the Lenovo S10</title>
		<link>http://hydtechblog.com/2009/09/25/how-to-make-the-broadcom-4312-wireless-driver-work-on-the-lenovo-s10/</link>
		<comments>http://hydtechblog.com/2009/09/25/how-to-make-the-broadcom-4312-wireless-driver-work-on-the-lenovo-s10/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 18:10:19 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[BackTrack]]></category>
		<category><![CDATA[Lenovo S10]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[b43]]></category>
		<category><![CDATA[b43legacy]]></category>
		<category><![CDATA[backtrack 4]]></category>
		<category><![CDATA[bc43xx]]></category>
		<category><![CDATA[broadcom]]></category>
		<category><![CDATA[BT4]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=485</guid>
		<description><![CDATA[This guide is adapted from Kazalku&#8217;s guide on remote exploit forums. Thanks Kazalku. Download this driver and transfer it with a USB or boot up into another OS on your multiboot and save it in the BT root folder from here. Untar it: tar -xvzf hybrid-portsrc-x86_32-v5_10_91_9-3.tar.gz makefile: make -C /lib/modules/`uname -r`/build M=`pwd` Insert the modules: [...]]]></description>
			<content:encoded><![CDATA[<p>This guide is adapted from Kazalku&#8217;s guide on remote exploit forums.  Thanks Kazalku.</p>
<p>Download this driver and transfer it with a USB or boot up into another OS on your multiboot and save it in the BT root folder from <a href="http://www.broadcom.com/support/802.11/linux_sta.php">here</a>.</p>
<p>Untar it:<br />
<code><br />
tar -xvzf hybrid-portsrc-x86_32-v5_10_91_9-3.tar.gz</code></p>
<p>makefile:<br />
<code>make -C /lib/modules/`uname -r`/build M=`pwd`</code></p>
<p>Insert the modules:<br />
<code>modprobe ieee80211_crypt_tkip<br />
insmod wl.ko</code></p>
<p>Now you should have the network Claimed.  you can check by:<br />
<code>lshw -C network</code></p>
<p>Bring it up:<br />
<code>ifconfig eth1 up</code></p>
<p>To load the module upon boot:<br />
<code><br />
cp wl.ko /lib/modules/`uname -r`/kernel/net/wireless<br />
depmod -a<br />
modprobe wl</code></p>
<p>Load the module at every startup:<br />
<code>kate /etc/modules</code></p>
<p>add the following and close the text editor:<br />
    ieee80211_crypt_tkip<br />
    wl</p>
<p>Load NetworkManager and Configure KnetworkManager:<br />
Type <code>NetworkManager</code> in a konsole and configure the wireless at the bottom right.</p>
<p>Delete the files you created in the root folder now that you dont need them.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=485&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/09/25/how-to-make-the-broadcom-4312-wireless-driver-work-on-the-lenovo-s10/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Loud beeps from speaker in Lenovo S10</title>
		<link>http://hydtechblog.com/2009/09/14/loud-beeps-from-speaker-in-lenovo-s10/</link>
		<comments>http://hydtechblog.com/2009/09/14/loud-beeps-from-speaker-in-lenovo-s10/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 05:50:00 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Lenovo S10]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[beeps]]></category>
		<category><![CDATA[blacklist]]></category>
		<category><![CDATA[lenovo]]></category>
		<category><![CDATA[s10]]></category>
		<category><![CDATA[speaker]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=462</guid>
		<description><![CDATA[The lenovo S series netbooks can get pretty annoying with the speaker beeping all the time. To disable the speaker beep while plugging and removing the charger, you can change the setting in the BIOS. If there is no option, you must upgrade the BIOS. Other annoying beep sound when I shut down my Ubuntu. [...]]]></description>
			<content:encoded><![CDATA[<p>The lenovo S series netbooks can get pretty annoying with the speaker beeping all the time.  To disable the speaker beep while plugging and removing the charger, you can change the setting in the BIOS.  If there is no option, you must upgrade the BIOS.</p>
<p>Other annoying beep sound when I shut down my Ubuntu.  To get rid of this I blacklisted my pc speaker:</p>
<p>gedit /etc/modprobe.d/blacklist</p>
<p>add line<br />
blacklist pcspkr</p>
<p>Save and reboot.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=462&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/09/14/loud-beeps-from-speaker-in-lenovo-s10/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

