Topic

Archives


johnqdare.com

 blog

New Red 2011 Can-am Commander XT on 30″ Silverbacks

December 7, 2010 at 6:55 pm | Uncategorized | 2 Comments »

How To Replace Boot on Fabtech Tie Rod End

August 28, 2010 at 4:03 pm | Tutorials | No Comments »

I’ve had my Fabtech 6″ lift on my 09 GMC Sierra for about 6 months. While rotating my tires I noticed that the boots on my tie rod ends looked cracked and dry-rotted as though they were 10 years old. I called Fabtech and they were nice enough to send me 2 new boots. They are located in California and I’m in Arkansas so calling on Monday morning and receiving the boots Friday afternoon was good enough service for me. Here’s what happened next:

Remove front wheel:

You will need to remove the nut holding the tie rod end to the top of the spindle. It is a size 22mm. After removing nut:

Now you will need something to separate the joint from the spindle. I was told that you could apply some upward pressure to the tie-rod and simply wack the spindle really hard with a hammer at the point where the bolt runs through it and it would break loose. Well, either I’m not strong enough or not brave enough so this didn’t work for me. I went to AutoZone and for 9.99 I bought a “Pickle Wrench”:

I used it to separate the joint like this:

The torn boot should slide off the joint fairly easily. You need to pivot the joint back and fourth to ensure that being dry hasn’t damaged it. It should be tight and move smoothly with no extra play. I used a paper towel to clean the dirt and extra grease of the joint.


The new boot will have a metal ring around the top that has to be pressed onto the tie rod end. I almost damaged the ring beyond repair trying to force it on with channel locks. The method I ended up using is by no means the correct way but I used what resources I had. I found a hole saw in my tool box which was the exact diameter of the metal ring. I greased up the outside of the boot and smashed it down into the hole saw.



I rotated the tie rod end upside down, and rested it on the spindle. Note that you want to let the grease fitting on top of the tie rod end go through the hole in the spindle so you don’t bend it. Next I put a socket on top of the hole saw and tapped it into place with a hammer.



Now flip it back over and place nut on the bottom and tighten to original torque. Then replace wheel and repeat these steps for the other side.

Simple Auto Loan Payment Calc

July 13, 2010 at 2:09 pm | iPhone Apps | No Comments »

Simple Auto Loan Payment Calc is a very simple auto loan payment calculator. It takes three inputs:

  • 1) amount to be financed
  • 2) number of months to finance
  • 3) interest rate

Pressing the calculate button at the bottom of the screen will cause an alert to be displayed with the monthly payment in US Dollars.

Where U Ride At

July 13, 2010 at 2:02 pm | iPhone Apps | 4 Comments »

UPDATE: Where U Ride At Now has it’s own website. For up to date info please visit http://www.whereurideat.com. You can also stay up to date on the progress of the app by following it on Twitter: whereurideat!

Where U Ride At is designed to help users share and find good places to ride atvs or other off-road vehicles.

Upon first launch of the app, you will be greeted with a login screen. If you do not have a valid login you will need to create a new account. Once your account is created, you will be logged in automatically. you will see a map with your current location in the center denoted by a green pin. The map will span approximately a 200 mile radius of your current location. You can quickly move to another place on the map by typing and address in the box at the top of the screen and pressing “Go.” While viewing the map, places to ride will be denoted by yellow diamond with an atv in the center. Touching a place will reveal it’s title along with a button link to view the place’s details.

The Detail View will include the description of the place written by the user who submitted the place. At the bottom of the screen there is a button to get directions to the place from your current location. If you are viewing a place that was added by you, there will be a trash icon in the navigation bar at the top of the screen. Touching this icon will remove the place from the map.

If you would like to add your current location to the map as a place for others to visit, touch the “+” button on the navigation bar above the map to the right of the title. Here you can fill in a Title and Description for the place and submit it along with the GPS coordinates which will be automatically included.

How I solved my Snow Leopard / HP Wireless Printing Problems

November 2, 2009 at 10:31 pm | Uncategorized | No Comments »

I got a shiny new MacBook Pro. All was well until I tried to use it with my HP OfficeJet 6310 printer. My printer is connected to my router via ethernet cable. All of my other PCs have had no problem printing given that they are connected to the router also. However, when I tried to print wirelessly from the MacBook, I was greeted with “Can’t connect to printer.” What’s strange is that I was able to ping the printer, and reach the printer’s configuration page in my web browser.
If I connect to the network via a wired connection, I can find the printer instantly. After hours of google searching this subject, all I have been able to turn up is 100′s of other posts outlining the wireless connectivity issues associated with Snow Leopard (rather discouraging).

