 |
|
 |
|
Next: change GEOM gbde password
|
| Author |
Message |
External

Since: Nov 07, 2004 Posts: 6
|
(Msg. 1) Posted: Sun Nov 07, 2004 10:41 pm
Post subject: Q: cvsup, standard-supfile, and 5.3... Archived from groups: comp>unix>bsd>freebsd>misc (more info?)
|
|
|
Hi all,
I just completed a 5.2.1 install a couple weeks ago and saw the
5.3 announcement to the mailing list today and being a nerd (and
we all know that the "latest and greatest desire" is a true
disease ;^) ) I'm considering upgrading.
But, this brings me to a question regarding CVS and the
standard-supfile that is in the examples dir:
/usr/src/share/examples/cvsup/standard-supfile
I only changed the server line so far.
How do I see what version that supfile will update my src
to? I don't see any kind of tag specifier or anything like
that (I am a total newb to CVS though). So, if I cvsup with
that file, will I get the 5.3 source that I can then build?
Also, how can one tell what version a system is at after
doing this? For example, I installed 5.2.1 from the CDs
and then did a cvsup and the associated buildworld/kernel
but is there a way to see that the system is now at "5.2.1.1"
or something like that? Just curious so I know how far out
of date or recent my system is.
Thanks,
Mike
Contents of my standard-supfile:
# $FreeBSD: src/share/examples/cvsup/standard-supfile,v 1.22 2003/09/18 08:19:39 eivind Exp $
#
# This file contains all of the "CVSup collections" that make up the
# FreeBSD-current source tree.
#
# CVSup (CVS Update Protocol) allows you to download the latest CVS
# tree (or any branch of development therefrom) to your system easily
# and efficiently (far more so than with sup, which CVSup is aimed
# at replacing). If you're running CVSup interactively, and are
# currently using an X display server, you should run CVSup as follows
# to keep your CVS tree up-to-date:
#
# cvsup standard-supfile
#
# If not running X, or invoking cvsup from a non-interactive script, then
# run it as follows:
#
# cvsup -g -L 2 standard-supfile
#
# You may wish to change some of the settings in this file to better
# suit your system:
#
# host=CHANGE_THIS.FreeBSD.org
# This specifies the server host which will supply the
# file updates. You must change it to one of the CVSup
# mirror sites listed in the FreeBSD Handbook at
# http://www.freebsd.org/doc/handbook/mirrors.html.
# You can override this setting on the command line
# with cvsup's "-h host" option.
#
# base=/usr
# This specifies the root where CVSup will store information
# about the collections you have transferred to your system.
# A setting of "/usr" will generate this information in
# /usr/sup. Even if you are CVSupping a large number of
# collections, you will be hard pressed to generate more than
# ~1MB of data in this directory. You can override the
# "base" setting on the command line with cvsup's "-b base"
# option. This directory must exist in order to run CVSup.
#
# prefix=/usr
# This specifies where to place the requested files. A
# setting of "/usr" will place all of the files requested
# in "/usr/src" (e.g., "/usr/src/bin", "/usr/src/lib").
# The prefix directory must exist in order to run CVSup.
# Defaults that apply to all the collections
#
# IMPORTANT: Change the next line to use one of the CVSup mirror sites
# listed at http://www.freebsd.org/doc/handbook/mirrors.html.
*default host=cvsup3.FreeBSD.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=.
*default delete use-rel-suffix
# If you seem to be limited by CPU rather than network or disk bandwidth, try
# commenting out the following line. (Normally, today's CPUs are fast enough
# that you want to run compression.)
*default compress
## Main Source Tree.
#
# The easiest way to get the main source tree is to use the "src-all"
# mega-collection. It includes all of the individual "src-*" collections.
src-all
# These are the individual collections that make up "src-all". If you
# use these, be sure to comment out "src-all" above.
#src-base
#src-bin
#src-contrib
#src-etc
#src-games
#src-gnu
#src-include
#src-kerberos5
#src-kerberosIV
#src-lib
#src-libexec
#src-release
#src-sbin
#src-share
#src-sys
#src-tools
#src-usrbin
#src-usrsbin
# These are the individual collections that make up FreeBSD's crypto
# collection. They are no longer export-restricted and are a part of
# src-all
#src-crypto
#src-eBones
#src-secure
#src-sys-crypto >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Nov 07, 2004 Posts: 6
|
(Msg. 2) Posted: Sun Nov 07, 2004 10:47 pm
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Mike S. wrote:
> Hi all,
>
> Also, how can one tell what version a system is at after
> doing this? For example, I installed 5.2.1 from the CDs
> and then did a cvsup and the associated buildworld/kernel
> but is there a way to see that the system is now at "5.2.1.1"
> or something like that? Just curious so I know how far out
> of date or recent my system is.
Also, in my dmesg, I see this:
-----
Copyright (c) 1992-2004 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 6.0-CURRENT #0: Wed Oct 20 18:21:40 MDT 2004
-----
I'm guessing that the 6.0 is not entirely correct, hence the
above question (second part of my OP).
Thanks,
Mike >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Sep 30, 2004 Posts: 6
|
(Msg. 3) Posted: Mon Nov 08, 2004 1:03 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article , Mike S. wrote:
> Hi all,
>
> I just completed a 5.2.1 install a couple weeks ago and saw the
> 5.3 announcement to the mailing list today and being a nerd (and
> we all know that the "latest and greatest desire" is a true
> disease ;^) ) I'm considering upgrading.
>
> But, this brings me to a question regarding CVS and the
> standard-supfile that is in the examples dir:
> /usr/src/share/examples/cvsup/standard-supfile
> I only changed the server line so far.
>
> How do I see what version that supfile will update my src
> to? I don't see any kind of tag specifier or anything like
> that (I am a total newb to CVS though). So, if I cvsup with
Why don't you read the handbook, Mike? Especially since you are
a newbie? And I mean, read it carefully... >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Nov 07, 2004 Posts: 6
|
(Msg. 4) Posted: Mon Nov 08, 2004 1:36 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Beor wrote:
> Why don't you read the handbook, Mike? Especially since you are
> a newbie? And I mean, read it carefully...
I did - that's how I knew about the standard-supfile and to
install the cvsup-withoutgui/etc. I do have the system up
and running and I obviously did read things to the point
where I could buildworld/buildkernel, get Samba up, get
Apache/PHP/MySQL up, etc. It's not like I just booted
off the CD and went "huh?"
However, there is a LOT of "junk" in there (in reference to
CVS) that is *not* required and it's non-trivial to sift
through it. It's not like I was asking how to do the
cvsup from scratch - I had some specific questions regarding
how it worked.
Sorry for the incredible inconvenience -- perhaps if this is
such a common problem for you gurus to have to bend-over backwards
for this question all the time, it's an indication that the
Handbook needs some clarification. I'm very grateful for the
help that is (sometimes) provided by the FreeBSD community in
this newsgroup, and I try to be fairly concise in my questions,
but sometimes, we cannot know everything and must seek help
in areas that might seem "common sense" to the guru but are
not to the less experienced user. I support users with
semiconductor EDA tools and often receive similar "newbie"
questions which are obvious to me, but clearly are not to
the users. I cannot bite their heads off for trying to learn
(even it were not my job to help them). That's my rant --
on to the next subject and again, my apologies for not being
omniscient and trying to learn how something works.
Mike >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Sep 30, 2004 Posts: 6
|
(Msg. 5) Posted: Mon Nov 08, 2004 2:17 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article , Mike S. wrote:
> Beor wrote:
>> Why don't you read the handbook, Mike? Especially since you are
>> a newbie? And I mean, read it carefully...
>
> I did - that's how I knew about the standard-supfile and to
> install the cvsup-withoutgui/etc. I do have the system up
> and running and I obviously did read things to the point
> where I could buildworld/buildkernel, get Samba up, get
> Apache/PHP/MySQL up, etc. It's not like I just booted
> off the CD and went "huh?"
>
> However, there is a LOT of "junk" in there (in reference to
> CVS) that is *not* required and it's non-trivial to sift
> through it. It's not like I was asking how to do the
> cvsup from scratch - I had some specific questions regarding
> how it worked.
>
> Sorry for the incredible inconvenience -- perhaps if this is
> such a common problem for you gurus to have to bend-over backwards
> for this question all the time, it's an indication that the
> Handbook needs some clarification. I'm very grateful for the
> help that is (sometimes) provided by the FreeBSD community in
> this newsgroup, and I try to be fairly concise in my questions,
> but sometimes, we cannot know everything and must seek help
> in areas that might seem "common sense" to the guru but are
> not to the less experienced user. I support users with
> semiconductor EDA tools and often receive similar "newbie"
> questions which are obvious to me, but clearly are not to
> the users. I cannot bite their heads off for trying to learn
> (even it were not my job to help them). That's my rant --
> on to the next subject and again, my apologies for not being
> omniscient and trying to learn how something works.
>
> Mike
Sorry you took it so personal, Mike. The truth is, we all
make mistakes, and getting upset when someone points
them won't help anyone. I am not a guru, but the handbook
clearly explains how to set the tag for cvsup. Even though
you claim otherwise. >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Nov 08, 2004 Posts: 1
|
(Msg. 6) Posted: Mon Nov 08, 2004 2:19 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Sun, 07 Nov 2004 22:47:38 GMT, Mike S. wrote:
> Mike S. wrote:
>> Hi all,
>> Also, how can one tell what version a system is at after
>> doing this? For example, I installed 5.2.1 from the CDs
>> and then did a cvsup and the associated buildworld/kernel
>> but is there a way to see that the system is now at "5.2.1.1"
>> or something like that? Just curious so I know how far out
>> of date or recent my system is.
>
> Also, in my dmesg, I see this:
> -----
> Copyright (c) 1992-2004 The FreeBSD Project.
> Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
> The Regents of the University of California. All rights
> reserved.
> FreeBSD 6.0-CURRENT #0: Wed Oct 20 18:21:40 MDT 2004
> -----
>
> I'm guessing that the 6.0 is not entirely correct, hence the
> above question (second part of my OP).
>
> Thanks,
> Mike
is 4bsd 6.0 development in a progress??
i firstly see about it.. or it's a JOKE??
--
Just remove 'zero' from my e-mail if u need directly reply 2 mee
----------------------------
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Nov 07, 2004 Posts: 6
|
(Msg. 7) Posted: Mon Nov 08, 2004 2:19 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Valentin G. ShuraeFF wrote:
>
> is 4bsd 6.0 development in a progress??
> i firstly see about it.. or it's a JOKE??
That's exactly what's in my dmesg output. I have not edited
anything -- only cvsup-ed with the supfile in my original post
and built everything from that.
So, if it's a joke, it's done by someone with access to the
CVS repository, but I'm guessing that maybe by not specifying
a specific tag= I downloaded files which may be flagged
"6.0" just for future use...
Mike >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Sep 10, 2003 Posts: 42
|
(Msg. 8) Posted: Mon Nov 08, 2004 6:56 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Sun, 07 Nov 2004 22:41:31 GMT
"Mike S." wrote:
> How do I see what version that supfile will update my src
> to? I don't see any kind of tag specifier or anything like
It's defined by the tag, you had:
> *default release=cvs tag=.
Which is the head of the tree, currently labeled 6.0.
> that (I am a total newb to CVS though). So, if I cvsup with
> that file, will I get the 5.3 source that I can then build?
To get 5.3 you would need tag=RELENG_5_3_0_RELEASE, to get the
current state of the 5.3 security bracnh you need tag=RELENG_5_3, to track
5.x as it moves from 5.3 to 5.4 and onwards you need tag=RELENG_5.
> Also, how can one tell what version a system is at after
> doing this? For example, I installed 5.2.1 from the CDs
The dmesg output has it - it seems you found it.
--
C:>WIN | Directable Mirror Arrays
The computer obeys and wins. | A better way to focus the sun
You lose and Bill collects. | licences available see
| http://www.sohara.org/ >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Oct 17, 2003 Posts: 11
|
(Msg. 9) Posted: Mon Nov 08, 2004 10:17 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Mike S. wrote:
> Hi all,
>
> I just completed a 5.2.1 install a couple weeks ago and saw the
> 5.3 announcement to the mailing list today and being a nerd (and
> we all know that the "latest and greatest desire" is a true
> disease ;^) ) I'm considering upgrading.
>
[snip]
> *default host=cvsup3.FreeBSD.org
> *default base=/usr
> *default prefix=/usr
> *default release=cvs tag=.
> *default delete use-rel-suffix
this is all perfectly explained in the handbook and has beed discussed
here many times.
change tag for
tag=RELENG_5_3
otherwise what you get is HEAD, the cutting edge
JY >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Nov 07, 2004 Posts: 6
|
(Msg. 10) Posted: Mon Nov 08, 2004 10:17 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Jean-Yves Avenard wrote:
>
> this is all perfectly explained in the handbook and has beed discussed
> here many times.
> change tag for
> tag=RELENG_5_3
>
> otherwise what you get is HEAD, the cutting edge
Thanks - I was not aware of how CVS worked when the tag was
not set (ie. I did not know that it would get "HEAD").
So, I suppose that by using tag=., my src tree is possibly
ahead (some files newer) than the 5.3 release? Any issue
with setting that tag=RELENG_5_3 considering that I've already
updated/built with HEAD?
Mike >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Oct 17, 2003 Posts: 11
|
(Msg. 11) Posted: Mon Nov 08, 2004 8:00 pm
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
External

