<?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>SurlyJake &#187; install</title>
	<atom:link href="http://www.surlyjake.com/tag/install/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.surlyjake.com</link>
	<description></description>
	<lastBuildDate>Tue, 29 Jun 2010 21:27:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Karmic install cannot login (gdm freezes) Nvidia</title>
		<link>http://www.surlyjake.com/linux/karmic-install-cannot-login-gdm-freezes-nvidia/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=karmic-install-cannot-login-gdm-freezes-nvidia</link>
		<comments>http://www.surlyjake.com/linux/karmic-install-cannot-login-gdm-freezes-nvidia/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 17:13:46 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu Karmic]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[gdm]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[nvidia drivers]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=560</guid>
		<description><![CDATA[On a fresh install of karmic, using an Nvidia 7800 GT. When I went to click on my username to log in, some artifacts would appear on the screen, then the system would freeze. hard. Couldnt even ctrl+alt to another console. Installing the Nvidia drivers fixed the issue. To fix it: Do a hard reset [...]]]></description>
			<content:encoded><![CDATA[<p>On a fresh install of karmic, using an Nvidia 7800 GT. When I went to click on my username to log in, some artifacts would appear on the screen, then the system would freeze. hard. Couldnt even ctrl+alt to another console. Installing the Nvidia drivers fixed the issue. To fix it:</p>
<ol>
<li>Do a hard reset on the machine</li>
<li>When you arrive at the GDM screen, DO NOT CLICK ON ANYTHING.</li>
<li>press CTRL + ALT + F5. Your screen will switch over to a text console.</li>
<li>Log in.</li>
<li>Install the Nvidia glx driver</li>
<pre><code>sudo aptitude install nvidia-glx-new</code></pre>
<li>Reboot the machine.</li>
<pre><code>sudo reboot</code></pre>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/linux/karmic-install-cannot-login-gdm-freezes-nvidia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uninstall ALL Versions of WinZip Batch Script</title>
		<link>http://www.surlyjake.com/windows/uninstall-all-versions-of-winzip-batch-script/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=uninstall-all-versions-of-winzip-batch-script</link>
		<comments>http://www.surlyjake.com/windows/uninstall-all-versions-of-winzip-batch-script/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 20:43:34 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[batch script]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[taskkill]]></category>
		<category><![CDATA[windows management instrumentation]]></category>
		<category><![CDATA[wmic]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=545</guid>
		<description><![CDATA[I have been struggling with this for quite a while, and ran into a lot of issues with all of the different versions on our network. There are people with 100 line .vbs scripts to do this, and I think this is much simpler: @echo off REM REM REM    Detects winzip and silently uninstalls REM   [...]]]></description>
			<content:encoded><![CDATA[<p>I have been struggling with this for quite a while, and ran into a lot of issues with all of the different versions on our network. There are people with 100 line .vbs scripts to do this, and I think this is much simpler:</p>
<pre><code>@echo off
REM
REM
REM    Detects winzip and silently uninstalls
REM    There is a un-stoppable pop-up window. so this will kill
REM    all instances of  IE after the UN-installation.
REM
REM
REM
taskkill /F /IM wzqkpick.exe
wmic product where "name like '%%winzip%%'" call Uninstall
REM
REM This section is for WinZip <12
REM
If Exist "%programfiles(x86)%\Winzip\winzip32.exe" GOTO 64
If Exist "%programfiles%\Winzip\winzip32.exe" "%programfiles%\WinZip\Winzip32.exe" /Uninstallx
taskkill /F /IM iexplore.exe
GOTO :END
:64
"%programfiles(x86)%\WinZip\Winzip32.exe" /Uninstallx
taskkill /F /IM iexplore.exe
:END</code></pre>
<p>For getting rid of WinZip 12, the magic happens in the 'wmic' line. It searches all of the installed product's names for "winzip" and will uninstall anything it finds. This only works for products that use MSI's. If you ran this outside of a batch file, you will have to use a single % percentage sign instead of the %% double percentage sign... Windows scripting sucks, and that's just the way it is. Same thing that happens in "FOR" loops. </p>
<p>I never knew anything about the Windows management instrumentation control (wmic) until now, but I will be sure to exploit it's features. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/windows/uninstall-all-versions-of-winzip-batch-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tethered Blackberry Modem on Ubuntu Karmic</title>
		<link>http://www.surlyjake.com/linux/ubuntu-karmic/tethered-blackberry-modem-on-ubuntu-karmic/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=tethered-blackberry-modem-on-ubuntu-karmic</link>
		<comments>http://www.surlyjake.com/linux/ubuntu-karmic/tethered-blackberry-modem-on-ubuntu-karmic/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 22:54:43 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Ubuntu Karmic]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[verizon]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=540</guid>
		<description><![CDATA[Using your blackberry as a 3G (in my case) modem proved to be Incredibly simple. There are five million different methods to do this and many have you compiling stuff and editing text files. I love those sorts of things, but this is much easier. I Wish that I had tried this sooner. **Confirmed using [...]]]></description>
			<content:encoded><![CDATA[<p>Using your blackberry as a 3G (in my case) modem proved to be Incredibly simple. There are five million different methods to do this and many have you compiling stuff and editing text files. I love those sorts of things, but this is much easier. I Wish that I had tried this sooner.</p>
<p>**Confirmed using Blackberry Tour (9630) on Verizon. **</p>
<p>What we will do is use a program called &#8216;barry&#8217;. <a href="http://www.netdirect.ca/software/packages/barry" target="_blank">http://www.netdirect.ca/software/packages/barry</a> All we need to do is install some packages from the repository below. These commands are from the terminal, so launch it from &#8220;Applications -> Accessories -> Terminal&#8221; in the Menu.</p>
<p>Edit /etc/apt/sources.list</p>
<pre><code>sudo nano /etc/apt/sources.list</code></pre>
<p>add these lines:</p>
<pre><code>deb http://ppa.launchpad.net/doctormo/barry-snapshot/ubuntu karmic main
deb-src http://ppa.launchpad.net/doctormo/barry-snapshot/ubuntu karmic main</code></pre>
<p>install the repositories key. </p>
<pre><code>sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 113659DF</code></pre>
<p>Now update your package list</p>
<pre><code>sudo aptitude update</code></pre>
<p>and install the programs:</p>
<pre><code>sudo aptitude install libbarry0 barry-util barrybackup-gui</code></pre>
<p>Thats it! now to create the connection, the command will vary depending on your provider. The ones they have preconfigured are: ATT Cingular, China Mobile, KPN Nederland, O2 Ireland, Rogers, Sprint, T-Mobile US, Verizon.<br />
the syntax is :<br />
sudo pppd call barry-{provider}</p>
<p>for Verizon:</p>
<pre><code>sudo pppd call barry-verizon</code></pre>
<p>You&#8217;ll see a bunch of output, and it&#8217;ll tell you that the connection is up. to close it down, press (CTRL+C). Make it pretty by creating an application launcher on your desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/linux/ubuntu-karmic/tethered-blackberry-modem-on-ubuntu-karmic/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Install the proprietary Closed source version of Virtualbox on Debian Lenny</title>
		<link>http://www.surlyjake.com/linux/debian-lenny/install-the-proprietary-closed-source-version-of-virtualbox-on-debian-lenny/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=install-the-proprietary-closed-source-version-of-virtualbox-on-debian-lenny</link>
		<comments>http://www.surlyjake.com/linux/debian-lenny/install-the-proprietary-closed-source-version-of-virtualbox-on-debian-lenny/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 17:21:28 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Debian Lenny]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=291</guid>
		<description><![CDATA[I like the closed source version of virtualbox. I just do. This is how to install it quickly and simply: add this to sources.list deb http://download.virtualbox.org/virtualbox/debian lenny non-free run this to get the public key and install it: wget -q http://download.virtualbox.org/virtualbox/debian/sun_vbox.asc -O- &#124; sudo apt-key add - then just install it aptitude install virtualbox-2.1 this [...]]]></description>
			<content:encoded><![CDATA[<p>I like the closed source version of virtualbox. I just do. This is how to install it quickly and simply:</p>
<p>add this to sources.list</p>
<pre><code>deb http://download.virtualbox.org/virtualbox/debian lenny non-free</code></pre>
<p>run this to get the public key and install it:</p>
<pre><code>wget -q http://download.virtualbox.org/virtualbox/<span class="searchword0">deb</span>ian/sun_vbox.asc -O- | sudo apt-key add -</code></pre>
<p>then just install it</p>
<pre><code>aptitude install virtualbox-2.1</code></pre>
<p>this will automatically create the group &#8220;vboxusers&#8221; and add the user who installed it to the group. If you need to add others:</p>
<pre><code>sudo adduser `[username]` vboxusers</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/linux/debian-lenny/install-the-proprietary-closed-source-version-of-virtualbox-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->