Tuesday, March 4, 2008

Windows 64 bit and Kodak printers or docks

After installing Windows XP x64 on my new Athlon dual core rig, I was faced with the problem of a lack of 64-bit drivers for my peripherals. Like my sweet sweet PowerMate or my matching Razor mouse.

But the biggest disappointment was a lack of any mention of 64 bit support for my new Kodak AIO printer or my Kodak Printer Dock. The could mean that I have to downgrade my OS to upload and print my photos.

But after just going for it with the driver installation, I realized that Kodak DOES have 64 bit driver support in the installer, but it just isn't advertised.

So if you're running XP x64 or Vista 64, install away with the appropriate driver from the Kodak software download site and know you'll get the 64 bit drivers that your OS craves.

Sunday, February 17, 2008

Windows XP SP2 won't install on selected partition

Building a new box for an upcoming lan party, I ran into a problem where I couldn't get very far into the Windows installation because of a loop in the setup process.

The installer asks me to select or create and select a partition on which to install. I do so, only to be taken to a page that says that the selected partition is not compatible with Windows XP.

Thinking I'm outsmarting the computer, I use a Linux boot disk to create and format a partition with NTFS, then reboot to XP and try to use this partition again... with the same results.

At this point, I should mention that the new box has a 160g 7200 rpm sata drive and a 250g ide drive. And that the 250g ide drive was showing up first in the list of drives.

After stumbling upon the exact Google search term, I learned that Windows XP in a little finicky about the drive to install upon appearing first in the list of drives. Since my 250g drive was appearing first, Microsoft didn't like that.

So I unplugged the 250g ide drive and tried again, but then my CD, which was a slave wasn't recognized since there was no longer a master. After moving the appropriate jumper and rebooting, everything is now working.

Hours wasted on this...

Friday, February 1, 2008

Fridge won't make ice? Kenmore Coldspot

My ice maker in my side-by-side Kenmore Coldspot fridge stopped making ice suddenly, so once the supply in the hopper was exhausted, I started to diagnose it.

Google searches gave me a bunch of nonsense about replacing the icemaker component, but come on... I removed the door to the ice maker and up at the top is the water dispenser that fills the tray where the ice is made. And behold a icicle hanging down blocking the water.

I grabbed wifey's blow dryer and warmed the dispenser and the ice pushed it's way out and then the water tray filled up. Now it's all working.

That's it. Your mileage may vary.

Tuesday, January 8, 2008

Remote desktop for Kubuntu

There's a build-in remote desktop server but it's either immature or it I don't have it configured properly. Go To Start->Internet->krfb (Desktop Sharing). To configure it for always on (for example, when you want to work from home), press Configure and check the "Allow uninvited connections" and uncheck the "Confirm uninvited connections. Set a password to help prevent unauthorized accesses.

When you get fed up with krfb crashing, install Xrealvnc. Running it with a ":1" parameter sets up a new window running the configured desktop. While you won't have access to currently running applications on the default desktop (:0), you will have access to the panel. From the remote computer, use a VNC viewing program with the URL vnc:/{hostname or ip}:1.

Currently, I use the following steps to work from home:

1. Establish VPN connection to network.
2. SSH into my remote box (acting as the server)
3. Launch "Xrealvnc :1"
4. Launch Kubuntu's Krdc and use the URL: vnc:/192.9.200.37:1

You could also use any old vnc viewer, adjusting the URL as appropriate.

THIS JUST IN:

Alternatively, installing x11vnc and running it as the vnc server will share the running desktop when connected to with a vnc viewer client. It's my new preferred method to work from home.

Now if I could only get my VPN connection configured properly in Kubuntu Gutsy.

Wednesday, December 26, 2007

Samba configuration on Debian Linux for accessing fileshares from Windows

After much hunting and well written how-to articles, I found that it boils down to this:

1. Either log in as root, or sudo each of these commands.
2. Edit your /etc/samba/smb.conf file to add whatever shares you need to access from a Windows computer. Here's a sample of mine

[docroot]
path=/var/www
writable=yes
invalid users=%S

3. Add a samba user:

smbpasswd -a {username}

4. Restart Samba

/etc/init.d/samba restart

5. Access your new share from Explorer or IE with the IP address of the computer backslash the name of the share. In my case:

\\192.168.1.106\docroot

Windows will prompt for the userid and password. Use the values you supplied to the smbpasswd command. You may have to preceed the userid with the hostname of the server (for example: 192.168.1.106\rick).

Monday, December 10, 2007

Network configuration woes with Debian

Trying to resurrect an ancient computer to use it as a low-powerer (wattage) file server/web server. After install Debian, couldn't communicate on the network.

Used ifconfig -a to show all the network interfaces. For some reason, eth2 was the selected choice.

Edited /etc/network/interfaces and changed references for eth0 to eth2. Then just did a ifup eth2, and behold the transmission of bits over my twisted pairs.

Other good commands to help diagnose the problems:

lspci - List all the PCI devices
lsmod - List modules loaded into the running kernel
modprobe -l - List all available modules

Monday, October 15, 2007

Correcting time problems in Kubuntu

After a serious misstep during a Grub correction, I installed a base install over my existing install. This resulted in network configuration going away and timezone problems. I fixed the network configuration easily enough, but the timezone stuff drove me crazy.

I finally found a post referencing the command tzconfig, which resolved my problems. Run it as follows:

$ sudo tzconfig

It will ask about your timezone and magically correct problems. My problems were with the desktop clock, the timestamp on Pidgin messages and the creation times of files created with Eclipse.