Since: Jan 17, 2005 Posts: 60
|
(Msg. 12) Posted: Mon Nov 08, 2004 8:00 pm
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On 2004-11-08, Jean-Yves Avenard wrote:
> Valentin G. ShuraeFF wrote:
>
>> is 4bsd 6.0 development in a progress??
> For about 3 months.
> As soon as the RELEASE for FreeBSD5 branch was created ...
That'd be surprising. FreeBSD 6, yes; 4BSD 6, no (that'd be 6BSD).
--
j p d (at) d s b (dot) t u d e l f t (dot) n l . >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Nov 09, 2004 Posts: 4
|
(Msg. 13) Posted: Tue Nov 09, 2004 2:58 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Beor wrote:
>> Mike
> Sorry you took it so personal, Mike. The truth is, we all
> make mistakes, and getting upset when someone points
> them won't help anyone. I am not a guru, but the handbook
> clearly explains how to set the tag for cvsup. Even though
> you claim otherwise.
I'll say I know the Handbook pretty well now, but when I first got
started with FreeBSD I was lost. The reading makes perfect sense to
someone that's been there. I read the cvsup stuff many times in the
Handbook and "The Complete FreeBSD" and it finally sunk in with some
help. But when you're trying to get an update or something compiled,
you need some guidance until it all comes together, not in a week or
two. BTW, if we all knew the answers, there would be no need for
newsgroups, maillists, etc...
--
Robert >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Jan 04, 2005 Posts: 12
|
(Msg. 14) Posted: Tue Nov 09, 2004 5:16 am
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article , Mike S. wrote:
>
>
>Hi all,
>
>I just completed a 5.2.1 install a couple weeks ago and saw the
>5.3 announcement to the mailing list today and being a nerd (and
>we all know that the "latest and greatest desire" is a true
>disease ;^) ) I'm considering upgrading.
>
>But, this brings me to a question regarding CVS and the
>standard-supfile that is in the examples dir:
>/usr/src/share/examples/cvsup/standard-supfile
>I only changed the server line so far.
>
>How do I see what version that supfile will update my src
>to? I don't see any kind of tag specifier or anything like
>that (I am a total newb to CVS though). So, if I cvsup with
>that file, will I get the 5.3 source that I can then build?
The standard-supfile will get you the sources for CURRENT. This may or may
not be what you want.
The line "*default release=cvs tag=." tells you this. "." is a synonym for
"HEAD" or "CURRENT".
>Also, how can one tell what version a system is at after
>doing this? For example, I installed 5.2.1 from the CDs
>and then did a cvsup and the associated buildworld/kernel
>but is there a way to see that the system is now at "5.2.1.1"
>or something like that? Just curious so I know how far out
>of date or recent my system is.
uname -a will tell you all you need to know.
--
Conrad J. Sabatier -- "In Unix veritas" >> Stay informed about: Q: cvsup, standard-supfile, and 5.3... |
|
| Back to top |
|
 |  |
