[ubuntu-uk] Release: Welsh Party - Starbucks, Cardiff CF10 2BJ until 7pm

2009-04-15 Thread Cornelius Mostert
 Cornelius Mostert wrote:
  Hallo all..
  I saw this on your site and would love to go but I have a full family (wife,
  and 2 small children) and therefore can not hang around indefinite and
  therefore would like to ask what is the starting time for the *Morning
  session* (25th April 2009 - Welsh Party - Starbucks, Cardiff CF10 2BJ until
  7pm), I can see it ends at 19:00 when it moves over to the bar.
 
  Just to let you know I have to do almost 80 Miles to get to this party and
  this is just one more reason for me to know the start time...
 
  thanx
 

 I'm not entirely sure what time the first people will be arriving, I'm
 beginning to ask in IRC to see what times people are going. You can come
 yourself and get to see people before you meet up with us, there is info
 available on how to join here: https://wiki.ubuntu.com/WelshTeam/IRC . I
 personally will have work on Saturday and depending on how I manage my
 time I'll hopefully make it just we start or even halfway through if
 possible! When this was all planned, I was jobless but now I may be
 delayed due to this issue.

 I really cannot put a time on when it starts but if you come over into
 IRC you can see when people are going there or even see if people reply
 through the list itself regarding times available. Off-topic however you
 have an interesting surname, is it of South African lineage and from
 which part of Wales or England are you traveling from?
___

OK thanx
The company has a strenuous firewall/proxy so am not sure I can hit
IRC but will try. Can do Win MSN Messenger BUT i can not get Pidgin to
get through for MSN messenger, I got Linux Skype through though...

So I gather that people will pitch as and when but I guess someone
must be the leader or organizer of this whole StarBux party and how
would I know when I pitch where to look for the party, will there be a
banner up inside the StarBux or people with Ubuntu Tshirts... This
will be my first Linux party so I do not know what to expect..

My surname started in various places in the world, Scotland, Germany,
Holland, etc... My ancestors came from Holland, I have been all over
UK but originally came from South Africa, Pretoria(+- 30',30' south) 6
years ago and currently live in Tewkesbury, Gloucestershire.

Thanx

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


[ubuntu-uk] commands to navigate a windows network for a script - fstab and domains...