So did I just give up? NO!! A thought hit me. My printer, like many other modern printers has bluetooth capability. In OSX, I opted to add a new bluetooth device via the bluetooth prefs pane in System Preferences. My printer was found right away and easily added.

BTW: You may want to open your printers web configuration page and change the passcode for the bluetooth so that your neighbor can’t spam your printer.

Next, I openend the Printers pref pane in System Preferences and removed all the non-working network based entries for my printer which I had previously added.

Then, I clicked the “+” sign to add a new printer and after a few seconds my printer showed up in the list and it said “Bluetooth” out to the right under Connection Type. I clicked on it, causing it to be installed, then I right-clicked on it and set it as the default printer. Now I’m printing wirelessly again!! Yippeee!

Note: Bluetooth range isn’t nearly as good as 802.11a/b/g so this may be a deal-breaker for some but since I just need to go from my office to my living-room it works fine for me. If anyone has info on how to make this work another way please post and let me know!

Shorewall Router with Wired and Wireless

July 6, 2009 at 9:52 am | Uncategorized | 6 Comments »

I wanted to set up a shorewall router using an Ubuntu 9.04 machine with three interfaces.

1) eth0 – Internet
2) eth1 – LAN
3) ath0 – WLAN

Most shorewall 3 interface tutorials explain how to set up a LAN with DMZ, which doesn’t help me at all. Most wireless shorewall tutorials, on the other hand, describe how to setup shorewall with three interfaces, two zones, and have wireless and wired on separate subnets. I don’t prefer this because, while shorewall will allow wired and wireless to communicate since they are in the same “loc” zone, the separate subnets make things more difficult such as getting samba shares to play nicely.

My solution to this problem was to add the LAN interface and the WLAN interface to a bridge, then masquerade that traffic to the internet. First i installed bridge-utils

#> apt-get install bridge-utils

Next I created my bridge

#> ifconfig eth1 0.0.0.0
#> ifconfig ath0 0.0.0.0
#> ifconfig eth1 up
#> ifconfig ath0 up
#> brctl addbr br0
#> brctl addif br0 eth1
#> brctl addif br0 ath0

Now I assigned an ip adress to my bridge

#> ifconfig br0 192.168.1.1 netmask 255.255.255.0

Now that my bridge was setup I had to configure shorewall. I copied the TWO INTERFACE example in to my /etc/shorewall folder. Notice I’m using the two-interface example since I am only using two interfaces: br0 and eth0. I edited /etc/shorewall/interfaces to include “net eth0″ and “loc br0″ I had to add “routeback” to the options for the br0 interface so that the routing would be handled correctly between the wired and wireless clients. Next i edited the masq file and changed it to say “ath0 br0″. Aside from these two changes you can follow the instructions for a standard shorewall setup with two interfaces found here.

Jetway Mini-ITX J7F4K1G2E-PB as Ubuntu Wireless Router

July 6, 2009 at 9:32 am | Reviews | 2 Comments »

I bought this board with plans to use it as a router/wireless access point/web server. It handles this very well. It runs at a cool idling temperature and my setup uses only around 18 watts of power. However, there were a few hurdles I had to overcome along the way.

1) The board seems to be picky about memory. The specs said to use DDR2 400. I tried booting with 1GB of gskill, no luck. I was greeted with a screeching beep and no post screen. Next I tried a 512mb Corsair stick and it posted. This little board goes from touching the power button to loading the OS faster than any other board I’ve ever worked with.

2) This board did not like booting from a USB cd-rom drive. I had to change two settings in the bios to get this to work. One for USB storage legacy support, and then change the boot device priority NOT to CD-ROM but USB-CD-ROM. Then I also had to enable legacy USB keyboard support for my keyboard to be recognized.

Next I Installed Ubuntu Server 9.04 on a 2.5 hdd and rebooted. There were a few tweaks that needed to be made in order for the system to work the way I wanted.

1) I wanted to use the board as an access point so I chose a D-Link WDA-2320 wireless G PCI Card. It has the Atheros AR5212 chipset which supports Access Point/Master mode (Monitor and Injection also). In order to put the card in access point mode I had to tell ubuntu not to load the ath5k driver by placing the following at the bottom of /etc/modprobe.d/blacklist.conf

