<?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>Noorse Lijster 19 &#187; Technology</title>
	<atom:link href="http://www.noorselijster19.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noorselijster19.com</link>
	<description>Living in the Dutch mountains</description>
	<lastBuildDate>Tue, 27 Jul 2010 19:44:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>GPS60CSx problem</title>
		<link>http://www.noorselijster19.com/2010/07/technology/garmin-gps-60csx-shutdown-problem/</link>
		<comments>http://www.noorselijster19.com/2010/07/technology/garmin-gps-60csx-shutdown-problem/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 19:27:15 +0000</pubDate>
		<dc:creator>Bart Bruijnesteijn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[60CSx]]></category>
		<category><![CDATA[GPS]]></category>

		<guid isPermaLink="false">http://www.noorselijster19.com/?p=235</guid>
		<description><![CDATA[<img src="http://www.noorselijster19.com/wp-content/uploads/2010/07/tb_garmin1.jpg" alt="Garmin" title="Garmin" width="138" height="100" class="alignleft size-full wp-image-206" />Hidden files left behind by Apple's OS X are giving problems with the GPS 60CSx shutdown. Here the solution to fix the problem]]></description>
			<content:encoded><![CDATA[<p>Garmin GPS 60CSx users may experience problems after the shutdown of the device. The device will produce a constant beep sound.</p>
<p>The problems exists for users using Apple computers running with OS X. In most cases the operating system leaves hidden files on any storage device (cards included). These hidden files are the cause of the problems.</p>
<p>To solve the issue:</p>
<ol>
<li>open up Terminal</li>
<li>find the name of your card under /Volumes using the <em><strong>ls /Volumes</strong></em> listing the various volumes which are mounted &#8211; you need the name of the volume one which is your card e.g. GPSMAPS60CSX</li>
<li>next enter <strong><em>sync; rm -rf /Volumes/GPSMAPS60CSX/.*</em></strong> which synchronizes the file system and removes the offending files and folders. You probably will get an error message, but don&#8217;t worry about that and ignore the messages</li>
<li>next enter <strong><em>sync; sudo umount -f /Volumes/GPSMAPS60CSX</em></strong> to synchronize again and unmount the volume. You will need the administrator password for your computer</li>
</ol>
<p>Now you can use the card without the shutdown problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.noorselijster19.com/2010/07/technology/garmin-gps-60csx-shutdown-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebSphere Portal</title>
		<link>http://www.noorselijster19.com/2009/06/technology/websphere-portal/</link>
		<comments>http://www.noorselijster19.com/2009/06/technology/websphere-portal/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 08:17:28 +0000</pubDate>
		<dc:creator>Bart Bruijnesteijn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[WebSphere Portal]]></category>

		<guid isPermaLink="false">http://www.noorselijster19.com/?p=149</guid>
		<description><![CDATA[<img src="http://www.noorselijster19.com/wp-content/uploads/2009/06/tb_ubuntu.jpg" alt="Ubuntu" title="Ubuntu" width="138" height="100" class="alignleft size-full wp-image-10" />Follow the instructions to install IBM WebSphere Portal Server 6.1 on your virtual machine running Ubuntu 7.10]]></description>
			<content:encoded><![CDATA[<h2>Ubuntu Server 7.10</h2>
<p>First download the latest version of Ubuntu Server 7.10</p>
<p>Select the minimal installation, but selecting SSH and SAMBA support could proof practical for later. During installation you need to specify the HOSTNAME (wps610) and the USER ACCOUNT (user name = wpsadmin, user password = wpsadmin)</p>
<p>IBM doesn&#8217;t officially support Ubuntu for hosting WebSphere Portal.</p>
<h2>Virtual Machine</h2>
<p>Get VMware Fusion software. After installation you can create a virtual machine (see instructions)</p>
<p>Install the Ubuntu Server software as part of the setup.</p>
<p>After completion create the temporary WebSphere Portal installation folder /setup in the ROOT. Check your IP address using IFCONFIG e.g. 192.168.x.y</p>
<h2>Install WebSphere Portal 6.1</h2>
<p>Get the trial software from the IBM website to your local folder /Users/Home/Documents/setup on your MAC (similar action on Microsoft Windows desktop). You will need to UNZIP the files later using the following shell script, the script creates the correct folders</p>
<p>The following steps are required after successfully installing Ubuntu.</p>
<p>Get the necessary libraries and tooling (Midnight Commander and UNZIP):</p>
<ol>
<li>apt-get -y install libstdc++5</li>
<li>apt-get -y install mc</li>
<li>apt-get -y install unzip</li>
</ol>
<p>To be safe set the maximum number of files with ulimit -n 10240</p>
<p>Edit the HOSTS file in /etc directory. Using Midnight Commander you can select and edit the file. Add the following 127.0.0.1 wps610.domain.com wps610. The line maps the localhost (127.0.0.1) to domain name (wps610,domain.com) and host name (wps610). You will need this definition during the installation of WebSphere.</p>
<p>Transfer the IBM files from your local harddisk to the UNIX directory. Copy the files using either SSH or FTP from your workstation to temporary ~/setup directory in the root dir (~) e.g. use scp Home@192.168.a.b:/Users/Home/Documents/setup/* ~. in addition copy the extract.sh file to the same directory. After the copy has completed you should extract the ZIP files. Goto the ~/setup directory and extract the files using the extract.sh e.g. the different files are extracted to directories names IL-Setup and IL-1, &#8230;, IL-6. The naming of the directories is important as the WebSphere Portal Express setup expects these specific names.</p>
<p>For installation and for fix pack upgrades you need to link BASH to SH. Use rm /bin/sh ; ln -sf /bin/bash /bin/sh</p>
<p>Now run the WebSphere Portal Express setup from the command line e.g. sudo ~/setup/IL-Setup/PortalExpress/install.sh -console</p>
<h2>Post Installation</h2>
<p>To correct the situation re-link DASH to the SH. Use rm /bin/sh ; ln -sf /bin/dash /bin/sh</p>
<p>To be sure modify the WebSphere scripts to use BASH in the future. Enter the following commands:</p>
<ol>
<li>sudo perl -p -i -e &#8220;s/\/sh$/\/bash/&#8221; /opt/IBM/PE/AppServer/bin/*.sh</li>
<li>sudo perl -p -i -e &#8220;s/\/sh$/\/bash/&#8221; /opt/IBM/PE/PortalServer/bin/*.sh</li>
</ol>
<h2>Up And Running</h2>
<p>After the installation the WebSphere Portal 6.1 will be running.</p>
<p>Check the IP address of the virtual machine e.g. enter IFCONFIG and find the IP address 192.168.x.y</p>
<p>Return to your MAC and start the web browser. Enter HTTP://192.168.x.y:10040/wps/portal and the logon screen should appear.</p>
<h2>Shutdown &amp; Restart</h2>
<p>At any time you can shutdown or restart the WebSphere Portal Server:</p>
<ol>
<li>sudo ~/opt/IBM/PE/AppServer/bin/startServer.sh WebSphere_Portal</li>
<li>sudo ~/opt/IBM/PE/AppServer/bin/stopServer.sh WebSphere_Portal</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.noorselijster19.com/2009/06/technology/websphere-portal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