2009-04-15 Thread Cornelius Mostert
 From: Rob Beard r...@esdelle.co.uk
 Subject: Re: [ubuntu-uk] commands to navigate a windows network for a
        script
 To: British Ubuntu Talk ubuntu-uk@lists.ubuntu.com
 Message-ID: 49e4b131.1020...@esdelle.co.uk
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed

 doug livesey wrote:
 Hi -- I have set up a database server at work that I currently run
 backups on myself, but wish to put this into a cron job.
 One of the things I would like to do is to have that backup take
 place, then to have it copied over to our work's windows network,
 where it can be caught in our nightly backup to tape.
 Could anyone offer me some pointers as to how I should write this
 script, particularly with reference to how I get on to  navigate the
 windows network?
 Thanks,
    Doug.
 Presumably you'd want your backup script to copy the data to the Windows
 machine with the tape drive on it?

 What you'll need to do is mount a share on the Window server.  If you
 install the smbfs package you'll be able to use either smbmount or mount
 with the type cifs or smbfs (although IIRC smbfs is being replaced by cifs).

 I normally do this when backing up machines using Partimage on the
 System Rescue CD.

 I'd enter a command such as...

 sudo mount -t cifs -o username=myusername,password=mypassword
 //server/share /mnt/mountpoint

 Where myusername is the username of the user who is connecting to the
 share, mypassword is the users password, you can also store the password
 in a password file.  If it was me I'd create a basic user with limited
 access to just the one share and nothing else, that way if the password
 was compromised then it should in theory limit the access that that
 particular user can access.  I believe you can also specify a domain too
 using domain=mydomain.

 //server/share is the address of the server and the share name, this can
 also be an ip address for instance //192.168.0.1/myshare

 Note the slashes are forward slashes rather than backslashes but still
 are double slashes (//).

 Finally /mnt/mountpoint points to a mount point on the Linux box running
 the script.

 To unmount the share just use sudo umount /mnt/mountpoint

 If you're always going to use the same share you could also put the
 details in fstab which should then resolve the need to mount the share
 as root (using sudo).

 You can find plenty of information too in the smbmount man page (man
 smbmount) after you have installed the smbfs package.

 Basically once the share is mounted on the Linux filesystem then it
 should work pretty much like any other file or directory although
 anything you store in there will be owned by the user you used to mount
 the share.

 Hope this helps.

 Rob
__

I have a Linux box at work (shs, don't tell anyone!!) and had to
navigate the Windows domain to get to the normal shares...
I used FSTab file in /etc to map these drives for me automatically. Steps I did:
1. Create a Map dir on linux like /home/MyWinShare1
2. Create a Password/Credentials file that is only allowed to be
read by root lets say in /etc with content
username=MyDomainUserName   password=MyWinPass
3. Add entry in FSTab file:
//ServerName/ShareDir   /home/MyWinShare1   smbfs   
credentials=/etc/MyPasswords,workgroup=MyWinDomain,rw   0   0
4. run sudo mount -a to immediately remount mount the fstab entries,
thisway you will also not any mistakes you made, if all goes ok you
will have a mounted WinSahre else fix the errors and try again.

The reason for the Password file is to make it more secure (not allow
others to change or read the file, Just remember to change your
password once your Domain Password changes (ours change once every
month)

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] commands to navigate a windows network for a script - fstab and domains...

2009-04-15 Thread Dave Morley
On Wed, 2009-04-15 at 08:59 +0100, Cornelius Mostert wrote:
  From: Rob Beard r...@esdelle.co.uk
  Subject: Re: [ubuntu-uk] commands to navigate a windows network for a
 script
  To: British Ubuntu Talk ubuntu-uk@lists.ubuntu.com
  Message-ID: 49e4b131.1020...@esdelle.co.uk
  Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 
  doug livesey wrote:
  Hi -- I have set up a database server at work that I currently run
  backups on myself, but wish to put this into a cron job.
  One of the things I would like to do is to have that backup take
  place, then to have it copied over to our work's windows network,
  where it can be caught in our nightly backup to tape.
  Could anyone offer me some pointers as to how I should write this
  script, particularly with reference to how I get on to  navigate the
  windows network?
  Thanks,
 Doug.
  Presumably you'd want your backup script to copy the data to the Windows
  machine with the tape drive on it?
 
  What you'll need to do is mount a share on the Window server.  If you
  install the smbfs package you'll be able to use either smbmount or mount
  with the type cifs or smbfs (although IIRC smbfs is being replaced by cifs).
 
  I normally do this when backing up machines using Partimage on the
  System Rescue CD.
 
  I'd enter a command such as...
 
  sudo mount -t cifs -o username=myusername,password=mypassword
  //server/share /mnt/mountpoint
 
  Where myusername is the username of the user who is connecting to the
  share, mypassword is the users password, you can also store the password
  in a password file.  If it was me I'd create a basic user with limited
  access to just the one share and nothing else, that way if the password
  was compromised then it should in theory limit the access that that
  particular user can access.  I believe you can also specify a domain too
  using domain=mydomain.
 
  //server/share is the address of the server and the share name, this can
  also be an ip address for instance //192.168.0.1/myshare
 
  Note the slashes are forward slashes rather than backslashes but still
  are double slashes (//).
 
  Finally /mnt/mountpoint points to a mount point on the Linux box running
  the script.
 
  To unmount the share just use sudo umount /mnt/mountpoint
 
  If you're always going to use the same share you could also put the
  details in fstab which should then resolve the need to mount the share
  as root (using sudo).
 
  You can find plenty of information too in the smbmount man page (man
  smbmount) after you have installed the smbfs package.
 
  Basically once the share is mounted on the Linux filesystem then it
  should work pretty much like any other file or directory although
  anything you store in there will be owned by the user you used to mount
  the share.
 
  Hope this helps.
 
  Rob
 __
 
 I have a Linux box at work (shs, don't tell anyone!!) and had to
 navigate the Windows domain to get to the normal shares...
 I used FSTab file in /etc to map these drives for me automatically. Steps I 
 did:
 1. Create a Map dir on linux like /home/MyWinShare1
 2. Create a Password/Credentials file that is only allowed to be
 read by root lets say in /etc with content
 username=MyDomainUserName password=MyWinPass
 3. Add entry in FSTab file:
 //ServerName/ShareDir /home/MyWinShare1   smbfs   
 credentials=/etc/MyPasswords,workgroup=MyWinDomain,rw   0   0
 4. run sudo mount -a to immediately remount mount the fstab entries,
 thisway you will also not any mistakes you made, if all goes ok you
 will have a mounted WinSahre else fix the errors and try again.
 
 The reason for the Password file is to make it more secure (not allow
 others to change or read the file, Just remember to change your
 password once your Domain Password changes (ours change once every
 month)
 

Push comes to shove you could always try the likewise open AD package
-- 
Seek That Thy Might Know

http://www.davmor2.co.uk


signature.asc
Description: This is a digitally signed message part
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] commands to navigate a windows network for a script - fstab and domains...

2009-04-15 Thread Steve Garton
On 15/04/09 09:06, Dave Morley wrote:

[SNIP]

 Push comes to shove you could always try the likewise open AD package


I have never managed to get Likewise to work with our (W2000) domain at 
work. Not sure if it is our Domain that is screwy, or the fact that it 
is W2000, but still: YMMV.

Steve Garton
sheepeatingtaz.co.uk

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Ubuntu and a Great Grandma. A great story.

2009-04-15 Thread Tim Dobson
Philip Wyett wrote:
 OK, I scrolled back through my email and see it has been posted. Wish
 some users would keep up. ;-)

Sadly I didn't see this the first time, so thanks anyway! :)


-- 
www.tdobson.net

If each of us have one object, and we exchange them, then each of us
still has one object.
If each of us have one idea, and we exchange them, then each of us now
has two ideas.   -  George Bernard Shaw

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Ubuntu and a Great Grandma. A great story.

2009-04-15 Thread Bruce Beardall
What? A story as good as this doesn't deserve to be mentioned more than
once?

Cheers

Bruce


2009/4/15 Philip Wyett philwy...@gmx.com

 On Wed, 2009-04-15 at 04:40 +0100, Philip Wyett wrote:
  I'll not spoil this one and leave you to read it through. :-)
 
 
 http://dnc.digitalunite.com/2009/03/31/shopping-delivered-by-ubuntu-linux/
 
  Regards
 
  Phil

 OK, I scrolled back through my email and see it has been posted. Wish
 some users would keep up. ;-)

 Regards

 Phil

 --
 ubuntu-uk@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
 https://wiki.ubuntu.com/UKTeam/


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Ubuntu and a Great Grandma. A great story.

2009-04-15 Thread Philip Wyett
On Wed, 2009-04-15 at 11:13 +0100, Bruce Beardall wrote:
 What? A story as good as this doesn't deserve to be mentioned more
 than once?
 
 Cheers
 
 Bruce
 

True enough, it can. Was having a self PEBHAC moment, but now can let
myself off. :-)

Regards

Phil

 
 2009/4/15 Philip Wyett philwy...@gmx.com
 
 On Wed, 2009-04-15 at 04:40 +0100, Philip Wyett wrote:
  I'll not spoil this one and leave you to read it
 through. :-)
 
 
 
 http://dnc.digitalunite.com/2009/03/31/shopping-delivered-by-ubuntu-linux/
 
  Regards
 
  Phil
 
 
 OK, I scrolled back through my email and see it has been
 posted. Wish
 some users would keep up. ;-)
 
 Regards
 
 Phil
 
 --
 ubuntu-uk@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
 https://wiki.ubuntu.com/UKTeam/
 
 


