Skip to main content

Project Z750 part 23

So now to move the bike so that I can lift the front end. I cant leave it on my bench as it has been lowered and I cant get my small lift under it.

So I'll have to get it off the bike bench, put it on paddock stands and then put the lift under it.

My wife helped me get if off the bench, as you really can't hold a motorbike up and loosen a wheel clamp at the same time.

Once it was on the floor, I put the rear paddock stand under it and tried the small lift to see if it would now fit. Yes. no need for the front paddock stand then. okay, now that the lift fits, I need to work out where on the engine it can lift. so I position it just under the exhaust downpipes and grab some blocks of wood so that the lift doesn't press on the exhausts, and the front end comes off the floor.

so now it's just a case of taking the front wheel and mudguard off, and dropping the forks out.

First thing to do is loosen the top of the fork while it is being held in by the front yokes. Next up I make sure that all of the front yoke bolts are loose, then I grab a 14mm hex bolt and try to undo the front wheel axle.

No joy. it's stuck fast. Typical.

so I spray some WD40 on the thread end (making sure it doesn't get onto the tyre), and leave it a while. then I sprayed some more and tried again. still no luck. Okay, more WD40 and I'll leave it overnight.

Next morning, before I head to work, I spray a little more WD40 and try to loosen it. Nope, still stuck.

when I got home, I decided to try a little heat, so I got a small blowtorch out and applied a small amount of heat and tried again with a hex key and a hammer.

I'm not sure if the WD40 had finally worked through, whether the heat had loosened the axle, or whether it was just the brute force of the hammer, but it moved.

Finally the front wheel came off. After that I could get to the nuts holding the mudguard on. They came free easily (which surprised me). and once that was off, I could loosen the yoke bolts and drop the forks out.

so the bike now looks like this:




Comments

Popular posts from this blog

Triathlon Training in the new year

So, my 2019 training has got off to a good start. I'm running regularly and my knees seem to be holding up. I've got a training plan to get me to a middle distance triathlon in September and I am managing the run distances I have set myself. I need to find some longer cycling routes to work and ones with a few hills too, but that shouldn't be a problem. my weekly cycling distance is okay, I just need to move to get my ebike to be doing less of the work. last week I did use my normal commuter bicycle and managed the whole four days as well as my runs, so that was a really good sign. Swimming won't be an issue, I have always found that to be the easy part of a triathlon (not that I'm fast, but I can keep going, and I did manage to swim the distance within the cut off time when I tried the ironman 70.3 last time) The main worry about going longer is my knees. I've got a 10K booked in late January which will test my knees out and I'm hoping that they hold ...

Creating a Watch Face for Android Wear OS 2

Step 1 - Setup my watch for development I have wanted to create a watch face for android wear for a while, but as no new watches were being released my old Moto 360 watch running wear os 1.0 got out of date and I stopped using it. For Christmas 2018 I got a new wear os watch running wear os 2.2 (android os 8.0.0). it has a round 400 x 400 screen and I decided to finally get round to creating myself a custom watch face for it. The first thing I do with all my android devices is to enable developer options. if you don't know how to do that then you can find the method using a google search. I won't give it hear as it opens up all sorts of options that could make android become slow/unusable. Once I had developer options enabled, I turned on USB debugging. This watch (as opposed to my old Moto 360) has a USB connection to the computer, so I don't have to use WiFi debugging (which has to be set up for each debugging session). now on to the watch face creation. St...

Windows Subsystem for Linux Internals

Background Windows Subsystem for Linux was developed by Microsoft to enable command line programs compiled for the Linux operating system to be executed on Windows. To explain the architecture I would like to show the evolution of OS design and how that has enabled this subsystem to be built. Dark Ages (or Back in the Day) Microsoft's MS-DOS was quite primitive in its design (compared to today's OS's). It is a single user OS that can execute one process at a time. DOS had an application programming interface to allow user programs to access some hardware in a device independent way, but only for character-based applications. This allowed applications to display graphical elements emulated with text characters as these screenshots of Microsoft word for DOS show: This is Microsoft Word version 1. To use these programs you had to remember key combinations to bring up the menus and used the cursor keys to navigate around the screen. If the a...