New Kite
by OKButton on Jun.27, 2009, under Blogroll, Going out
As well as everything else my power kite was in the car that got stolen. So today I bought a replacement. The original was a 2 line kite that I was hopping would lift a camera. The new kite is a 4 line kite with a bigger canopy.
New iPhone 3Gs
by OKButton on Jun.23, 2009, under Computing, iPhone
I got a new iPhone this weekend. I have had a touch for a while and this is a lot faster. It was the original touch I had. I don’t need to go on about how good the new phone is its well documented all over the place. But if my word does hold any wait I would well recommend getting one.
Got Burggled
by OKButton on Jun.23, 2009, under Blogroll
In the last few weeks I have had my house broken in and I have been robbed. I have had my Mac and my camera stolen as well as my car. I am slowly getting all the insurance sorted out so I should be back up to speed again soon. The site has been broken for ages this seemed to be a nigally issue with fastcgi. This has been fixed with an update to debian.
Sharing Vialations within SYSVOL
by OKButton on Feb.24, 2009, under AD, Computing, Windows
I recently had an issue with sharing violations benig reported by Ultra Sound with issues within my sysvol replica set. I had a look at the tech net article on this problem (kb822300) but it did not help with the problem I was having as when I installed the surgested hotfix the files that were in a locked state were no loged in the event log as advertised. I decided to use the old fashond way to fix this.
First I ran:
ntfrsutl inlog > c:\sometextfile.txt
This creates a list of the items that are being inbound replicated on the problem server. I went through the file looking for the line IBCO_INSTALL_RETRY as described in the KB but it did not find it. Then I decided to go through the file manually reading the hole thing. I found that I had a slight variation on the KB article on some items I had the files marked with IBCO_DEL_RETRY and IBCO_RENAME_RETRY. I then ran the GUID’s for these files through the following command to find out what they were.
ntdfsutl idtable {GUID} > c:\someothertextfile.txt
This relieved that some folders that had been deleted would not replicate off the server and also a file that had been renamed would not replicate the change. I found that I had a permission issue with these folders and files and was able to fix it.
My Single Line Wordpress Upgrade
by OKButton on Feb.23, 2009, under Computing, Hosting, HowTo, Linux, Web
Here is my take on the single line word press upgrade I saw at hack a day.
The bellow will download the latest version and unpack it. IT then removes the new plugins and themes as to not over wright your installed ones. IT then copies the new install over the old one and resets the permissions on the files.
wget http://wordpress.org/latest.zip && unzip latest.zip && rm -rf ./wordpress/wp-content/ && cp -r ./wordpress/* ../
You may need to change the paths for your installation but this should work quite well.
As allways take a backup before you run this just in case.