signature.asc
Description: This is a digitally signed message part
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Ubuntu and a Great Grandma. A great story.

2009-04-15 Thread Philip Wyett
On Wed, 2009-04-15 at 11:44 +0100, Philip Wyett wrote:
 On Wed, 2009-04-15 at 11:13 +0100, Bruce Beardall wrote:
  What? A story as good as this doesn't deserve to be mentioned more
  than once?
  
  Cheers
  
  Bruce
  
 
 True enough, it can. Was having a self PEBHAC moment, but now can let
 myself off. :-)
 
 Regards
 
 Phil

I'm going back to bed to get up and start over. Two keys out on that
PEBKAC even. :-D

Regards

Phil


signature.asc
Description: This is a digitally signed message part
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Ubuntu and a Great Grandma. A great story.

2009-04-15 Thread Stephen O'Neill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 15/04/09 11:57, Philip Wyett wrote:
 True enough, it can. Was having a self PEBHAC moment, but now can let
 myself off. :-)

[snip]

 I'm going back to bed to get up and start over. Two keys out on that
 PEBKAC even. :-D


I did wonder, then assumed you were using a 'Handset' and I'd missed
this new abbreviation.


- --
Stephen O'Neill
w: http://www.thefloatingfrog.co.uk/
e: sq...@thefloatingfrog.co.uk
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAknlviMACgkQJ+Auntu1v4REUgCffLsIfYOLyYy+1TisIU6BlrXX
sbMAoJ4QjkZcqKRmtUBu9d2ZcMhMP/7I
=lgC6
-END PGP SIGNATURE-

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] BT Home Hub

