<?xml version="1.0" encoding="utf-8"?>
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<title>skorpionweb.org</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/" />
<modified>2006-01-04T04:48:17Z</modified>
<tagline></tagline>
<id>tag:www.skorpionweb.org,2006://1</id>
<generator url="http://www.movabletype.org/" version="3.17">Movable Type</generator>
<copyright>Copyright (c) 2006, skorpion</copyright>
<entry>
<title>New Laptop - Dell Inspiron 9300</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2006/01/new_laptop_-_de.php" />
<modified>2006-01-04T04:48:17Z</modified>
<issued>2006-01-04T04:44:23Z</issued>
<id>tag:www.skorpionweb.org,2006://1.20</id>
<created>2006-01-04T04:44:23Z</created>
<summary type="text/plain"> I recently purchased and received my new latop, a Dell Inspiron 9300. While past experience with Dell has been nothing but spectacular I am sad to say this purchase was anything but. I placed my order at the end...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>News</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p><img alt="Inspiron.jpg" src="http://www.skorpionweb.org/archives/Inspiron.jpg" width="362" height="181" /></p>

<p>I recently purchased and received my new latop, a Dell Inspiron 9300. While past experience with Dell has been nothing but spectacular I am sad to say this purchase was anything but. I placed my order at the end of November and was excited to learn that my laptop was built and shipped within a week. I checked its tracking information daily and rushed home from work on the day it was delivered.</p>

<p>I opened the box and started the initial setup of the laptop and OS. Only minutes into the setup the screen of my laptop became distorted, blurry and discolored. I promptly called Dell Tech Support and after 2 hours of resets and diagnostics I was told I would need to ship my laptop to Dell's Repair Center. Dell shipped me the packaging material and I quickly sent off my laptop to the repair center. Dell returned the laptop to me in about 8 days.</p>

<p>I once agained rushed home from work and booted my laptop only to discover that the problem had not been fixed even thought they replaced the LCD. Once again I called Dell Tech Support, after another 90 minutes on the phone I asked to have my laptop exchanged for a brand new laptop which Dell Support agreed to without much aggravation. I then was instructed to contact Customer Service the following day. I did as I was instructed and contact Customer Support. I spoke with a Rep who stated that he was having trouble entering my exchange information into their system do to a systems problem. He said he would give me a return call within 2 hours to confirm the exchange and RMA information.</p>

<p>Five hours later I called the Dell Customer Support only to find that they had know information regarding my exchange request. I was transferred to several people and was finally put on the phone with Trixie. After several minutes of explaining and 30 minutes of hold time I was finally assured that my exchange was entered and would be processed. Trixie was great and called and emailed me several times to update me on the progress of my exchange.</p>

<p>After another 8 days of waiting I received my new laptop on December 24th, 2005. Finally Dell seemed to have done everything right and I was happy to have my new laptop. It has been over a week now and everything appears to still be working properly and I am keeping my fingers crossed I do not have nay further troubles in the future.</p>

<p>After all of this trouble I am still a Dell supporter however if it had not been for Trixie at Dell Customer Support that may have not been the case. Thank you Trixie!</p>]]>

