Station goals


I set a few goals back in July and thought I would take a look at my progress:

What I want to accomplish in the Kansas Shack:
– HF phone and CW operation; 80m-10m
– HF digital modes (PSK-31, RTTY, PACTOR III)
– Computer logging
– 2m FM base station
– APRS weather station, interfaced with a dedicated 2m transceiver
– Online weather page, showing current weather conditions
– Separate, organized workbench

HF phone and CW operation; 80m-10m – my HF activities are centered around my IC-7000. I would like to get the TS-930S up an operational, but I am afraid that is not in the budget at this point.

HF digital modes (PSK-31, RTTY, PACTOR III) – I am using my RIGblaster Plug & Play for digital modes… other than PACTOR III. I have not yet hooked up my SCS PTC-IIusb Modem.

Computer logging – I do have Ham Radio Deluxe loaded now, but I want to find a good linux version.

2m FM base station – currently the FT-2800M for the job. I do have some plans to move my IC-208H from the truck into the shack. That will give me a 70cm capability in addition to the 2M. The truck is getting a new rig… more on that soon.

APRS weather station, interfaced with a dedicated 2m transceiver – I am using a FT-1500 for the job, connected to UI-View32 and receiving data from the Davis VantagePro2. The problem here is that I only have the one antenna up so this limits my ability to hop on the local repeaters from the shack. I need to either get a coax switch to be able to switch between the two rigs or put another antenna up.

Online weather page, showing current weather conditions – yes indeed… I think this is working pretty nice.

Separate, organized workbench – also a success… although it seems to be too crowded with stuff. The best part is the pegboard for tools – I no longer have the problem of quickly locating the tools I need.

Overall, I am happy with the progress I have made getting the shack in shape. What I want to work on now:
– New antenna for HF
– Fix up the ARSIB
– Get the SB-200 amp working
– Transition all shack computers to Ubuntu linux

Return of the ARSIB

It’s time to dust off the Amateur Radio Station In a Box (ARSIB) and get it ready for field day.
Back in 2006 I was inspired by other hams who had put together portable stations that were built inside waterproof containers, capable of multimode (phone, CW, digital) HF, VHF, or UHF operation, easily powered by 110v/220v AC or a 12v source, able to carry with one hand, and ready for immediate operation with minimal setup.
My prototype was the ARSIB which I used on several occasions.