2009-04-15 Thread Rob Beard
Tony Travis wrote:
 Ian Pascoe wrote:
   
 [...]
 2.  What can be connected to the Home Hub USB ports?  Most mass storage 
 devices will work out of the box.  Apparently the Home Hub has SAMBA 
 built in to aid with this. IP address 192.168.0.253
 

 Hello, Ian.

 Thanks for the Jungle tip! I'd no idea the HomeHub could have a disk 
 attached to its USB port: I just assumed it was there to connect a PC or 
 game console without an ethernet port. Have you or anyone else used a BT 
 Home Hub as a Samba server?

 Bye,

   Tony.
   
I'll give it a try later on.  I presume the IP address is the one that 
the router is configured to rather than specifically 192.168.0.253.  
IIRC the Home Hub that I got came pre-configured to 192.168.1.254 
although I changed this to fit in with my network.

Rob


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Release: Welsh Party - Starbucks, Cardiff CF10 2BJ until 7pm

2009-04-15 Thread Craig Lomax
If there is a leader it would be Chris since he's our current PoC (until we
vote). We'll be wearing shirts with Ubuntu Guru printed on. Also I'll be
wearing an Ubuntu lanyard so you can barely miss me. Not sure about a banner
as of yet, I've done a few designs but we might not bother with one. It's my
first Linux party too but expect fun!