</content>
</entry>
<entry>
<title>Running QMail SMTP on a 2nd port</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/09/running_qmail_s.php" />
<modified>2005-09-28T00:18:49Z</modified>
<issued>2005-09-27T23:50:50Z</issued>
<id>tag:www.skorpionweb.org,2005://1.18</id>
<created>2005-09-27T23:50:50Z</created>
<summary type="text/plain">Due to the increase in the number of ISP&apos;s blocking port 25 for third party mailservers I decided to setup my mailserver to answer SMTP request on multiple ports. While this can be accomplished in many ways, such as port...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>Sys Admin</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p>Due to the increase in the number of ISP's blocking port 25 for third party mailservers I decided to setup my mailserver to answer SMTP request on multiple ports. While this can be accomplished in many ways, such as port forwarding or multiple instances of qmail-smtpd, my situation required setting up a second instance or qmail-smtpd.</p>]]>
<![CDATA[<p>The setup process is fairly straight forward. Here are the steps I took to accomplish my goal:</p>

<p>First you will need to make a copy of your qmail-smtpd directory located in /var/qmail/supervise. I called my new copy qmail-smtpd2. Once the copy had been completed I then needed to edit the run file located in the qmail-smtpd2 directory. This was a simple change to add the port number I wished to have qmail-smtpd run on. Here is an example:</p>

<blockquote>/usr/local/bin/tcpserver -H -v -R -l "$LOCAL" -x /etc/tcp.smtp.cdb -c "$MAXSMTPD" -u "$QMAILDUID" -g "$NOFILESGID" 0 2525 \ </blockquote>

<p>Notice the 2525 which is the second port I will be running. Please be aware that this line may be different depending on your installation of QMail. My installation was based on the Life with Qmail instructions and also the addition of SpamAssassin, SpamHaus RBL, relay-ctrl-chk and ClamAV.</p>

<p>With this change complete I needed to update the run file located in the qmail-smtpd2/log directory. I just changed the logging path to log to a second log named qmail-smtpd2.</p>

<p>I then needed to create a symlink to the new /var/qmail/supervise/qmail-smtpd2 in the /service directory, for example:</p>

<blockquote>ln -s /var/qmail/supervise/qmail-smtpd2 /service/qmail-smtpd2</blockquote>

<p>Finally the last changes required updating my qmailctl script to include the new qmail-smtpd2 setup. This was a matter of making a duplicate of the existing qmail-smtpd commands and modifying them with the new name of qmail-smtpd2. For example:</p>

<blockquote>
if svok /service/qmail-smtpd2 ; then

<p>svc -u /service/qmail-smtpd2</p>

<p>else</p>

<p>echo qmail-smtpd2 service not running</p>

<p>fi</p>

</blockquote>

<p>Please note the above is only one of the changes you will need to make in the qmailctl script.</p>

<p>Then I restarted qmail using the qmailctl stop and start commands. Qmail was now listening on both port 25 and 2525.<br />
</p>]]>
</content>
</entry>
<entry>
<title>Get your very own &quot;Rosie&quot; domestic helper.</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/08/get_your_very_o.php" />
<modified>2005-08-31T19:11:03Z</modified>
<issued>2005-08-31T19:06:39Z</issued>
<id>tag:www.skorpionweb.org,2005://1.17</id>
<created>2005-08-31T19:06:39Z</created>
<summary type="text/plain">Remember &quot;Rosie&quot; from the Jetsons? Now you to can have your very own robot to assist you around the house. Mitsubishi Heavy Industries in Japan is selling the $14,000.00 Wakamaru humanoid robot for those of you interested or lucky enough...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>News</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p>Remember "Rosie" from the Jetsons? Now you to can have your very own robot to assist you around the house. Mitsubishi Heavy Industries in Japan is selling the $14,000.00 <a href="http://www.mhi.co.jp/kobe/wakamaru/english/about/index.html">Wakamaru humanoid robot</a> for those of you interested or lucky enough to afford your own robot!</p>]]>

</content>
</entry>
<entry>
<title>Severe Storm sends my tree into Neighbors 5 cars!</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/08/sever_storm_sen.php" />
<modified>2005-08-16T15:35:01Z</modified>
<issued>2005-08-15T03:28:06Z</issued>
<id>tag:www.skorpionweb.org,2005://1.16</id>
<created>2005-08-15T03:28:06Z</created>
<summary type="text/plain"> A severe storm moved through my area tonight. Winds were in excess of 60 mph and there was many cloud to ground lightning strikes. Unfortunately the wind or lighning did in one of my trees sending it down into...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>News</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<center><img alt="tree_car.jpg" src="http://www.skorpionweb.org/images/photos/tree_car.jpg" width="380" height="285" /></center> </br>

<p>A severe storm moved through my area tonight. Winds were in excess of 60 mph and there was many cloud to ground lightning strikes. Unfortunately the wind or lighning did in one of my trees sending it down into my neighbor's 5 cars parked in their yard.</p>]]>

</content>
</entry>
<entry>
<title>Reading Motorcycle Club 91st Aniversary Bash - Oley, PA</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/07/reading_motorcy.php" />
<modified>2005-08-06T16:28:18Z</modified>
<issued>2005-07-31T15:18:27Z</issued>
<id>tag:www.skorpionweb.org,2005://1.15</id>
<created>2005-07-31T15:18:27Z</created>
<summary type="text/plain">I attended the Reading Motorcycle Club&apos;s 91st Aniversary Bash this weekend and the RMC folks host a great event. For $35 you get admission to the event for its duration, a pin, a mug and all the beer and/or soda...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>Motorcycles</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p><img src="http://www.skorpionweb.org/images/photos/motorcycles/rmc-2005/rmc2005.jpg" class="entry-img">I attended the <a href="http://www.readingmc.com/">Reading Motorcycle Club's 91st Aniversary Bash</a> this weekend and the RMC folks host a great event. For $35 you get admission to the event for its duration, a pin, a mug and all the beer and/or soda you can consume. The event hosts motorcycle drag racing, live music, vendors, great food and even helicopter rides. </p>]]>

</content>
</entry>
<entry>
<title>Elderly to become like Robocop</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/07/elderly_to_beco.php" />
<modified>2005-07-23T15:12:39Z</modified>
<issued>2005-07-23T14:57:10Z</issued>
<id>tag:www.skorpionweb.org,2005://1.14</id>
<created>2005-07-23T14:57:10Z</created>
<summary type="text/plain">Assistive Power Armor for the elderly...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>News</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p><a href="http://www.msnbc.msn.com/id/8656746/">Assistive Power Armor for the elderly</a><br />
</p>]]>

