GTM Coupe Kit car. MOT’d. 1275cc Austin Metro engine.

£651.99 (3 Bids)
End Date: Sunday Sep-12-2010 20:09:26 BST
Bid now | Add to watch list
Posted in Kit-Cars | Leave a comment

2002 GTM SPYDER BLUE,MG-Rover,roadster,sports car,VVC

£3,500.00 (4 Bids)
End Date: Tuesday Sep-07-2010 15:52:20 BST
Bid now | Add to watch list
Posted in Kit-Cars | Leave a comment

mini metro kit car GTM

£1,500.00
End Date: Thursday Sep-02-2010 17:18:02 BST
Buy It Now for only: £1,500.00
Buy it now | Add to watch list
Posted in Kit-Cars | Leave a comment

2003 GTM SPYDER-RED-KIT CAR

£3,101.00 (6 Bids)
End Date: Monday Aug-30-2010 19:33:22 BST
Bid now | Add to watch list
Posted in Kit-Cars | Leave a comment

GTM coupe rally car, vtec powerd 2008 2009 ACSMC Winner

£155.00 (6 Bids)
End Date: Sunday Aug-29-2010 13:02:51 BST
Bid now | Add to watch list
Posted in Kit-Cars | Leave a comment

How to upgrade subversion in RHEL 5.2

According to the svn booksvnbook.red-bean.com there is a –depth option to checkoutsvnbook.red-bean.com which I wanted to use, however, the book relates to version 1.5 of svn and I only had version 1.4.2.

Here’s how I upgraded it, and maybe you can too.
I use RedHat Enterprise Linux (aka RHEL) 5.2 (Tikanga), but these instructions apply to other versions of RHEL, CentOS and probably other RedHat-based linux distros as well.

[craig@localhost ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 5.2 (Tikanga)

[craig@localhost ~]$ svn --version
svn, version 1.4.2 (r22196)
compiled Nov 20 2006, 07:17:37

First you need to download the packages (rpms) from SummerSoftthe.earth.li. Go into the rhel5 folder, then i386. Download neon-0.27.2-1.i386.rpmthe.earth.li and subversion-1.5.5-1.i386.rpmthe.earth.li, or whatever version is there now.

Go to the download location using a terminal and type (replace your file version as needed):

[craig@localhost svn-rpms]$ sudo rpm -i neon-0.27.2-1.i386.rpm
Password:

[craig@localhost svn-rpms]$ sudo rpm -U subversion-1.5.5-1.i386.rpm

[craig@localhost svn-rpms]$ svn --version
svn, version 1.5.5 (r34862)
compiled Dec 21 2008, 13:58:57

[craig@localhost svn-rpms]$ svn help co
checkout (co): Check out a working copy from a repository.
usage: checkout URL[@REV]... [PATH]
...
Valid options:
...
--depth ARG : limit operation by depth ARG ('empty', 'files',
'immediates', or 'infinity')

[craig@localhost ~]$ svn co --depth files https://svn.example.com/project/
A project/file1
A project/file2
[craig@localhost ~]$

If you want a newer version then try the numbered folders at SummerSoftthe.earth.li, or other providers of subversion binary packages CollabNet www.collab.netand WANdiscowww.wandisco.com.

Posted in Linux | Tagged , , , | Leave a comment