On Wed, Apr 15, 2009 at 8:46 AM, Cornelius Mostert 
corneliusmost...@googlemail.com wrote:

  Cornelius Mostert wrote:
   Hallo all..
   I saw this on your site and would love to go but I have a full family
 (wife,
   and 2 small children) and therefore can not hang around indefinite and
   therefore would like to ask what is the starting time for the *Morning
   session* (25th April 2009 - Welsh Party - Starbucks, Cardiff CF10 2BJ
 until
   7pm), I can see it ends at 19:00 when it moves over to the bar.
  
   Just to let you know I have to do almost 80 Miles to get to this party
 and
   this is just one more reason for me to know the start time...
  
   thanx
  
 
  I'm not entirely sure what time the first people will be arriving, I'm
  beginning to ask in IRC to see what times people are going. You can come
  yourself and get to see people before you meet up with us, there is info
  available on how to join here: https://wiki.ubuntu.com/WelshTeam/IRC . I
  personally will have work on Saturday and depending on how I manage my
  time I'll hopefully make it just we start or even halfway through if
  possible! When this was all planned, I was jobless but now I may be
  delayed due to this issue.
 
  I really cannot put a time on when it starts but if you come over into
  IRC you can see when people are going there or even see if people reply
  through the list itself regarding times available. Off-topic however you
  have an interesting surname, is it of South African lineage and from
  which part of Wales or England are you traveling from?
 ___

 OK thanx
 The company has a strenuous firewall/proxy so am not sure I can hit
 IRC but will try. Can do Win MSN Messenger BUT i can not get Pidgin to
 get through for MSN messenger, I got Linux Skype through though...

 So I gather that people will pitch as and when but I guess someone
 must be the leader or organizer of this whole StarBux party and how
 would I know when I pitch where to look for the party, will there be a
 banner up inside the StarBux or people with Ubuntu Tshirts... This
 will be my first Linux party so I do not know what to expect..

 My surname started in various places in the world, Scotland, Germany,
 Holland, etc... My ancestors came from Holland, I have been all over
 UK but originally came from South Africa, Pretoria(+- 30',30' south) 6
 years ago and currently live in Tewkesbury, Gloucestershire.

 Thanx

 --
 ubuntu-uk@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
 https://wiki.ubuntu.com/UKTeam/

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Release: Welsh Party - Starbucks, Cardiff CF10 2BJ until 7pm

2009-04-15 Thread Christopher Swift
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Craig Lomax wrote:
 If there is a leader it would be Chris since he's our current PoC (until we
 vote). We'll be wearing shirts with Ubuntu Guru printed on. Also I'll be
 wearing an Ubuntu lanyard so you can barely miss me. Not sure about a banner
 as of yet, I've done a few designs but we might not bother with one. It's my
 first Linux party too but expect fun!

I'll check when I am in work tonight when is the earliest time that I
can arrive in Cardiff from Neath when I see the rota in work. (Working
weekends and evenings really suits me since I am nocturnal, you know the
sort who is up 'til 4am compiling his GNOME desktop environment, yep
that's me.) If it is at all possible for me to be there when the first
start to arrive I'll help take charge otherwise I will find someone in
IRC tonight who can take over until the rest of us can get there! I'll
try and get some others to respond on here too so you can see how many
will be arriving at what time and the likely turnout, most of the users
either aren't on this mailing list or don't often respond unfortunately.

 On Wed, Apr 15, 2009 at 8:46 AM, Cornelius Mostert 
 corneliusmost...@googlemail.com wrote:
 OK thanx
 The company has a strenuous firewall/proxy so am not sure I can hit
 IRC but will try. Can do Win MSN Messenger BUT i can not get Pidgin to
 get through for MSN messenger, I got Linux Skype through though...

If you're not firewalled, you can utilise Pidgin to connect to IRC as
per our little guide on the wiki https://wiki.ubuntu.com/WelshTeam/IRC .
It is a nice little handy protocol when you get acquainted with it and
use a specialised client such as XChat or irssi in place of Pidgin
(despite what I just said about Pidgin being able to connect).

 So I gather that people will pitch as and when but I guess someone
 must be the leader or organizer of this whole StarBux party and how
 would I know when I pitch where to look for the party, will there be a
 banner up inside the StarBux or people with Ubuntu Tshirts... This
 will be my first Linux party so I do not know what to expect..

There will be so many different kinds of Ubuntu t-shirts being worn
it'll be unbelievable (I'm only joking ;-) ). You're however bound to
see a few wearing some sort of Linuxy clothing, either hats (I wanted to
get an Ubuntu hat) or t-shirts but that isn't to say that's all that is
stocked in our wardrobes!

 My surname started in various places in the world, Scotland, Germany,
 Holland, etc... My ancestors came from Holland, I have been all over
 UK but originally came from South Africa, Pretoria(+- 30',30' south) 6
 years ago and currently live in Tewkesbury, Gloucestershire.

 Thanx