The ARSIB was based around my FT-817 to provide complete flexibility of a minimalist operation on AA batteries if need be. For normal operations, the 100W Tokyo HyPower amplifier gets me were I need to be. I had a lot of fun with the ARSIB using it during an RV DXpedition and for a lighthouse activation.
I now want to take the ARSIB to the next level – fine tune the design a bit. In searching around I have found several sources of inspiration:

  • Notes on building a portable self-powered communications station suitable for RACES, ARES, remote station, or general QRP use
  • Second Generation EmComm Station
  • KA5CVH Portable

    For my second generation ARSIB, I would like to improve the inner shelving structure supporting the radio equipment. Another goal of mine is not to put any holes in the waterproof container, which has limited some of my arrangements inside the box. I also want all the equipment to be able to travel well, without worry of damage. I also need to clean up the wiring; power, audio, and antenna. Some more ascetically pleasing, but functional.

    I think the Dell Mini will serve as the perfect companion for the eARSIB.

    Ultimately I hope to use the eARSIB (“e” is for enhanced) for Field Day 2009. The plan now is to link with KD6EUG, Larry, up in the Sierra Nevada’s for Field Day. In addition to participating in the event, we will string up an antenna or two for his cabin/shack… and maybe even get an APRS weather station operational as well.

    Now it is time to make it happen!

  • Victory over the Dell Mini

    After a few hours of toil and despair of trying to tweak my Dell Mini with Ubuntu in an attempt to enable the ability to use the 2GB of RAM instead of being limited to just 1GB. At one point I had the 2GB recognized but lost wifi and sound. In the end I completely reinstalled the initial Dell Ubuntu 8.04+ OS, did a full apt-get update and install…. and everything worked (2GB of RAM, wifi, sound, and on board webcam). And by now in Ubuntu I can add my network printers and permanently mount my networked shared drives with my eyes closed.

    And yes, the Dell Mini is just a bit more zippy with 2GB of RAM humming under the hood.

    Dell Mini 9…. 2GB with Ubuntu?

    I got a Dell Mini back in October and have been enjoying it very much. What I like the best is its portability and battery life. At the time, the version that I purchased from Dell came with a specialized version of Ubuntu 8.04 and 1GB of RAM. I wanted to upgrade to 2GB and purchased the RAM. However, the Mini failed to recognize the additional RAM, stilling telling me I only had 1GB installed (even though it only has a single 2GB DIMM). I learned today that the problem is not the RAM but the specific Ubuntu kernel that Dell used for the Mini. And here is the fix:

    Mini 9 Kernel Re-compile for 2 GB ram:

    – Open a terminal
    – Enable root login using the command:
    sudo passwd root

    – Change to the root user and then execute the following commands:
    su
    lsmod > /tmp/modules.old
    apt-get install linux-source
    apt-get install build-essential
    apt-get install libncurses5-dev
    cd /usr/src
    tar -jxvf linux-source-2.6.24.tar.bz2
    cd linux-source-2.6.24
    cp /boot/config-2.6.24-19lpia .config
    make oldconfig
    make menuconfig

    – In the menu that opens, go to “Processor Type and Features”, enter the option “High Memory Support (off)”, select the option 4GB, exit and save.
    – Execute the follwing commands:
    make
    make modules_install
    cp arch/i386/boot/bzImage /boot/vmlinuz-2.6.24.3
    cp .config /boot/config-2.6.24.3

    cd /lib/modules
    cp -r 2.6.24-19lpia/volatile 2.6.24.3
    cp -r 2.6.24-19lpia/ubuntu 2.6.24.3
    update-initramfs -u -k 2.6.24.3

    – edit /boot/grub/menu.lst and at the very bottom add an entry for the new kernel. It is recommended that you also increase the delay time to something greater than 0 (like 10 seconds) so you leave the stock kernel as the default, but select the new one from the grub menu till you know it works.
    – Reboot and select the entry you created for the Kernel 2.6.24.3
    – Several modules won’t have loaded after the reboot, You can identify which ones by doing a “lsmod > /tmp/modules.new” (without the double quotes) and comparing to the /tmp/modules.old generated previously. One that fails for sure is wireless, another one is the embedded webcam.
    – To fix the wireless, just open a terminal and type the following commands:
    su
    depmod -a
    modprobe wl

    – at this point, perform a modprobe for the other modules listed in /tmp/modules.new that are missing from /tmp/modules.old . In my mini 9 the commands were:
    modprobe michael_mic
    modprobe arc4
    modprobe ecb
    modprobe blkcipher
    modprobe unionfs

    – At this point everything should be working normally in your Mini 9, and it should recognize all 2 GB of RAM. I did a last reboot before testing the camera and everything.
    – If you are confortable that everything is working fine, edit /boot/grub/menu.lst again, change the delay back to 0 and make your new kernel entry the first one on the list of options.

    I’m going to try this tomorrow – I hope it works!

    There seems to be some debate on if it would be easier to just upgrade to Ubuntu 8.10. The apparent downside of the 8.10 upgrade on the Dell Mini is that it takes a bit to tweak the hardware settings and the potential loss of the battery efficiency of the Dell’s Ubuntu 8.04. More info here.

    Ubuntu 8.10 – fresh install

    Yesterday I finally turned my dual-boot (Windows XP and Ubuntu) into a full fledged Ubuntu 8.10 box. The install went generally well. A little initial problem getting the wifi working (but I attribute that to my wifi network, not Ubuntu) and then a bit of tweaking to get my networked drives mounted permanently as well as configuring to print on a printer hooked to a Windows XP box and a network printer. I always forget that I have to install Samba before I configure /etc/fstab and make directories under the media folder. Once I realized my mistake, I was off and running. The printer setup was also fairly easy, having saved my settings from before.

    I’m still keeping my Dell laptop on Windows XP for now. It has my MS Outlook which I still haven’t moved to Ubuntu’s Evolution. My ham computer is also still on Windows XP because I’m not yet willing to make the jump to a Linux based ham world.

    I’ve said it before and am still convinced that I won’t need to give Microsoft any more money. When it is time to move my remaining boxes off of Windows, I won’t be looking back.

    The Columbus Day Surprise


    My Dell Mini arrived! I’m using it for this entry. I like it so far, but there are draw backs. The keyboard is tiny. Performance is a bit slugish, but it plays video without issue. I’ve been able to configure it to access my network drives, that went fairly well (… once I remembered the Linux commands).

    It is small! And light weight. So far the battery is doing well. The screen is sharp and the speakers are pretty loud when you crank them up. There’s an SD card reader on the side. I also opted for the webcam, which seems to work nicely.

    Now I need to stop procrastinating and write my history paper that’s due tomorrow. 🙂

    Fabulous Friday

    We had an offsite for class this morning at the Santa Fe Station in downtown Leavenworth, KS. Great breakfast and great discussion.

    I’ve got the wort in the bucket, should be done with primary fermentation in a day or two. This was the first time I had a hydrometer and I need to figure out how to use it. I’ve got to get a good bottle count. I have about a dozen with the rubber seal and stopper. I think I may need to get new rubber seals.

    I have to decide if I want to do a secondary fermentation with the carboy.

    I turned on the HF rig briefly and heard stateside stations talking with a station on Guantanamo. Then I heard a familiar voice, K4STW, Stew in Virginia Beach. Stew probably doesn’t remember me, but we chatted now and again on the 2M repeaters in Hampton Roads. It was great to hear his voice.

    I got Ubuntu working with my Linksys print server. This will make my life much easier.

    Looks like we’ll have good weather this weekend.

    Back in the saddle

    I -finally- got my HF rig working here at the Kansas QTH.

    Since arriving here back in July, I’ve been super busy. School (the Army’s Command & General Staff College (CGSC)) kicked in at the beginning of August. The last formal schooling I had was eight years ago – so I was a bit rusty at getting into the swing of things (i.e. reading, reading… and more reading). I’m also taking a complementarity master’s degree program in International Relations through Webster University (two nights a week). The good news is I was able to talk the XYL into taking the master’s courses with me. The bad news is that sometimes the master’s stuff chews up more time than my school work for CGSC.

    CGSC can be intense. September was packed with wall-to-wall learning, usually from 0830 to at least 1530. The schedule is starting to lighten up a bit.

    Today I was able catch my breath a bit… out of class at 1130. The sun was shining, a beautiful day. I had some antenna maintenance to do. A little bit of time on the roof and the majority of my HF problems were fixed. I’m now up on HF, except for 80M. I think a little work on my counterpoise will fix that.

    Back in the basement (aka The Scud Bunker) I hooked up my Icom IC-7000 to the new and improved HF antenna – bingo… all the problems I was experiencing in the past were gone. A QSO with KC2PBX, Pierre on Long Island, NY on 20M and then TI8II from Costa Rica on 17M, later with Ray, W1RAA from Tampa, FL. It felt good having some HF QSOs. I did a little more work with my station setup; hooking up the RIGtalk and RIGblaster Plug&Play. There’s more work to do and I should have time later in the week.

    Other news:
    – I’m switching from Windows to Ubuntu Linux. I WILL NOT UPGRADE FROM XP TO VISTA. Vista is a tool of the devil and I will have no part of it. My Toshiba laptop has been dual boot between XP and Ubuntu for a while, but had rarely been using the Ubuntu. I ordered a Dell Mini 9 (very tiny netbook) to help with school (writing papers in the library rather than goofing off in the Scud Bunker). The Dell Mini is coming with Ubuntu pre-loaded. Sweet. The next step will be setting up one of my towers as an Ubuntu server. Goodbye Microsoft.
    – I’ve gone Kindle. Both the XYL and myself have the Amazon Kindle. I like it a lot better than my Sony eBook. Getting the Washington Post first thing every morning is great. The battery life is a little to be desired. The best part is that I can read KE9V’s blog right on my Kindle.

    Ok – back to the books. I will get better at making frequent updates here.

    Weekend Wrap Up

    Went up to the Yorktown Battlefield Saturday and linked up with Mark, N1LO. I got to see his portable setup. He was using a delta loop antenna made of speaker wire, maybe about 25′ per side. The speaker wire was in three sections, the sections were connected using fishing line lure links. The speaker wire was terminated using banana plugs and fed into a 1:1 balun. To support the legs of the delta loop, Mark used a combination of a painter’s pole and a fiberglass fishing rod secured by a 3′ picket easily driven into the ground about 8″.


    The fiberglass fishing pole’s end easily nests into the painter’s pole with about 6″ overlap raising the loop to a height of about 20′. The painter’s pole was secured to the picket using two small hose clamps. The delta loop tuned easily from 80M to 10M, but would not tune 160M. All the antenna components compacted down to fit into a plastic rifle case. Mark connected the delta loop to his IC-706MKIIG through his LDG AT-200 Pro autotuner and was easily making QSOs into Ohio (the Ohio QSO Party was underway). Power was provided by a ~100aH marine battery and a nice homebrew PowerPole distribution hub. The best part of the setup was the location – in a very nice, shady park on the southern banks of the York River.


    In an endeavor to consolidate my 2M packet operations (APRS, Winlink 2K, and good ol’ fashion BBS packet) into the garage, I spent a good chunk of time pushing around boxes and crates. I purchased three 3′ high bookshelves from Target, arrayed them in an open “U” and then placed a 4’x6′ piece of plywood across the top. I filled the bookshelves with back issues of QST and equipment awaiting to be put into use. Next to this workbench, I put a previously unused, small table where I positioned my monitor and PC. I spent the late afternoon converting the PC from Ubuntu back to Window XP (… I can’t commit the time needed to tweak Unbuntu to my needs). Now I need to move the my KPC-3+ from the radio room out to the garage and see if I can get a basic packet station operational.

    Also been preparing for the upcoming RV DXpedition. I’ll be taking the ARSIB along with the vertical dipole, but was also thinking about taking a G5RV. I’m also going to try and use a 75M hamstick, we’ll see how that works out.