<?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>SigSays - All Things Reviewed &#187; How To</title>
	<atom:link href="http://sigsays.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://sigsays.com</link>
	<description>Reviews, Editorial, Babble</description>
	<lastBuildDate>Fri, 20 May 2011 05:54:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To: Android ADB shell basics</title>
		<link>http://sigsays.com/how-to/how-to-android-adb-shell-basics/</link>
		<comments>http://sigsays.com/how-to/how-to-android-adb-shell-basics/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 15:10:31 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=577</guid>
		<description><![CDATA[Yesterday I did a beginner&#8217;s guide to installing and using android ADB, I figured I would expand on that with a basic guide to adb shell. Overview In short, ADB shell allows you to run a shell on your phone, issuing commands from your computer and having the phone execute them. It&#8217;s the same basic [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I did a <a href="http://sigsays.com/how-to/how-to-a-beginners-guide-to-androids-adb-for-mac-osx/" target="_blank">beginner&#8217;s guide to installing and using android ADB</a>, I figured I would expand on that with a basic guide to adb shell.</p>
<h2>Overview</h2>
<p>In short, ADB shell allows you to run a shell on your phone, issuing commands from your computer and having the phone execute them. It&#8217;s the same basic idea as the shell environment in linux/osx terminal. It&#8217;s a command line environment, running on your phone, that you communicate with via the USB connection to your computer.</p>
<h2>Setting up</h2>
<p>In order to take advantage of the ability to run a shell on your phone to the fullest, you need to be rooted, and for the purpose of this article, I&#8217;m going to assume you are.</p>
<p>You also really need to have busybox installed. While android has some basic command line utilities (generally located in /system/bin), busybox has basically every command line utility under the sun. <a href="http://www.appbrain.com/app/busybox/stericson.busybox" target="_blank">This market app</a> installs busybox. Just install and run it and grant it superuser permissions, then hit &#8220;install&#8221;. If for any reason it gives you a choice, you want it installed to /system/bin.</p>
<p>For some reason, on <a href="http://www.amazon.com/gp/product/B003XVYBU8?ie=UTF8&amp;tag=sigisfunny-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B003XVYBU8">my dell streak</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=sigisfunny-20&amp;l=as2&amp;o=1&amp;a=B003XVYBU8" border="0" alt="" width="1" height="1" />, it hangs up on installation, never telling me it&#8217;s done, even though it does successfully install busybox. If it hangs up on you too, failing to do anything after 2 or 3 minutes, just reboot. We&#8217;ll know soon enough if it worked.</p>
<h2>Start a shell session</h2>
<p>To start a shell session, connect your phone to your computer, making sure you have USB debugging enabled on your phone (Settings &gt; Applications &gt; Development). Open terminal and type</p>
<pre>adb devices</pre>
<p>It should return a device ID, indicating that your phone is connected, and ADB detects it. Now enter</p>
<pre>adb shell</pre>
<p>You should be rewarded with a dollar sign. Let&#8217;s make sure you&#8217;re rooted. Pick up your phone, unlock the screen, and keep it in your hand, then type:</p>
<p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;">su</span></p>
<p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"> </span>The first time you do this, you&#8217;ll be prompted, on your phone, to grant adb shell superuser permissions. Obviously make sure &#8220;always allow&#8221; is ticked and select &#8220;ok&#8221; to grant permissions. It should return a pound sign in place of a dollar sign now. (My rom actually gives you SU permissions by default, a lot of them do not, so you will most likely have a dollar sign when you first enter shell, then a pound sign after granting SU)</p>
<p>Now enter:</p>
<pre>busybox</pre>
<p>and you should be greeted with something like this:</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-7.15.01-AM.png"><img class="alignnone size-medium wp-image-582" title="Screen shot 2010-11-28 at 7.15.01 AM" src="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-7.15.01-AM-242x300.png" alt="" width="242" height="300" /></a></p>
<p>If you have a pound sign, and you get that response when you enter &#8220;busybox&#8221;, you&#8217;re good to go. That&#8217;s means you&#8217;re rooted and have busybox installed.</p>
<h2>Basic Shell Usage</h2>
<p>First, some basic commands.</p>
<h3>cd</h3>
<p>Change Directory. Just like in any other *nix environment, it&#8217;s one of the basics of terminal navigation. When you start a shell session, you&#8217;ll be in root, ( / ). From there, let&#8217;s say you want to move to the SD card.</p>
<pre>cd /sdcard</pre>
<p>Now you should be in the /sdcard/ folder. To verify, use</p>
<h3>pwd</h3>
<p>pwd = Print Working Directory. In other words, output your current location within the file system.</p>
<p>Now let&#8217;s see what&#8217;s on the sd card using</p>
<h3>ls</h3>
<p>ls = list. This command will list all files in the current directory.</p>
<p>Let&#8217;s say I want to start an adb shell session, get root permissions, go to a folder on the sdcard named &#8220;tempfolder&#8221;, make sure I&#8217;m in the right folder, and then list all files in that folder.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-7.50.20-AM.png"><img class="alignnone size-medium wp-image-586" title="Screen shot 2010-11-28 at 7.50.20 AM" src="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-7.50.20-AM-300x187.png" alt="" width="300" height="187" /></a></p>
<p>For directories with lots of files, use</p>
<pre>ls | more</pre>
<p>(The vertical line is above enter, lol)</p>
<p>This will list all files and folders, showing only what fits in the terminal window until you press a key to show more. The space bar will get it to load the next page of results.</p>
<p>For example, just using</p>
<pre>ls</pre>
<p>with no options in the system/bin folder results in this:</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-8.31.23-AM.png"><img class="alignnone size-medium wp-image-587" title="Screen shot 2010-11-28 at 8.31.23 AM" src="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-8.31.23-AM-207x300.png" alt="" width="207" height="300" /></a></p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-8.31.42-AM.png"><img class="alignnone size-medium wp-image-588" title="Screen shot 2010-11-28 at 8.31.42 AM" src="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-8.31.42-AM-207x300.png" alt="" width="207" height="300" /></a></p>
<p>I&#8217;m not going to screenshot the whole thing, but based on the scroll bar on the side, you get the idea as to how many files it just spit out. Using the more option cuts the results up into much more manageable chunks:</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-8.33.07-AM.png"><img class="alignnone size-medium wp-image-589" title="Screen shot 2010-11-28 at 8.33.07 AM" src="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-28-at-8.33.07-AM-300x232.png" alt="" width="300" height="232" /></a></p>
<p>Starting to make sense?</p>
<h2>Busybox usage</h2>
<p>Busybox is a bunch of unix terminal utilities that allow you do pretty much anything you want. There&#8217;s no way I could even remotely begin to cover all of the utilities included in busybox, much less all of the options for them, so I&#8217;ll just hit a few of the very common ones. The <a href="http://en.wikipedia.org/wiki/Busybox" target="_blank">wikipedia article</a> has a full list, and you can click a command and learn more about it.</p>
<h3><strong>cp</strong></h3>
<p>cp = copy. It&#8217;s exactly what it sounds like. Let&#8217;s say you have a file name myfile.txt in /sdcard/tempfolder, and you want to copy it to /sdcard/tempfolder2</p>
<pre>busybox cp /sdcard/tempfolder/myfile.txt /sdcard/tempfolder2/</pre>
<p>That will result in the original myfile.txt remaining in /sdcard/tempfolder and a copy of myfile.txt in /sdcard/tempfolder2</p>
<h3>mv</h3>
<p>mv = move</p>
<p>Again, just what it sounds like. Using the example for cp above:</p>
<pre>busybox mv /sdcard/tempfolder/myfile.txt /sdcard/tempfolder2/</pre>
<p>will move the original file from /tempfolder to /tempfolder2. The file will no longer be in the original location.</p>
<h3>rm</h3>
<p>rm &#8211; remove</p>
<p>Let&#8217;s say we want to get rid of myfile.txt</p>
<pre>busybox rm /sdcard/tempfolder2/myfile.txt</pre>
<h3>mount</h3>
<p>Not a lot of people will use this command other than to make a file/folder writable.</p>
<pre>busybox mount</pre>
<p>will list all mount points, but by far the most common usage of the mount command will be</p>
<pre>busybox mount -o remount rw /system</pre>
<p>That uses busybox to run the mount command with the option (-o) to remount the directory /system with the ability to both read and write (rw). In other words, if you can&#8217;t write to some file in the /system directory, or can&#8217;t modify some file located in that directory for a hack, that will remount the /system directory so that it&#8217;s writable. It should revert to read only (ro) after you reboot, or you can remount it yourself:</p>
<pre>busybox mount -o remount ro /system</pre>
<h3>mkdir</h3>
<p>make directory. This makes a new folder. For example, if you want to make a directory on your sdcard named &#8220;vids&#8221;</p>
<pre>busybox mkdir /sdcard/vids</pre>
<h3>rmdir</h3>
<p>Remove directory. Basically the same thing as the &#8220;rm&#8221; command, just for directories instead of just files. Let&#8217;s say we decide we don&#8217;t want that &#8220;vids&#8221; folder we just made&#8230;</p>
<pre>busybox rmdir /sdcard/vids</pre>
<p>Note that rmdir won&#8217;t remove a folder unless it&#8217;s empty. To do that we use rm and the recursive option. If you already put a video in the /sdcard/vids folder, and you want to just get rid of the folder and the video in it:</p>
<pre>busybox rm -r /sdcard/vids</pre>
<p>I&#8217;m starting to get cross-eyed from staring at my terminal window, so I&#8217;m going to stop for now, I&#8217;ll continue with fastboot usage and likely some more adb shell stuff within the next day or two. Hope this helps a little.</p>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/how-to/how-to-android-adb-shell-basics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To: A beginners guide to Android&#8217;s ADB for Mac OSX.</title>
		<link>http://sigsays.com/how-to/how-to-a-beginners-guide-to-androids-adb-for-mac-osx/</link>
		<comments>http://sigsays.com/how-to/how-to-a-beginners-guide-to-androids-adb-for-mac-osx/#comments</comments>
		<pubDate>Sat, 27 Nov 2010 06:12:15 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=566</guid>
		<description><![CDATA[As much as I piss and moan about people needing to install the Android SDK if they intend to mod their phone, I feel obligated to do a tutorial. While the title specifically states &#8220;For Mac&#8221;, that really only applies to the installation. Once you have the SDK installed, the commands are more or less [...]]]></description>
			<content:encoded><![CDATA[<p>As much as I piss and moan about people needing to install the <a href="http://developer.android.com/sdk/index.html" target="_blank">Android SDK</a> if they intend to mod their phone, I feel obligated to do a tutorial.</p>
<p>While the title specifically states &#8220;For Mac&#8221;, that really only applies to the installation. Once you have the SDK installed, the commands are more or less the same in ADB.</p>
<h2>Installation (Mac Specific)</h2>
<p>1. Download <a href="http://developer.android.com/sdk/index.html" target="_blank">the SDK</a>. It will come in the form of a zip. Extract it somewhere easy, like the root of your username. You&#8217;ll get a folder called &#8220;Android-sdk-mac_86&#8243; or something similar.</p>
<p>2. In finder, navigate to the sdk, then find the tools folder. Open it, and double click &#8220;Android&#8221;. It will launch a terminal window, then a few seconds later, a GUI. On the left, click on &#8220;Available Packages&#8221;, then in the right pane, check the box to select all, and hit &#8220;install selected&#8221;.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-26-at-11.02.26-PM.png"><img class="alignnone size-medium wp-image-567" title="Screen shot 2010-11-26 at 11.02.26 PM" src="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-26-at-11.02.26-PM-300x176.png" alt="" width="300" height="176" /></a></p>
<p>It will download quite a bit of data, so depending on your connection speed, it may take a while. While you&#8217;re waiting on that, use <a href="http://sigsays.com/how-to/how-to-create-a-bash_profile-on-your-mac-running-osx-snow-leopard-to-run-android-adb-from-any-folder-and-without/" target="_blank">my tutorial to set up a bash profile</a>.</p>
<p>3. On your Android phone, go to Settings &gt; Applications &gt; Development, and make sure &#8220;USB Debugging&#8221; is checked. Connect your phone to your computer with the USB cable.</p>
<p>4. Assuming the SDK is fully installed and downloaded, close the terminal window it opened and the gui. Open a new terminal window. If you&#8217;re not sure how, press Command + Space and type &#8220;Terminal&#8221; then enter. You&#8217;ll get a black box with text. Type &#8220;adb devices&#8221; and press enter. If everything worked, it will return a device ID to indicate your phone is connected and detected by ADB.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-26-at-11.14.14-PM.png"><img class="alignnone size-full wp-image-568" title="Screen shot 2010-11-26 at 11.14.14 PM" src="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-26-at-11.14.14-PM.png" alt="" width="250" height="29" /></a></p>
<h2>Navigating Basics</h2>
<p>In order to effectively use ADB, you need a basic grasp of navigating your computer from terminal. Opening a terminal session will start you at the root of your user name, in finder, this will be your user name in the left hand pane, right under &#8220;desktop&#8221;. Entering</p>
<p><code>~/</code></p>
<p>or</p>
<p><code>cd</code></p>
<p>will get you back here.</p>
<p>If you intend to flash an img, push a file, etc, the easiest way to do so is to navigate to the directory in which the file is located. For example, if you want to push (I&#8217;ll explain what &#8220;push&#8221; means in a few, just stay with me) a file that is located on your desktop, and is named yourfile.zip to the SD card on your phone, you can either use</p>
<p><code>adb push ~/username/desktop/yourfile.zip /sdcard</code></p>
<p>from anywhere in terminal, since you&#8217;re using the full path to the file, or you can first navigate to the file&#8217;s location:</p>
<p><span style="font-family: monospace;">cd desktop</span></p>
<p>and then</p>
<p><code>adb push yourfile.zip /sdcard</code></p>
<p>which doesn&#8217;t require the full path, but rather works from the current directory.</p>
<p>Either way, you need a basic idea either how to determine the full path of a file, or how to navigate to the file&#8217;s location. Let&#8217;s cover the basics.</p>
<p>cd &#8211; Change Directory. This is what you&#8217;ll use more than anything. The format is</p>
<p><code>cd (location)</code></p>
<p>For example, let&#8217;s say you have a folder on your desktop named &#8220;android&#8221;, and inside that folder you have a folder named &#8220;apps&#8221;. To get there from ~/, you would enter</p>
<p><code>cd desktop/android/apps</code></p>
<p>Now let&#8217;s verify our location in terminal.</p>
<p><code>pwd</code></p>
<p>Now use ls to list the files in that folder</p>
<p><code>ls</code></p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-26-at-11.43.11-PM.png"><img class="alignnone size-medium wp-image-573" title="Screen shot 2010-11-26 at 11.43.11 PM" src="http://sigsays.com/wordpress/wp-content/uploads/2010/11/Screen-shot-2010-11-26-at-11.43.11-PM-300x188.png" alt="" width="300" height="188" /></a></p>
<p>That pretty much covers the basics. A few shortcuts:</p>
<ul>
<li>cd will take you back to the root of your name from anywhere</li>
<li>cd .. will take you up one directory</li>
<li>ls -a will show all files</li>
</ul>
<h2>ADB Commands</h2>
<p><strong>adb push</strong></p>
<p>adb push will &#8220;push&#8221; a file from your computer to your phone. The format is</p>
<p><code>adb push (location on computer) (destination on phone)</code></p>
<p>For example, let&#8217;s say you navigate to your desktop, and you want to move the file &#8220;song.mp3&#8243; to the folder &#8220;music&#8221; on your phone&#8217;s SD card.</p>
<p><code>adb push song.mp3 /sdcard/music/</code></p>
<p><strong>adb pull</strong></p>
<p>adb pull is exactly the opposite. To pull song.mp3 from the music folder on your sdcard to your desktop:</p>
<p><code>adb pull /sdcard/song.mp3 ~/desktop/</code></p>
<p><strong>adb install</strong></p>
<p>adb install will you install an app via adb, using an apk file on your computer. If you have app.apk downloaded to your desktop, and have navigated to desktop in terminal</p>
<p><code>adb install app.apk</code></p>
<p>You need to have &#8220;Unknown sources&#8221; checked on your phone, found at settings &gt; applications for this to work.</p>
<p><strong>adb logcat</strong></p>
<p>adb logcat is insanely valuable in trying to diagnose issues. Simply enter</p>
<p><code>adb logcat</code></p>
<p>and you&#8217;ll start to get a real time log of everything going on with your phone. It might not mean much to you, but it can be a valuable tool when asking for help.</p>
<p>That&#8217;s all I feel like writing for now, I&#8217;ll cover ADB shell, fastboot, and perhaps more extensive stuff later. Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/how-to/how-to-a-beginners-guide-to-androids-adb-for-mac-osx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To: Create a .bash_profile on your Mac running OSX Snow Leopard to run Android ADB from any folder and without ./</title>
		<link>http://sigsays.com/how-to/how-to-create-a-bash_profile-on-your-mac-running-osx-snow-leopard-to-run-android-adb-from-any-folder-and-without/</link>
		<comments>http://sigsays.com/how-to/how-to-create-a-bash_profile-on-your-mac-running-osx-snow-leopard-to-run-android-adb-from-any-folder-and-without/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 10:19:58 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=554</guid>
		<description><![CDATA[The Android SDK is very easy to get up and running on OSX, it doesn&#8217;t require any drivers or anything, just run the android app and it does it&#8217;s thing. Unfortunately, OSX doesn&#8217;t have a .bash_profile by default. Without creating a .bash_profile and adding your sdk/tools folder to path, you&#8217;ll need to navigate to the [...]]]></description>
			<content:encoded><![CDATA[<p>The Android SDK is very easy to get up and running on OSX, it doesn&#8217;t require any drivers or anything, just run the android app and it does it&#8217;s thing.</p>
<p>Unfortunately, OSX doesn&#8217;t have a .bash_profile by default. Without creating a .bash_profile and adding your sdk/tools folder to path, you&#8217;ll need to navigate to the tools folder of your sdk and run scripts locally when using stuff like ADB and fastboot.</p>
<p>I know that just gave you a headache, so I&#8217;ll clarify with examples.</p>
<p>Let&#8217;s say you download the sdk, and unzip it to yourusername/android-sdk-mac_86</p>
<p>In order to run adb, you&#8217;ll need to open terminal, and type</p>
<p><code>cd android-sdk-mac_86/tools</code></p>
<p>then you&#8217;ll need to start every command with the dot slash ( ./ ), which tells the terminal to run commands from the folder you are currently in.</p>
<p>For example,</p>
<p><code>adb shell</code></p>
<p>attempts to run the script adb, with the command shell, to open a shell, and it looks for the scripts where ever it thinks scripts will be. On a Mac, it only looks in /bin by default. This is where the scripts for the commands you use to navigate in terminal are stored. It contains stuff like ls, mkdir, cd, etc.</p>
<p>If you want it to run a script from your current location in terminal, you have to add the dot slash. For example, still in your sdk/tools folder, the command</p>
<p><code>./adb shell</code></p>
<p>Will attempt to run the script &#8220;adb&#8221; with the command &#8220;shell&#8221; from your current location, in this case, sdk/tools.</p>
<p>We&#8217;re going to add sdk/tools to the places OSX looks for scripts, so you don&#8217;t need to be in that folder in order to use adb or any other SDK script. For instance, you can navigate to the desktop and use ADB to install an APK on your desktop without moving it to the tools folder. Clear as mud? Great.</p>
<p>Press Command (apple) + space and a spotlight search window will pop up in the upper right corner. Start typing &#8220;Terminal&#8221; until you see it highlighted, and press enter. A terminal window will open.</p>
<p>Type:</p>
<p><code>cd</code></p>
<p>Press enter. You should be in your root directory.</p>
<p>Now type:</p>
<p><code>touch .bash_profile</code></p>
<p>then press enter. You just created a file called &#8220;.bash_profile&#8221;. Now open it with text editor using this command:</p>
<p><code>open -e .bash_profile</code></p>
<p>Pressing enter will make text edit pop up, it&#8217;s likely blank, since you just created it. In the text file, paste this:</p>
<p><code>export PATH=${PATH}:/Users/yourname/whereveryoursdk/islocated/tools</code></p>
<p>Obviously replace yourname and the path to your sdk/tools folder with the correct info for your install.</p>
<p>Save the file and close text edit.</p>
<p>If you did it right, you&#8217;re done. With your android phone plugged in, type</p>
<p><code>adb devices</code></p>
<p>and if you get a device returned, you&#8217;re good to go.</p>
<h2>12/07/10 Update:</h2>
<p>It appears that updating your SDK to include all the new gingerbread stuff moves ADB from sdk/tools to /sdk/platform-tools. Basically, all you need to do is add one more line to .bash_profile. Under the line you added earlier, something like:</p>
<p><code>export PATH=${PATH}:/Users/yourname/whereveryoursdk/islocated/tools</code></p>
<p>Add this:</p>
<div><code><code>export PATH=${PATH}:/Users/yourname/whereveryoursdk/islocated/platform_tools</code></p>
<div><code><br />
</code></div>
<p></code></div>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/how-to/how-to-create-a-bash_profile-on-your-mac-running-osx-snow-leopard-to-run-android-adb-from-any-folder-and-without/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To: Fastboot or ADB on Ubuntu returning no devices or &#8220;Waiting for Device&#8221;? Here&#8217;s how to fix it.</title>
		<link>http://sigsays.com/how-to/how-to-fastboot-or-adb-on-ubuntu-returning-no-devices-or-waiting-for-device-heres-how-to-fix-it/</link>
		<comments>http://sigsays.com/how-to/how-to-fastboot-or-adb-on-ubuntu-returning-no-devices-or-waiting-for-device-heres-how-to-fix-it/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 11:16:25 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Nexus One]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=531</guid>
		<description><![CDATA[I was having some issues getting my devices recognized in fastboot/adb on Ubuntu. &#8220;fastboot devices&#8221; just returned back to the terminal prompt, without showing any connected devices, so I tried using the -i option to specify a usb vendor ID, like &#8220;fastboot-linux -i 0x413c reboot&#8221;. This just hung on &#8220;waiting for device&#8221;. I kinda ignored [...]]]></description>
			<content:encoded><![CDATA[<p>I was having some issues getting my devices recognized in fastboot/adb on Ubuntu.</p>
<p>&#8220;fastboot devices&#8221; just returned back to the terminal prompt, without showing any connected devices, so I tried using the -i option to specify a usb vendor ID, like &#8220;fastboot-linux -i 0x413c reboot&#8221;. This just hung on &#8220;waiting for device&#8221;. I kinda ignored it, since I actually use my mac for most fastboot/adb, but tonight I was bored and fucking off on the <a href="http://www.cyanogenmod.com/" target="_blank">CyanogenMod</a> forums shoutbox, and someone was having the same problem. I did a bit of googling and found a solution that worked for me (and M.P.)</p>
<p>As usual, I&#8217;m not responsible for fucking your phone up or accidentally dividing by zero or going back to the future or hacking the gibson or anything else that happens. I&#8217;m not an expert. I wouldn&#8217;t listen to me, I&#8217;m kinda an asshole, I have no idea what I&#8217;m talking about, I&#8217;m usually just guessing. Proceed at your own peril, etc, etc, etc.</p>
<p>Here&#8217;s the step by step fix, assuming you&#8217;re running ubuntu 10.04:</p>
<p>1. Open a terminal window.</p>
<p>2. Log in as root.</p>
<p><code>sudo -i</code></p>
<p>3. Create a UDEV rule file.</p>
<p><code>cat &gt; /etc/udev/rules.d/51-android.rules</code></p>
<p>This should give you a blinking cursor at the very beginning of a blank line, it&#8217;s waiting for you to tell it what the file needs to contain.</p>
<p>4. Enter this <span style="text-decoration: underline;"><em><strong>AFTER YOU REPLACE &#8220;XXXX&#8221; WITH YOUR VENDORID:</strong></em></span></p>
<p><code>SUBSYSTEM=="usb", SYSFS{idVendor}=="XXXX",             MODE="0666"</code></p>
<p>(You can find your vendor ID on <a href="http://developer.android.com/guide/developing/device.html#VendorIds" target="_blank">this page</a>.<br />
For example, for my <a href="http://www.amazon.com/exec/obidos/ASIN/B003XVYBU8/sigisfunny-20/" target="_blank">Dell Streak</a>, I would use:</p>
<p><code>SUBSYSTEM=="usb", SYSFS{idVendor}=="413c",             MODE="0666")</code></p>
<p>5. Press CTRL + D to save, it should return you to the terminal prompt</p>
<p>6. chmod the new file</p>
<p><code>chmod a+r /etc/udev/rules.d/51-android.rules</code></p>
<p>7. Try fastboot. It should work now.</p>
<p><code>fastboot devices</code></p>
<p>Hopefully you get &#8220;Attached devices&#8221; with your devices serial number, if so, you&#8217;re good to go, fastboot should no longer hang at &#8220;waiting for device&#8221;. To be sure, try</p>
<p><code>fastboot reboot</code></p>
<p>If your device reboots, you win life.</p>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/how-to/how-to-fastboot-or-adb-on-ubuntu-returning-no-devices-or-waiting-for-device-heres-how-to-fix-it/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Does your HTC Desire/Nexus One have an AMOLED screen or a Super LCD screen? Here’s how to tell the difference.</title>
		<link>http://sigsays.com/how-to/does-your-htc-desirenexus-one-have-an-amoled-screen-or-an-lcd-screen-heres-how-to-tell-the-diffrence/</link>
		<comments>http://sigsays.com/how-to/does-your-htc-desirenexus-one-have-an-amoled-screen-or-an-lcd-screen-heres-how-to-tell-the-diffrence/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 09:39:09 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=517</guid>
		<description><![CDATA[After a few hours of pulling my hair out digging around in the system files in an attempt to find a way to determine if someone&#8217;s HTC Desire has an AMOLED screen or a Super LCD screen, I realized there was a much easier way to tell the difference. An AMOLED screen doesn&#8217;t actually display [...]]]></description>
			<content:encoded><![CDATA[<p>After a few hours of pulling my hair out digging around in the system files in an attempt to find a way to determine if someone&#8217;s <a href="http://www.amazon.com/exec/obidos/ASIN/B0038JDF3E/sigisfunny-20/" target="_blank">HTC Desire</a> has an AMOLED screen or a Super LCD screen, I realized there was a much easier way to tell the difference.</p>
<p>An AMOLED screen doesn&#8217;t actually display the color black at all, it simply turns off any pixel that is supposed to be pure black.</p>
<p>An LCD screen, on the other hand, does actively render the color black.</p>
<p>As such, an AMOLED screen displaying a black pixel looks exactly the same as an AMOLED screen that&#8217;s &#8220;turned off&#8221;, while an LCD screen looks decidedly different.</p>
<p>So, if you open photoshop/paint/whatever, and make an image that&#8217;s totally black, (hex code #000000), or just use this one I&#8217;ve so helpfully provided, it will look a lot different on an AMOLED screen than it does on an LCD.</p>
<p>This is black.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/08/black.jpg"><img class="alignnone size-medium wp-image-518" title="black" src="http://sigsays.com/wordpress/wp-content/uploads/2010/08/black-180x300.jpg" alt="" width="180" height="300" /></a></p>
<p>This is that very same image displayed on a Nexus One, with an AMOLED screen (left) and a <a href="http://www.amazon.com/exec/obidos/ASIN/B003XVYBU8/sigisfunny-20/" target="_blank">Dell Streak</a>, with an LCD screen (right), in the dark.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/08/darkon.jpg"><img class="alignnone size-medium wp-image-519" title="darkon" src="http://sigsays.com/wordpress/wp-content/uploads/2010/08/darkon-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>And both off, in darkness.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/08/darkoff.jpg"><img class="alignnone size-medium wp-image-520" title="darkoff" src="http://sigsays.com/wordpress/wp-content/uploads/2010/08/darkoff-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Note the AMOLED Nexus One looks the same, where it&#8217;s obvious when the Streak&#8217;s screen is on.</p>
<p>Now in normal light. Both powered on. Nexus One on the left, Streak on the right.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/08/lighton.jpg"><img class="alignnone size-medium wp-image-521" title="lighton" src="http://sigsays.com/wordpress/wp-content/uploads/2010/08/lighton-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>And again powered off.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/08/lightoff.jpg"><img class="alignnone size-medium wp-image-522" title="lightoff" src="http://sigsays.com/wordpress/wp-content/uploads/2010/08/lightoff-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Again, you can clearly tell when the Streak&#8217;s LCD screen is powered on, but the Nexus One&#8217;s AMOLED screen looks the same. This should be a pretty easy indicator as to which screen you have.</p>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/how-to/does-your-htc-desirenexus-one-have-an-amoled-screen-or-an-lcd-screen-heres-how-to-tell-the-diffrence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Unlock Your Nexus One and Flash a Modded ROM.</title>
		<link>http://sigsays.com/how-to/how-to-unlock-your-nexus-one-and-flash-a-modded-rom/</link>
		<comments>http://sigsays.com/how-to/how-to-unlock-your-nexus-one-and-flash-a-modded-rom/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 20:50:42 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=439</guid>
		<description><![CDATA[I wrote this for a forum post, and figured I would share it here too. Hope it helps. Check the XDA Developers forum and http://www.cyanogenmod.com/ for a lot more info. None of these files/roms were written by me, and all credit goes to the people who did the hard work. As usual, I assume no [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote this for a forum post, and figured I would share it here too. Hope it helps. Check the <a href="http://forum.xda-developers.com/forumdisplay.php?f=556" target="_blank">XDA Developers</a> forum and <a href="http://www.cyanogenmod.com/">http://www.cyanogenmod.com/</a> for a lot more info. None of these files/roms were written by me, and all credit goes to the people who did the hard work. As usual, I assume no responsibility. Unlocking your bootloader will technically void your warranty. I&#8217;m just telling you what worked for me, I&#8217;m not a professional. I wouldn&#8217;t even listen to me, I&#8217;m usually drunk. There&#8217;s a solid chance I&#8217;m just making all of this up. Also, I did this all on a Mac running OSX Snow Leopard. If Linux/Windows/Whatever is vastly different, you&#8217;re boned, and it&#8217;s not my fault. Essentially: Don&#8217;t come crying to me.</p>
<p>Download the Android SDK:</p>
<p><a href="http://developer.android.com/sdk/index.html" target="_blank">http://developer.android.com/sdk/index.html</a></p>
<p>This will get you a .zip file. I would extract it to the root of a drive  or just one folder down (like to C:/ or ~/ in mac or C:/sdk) You&#8217;ll understand why later. After it&#8217;s extracted, go find the &#8220;tools&#8221; folder. Double click the &#8220;Android&#8221; file. It will pop up a command/terminal window, then a GUI. In the GUI, click on &#8220;Available Packages&#8221;, select all of them and install. This will take a bit. When it&#8217;s done, you can just close the window and the command prompt.</p>
<p>Now you need to add fastboot. You can compile it yourself, but that would be silly. Here&#8217;s a windows 32 bit version <a href="http://forum.xda-developers.com/showthread.php?t=463627" target="_blank">I found on XDA</a>:</p>
<p><a href="http://files.me.com/mzsigler/v94lxh" target="_blank">http://files.me.com/mzsigler/v94lxh</a></p>
<p>Extract the zip to the &#8220;tools&#8221; folder in the android SDK.</p>
<p>Here&#8217;s the Mac version, it&#8217;s not compressed, just download it and put it in the &#8220;tools&#8221; folder of SDK, no need to unzip.</p>
<p><a href="http://files.me.com/mzsigler/29kua4" target="_blank">http://files.me.com/mzsigler/29kua4</a></p>
<p>In all honesty, I don&#8217;t remember where I downloaded that file, but it works great. If you compiled it, please let me know and I&#8217;ll credit you.</p>
<p>Then you need Amon&#8217;s recovery image. Save it in the &#8220;tools&#8221; folder in your  SDK (picking up on a pattern here?).</p>
<p><a href="http://rapidshare.com/files/366400383/recovery-RA-nexus-v1.7.0.img" target="_blank">http://rapidshare.com/files/366400383/recovery-RA-nexus-v1.7.0.img</a></p>
<p>Then you need a new rom. Download it to your computer, then move it to the SD card on your phone, don&#8217;t unzip it  or anything. I highly suggest this one from <a href="http://www.cyanogenmod.com/" target="_blank">CyanogenMod</a>. His roms are fast and stable, by far the best I&#8217;ve found.</p>
<p><a href="http://n0rp.chemlab.org/android/nexus/update-cm-5.0.6-N1-signed.zip" target="_blank">http://n0rp.chemlab.org/android/nexus/update-cm-5.0.6-N1-signed.zip</a></p>
<p>I believe in windows you need to download some drivers, but I&#8217;m not  sure, as OS X didn&#8217;t require any drivers. Windows users should google &#8220;Android USB drivers&#8221; right about now, and come back when they&#8217;ve made sure they have the right ones.</p>
<p>Connect your phone via usb and put it in bootloader mode by turning it off, then holding the  trackball down while you power it back on. It should boot a white screen and say &#8220;Fastboot USB&#8221; near the top.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_6503.png"><img class="alignnone size-medium wp-image-466" title="IMG_6503" src="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_6503-300x225.png" alt="" width="300" height="225" /></a></p>
<p>On your computer, open Command Prompt or Terminal, depending on your OS, and navigate to the  folder the SDK is in and find the &#8220;tools&#8221; folder. If you listened to me and saved it somewhere easy, like the root of a drive, this is simple. Say you saved it in C:/sdk. You would click the start button, then &#8220;run&#8221;, then &#8220;cmd&#8221;. This gives you a command prompt. To get to the proper folder, you would type &#8220;cd\&#8221; to go to the root of C:, just so we&#8217;re all on the same page, then &#8220;cd sdk/*android_sdk_orwhatevertheynamedit*/tools&#8221;. In my case, on a mac, it&#8217;s &#8220;cd /android/android-sdk-mac_86/tools&#8221; If that still doesn&#8217;t make it clear, you might be better off just leaving your phone on the stock rom. Effectively, navigate to the tools folder of the sdk in terminal/command.</p>
<p>Now type &#8220;fastboot devices&#8221; and hit the enter key (Or &#8220;./fastboot-mac devices&#8221; for a mac) and see if it recognizes that your phone is connected If so, you&#8217;re ready to go.</p>
<p><strong>*When you unlock the bootloader in the next step, it will wipe the phone and erase all of your data. Any pics on the SD card are safe, and you can redownload the apps you&#8217;ve paid for, but if you have a text or something you find important, make sure it&#8217;s backed up*</strong></p>
<p>First unlock the bootloader. Type &#8220;fastboot oem unlock&#8221;  then hit enter (Mac: &#8220;./fastboot-mac oem unlock&#8221;). It should walk  you through the unlock process and warn you that your warranty will be  void. Just follow the instructions. Once you&#8217;re done, boot back into  bootloader mode by holding trackball and powering up. You should have an open lock under the multicolored Nexus X now.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2511.png"><img class="alignnone size-medium wp-image-464" title="IMG_2511" src="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2511-300x225.png" alt="" width="300" height="225" /></a></p>
<p>It will take you back through setup, but you can just power down, since you&#8217;ll have to setup again when you flash the new rom.</p>
<p>Now you&#8217;re gonna flash the recovery image. Again, hold the trackball while you boot the phone to put it in bootloader mode, and again, in command prompt,  navigate to the /tools folder and type &#8220;fastboot flash recovery  recovery-RA-nexus-v1.7.0.img&#8221; (Mac: &#8220;./fastboot-mac flash recovery recovery-RA-nexus-v1.7.0.img&#8221;)</p>
<p>It should flash the recovery image. Now reboot into bootloader again. (Hold the trackball while you power your phone on)  This time use the volume and top (screen lock) button to navigate. Press the top button to select &#8220;bootloader&#8221;.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2506.png"><img class="alignnone size-medium wp-image-460" title="IMG_2506" src="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2506-225x300.png" alt="" width="225" height="300" /></a></p>
<p>It will load another screen. Press the volume down button to select &#8220;recovery&#8221;. At first it will do nothing, this is normal, it&#8217;s checking the device. You&#8217;ll see a few things flash on the screen in green, again, normal.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2507.png"><img class="alignnone size-medium wp-image-461" title="IMG_2507" src="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2507-300x225.png" alt="" width="300" height="225" /></a></p>
<p>It will go back to the menu, and now you can use volume down to select &#8220;recovery&#8221;.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2508.png"><img class="alignnone size-medium wp-image-462" title="IMG_2508" src="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2508-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Highlight it and press the top button to select it. You&#8217;ll see the multicolored X as it boots into recovery. At this point, your trackball will be used to select things.</p>
<p>Go to &#8220;Wipe&#8221; and do a &#8220;Factory Reset&#8221; wipe first, then go back to the main menu.</p>
<p>Select &#8220;Flash zip from sd card&#8221;, pick the file I had you download above (the rom file),  confirm that you want to flash.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2509.png"><img class="alignnone size-medium wp-image-463" title="IMG_2509" src="http://sigsays.com/wordpress/wp-content/uploads/2010/04/IMG_2509-300x225.png" alt="" width="300" height="225" /></a></p>
<p>Once it finishes you&#8217;re done. Boot up and set up your phone.</p>
<p>Email <a href="mailto:mobilesig@gmail.com" target="_blank">mobilesig@gmail.com</a> if you spot any mistakes.</p>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/how-to/how-to-unlock-your-nexus-one-and-flash-a-modded-rom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Add &#8220;Send in email&#8221; to your right click menu in Snow Leopard.</title>
		<link>http://sigsays.com/technology/how-to-add-send-in-email-to-your-right-click-menu-in-snow-leopard/</link>
		<comments>http://sigsays.com/technology/how-to-add-send-in-email-to-your-right-click-menu-in-snow-leopard/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 06:34:11 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Macbook]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=415</guid>
		<description><![CDATA[Just checking out automator on the new Macbook, so I thought I would share what I learned. The video is fairly self explainitory, but here&#8217;s the gist: Open Automator. Pick &#8220;Service&#8221; In the right hand pane, at the top, set it so it reads receives (Files or Folders) from (Finder) Now move to the far [...]]]></description>
			<content:encoded><![CDATA[<p>Just checking out automator on the new <a href="http://astore.amazon.com/sigsays-20/detail/B002QQ8EKO" target="_blank">Macbook</a>, so I thought I would share what I learned. The video is fairly self explainitory, but here&#8217;s the gist:</p>
<p>Open Automator.</p>
<p>Pick &#8220;Service&#8221;</p>
<p>In the right hand pane, at the top, set it so it reads receives (Files or Folders) from (Finder)</p>
<p>Now move to the far left and pick the Mail section.</p>
<p>In the next pane to your right, find &#8220;New Mail Message&#8221;, and drag it to the right.</p>
<p>Now save as something that makes sense, in my case &#8220;Send to mail recipient&#8221;</p>
<p>You&#8217;re done. Right click any file or folder on your computer, and at the bottom you&#8217;ll see &#8220;Send to email recipient&#8221; or whatever you named it.</p>
<p>Sounds complicated, but it&#8217;s really insanely simple, the video does a better job of illustrating how easy it is.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/wNo2o0K1X1Y&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/wNo2o0K1X1Y&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/technology/how-to-add-send-in-email-to-your-right-click-menu-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Windows 7 from a USB Thumbdrive, perfect for EeePC&#8217;s</title>
		<link>http://sigsays.com/how-to/install-windows-7-from-a-usb-thumbdrive-perfect-for-eeepcs/</link>
		<comments>http://sigsays.com/how-to/install-windows-7-from-a-usb-thumbdrive-perfect-for-eeepcs/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 11:41:24 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=344</guid>
		<description><![CDATA[So you&#8217;ve got a netbook that came with Windows XP, and you want to put Windows 7 on it, but it doesn&#8217;t have an optical drive. You could buy Asus&#8217; External DVD Drive, which is pretty slick, but if you only need to install Windows, there&#8217;s a way to do it without dropping the money [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve got a <a href="http://www.amazon.com/dp/B002DYIXMI/?tag=sigisfunny-20" target="_blank">netbook</a> that came with Windows XP, and you want to put <a href="http://www.amazon.com/dp/B002DHLV8S/?tag=sigisfunny-20" target="_blank">Windows 7</a> on it, but it doesn&#8217;t have an optical drive. You could buy <a href="http://www.amazon.com/dp/B001U02JZ8/?tag=sigisfunny-20" target="_blank">Asus&#8217; External DVD Drive</a>, which is pretty slick, but if you only need to install Windows, there&#8217;s a way to do it without dropping the money on an optical drive. Pick up any 4GB or larger USB thumb drive, if by some chance you don&#8217;t already have one. I  used an <a href="http://www.amazon.com/dp/B001MWTQQE/?tag=sigisfunny-20" target="_blank">8GB A-Data Drive</a> I had lying around. Get your copy of Windows 7. If you downloaded it, you&#8217;ll need to find where the ISO was saved on your computer. If you&#8217;re using a disc, put it in the disc drive on your other Windows based computer, but don&#8217;t run it, obviously.</p>
<p>Stick the USB drive into your windows based computer, and disconnect any other external drives, just to be on the safe side. You need to make your thumbdrive bootable and format it. Luckily you can do this with a program built into Windows.</p>
<p>Click start, and select &#8220;Run&#8221;. A box will pop up asking you what you want to run. Type &#8220;cmd&#8221;. This will open a command prompt.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/cmd.jpg"><img class="alignnone size-medium wp-image-345" title="cmd" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/cmd-300x148.jpg" alt="" width="300" height="148" /></a></p>
<p>Type &#8220;diskpart&#8221; (without quotation marks) and it will open the command line program DiskPart. You&#8217;ll use this to prepare your thumbdrive.</p>
<p>First, type &#8220;list disk&#8221; and press enter. This will bring up a list of the volumes connected to your computer. You need to determine which is your thumb drive. It should be pretty easy based on the disk size. In my case, I have two 100gb HDD&#8217;s, a 2GB SD card for a camera, and the 8GB thumb drive. The thumb drive is disk 3. Use whichever disk your thumbdrive is, and type &#8220;Select Disk X&#8221;, with X being the number of your drive. This is vitally important. We&#8217;re about to format the volume, which will erase everything on it. If you select the wrong disk, you&#8217;ll lose all the data on the disk you select. Be EXTRA sure you pick the volume number that corresponds to your thumb drive, and if you fuck up, don&#8217;t come bitching to me.</p>
<p>Ok, now we&#8217;ve selected the thumb drive. Type &#8220;clean&#8221; and then hit enter. This will clean the volume.</p>
<p>Now type &#8220;create partition primary&#8221; and hit enter. This creates a primary partition on your thumb drive.</p>
<p>Now &#8220;active&#8221; and press enter. This marks the newly created partition as active, so that you can boot from it.</p>
<p>Finally &#8220;format fs=fat32&#8243; and press enter. This will format your thumbdrive using the FAT32 file system. It will probably take a few minutes, depending on the size of your drive. Here&#8217;s a screenshot of the whole process, so you can compare.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/diskpart.jpg"><img class="alignnone size-medium wp-image-346" title="diskpart" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/diskpart-300x217.jpg" alt="" width="300" height="217" /></a></p>
<p>Now you can close diskpart. The next thing you need to do is extract your windows file to the thumb drive.</p>
<p>You&#8217;re gonna need a program to extract the files, and the best one I know of is 7zip. 7zip is free, open source, and multiplatform. Download and install it from <a href="http://www.7-zip.org/" target="_blank">7-zip.org. </a>It installs like any other program, so I&#8217;ll let you handle that.</p>
<p>Once you have 7zip installed, Hit &#8220;Start&#8221; and &#8220;My Computer&#8221; or &#8220;Computer&#8221; depending on your version of windows. Navigate to where the Windows 7 ISO is located. If it&#8217;s on a disc, it will be in your disk drive. If you downloaded it, it will be where ever you saved it.</p>
<p>Right click on it, and you&#8217;ll see a new menu option, &#8220;7zip&#8221;. Hover over it, and another menu will pop up. Click on &#8220;Extract Files&#8221;</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/7zip.jpg"><img class="alignnone size-medium wp-image-348" title="7zip" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/7zip-300x136.jpg" alt="" width="300" height="136" /></a></p>
<p>Once you do, you&#8217;ll get a popup menu with options to extra the data from your disc image file (ISO). Click on the ellipses (&#8230;), and click &#8220;Computer&#8221;. Navigate down to your thumb drive, and select it as the location to put the extracted files. Should look like this, except with the drive letter of your thumb drive, if it&#8217;s different from mine.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/extractto.jpg"><img class="alignnone size-medium wp-image-350" title="extractto" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/extractto-300x252.jpg" alt="" width="300" height="252" /></a></p>
<p>This might take a few minutes, depending on the speed of your computer and the speed of your USB drive. You should end up with a USB drive that looks like this.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/extracted.jpg"><img class="alignnone size-medium wp-image-349" title="extracted" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/extracted-300x114.jpg" alt="" width="300" height="114" /></a></p>
<p>Now &#8220;Safely Remove Hardware&#8221; and remove your USB drive. You&#8217;re ready to install.</p>
<p>Shut down your netbook and stick the USB drive in it. Boot it up, and go into boot options. On an EeePC, you just tap ESC while it&#8217;s booting up and you&#8217;ll get a menu. On others, you might need to go into BIOS and change the boot order to make USB first. Select the USB drive from boot menu, and hit enter.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/bootdevice.jpg"><img class="alignnone size-medium wp-image-351" title="bootdevice" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/bootdevice-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>It should start loading windows setup as normal, and from there it&#8217;s all the same as installing from a disc.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/installscreen.jpg"><img class="alignnone size-medium wp-image-352" title="installscreen" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/installscreen-300x199.jpg" alt="" width="300" height="199" /></a></p>
<p>Enjoy your new windows installation!</p>
<p><a href="http://www.amazon.com/dp/B002DHLV8S/?tag=sigisfunny-20" target="_blank">Buy Windows 7 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/how-to/install-windows-7-from-a-usb-thumbdrive-perfect-for-eeepcs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to: EeePC SSD Replacement</title>
		<link>http://sigsays.com/technology/how-to-eeepc-ssd-replacement/</link>
		<comments>http://sigsays.com/technology/how-to-eeepc-ssd-replacement/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 11:17:02 +0000</pubDate>
		<dc:creator>Sig</dc:creator>
				<category><![CDATA[EeePC]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://sigsays.com/?p=313</guid>
		<description><![CDATA[I actually upgraded my EeePC SSD from the factory 4GB to a Super Talent 16GB unit a few months ago, but I finally got around to doing a how to. As such, I didn&#8217;t actually swap anything, the SSD is the same in all the pics. First, break out your new SSD. Power your netbook [...]]]></description>
			<content:encoded><![CDATA[<p>I actually upgraded my <a href="http://www.amazon.com/dp/B001Q9C0AW/?tag=sigisfunny-20" target="_blank">EeePC</a> SSD from the factory 4GB to a <a href="http://www.amazon.com/dp/B0028Y4FM0/?tag=sigisfunny-20" target="_blank">Super Talent 16GB</a> unit a few months ago, but I finally got around to doing a how to. As such, I didn&#8217;t actually swap anything, the SSD is the same in all the pics.</p>
<p>First, break out your new SSD.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/1.jpg"><img class="alignnone size-medium wp-image-314" title="1" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/1-300x225.jpg" alt="1" width="300" height="225" /></a></p>
<p>Power your netbook off, and remove the battery. The right side slider should flick to the right and stay there.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2227.jpg"><img class="alignnone size-medium wp-image-315" title="IMG_2227" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2227-300x224.jpg" alt="IMG_2227" width="300" height="224" /></a></p>
<p>Slide the left one to the left, hold it there, and pull the battery toward the rear.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2228.jpg"><img class="alignnone size-medium wp-image-316" title="IMG_2228" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2228-300x224.jpg" alt="IMG_2228" width="300" height="224" /></a></p>
<p>Toward the bottom, you&#8217;ll see two phillips screws. Remove them both.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2229.jpg"><img class="alignnone size-medium wp-image-317" title="IMG_2229" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2229-300x224.jpg" alt="IMG_2229" width="300" height="224" /></a></p>
<p>Pry up a little on the access door, and it will pop right out. The SSD is at the top, the ram is at the bottom.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2230.jpg"><img class="alignnone size-medium wp-image-318" title="IMG_2230" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2230-300x224.jpg" alt="IMG_2230" width="300" height="224" /></a></p>
<p>On the right side of the SSD, you&#8217;ll see two more phillips screws.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2232.jpg"><img class="alignnone size-medium wp-image-319" title="IMG_2232" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2232-300x224.jpg" alt="IMG_2232" width="300" height="224" /></a></p>
<p>Remove these, and the SSD will pop up, like so:</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2236.jpg"><img class="alignnone size-medium wp-image-320" title="IMG_2236" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2236-300x224.jpg" alt="IMG_2236" width="300" height="224" /></a></p>
<p>Slide it out to the right.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2238.jpg"><img class="alignnone size-medium wp-image-321" title="IMG_2238" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2238-300x224.jpg" alt="IMG_2238" width="300" height="224" /></a></p>
<p>Now slide the new one in, and reverse the steps above. Once you get everything buttoned up, install your OS from a thumbdrive or external DVD, and you&#8217;re good to go.</p>
<p><a href="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2241.jpg"><img class="alignnone size-medium wp-image-322" title="IMG_2241" src="http://sigsays.com/wordpress/wp-content/uploads/2009/12/IMG_2241-300x225.jpg" alt="IMG_2241" width="300" height="225" /></a></p>
<p>Enjoy your extra storage space <img src='http://sigsays.com/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://www.amazon.com/dp/B0028Y4FM0/?tag=sigisfunny-20" target="_blank">Super Talent SSD on Amazon</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sigsays.com/technology/how-to-eeepc-ssd-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