Ah that's very interesting, I've never came across a surname similar to
yours before hence why I asked. I am one of those people who gets
interested by far too much and heritage is one of those things.


I hope this has helped,
Christopher Swift.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAknl+MkACgkQYckxdhCgq45pOgCfYitxcWY+bT3AhANOwTM2mX/i
GkQAn36xmo2YzBARFECqD+7j8SW5nuxv
=cG50
-END PGP SIGNATURE-

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


[ubuntu-uk] Ubuntu 8.10 - upgrade of svn to 1.5 or 1.6

2009-04-15 Thread Werner F. Bruhin
I just upgraded my Ubuntu machine which I mainly use for my svn 
repository.  Reason to upgrade was to get of svn 1.4.3 to something more 
recent, i.e. 1.5.x or even better 1.6.1.

Was searching around but have not found instructions on how to get svn 
upgraded - note that I am still pretty new to Linux/Ubuntu.

Only thing I found was sudo apt-get upgrade subversion but the post 
was not clear if the person actually got it fully working (i.e. he 
posted that command but then stated that he run into problems).

Appreciate any tips.

Thanks
Werner


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Ubuntu 8.10 - upgrade of svn to 1.5 or 1.6

2009-04-15 Thread Philip Stubbs
2009/4/15 Werner F. Bruhin werner.bru...@free.fr:
 I just upgraded my Ubuntu machine which I mainly use for my svn
 repository.  Reason to upgrade was to get of svn 1.4.3 to something more
 recent, i.e. 1.5.x or even better 1.6.1.

 Was searching around but have not found instructions on how to get svn
 upgraded - note that I am still pretty new to Linux/Ubuntu.

 Only thing I found was sudo apt-get upgrade subversion but the post
 was not clear if the person actually got it fully working (i.e. he
 posted that command but then stated that he run into problems).

First I must say that I don't use svn. However, I would have thought
that if you have upgraded to 8.10 then you should already have
subversion 1.5.1. If you upgrade to 9.04 then you would have
subversion 1.5.4 unless it is held back for any reason.

If there is anything you need to do to your repository, I would not
know. However, I bet a quick Google would tell you.

All the best,
-- 
Philip Stubbs

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Ubuntu 8.10 - upgrade of svn to 1.5 or 1.6

2009-04-15 Thread Werner F. Bruhin
Philip Stubbs wrote:
 2009/4/15 Werner F. Bruhin werner.bru...@free.fr:
 I just upgraded my Ubuntu machine which I mainly use for my svn
 repository.  Reason to upgrade was to get of svn 1.4.3 to something more
 recent, i.e. 1.5.x or even better 1.6.1.

 Was searching around but have not found instructions on how to get svn
 upgraded - note that I am still pretty new to Linux/Ubuntu.

 Only thing I found was sudo apt-get upgrade subversion but the post
 was not clear if the person actually got it fully working (i.e. he
 posted that command but then stated that he run into problems).
 
 First I must say that I don't use svn. However, I would have thought
 that if you have upgraded to 8.10 then you should already have
 subversion 1.5.1. If you upgrade to 9.04 then you would have
 subversion 1.5.4 unless it is held back for any reason.
That must be the case as svnadmin --version still gives me 1.4
 
 If there is anything you need to do to your repository, I would not
 know. However, I bet a quick Google would tell you.
