<?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>Operating systems &#8211; Henry Poon&#039;s Blog</title>
	<atom:link href="https://blog.henrypoon.com/blog/tag/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.henrypoon.com</link>
	<description></description>
	<lastBuildDate>Tue, 04 Oct 2022 22:11:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">83044199</site>	<item>
		<title>Running Selenium Webdriver on WSL2</title>
		<link>https://blog.henrypoon.com/blog/2020/09/27/running-selenium-webdriver-on-wsl2/</link>
					<comments>https://blog.henrypoon.com/blog/2020/09/27/running-selenium-webdriver-on-wsl2/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Mon, 28 Sep 2020 00:49:34 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[APT]]></category>
		<category><![CDATA[AWK]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[Error message]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Firefox version history]]></category>
		<category><![CDATA[Flag]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Graphical user interface testing]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[IP address]]></category>
		<category><![CDATA[ise]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Lag]]></category>
		<category><![CDATA[lamb]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Lie]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Parameter]]></category>
		<category><![CDATA[PATH]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Resolv.conf]]></category>
		<category><![CDATA[Rolling]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Sleep]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Struct]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Ubuntu version history]]></category>
		<category><![CDATA[USR]]></category>
		<category><![CDATA[Variable]]></category>
		<category><![CDATA[Web development software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">https://blog.henrypoon.com/?p=6269</guid>

					<description><![CDATA[This is a newer version of the post that I made before on how to run Selenium on WSL, but this one is on doing it in WSL2. The instructions are similar at a high level but there are some additional gotchas. You will need: WSL2 setup with Firefox installed (mine uses Ubuntu 20.04) VcXsrv [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">This is a newer version of the post that I made before on <a href="https://blog.henrypoon.com/blog/2017/06/18/running-selenium-webdriver-on-bash-for-windows/" target="_blank" rel="noreferrer noopener">how to run Selenium on WSL</a>, but this one is on doing it in WSL2.  The instructions are similar at a high level but there are some additional gotchas.</p>



<p class="wp-block-paragraph">You will need:</p>



<ul class="wp-block-list"><li><a rel="noreferrer noopener" href="https://msdn.microsoft.com/en-us/commandline/wsl/install_guide" target="_blank">WSL2 setup</a> with Firefox installed (mine uses Ubuntu 20.04)</li><li><a rel="noreferrer noopener" href="https://sourceforge.net/projects/vcxsrv/" target="_blank">VcXsrv</a></li><li><a rel="noreferrer noopener" href="https://github.com/mozilla/geckodriver/releases" target="_blank">geckodriver</a></li></ul>



<h2 class="wp-block-heading">How it works</h2>



<p class="wp-block-paragraph">VcXsrv starts up an X server on the Windows host machine, and what WSL will do is connect to this server to pass on the details of what programs need to be displayed (in this case, the browser window).  Geckodriver is there purely as a middle layer for Selenium to be able to interact with Firefox.</p>



<h2 class="wp-block-heading">VcXsrv setup</h2>



<p class="wp-block-paragraph">This setups the X server so that Windows can display graphical data coming from the Ubuntu instance.</p>



<ol class="wp-block-list"><li>Download and install</li><li>Start it up with the the command line parameter &#8220;-ac&#8221;.  This flag removes access control restrictions for connecting clients (which is okay as long as this server isn&#8217;t exposed on the open Internet and that the only client connecting is the Ubuntu instance)</li><li>Allow connections to VcXsrv on Windows Firewall</li></ol>



<p class="wp-block-paragraph">The &#8220;-ac&#8221; flag and allowing the program through Windows Firewall is pretty important.  When I didn&#8217;t do this, Ubuntu would give me cryptic error messages like &#8220;Broadway display type not supported&#8221;, but once I set up these access controls, everything was fine.</p>



<h2 class="wp-block-heading">Bash setup</h2>



<p class="wp-block-paragraph">Install firefox</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">sudo apt install firefox</code></pre>



<p class="wp-block-paragraph">Export DISPLAY variable in .bashrc (or for whatever terminal you use, maybe .zshrc, etc.)</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">export DISPLAY=$(ip route | awk '{print $3; exit}'):0</code></pre>



<p class="wp-block-paragraph">This will configure your DISPLAY variable to use the IP address listed in the resolv.conf file.  The IP address listed there is the IP address of the X server that will be used for displaying the browser window.</p>



<p class="wp-block-paragraph">Start up VcXsrv as described in the above and then try to open Firefox.  The Firefox window should open.</p>



<h2 class="wp-block-heading">Geckodriver setup</h2>



<p class="wp-block-paragraph">This acts purely as the API interface that allows Selenium to interact with Firefox.  Selenium looks for this executable when controlling the web browser.</p>



<ol class="wp-block-list"><li>Download geckodriver (make sure to get the Linux one and not the Windows one)</li><li>Put it in /usr/bin (or alternatively some other folder in your PATH)</li></ol>



<h2 class="wp-block-heading">Selenium sample on Python</h2>



<p class="wp-block-paragraph">I tend to use Python when running Selenium code, and I haven&#8217;t tried it on another language (I imagine the principles are similar).  Here is a piece of sample code for starting up the browser and opening up a website, but really any Selenium code can be used.</p>



<pre class="wp-block-code"><code lang="python" class="language-python">import time

from selenium import webdriver
from selenium.webdriver import DesiredCapabilities

def execute_with_retry(method, max_attempts):
    e = None
    for i in range(0, max_attempts):
        try:
            return method()
        except Exception as e:
            print(e)
            time.sleep(1)
    if e is not None:
        raise e

capabilities = DesiredCapabilities.FIREFOX
capabilities["marionette"] = True
firefox_bin = "/usr/bin/firefox"
browser = execute_with_retry(lambda: webdriver.Firefox(
    firefox_binary=firefox_bin, capabilities=capabilities), 10)

browser.get("https://www.google.com")

time.sleep(10)

browser.close()</code></pre>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2020/09/27/running-selenium-webdriver-on-wsl2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6269</post-id>	</item>
		<item>
		<title>Setting up your own Counter-Strike 1.6 dedicated server via Docker</title>
		<link>https://blog.henrypoon.com/blog/2018/09/23/setting-up-your-own-counter-strike-1-6-dedicated-server-via-docker/</link>
					<comments>https://blog.henrypoon.com/blog/2018/09/23/setting-up-your-own-counter-strike-1-6-dedicated-server-via-docker/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Sun, 23 Sep 2018 20:00:12 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[Chan]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[Contents]]></category>
		<category><![CDATA[Counter-Strike]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Directory]]></category>
		<category><![CDATA[Docker]]></category>
		<category><![CDATA[Filesystem Hierarchy Standard]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[HLDS]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[ise]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[PATH]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Sleep]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[System administration]]></category>
		<category><![CDATA[System software]]></category>
		<category><![CDATA[Systemd]]></category>
		<category><![CDATA[Team]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[USR]]></category>
		<category><![CDATA[Variable]]></category>
		<guid isPermaLink="false">https://blog.henrypoon.com/?p=2992</guid>

					<description><![CDATA[Once upon a time, you had to run the HLDSUpdateTool, and then SteamCMD. But now, awesome people on the internet have created Docker images for setting up a Counter-Strike 1.6 dedicated server. Now, all you have to do is: Install Docker on your machine Get a Docker image for a CS 1.6 server (I created [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Once upon a time, you had to run the HLDSUpdateTool, and then SteamCMD. But now, awesome people on the internet have created Docker images for setting up a Counter-Strike 1.6 dedicated server. Now, all you have to do is:</p>



<ol class="wp-block-list"><li>Install Docker on your machine</li><li>Get a Docker image for a CS 1.6 server (I created <a rel="noreferrer noopener" href="https://github.com/hpoon/HLDS-CS1.6" target="_blank">this one</a>, which is based off of an <a rel="noreferrer noopener" href="https://github.com/kriansa/cs-16-server" target="_blank">existing one</a>. Mine has:<ul><li>A lot of maps</li><li>Metamod</li><li>AMXModX (with high ping kicker, podbot control menu, round money, rock the vote, and admin all in one)</li><li>Podbot</li></ul></li><li>Customise the server (e.g. editing the server.cfg, amxx.cfg, and other config files, etc.)</li><li>Start it up! (the README.md in the above linked Git repos has more info on this)</li></ol>



<p class="wp-block-paragraph">As far as ports go, I only needed to forward 27015 on my machine, but your mileage may vary. Others have reported that <a rel="noreferrer noopener" href="https://developer.valvesoftware.com/wiki/Half-Life_Dedicated_Server" target="_blank">some more ports</a> must also be forwarded on some machines.</p>



<p class="wp-block-paragraph">Then optionally, if you&#8217;re running Ubuntu and you want this server to start up like a service via systemd, you&#8217;ll need this:</p>



<ol class="wp-block-list"><li>An executable script with path /usr/local/bin/hlds with contents (make sure the DIR variable matches your installation directory):</li></ol>



<pre class="wp-block-code"><code lang="bash" class="language-bash">#!/bin/sh

# Do not change this path
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin

# The path to the game you want to host. example = /home/newuser/dod
DIR=/opt/cs-16-server/bin
DAEMON=./server

start()
{
    echo  -n "Starting HLDS"
    if [ -e $DIR ]; then
        cd $DIR
        $DAEMON start
    else
        echo "No such directory: $DIR!"
    fi
}

stop()
{
    echo -n "Stopping HLDS"
    if [ -e $DIR ]; then
        cd $DIR
        $DAEMON stop
    else
        echo "No such directory: $DIR!"
    fi
}

reload()
{
    echo -n "Restarting HLDS"
    stop
    sleep 1
    start
}

case "$1" in
    start|stop|reload)
        "$1"
        ;;
    *)
        echo  "Usage: $ 0 {start | stop | reload | status}"
        exit  1
        ;;
esac

exit  0</code></pre>



<ol class="wp-block-list" start="2"><li>A script with path /etc/systemd/system/hlds.service with contents:</li></ol>



<pre class="wp-block-code"><code lang="properties" class="language-properties">[Unit]
Description=HLDS

[Service]
Type=oneshot
ExecStart=/usr/local/bin/hlds start
ExecStop=/usr/local/bin/hlds stop
ExecReload=/usr/local/bin/hlds reload
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target</code></pre>



<ol class="wp-block-list" start="3"><li>Then execute:</li></ol>



<pre class="wp-block-code"><code lang="bash" class="language-bash">systemctl daemon-reload
systemctl enable hlds
service hlds start</code></pre>



<p class="wp-block-paragraph">Feel free to check out my server that&#8217;s running right now with the same Docker image! Here&#8217;s the command to connect via the console.</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">connect henrypoon.com:27015</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2018/09/23/setting-up-your-own-counter-strike-1-6-dedicated-server-via-docker/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2992</post-id>	</item>
		<item>
		<title>Moving an OS to another disk and still have it boot with Linux</title>
		<link>https://blog.henrypoon.com/blog/2016/01/28/moving-an-os-to-another-disk-and-still-have-it-boot-with-linux/</link>
					<comments>https://blog.henrypoon.com/blog/2016/01/28/moving-an-os-to-another-disk-and-still-have-it-boot-with-linux/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Fri, 29 Jan 2016 05:18:36 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Booting]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Contents]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Device file]]></category>
		<category><![CDATA[Disk partitioning]]></category>
		<category><![CDATA[Disk partitions]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[Final]]></category>
		<category><![CDATA[GNU GRUB]]></category>
		<category><![CDATA[GNU Parted]]></category>
		<category><![CDATA[GParted]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Multi-booting]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Plug]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Solid-state drive]]></category>
		<category><![CDATA[System software]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">https://blog.henrypoon.com/?p=2194</guid>

					<description><![CDATA[For the longest time, I&#8217;ve had an 80 GB HDD running my Windows partition (dual-boot setup with Ubuntu on a SSD), but now I&#8217;ve finally upgraded the Windows partition to an SSD as well. I looked into how to clone my Windows partition onto the SSD, such that I can still boot the disk. I [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">For the longest time, I&#8217;ve had an 80 GB HDD running my Windows partition (dual-boot setup with Ubuntu on a SSD), but now I&#8217;ve finally upgraded the Windows partition to an SSD as well. I looked into how to clone my Windows partition onto the SSD, such that I can still boot the disk.</p>



<p class="wp-block-paragraph">I already have Ubuntu as my main OS, so copying the disk was easy using <a href="http://linux.die.net/man/1/dd" target="_blank" rel="noopener noreferrer">dd</a>, which allows copying all the contents of one disk to another. This works well when the new hard drive is greater than or the same size as the current hard drive (I upgraded from a 80GB HDD to a 128GB SSD).</p>



<p class="wp-block-paragraph">First I run this to see which disk I am copying from and to</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">fdisk -l</code></pre>



<p class="wp-block-paragraph">Then I run dd. If I am copying from /dev/sda to /dev/sda, then it&#8217;s:</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">dd if=/dev/sda of=/dev/sdb</code></pre>



<p class="wp-block-paragraph">But sometimes the disks don&#8217;t have the same size, so I used gparted to move/resize the partitions to make use of the extra space on the new disk. gparted complained that it might make my disk no bootable, but the disk was still bootable for me nonetheless. I didn&#8217;t even have to mess with any grub bootloader settings either. I simply unplugged the old disk, and left the new disk plugged in and booted into the new disk no problem.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2016/01/28/moving-an-os-to-another-disk-and-still-have-it-boot-with-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2194</post-id>	</item>
		<item>
		<title>Running LINE Messenger in Ubuntu 14.04</title>
		<link>https://blog.henrypoon.com/blog/2015/02/09/running-line-messenger-in-ubuntu-14-04/</link>
					<comments>https://blog.henrypoon.com/blog/2015/02/09/running-line-messenger-in-ubuntu-14-04/#comments</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Mon, 09 Feb 2015 22:25:38 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[9]]></category>
		<category><![CDATA[APT]]></category>
		<category><![CDATA[BackSlash Linux]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Chrome OS]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[Computing platforms]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Lie]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Lubuntu]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[System software]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WINE]]></category>
		<guid isPermaLink="false">https://www.henrypoon.com/blog/?p=2039</guid>

					<description><![CDATA[LINE is a messaging program kind of like WhatsApp, but it has a desktop client. &#160;However, this desktop client only runs on Windows. &#160;On Linux, it has to run under Wine, which&#160;allows running Windows programs (some) inside the Linux environment. &#160;Caveat: sending stickers does not appear to work. UPDATE 7. JULY 2015: Since this post, [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">LINE is a messaging program kind of like WhatsApp, but it has a desktop client. &nbsp;However, this desktop client only runs on Windows. &nbsp;On Linux, it has to run under <a href="https://www.winehq.org/" target="_blank" rel="noopener noreferrer">Wine</a>, which&nbsp;allows running Windows programs (some) inside the Linux environment. &nbsp;Caveat: sending stickers does not appear to work.</p>



<p class="wp-block-paragraph">UPDATE 7. JULY 2015: Since this post, my version of LINE has been updated to 4.0.3.367, and it looks like stickers work now!</p>



<p class="wp-block-paragraph"><span style="color: #ff0000;">UPDATE 31. JULY 2016: Looks like in July 2015, LINE released a Chrome app.  Users of Chrome can just use that extension instead of using this method:</span> <a href="https://chrome.google.com/webstore/detail/line/ophjlpahpchlmihnnnihgmmeilfjmjjc" target="_blank" rel="noreferrer noopener">Link</a></p>



<p class="wp-block-paragraph">Running LINE in Ubuntu 14.04</p>



<ol class="wp-block-list"><li>Install Wine</li></ol>



<pre class="wp-block-code"><code lang="bash" class="language-bash">sudo apt-get install wine</code></pre>



<ol class="wp-block-list" start="2"><li>Install VC++ 2008 Redistributable</li></ol>



<pre class="wp-block-code"><code lang="bash" class="language-bash">winetricks vcrun2008</code></pre>



<ol class="wp-block-list" start="3"><li>Download and install <a href="http://line.me/en-US/download" target="_blank" rel="noopener noreferrer">LINE</a> for Windows</li></ol>



<p class="wp-block-paragraph">Without installing the VC++ 2008 Redistributable, LINE would intermittently crash (even though it was able to start correctly). &nbsp;This worked on my Ubuntu 14.04 x64 system.</p>



<p class="wp-block-paragraph">LINE Version: 3.9.1.188<br>Wine Version: 1.6.2</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2015/02/09/running-line-messenger-in-ubuntu-14-04/feed/</wfw:commentRss>
			<slash:comments>26</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2039</post-id>	</item>
		<item>
		<title>Installing Epson WF-3520 Printer on Ubuntu</title>
		<link>https://blog.henrypoon.com/blog/2015/01/30/installing-epson-wf-3520-printer-on-ubuntu/</link>
					<comments>https://blog.henrypoon.com/blog/2015/01/30/installing-epson-wf-3520-printer-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Sat, 31 Jan 2015 07:37:18 +0000</pubDate>
				<category><![CDATA[gaming]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[Computer printers]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[epson]]></category>
		<category><![CDATA[Find]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Office equipment]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Printer]]></category>
		<category><![CDATA[printer setup]]></category>
		<category><![CDATA[Seiko Epson]]></category>
		<category><![CDATA[System software]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.henrypoon.com/blog/?p=2026</guid>

					<description><![CDATA[Just had an issue where I couldn&#8217;t set up my printer (connected on the network) on my Ubuntu machine because I didn&#8217;t have the drivers. &#160;The automatic printer set up would keep crashing half way through. This post from askubuntu.com hits this issue right on the head:&#160;http://askubuntu.com/questions/333534/installing-epson-wf-3520 I thought I&#8217;d leave a post here, just [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Just had an issue where I couldn&#8217;t set up my printer (connected on the network) on my Ubuntu machine because I didn&#8217;t have the drivers. &nbsp;The automatic printer set up would keep crashing half way through.</p>
<p>This post from <a href="http://askubuntu.com" target="_blank" rel="noopener noreferrer">askubuntu.com</a> hits this issue right on the head:&nbsp;<a href="http://askubuntu.com/questions/333534/installing-epson-wf-3520" target="_blank" rel="noopener noreferrer">http://askubuntu.com/questions/333534/installing-epson-wf-3520</a></p>
<p>I thought I&#8217;d leave a post here, just so I know where to find it again in case I forget.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2015/01/30/installing-epson-wf-3520-printer-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2026</post-id>	</item>
		<item>
		<title>Switching Microsoft Windows and Office to English</title>
		<link>https://blog.henrypoon.com/blog/2011/01/20/switching-microsoft-windows-and-office-to-english/</link>
					<comments>https://blog.henrypoon.com/blog/2011/01/20/switching-microsoft-windows-and-office-to-english/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Thu, 20 Jan 2011 18:40:36 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[Chan]]></category>
		<category><![CDATA[Click]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Control Panel]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Find]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Graphical user interfaces]]></category>
		<category><![CDATA[Icon]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Start menu]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows Me]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/switching-microsoft-windows-and-office-to-english</guid>

					<description><![CDATA[At my workplace, all the computers are in German.&#160; I do not read German.&#160; I get by by remembering what buttons were where in the Windows version.&#160; Luckily, I managed to switch the language to English. Switching the Language for Windows To do this, go to the Control Panel and open the Regional and Language [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>At my workplace, all the computers are in German.&nbsp; I do not read German.&nbsp; I get by by remembering what buttons were where in the Windows version.&nbsp; Luckily, I managed to switch the language to English.</p>
<h1>Switching the Language for Windows</h1>
<p>To do this, go to the Control Panel and open the Regional and Language Options.&nbsp; This might be hard to do when Windows is in a different language so just look for the icon that has a globe on it.&nbsp; Depending on the version of Windows, switching the language may not be possible.&nbsp; And also, different versions of Windows put these buttons in different places within the Language Options.&nbsp; Click around the tabs, and there should be a drop down box for you to change the language.&nbsp; Once that’s done, restart the computer.</p>
<h1>Switching the Language for Office</h1>
<p>Hopefully switching the language for Windows worked, because it would really help for this part, although it isn’t necessary.&nbsp; Not every version of Office supports changing languages.&nbsp; It depends on the version that was installed.&nbsp; Go to the Start Menu, find Microsoft Office, and then Microsoft Office Tools.&nbsp; Under there, there should be an icon for Language Settings.&nbsp; The icon has a globe and an A on it under Windows 7.&nbsp; Open it and change the language.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2011/01/20/switching-microsoft-windows-and-office-to-english/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">731</post-id>	</item>
		<item>
		<title>Installing RXTX for Serial Communication with Java</title>
		<link>https://blog.henrypoon.com/blog/2010/12/25/installing-rxtx-for-serial-communication-with-java/</link>
					<comments>https://blog.henrypoon.com/blog/2010/12/25/installing-rxtx-for-serial-communication-with-java/#comments</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Sun, 26 Dec 2010 05:41:03 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[64-bit computers]]></category>
		<category><![CDATA[64-bit computing]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Comment]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Computing platforms]]></category>
		<category><![CDATA[Cross-platform software]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Digital technology]]></category>
		<category><![CDATA[Directory]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[ise]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java platform]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MATLAB]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Program Files]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Programming languages]]></category>
		<category><![CDATA[RAR]]></category>
		<category><![CDATA[Serial]]></category>
		<category><![CDATA[Serial communication]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Struct]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[tuna]]></category>
		<category><![CDATA[UNIX System V]]></category>
		<category><![CDATA[Wiki]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[X86]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/installing-rxtx-for-serial-communication-with-java</guid>

					<description><![CDATA[Java supports communication to serial ports, but not with its default installation.&#160; It requires an installation of an external library.&#160; Currently, two options exist for achieving serial communication: RXTX JavaComm Unfortunately, the current version of JavaComm does not support Windows, and only supports Solaris SPARC, Solaris x86, and Linux x86.&#160; Since I use none of [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Java supports communication to serial ports, but not with its default installation.&nbsp; It requires an installation of an external library.&nbsp; Currently, two options exist for achieving serial communication:</p>



<ul class="wp-block-list"><li><a href="http://rxtx.qbang.org/wiki/index.php/Main_Page" target="_blank" rel="noreferrer noopener">RXTX</a></li><li><a rel="noopener noreferrer" href="http://www.oracle.com/technetwork/java/index-jsp-141752.html" target="_blank">JavaComm</a></li></ul>



<p class="wp-block-paragraph">Unfortunately, the current version of JavaComm does not support Windows, and only supports Solaris SPARC, Solaris x86, and Linux x86.&nbsp; Since I use none of those operating systems, this article will only discuss how to install RXTX in Windows.</p>



<p class="wp-block-paragraph">UPDATE: 12 Sept 2011 – Thanks to a comment from Kurt Zoglmann, there are instructions on how to do this with a Mac!  I never tried this myself because I don’t have a Mac, but the procedures stated there look good to me (see <a href="#comments">comments</a>).</p>



<p class="wp-block-paragraph">A 32 and 64 bit version of the library exists. &nbsp; I&#8217;ve updated this article from when it was first published to include the new locations for where to download the libraries, but I have not gone through the installation of the libraries again, so I&#8217;m not surprised if the rest of the content on this page is outdated too.</p>



<p class="wp-block-paragraph">32-bit version: <a rel="noopener noreferrer" href="http://rxtx.qbang.org/wiki/index.php/Download" target="_blank">http://rxtx.qbang.org/wiki/index.php/Download</a><br>64-bit version: <a rel="noopener noreferrer" href="http://fizzed.com/oss/rxtx-for-java" target="_blank">http://fizzed.com/oss/rxtx-for-java</a></p>



<p class="wp-block-paragraph">To install the libraries (instructions from <a href="http://www.jcontrol.org/download/readme_rxtx_en.html" target="_blank" rel="noopener noreferrer">JControl</a>):</p>



<ol class="wp-block-list"><li>Copy rxtxSerial.dll to %JAVA_HOME%\bin, (%JAVA_HOME% is the folder where JRE is installed on your system; e.g. c:\Program Files\Java\j2re1.4.1_01)</li><li>Copy RXTXcomm.jar to %JAVA_HOME%\lib\ext</li></ol>



<p class="wp-block-paragraph">Once installed, the IDE will need to know where to look for these installed files.&nbsp; Even though the files exist in the JRE directory, each project needs to know about these files.&nbsp; More information on <a href="http://rxtx.qbang.org/wiki/index.php/Using_RXTX" target="_blank" rel="noopener noreferrer">this website</a>.</p>



<p class="wp-block-paragraph">In order to start coding with this library, import gnu.io.*.  For more information about Java Serial Programming, look <a href="http://henrypoon.wordpress.com/2010/10/11/java-serial-programming/" target="_blank" rel="noreferrer noopener">here</a>.</p>



<p class="wp-block-paragraph">Happy coding!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2010/12/25/installing-rxtx-for-serial-communication-with-java/feed/</wfw:commentRss>
			<slash:comments>18</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">543</post-id>	</item>
		<item>
		<title>SolidWorks Side-By-Side Configuration Error Fix</title>
		<link>https://blog.henrypoon.com/blog/2010/08/07/solidworks-2010-side-by-side-configuration-error-fix/</link>
					<comments>https://blog.henrypoon.com/blog/2010/08/07/solidworks-2010-side-by-side-configuration-error-fix/#comments</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Sun, 08 Aug 2010 01:57:03 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[.exe]]></category>
		<category><![CDATA[3D graphics software]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Comment]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Dassault Group]]></category>
		<category><![CDATA[Digital technology]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[Error message]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Final]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Product design]]></category>
		<category><![CDATA[Proprietary software]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[SolidWorks]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[Trac]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 8]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/solidworks-2010-side-by-side-configuration-error-fix</guid>

					<description><![CDATA[I finally found the fix to the error in SolidWorks 2010 (also reported to work for SW 2011, 2015 and 2016) that prevented me from running the program.&#160; The computer uses Windows 7 32-bit (works also for Windows 8 and 10 as pointed out in the comments), and every time I started up the program [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I finally found the fix to the error in SolidWorks 2010 (also reported to work for SW 2011, 2015 and 2016) that prevented me from running the program.&nbsp; The computer uses Windows 7 32-bit (works also for Windows 8 and 10 as pointed out in the comments), and every time I started up the program it would something like:</p>
<blockquote><p>The application failed to start because its side-by-side configuration is incorrect.&nbsp; Please see the application event log or use the command-line sxstrace.exe tool.</p></blockquote>
<p>I used my Google-fu and found that the cause of this error is due my computer not having the Microsoft Visual C++ 2005 Redistributable.&nbsp; A copy of the setup file for this is in the SolidWorks 2010 disc.&nbsp; It is in the folder (DVD Drive):PreReqsVCRedist.&nbsp; After installing that, the error disappeared and SolidWorks starts properly.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2010/08/07/solidworks-2010-side-by-side-configuration-error-fix/feed/</wfw:commentRss>
			<slash:comments>19</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">411</post-id>	</item>
		<item>
		<title>Snow Leopard on a Dell Inspiron 1520</title>
		<link>https://blog.henrypoon.com/blog/2010/06/11/snow-leopard-on-a-dell-inspiron-1520/</link>
					<comments>https://blog.henrypoon.com/blog/2010/06/11/snow-leopard-on-a-dell-inspiron-1520/#comments</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Fri, 11 Jun 2010 09:57:32 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[9]]></category>
		<category><![CDATA[APT]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Click]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Darwin]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Final]]></category>
		<category><![CDATA[Find]]></category>
		<category><![CDATA[Flag]]></category>
		<category><![CDATA[Force]]></category>
		<category><![CDATA[GeForce 8 series]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Graphics hardware]]></category>
		<category><![CDATA[Graphics processing unit]]></category>
		<category><![CDATA[Hackintosh]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[KPA]]></category>
		<category><![CDATA[Lag]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Lie]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[Lost]]></category>
		<category><![CDATA[Mac OS X Leopard]]></category>
		<category><![CDATA[Mac OS X Snow Leopard]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[NVIDIA]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Snow]]></category>
		<category><![CDATA[Snow leopard]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[String]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[Trac]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[Video cards]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[X86]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/snow-leopard-on-a-dell-inspiron-1520</guid>

					<description><![CDATA[After a lot of reinstalling and kext testing I&#8217;ve finally managed to get my Inspiron 1520 to run Snow Leopard with the latest updates and things working. &#160;I tried my best to list the sources of info that I found, but I Googled so much useful and not so useful links that I don&#8217;t remember [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>After a lot of reinstalling and kext testing I&#8217;ve finally managed to get my Inspiron 1520 to run Snow Leopard with the latest updates and things working. &nbsp;I tried my best to list the sources of info that I found, but I Googled so much useful and not so useful links that I don&#8217;t remember which are which anymore.</p>
<p>Computer Specs:</p>
<p>Intel Core 2 Duo T5250 Processor<br />
2 GB RAM @ 667 Ghz<br />
Intel GM965 Chipset<br />
nVidia GeForce 8600M GT<br />
Dell Wireless 1390 802.11g</p>
<h1>Installation</h1>
<p>I was lucky enough to only need the Retail Snow Leopard Disc (10A432) and the <a href="http://osx86.sojugarden.com/2010/06/myhack-installer-1-1-released/" target="_blank" rel="noopener noreferrer">myHack Installer 1.0.1</a>. &nbsp;I pretty much followed METHOD 2 in this guide (method 1 didn&#8217;t really work out for me, but it might have had something to do with the disc restoration part of the guide):</p>
<p><a href="http://prasys.co.cc/2009/08/installing-snow-leopard-for-osx86/" target="_blank" rel="noopener noreferrer">http://prasys.co.cc/2009/08/installing-snow-leopard-for-osx86/</a></p>
<p>For the myHack installer, check the box for the kext that says something about PS2 in it. &nbsp;It will enable the laptop touchpad and keyboard. &nbsp;Also, read the description for each kext to see if you need it or not.</p>
<p>When I used method 1 in the guide, I had some trouble with an installation error that said &#8220;Could not verify BaseSystem.pkg&#8221; or something along those lines. &nbsp;That error appeared at about 10-15% installation progress. &nbsp;It went away then I used method 2. &nbsp;I did read somewhere that it may have had to do with the restoration in Disk Utility. &nbsp;Either way, it worked the second time around.</p>
<p>Once SL was installed, I ran the myHack Installer on my drive to get the Chameleon Bootloader on there so I wouldn&#8217;t have to use my USB to boot all the time. &nbsp;Also, be sure not to install GraphicsEnabler as it will prevent your computer from shutting down completely (more on that later).</p>
<h1>Graphics</h1>
<p>Since my laptop uses an nVidia card, there is an issue that prevents the computer from shutting down completely if the &#8220;GraphicsEnabler&#8221; option is used in the myHack Installer. &nbsp;I believe NVInject, NVKush, and NVDarwin all suffer from this same problem. &nbsp;What happens is that when the shut down command is invoked, the computer&#8217;s screen will turn off, the HD will turn off, but the power stays on. &nbsp;When the nVidia graphics kexts aren&#8217;t used, this problem goes away.</p>
<p>I&#8217;ve tried generating an EFI String and loading that with EFI Studio, but it didn&#8217;t do the job. &nbsp;The resolution is still 1024&#215;768 and I have no QE, CI or OpenGL support. &nbsp;What I did later on was install PC EFI to see if that would fix things (I didn&#8217;t really know what I was doing here at this point). &nbsp;That didn&#8217;t really work, but I did later find out that EFI Studio allows me to add boot flags. &nbsp;I added &#8220;Graphics Mode&#8221;=&#8221;1280x800x32&#8221; to the boot flag so now it boots with the proper resolution. &nbsp;It gives the proper resolution, but still no QE/CI or OpenGL. &nbsp;This guide has information on how to test for QE (Quartz Extreme) and CI (Core Image):&nbsp;<a href="http://prasys.co.cc/tag/enable-qeci/" target="_blank" rel="noopener noreferrer">http://prasys.co.cc/tag/enable-qeci/</a></p>
<p>Another thing I tried was to modify my DSDT to get my graphics card working using this link: <a href="http://tonymacx86.blogspot.com/2010/01/advanced-dsdt-fixes-nvidia-graphics.html" target="_blank" rel="noopener noreferrer">http://tonymacx86.blogspot.com/2010/01/advanced-dsdt-fixes-nvidia-graphics.html</a>. &nbsp;I managed to get the card recognized using the DSDT code, but when I got rid of the graphics kexts, and the boot.plist options as specified in the guide, I lost my graphics acceleration. &nbsp;I know my DSDT code is working here still since System Profiler tells me what card I have with the exact same names that I gave in the DSDT. &nbsp;It seems that having graphics acceleration and shutdown/restart working properly just isn&#8217;t meant to be.</p>
<p>The tradeoff:</p>
<p>I either could have proper graphics acceleration and no shutdown, OR I could have shut down and no graphics acceleration. &nbsp;Graphics is the clear winner here, but I still hate having no shutdown. &nbsp;I have not found a fix for this.</p>
<h1>Power Management</h1>
<p>There was a problem with high CPU temperatures with the laptop. &nbsp;I installed the VoodooPowerMini kext located here (<a href="http://forum.voodooprojects.org/index.php/topic,1095.0.html" target="_blank" rel="noopener noreferrer">http://forum.voodooprojects.org/index.php/topic,1095.0.html</a>)</p>
<h1>Audio</h1>
<p>After looking for various kexts, I found that VoodooHDA worked for me. &nbsp;It can be found here (<a href="http://www.kexts.com/view/70-voodoohda_(32--_64-bit,_recompiled_by_prasys).html" target="_blank" rel="noopener noreferrer">http://www.kexts.com/view/70-voodoohda_(32&#8211;_64-bit,_recompiled_by_prasys).html</a>).</p>
<h1>Wireless</h1>
<p>Works after installation.</p>
<h1>USB Ports</h1>
<p>They work since it can recognize my mouse and USB drive.</p>
<h1>Battery Indicator</h1>
<p>I used the VoodooBattery kext located here (<a href="http://forum.voodooprojects.org/index.php/topic,1092.0.html" target="_blank" rel="noopener noreferrer">http://forum.voodooprojects.org/index.php/topic,1092.0.html</a>)</p>
<h1>Card Reader</h1>
<p>I don&#8217;t use this so I didn&#8217;t install the kext for it. &nbsp;It can be found here: <a href="http://www.dailyblogged.com/retail-snow-leopard-installation-guide/" target="_blank" rel="noopener noreferrer">http://www.dailyblogged.com/retail-snow-leopard-installation-guide/</a> or <a href="http://www.dailyblogged.com/wp-content/uploads/2009/09/VoodooSDHC.kext.zip">SD Card Fix</a> (more direct).</p>
<h1>Touchpad</h1>
<p>I had an issue where I couldn&#8217;t tap the touchpad in order for it to &#8220;click&#8221;. &nbsp;I fixed this issue by installing the VoodooPS2Controller kext (check the Trackpad option during the installation) (<a href="http://forum.voodooprojects.org/index.php/topic,235.0.html" target="_blank" rel="noopener noreferrer">http://forum.voodooprojects.org/index.php/topic,235.0.html</a>). &nbsp;Then I installed the preference pane (this allows configuring the Trackpad through System Prefs) here <a href="http://www.dailyblogged.com/retail-snow-leopard-installation-guide/" target="_blank" rel="noopener noreferrer">http://www.dailyblogged.com/retail-snow-leopard-installation-guide/</a> (command -f to find it). &nbsp;I opened System Preferences and pressed the Show All button, and I saw a &#8220;Trackpad&#8221; option, so I opened it and the option was there.</p>
<h1>Webcam</h1>
<p>Works after installation.</p>
<h1>Conclusion</h1>
<p>Everything I listed here works except for video and the card reader. &nbsp;There are other things like Ethernet, but I don&#8217;t really use it.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2010/06/11/snow-leopard-on-a-dell-inspiron-1520/feed/</wfw:commentRss>
			<slash:comments>22</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">378</post-id>	</item>
		<item>
		<title>Snow Leopard on a Virtual Machine</title>
		<link>https://blog.henrypoon.com/blog/2010/06/08/snow-leopard-on-a-virtual-machine/</link>
					<comments>https://blog.henrypoon.com/blog/2010/06/08/snow-leopard-on-a-virtual-machine/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Wed, 09 Jun 2010 03:41:22 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[9]]></category>
		<category><![CDATA[Chan]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Darwin]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[Hackintosh]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Mac OS X Leopard]]></category>
		<category><![CDATA[Mac OS X Snow Leopard]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Parallels Desktop for Mac]]></category>
		<category><![CDATA[Snow]]></category>
		<category><![CDATA[Snow leopard]]></category>
		<category><![CDATA[System software]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware Fusion]]></category>
		<category><![CDATA[VMware Workstation]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/snow-leopard-on-a-virtual-machine</guid>

					<description><![CDATA[Here is an article that teaches you how to install Snow Leopard in VMWare using a Windows host. http://www.ihackintosh.com/2009/12/install-snow-leopard-in-vmware-7-windows-edition/ http://www.online-tech-tips.com/mac-os-x/install-snow-leopard-on-pc/ Note: &#160;the darwin_snow.iso must always be mounted in the VM&#8217;s CD/DVD drive in order for the OS to boot. &#160; Shutting down the VM by pressing shut down in the OS will cause a kernel [&#8230;]]]></description>
										<content:encoded><![CDATA[<div>
<p>Here is an article that teaches you how to install Snow Leopard in VMWare using a Windows host.</p>
<p><a href="http://www.ihackintosh.com/2009/12/install-snow-leopard-in-vmware-7-windows-edition/">http://www.ihackintosh.com/2009/12/install-snow-leopard-in-vmware-7-windows-edition/</a></p>
<p><a href="http://www.online-tech-tips.com/mac-os-x/install-snow-leopard-on-pc/">http://www.online-tech-tips.com/mac-os-x/install-snow-leopard-on-pc/</a></p>
<p>Note: &nbsp;the darwin_snow.iso must always be mounted in the VM&#8217;s CD/DVD drive in order for the OS to boot. &nbsp; Shutting down the VM by pressing shut down in the OS will cause a kernel panic. &nbsp;The around it is to open the .vmx file associated with the virtual machine and change smc.present from true to false.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2010/06/08/snow-leopard-on-a-virtual-machine/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">370</post-id>	</item>
	</channel>
</rss>