External

Since: Nov 07, 2004 Posts: 6
|
(Msg. 15) Posted: Tue Nov 09, 2004 11:22 pm
Post subject: Re: Q: cvsup, standard-supfile, and 5.3... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
|
|
| Back to top |
|
 |  |
| Related Topics: | CVSup vs. portupgrade - Reading from the FreeBSD handbook on "Using the Ports Collection" leaves me a bit confused wrt CVSup and portupgrade... do these utilities accomplish the same thing? Thanks, Jay _______________________________________________..
CVSUP Mirror - FreBSD 4.10 Release CVSUP-MIRROR v. 1.3_2 freshly installed. I got the cvsup-mirror port installed without any errors. The CVSUPD daemon is running. I can connect to my mirror from another server. When I try to update a ports collection (i.e...
I am having trouble with CVSup - Hi guys! Here is the contents of my supfile: ========================== *default tag=. *default host=cvsup.au.FreeBSD.org *default prefix=/usr *default base=/usr/local/etc/cvsup *default release=cvs delete use-rel-suffix compress ports-multmedia..
Advice about cvsup ports-all upgrading - Hallo guys, it's going to be a long mail, I apologize for my poor english*. I'd like to have an advice about how to behave in case I want to upgrade some port because of new vulnerabilities. I'm not interested in having all my portsa always upgraded to...
Installation & fdisk partitioning (slices) - I picked up a copy of the "FreeBSD Handbook 2nd Ed" the other day, it came with a installation disk for version 5.1 Current and that is what I am trying to install. This is my first attempt to do anything with FreeBSD. First let me describe my... |
|
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
 |
|
|