Sure, (replace was searching around above with did some googling) I 
have tried this a few days ago and gave up after at least 2 hours, did 
again today and have not found anything conclusive - lots of hits but 
nothing much more then what I stated above.

Off doing other things, but will come back to this as I do want/need to 
get at least to 1.5 - hopefully one does not have to install from 
scratch - that would just be too stupid in my view.

Werner


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Ubuntu 8.10 - upgrade of svn to 1.5 or 1.6

2009-04-15 Thread Werner F. Bruhin
Werner F. Bruhin wrote:
 Philip Stubbs wrote:
 2009/4/15 Werner F. Bruhin werner.bru...@free.fr:
 I just upgraded my Ubuntu machine which I mainly use for my svn
 repository.  Reason to upgrade was to get of svn 1.4.3 to something more
 recent, i.e. 1.5.x or even better 1.6.1.
Just for the archive.

After getting Ubuntu 8.10 totally up to date using Update Manager and 
then doing a reboot of the machine I had SVN on 1.5.1 which is the 
version supported/included by Ubuntu for 8.10.

This is advanced enough for me for the moment, so will not further 
search on how I could get up to 1.6.x of SVN.

Thanks
Werner


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] BT Home Hub

2009-04-15 Thread Ian Pascoe
Whoops, that IP address should have read 192.168.1.253 - that particular IP
address seems to be the one associated specifically with the USB port.

-Original Message-
From: ubuntu-uk-boun...@lists.ubuntu.com
[mailto:ubuntu-uk-boun...@lists.ubuntu.com]on Behalf Of Rob Beard
Sent: 15 April 2009 12:09
To: British Ubuntu Talk
Subject: Re: [ubuntu-uk] BT Home Hub


Tony Travis wrote:
 Ian Pascoe wrote:

 [...]
 2.  What can be connected to the Home Hub USB ports?  Most mass storage
 devices will work out of the box.  Apparently the Home Hub has SAMBA
 built in to aid with this. IP address 192.168.0.253


 Hello, Ian.

 Thanks for the Jungle tip! I'd no idea the HomeHub could have a disk
 attached to its USB port: I just assumed it was there to connect a PC or
 game console without an ethernet port. Have you or anyone else used a BT
 Home Hub as a Samba server?

 Bye,

   Tony.

I'll give it a try later on.  I presume the IP address is the one that
the router is configured to rather than specifically 192.168.0.253.
IIRC the Home Hub that I got came pre-configured to 192.168.1.254
although I changed this to fit in with my network.

Rob


--
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/



-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] BT Home Hub

2009-04-15 Thread Ian Pascoe
Hi Tony

Like Rob it's something I'm going to try out over the weekend - I'll report
back.

Ian

-Original Message-
From: ubuntu-uk-boun...@lists.ubuntu.com
[mailto:ubuntu-uk-boun...@lists.ubuntu.com]on Behalf Of Tony Travis
Sent: 14 April 2009 22:53
To: British Ubuntu Talk
Subject: Re: [ubuntu-uk] BT Home Hub


Ian Pascoe wrote:
 [...]
 2.  What can be connected to the Home Hub USB ports?  Most mass storage
 devices will work out of the box.  Apparently the Home Hub has SAMBA
 built in to aid with this. IP address 192.168.0.253

Hello, Ian.

Thanks for the Jungle tip! I'd no idea the HomeHub could have a disk
attached to its USB port: I just assumed it was there to connect a PC or
game console without an ethernet port. Have you or anyone else used a BT
Home Hub as a Samba server?

Bye,

Tony.
--
Dr. A.J.Travis, University of Aberdeen, Rowett Institute of Nutrition
and Health, Greenburn Road, Bucksburn, Aberdeen AB21 9SB, Scotland, UK
tel +44(0)1224 712751, fax +44(0)1224 716687, http://www.rowett.ac.uk
mailto:a.tra...@abdn.ac.uk, http://bioinformatics.rri.sari.ac.uk/~ajt

--
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/



-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/