</content>
</entry>
<entry>
<title>Star Trek&apos;s Scotty beamed up for the last time</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/07/star_treks_scot.php" />
<modified>2005-07-20T20:35:55Z</modified>
<issued>2005-07-20T20:33:53Z</issued>
<id>tag:www.skorpionweb.org,2005://1.13</id>
<created>2005-07-20T20:33:53Z</created>
<summary type="text/plain">James Doohan, the actor best known for his role as Scotty on the original Star Trek series and movies has passed away at his home. He was 85....</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>News</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p>James Doohan, the actor best known for his role as Scotty on the original Star Trek series and movies has passed away at his home. He was 85.</p>]]>

</content>
</entry>
<entry>
<title>Google celebrates moon landing</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/07/google_celebrat.php" />
<modified>2005-07-20T20:18:17Z</modified>
<issued>2005-07-20T20:08:03Z</issued>
<id>tag:www.skorpionweb.org,2005://1.12</id>
<created>2005-07-20T20:08:03Z</created>
<summary type="text/plain">Google, in order to honor the first manned moon landing which took place on this date, July 20th, 1969, has added some NASA imagery to their Google Maps interface. Be sure to zoom all the way in in order to...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>Web Site</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p>Google, in order to honor the first manned moon landing which took place on this date, July 20th, 1969, has added some NASA imagery to their Google Maps interface. Be sure to zoom all the way in in order to see what the astronauts saw as they landed on the moon. </p>

<p>To visit Google Moon Maps interface go to this link:</p>

<p><a href="http://moon.google.com/">http://moon.google.com</a></p>]]>

</content>
</entry>
<entry>
<title>Run Linux on Windows with Colinux</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/07/run_linux_on_wi.php" />
<modified>2005-07-21T04:06:11Z</modified>
<issued>2005-07-17T21:34:57Z</issued>
<id>tag:www.skorpionweb.org,2005://1.3</id>
<created>2005-07-17T21:34:57Z</created>
<summary type="text/plain">Sparked by an article in the August 2005 issue of Linux Magazine I have decided to install and see for myself how well CoLinux works at running linux from within the Windows operating system. This application lets you run some...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>Sys Admin</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p>Sparked by an article in the August 2005 issue of <a href="http://www.linux-mag.com/">Linux Magazine</a> I have decided to install and see for myself how well <a href="http://www.colinux.org">CoLinux</a> works at running linux from within the Windows operating system. This application lets you run some of the more popular linux distributions from within a window. There is no need to make your system dual boot and your linux distro works as if it were a stand-alone install. </p>]]>
<![CDATA[<p>The article in Linux Magazine is well written and provides a lot of detail setting up and getting your Windows system to run Debian. The article explains how to setup CoLinux as a command-line or graphical interface albeit the graphical interface requires you to use VNC to access the desktop.</p>

<p>My current work environment only allows me access to a Windows workstation and I find this application to be very useful managing our Linux and UNIX based servers giving me access to the best of both worlds.</p>

<p>Stay tuned as I hope to have further reports on the ease of the install and day-to-day operation of using CoLinux.</p>]]>
</content>
</entry>
<entry>
<title>Web site redesign</title>
<link rel="alternate" type="text/html" href="http://www.skorpionweb.org/archives/2005/07/web_site_redesi.php" />
<modified>2005-07-14T03:35:05Z</modified>
<issued>2005-07-14T03:30:05Z</issued>
<id>tag:www.skorpionweb.org,2005://1.1</id>
<created>2005-07-14T03:30:05Z</created>
<summary type="text/plain">As usual I was getting bored with my site design and have decided to re-do the site once again. This time I have decided to build my site using Movable Type. Movable Type is a Web Blog / Content Management...</summary>
<author>
<name>skorpion</name>
<url>http://www.skorpionweb.org</url>
<email>skorpion@skorpionweb.org</email>
</author>
<dc:subject>Web Site</dc:subject>
<content type="text/html" mode="escaped" xml:lang="en" xml:base="http://www.skorpionweb.org/">
<![CDATA[<p>As usual I was getting bored with my site design and have decided to re-do the site once again. This time I have decided to build my site using Movable Type. Movable Type is a Web Blog / Content Management interface with many powerful features. You can visit the Movable Type homepage by visiting the following link:</p>

<p><a href="http://www.movabletype.org">http://www.movabletype.org</a></p>

<p>In the meantime please be patient and I hope to have more information and features added to my site in the very near future.</p>]]>

</content>
</entry>

</feed>