Blacklist ath5k

This might not have been needed but I also added to /etc/modules

ath_pci

which makes sure the madwifi drivers get loaded at boot time.

2) This board has a nasty speaker on it that makes a really loud annoying system beep so to take care of that I also added to /etc/modprobe.d/blacklist.conf

blacklist pcspkr

Now with those things in place it was time to set up the routing. I installed hostapd to manage wireless connections. The only lines I had to edit in the config were interface, driver, bridge, and the WPA settings. Most tutorials tell you to put your wired and wireless networks on different subnets. I don’t like this proposal. I’d rather have my wired and wireless on the same subnet similar to most commercial wireless routers. To accomplish this, I created a bridge using the bridge-utils package, added my LAN and WLAN interface to the bridge. Then masqueraded all traffic from that bridge to my other interface (internet). I installed dnsmasq to hand out ips to everthing on the bridge. For details on setting up Shorewall to manage the three interfaces see my other post here.

Insane Hail on 6/30/09

June 30, 2009 at 6:12 pm | Uncategorized | No Comments »

Ubuntu 9.04 and XBMC on the ZOTAC IONITX-C-U

June 30, 2009 at 1:31 pm | Reviews | 4 Comments »

I recently picked up a Zotac IONITX-C-U.  This board caught my attention because it is fanless, low-power, and has a plethora of outputs available for such a small footprint.  My plans for the board were to build a media pc to use in my living room.  In this post I’ll be describing the process required to make it happen.

I’m going to assume that if you’re reading this post you are somewhat familiar with putting a pc together from scratch.  The build process was uneventful for the most part, with one exception.  This board has an on board power supply and comes with an ac-adapter.  On the board there is a four-pin molex connector into which you plug a pig tail with 3 sata power plugs on it.  The people at Zotac probably assume that this board will be placed in a tiny case to make use of it’s small size requirements, so this pig-tail is only about 6 inches long.  In other words, if your hard drives are going to be more than 6 inches from this plug you’re out of luck.  That being said, we’ll move on.

After getting the board installed in the case I powered it on and installed Ubuntu Jaunty 9.04 from an external usb dvd drive.  The installation was completely painless, and in no time I was looking at an Ubuntu Gnome desktop.  I next allowed Ubuntu to install all the latest updates.  I was surprised however, that I had not been bothered about installing restricted Nvidia drivers.  This is because, at the time of this post, Ubuntu did not recognize the Nvidia ION chipset this board shipped with.  I went to the Nvidia website and downloaded the latest linux driver for the ION Chipset.  The version I downloaded was 185.18.14.  I saved the file to my desktop and did chmod 755 <filename> to make the file executable.  In order for the driver to be built you will need the package “build-essentials” installed so from a terminal window type “sudo apt-get install build-essentials.”  Next, in order to install the drivers you have to stop your xserver so I opened a terminal and typed “sudo /etc/init.d/gdm stop.”   This dropped me to a shell prompt.  I then logged in as my user changed to my desktop directory where I saved the file and ran “sh  <filename>.”  The installer will attempt to download a kernel module pre-complied for your kernel but if it can’t find one it will have to build one so I let it do that.  At the end I let it update my xorg.config file and then restarted my xserver by typing “sudo /etc/init.d/gdm start.”  Now I was greeted with my desktop once again except this time with display effects provided by the Nvidia graphics drivers.

In order to install the latest version of XBMC I followed the instructions on this page.  Then typed “sudo apt-get install xbmc”  and xbmc was installed.  I wanted to be able to control the box with a IR remote so I installed “lirc” by typing “sudo apt-get install lirc,” then specifying which remote I would be using.

Now XBMC was up and running so lets talk performance.  I primarily will be using this box for playing 720p mkv files and listening to music.  The first file I tried to play caused the cpu usage to go up to about 60%.  However, XBMC now supports VDPAU so I enabled that by changing Settings->Video->Player->Rendering->VDPAU.  To my amazement, the cpu usage dropped to 6-9% usage while watching the same file!  It handled the playback beautifully as well with no dropped frames or quality issues.

So far I’ve been very impressed with this little board.  I’m sure I’ll find many more uses for this box in the future.

Search

Calendar

February 2012
M T W T F S S
« Dec    
 12345
6789101112
13141516171819
20212223242526
272829  

Links