Problems with cvsup.

2007-07-09 Thread Fernando Patzlaff

There are problems with some mirrors of cvsup listed on
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html

I have one cvsup server for upgrade my servers, and I use these cvsup on
servers listed below and they don't work.

 cvsup.br.FreeBSD.org
 cvsup4.br.FreeBSD.org
 cvsup5.br.FreeBSD.org

 cvsup6.FreeBSD.org


PS. May be there are some others servers with problems.

Best regards!!!

tkS!


--
---
Fernando Patzlaff
[EMAIL PROTECTED]
Linux User #197615
http://www.patz.inf.br
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


problems with cvsup on cvsup2 server

2007-01-31 Thread Dino Vliet
Hi guys,

look at this terrible error I got from portupgrade

[EMAIL PROTECTED] /usr/home/dino]# portupgrade -n
gnome-desktop
---  Session started at: Wed, 31 Jan 2007 23:22:24
+0100
[missing key: categories] [Updating the portsdb
format:bdb_btree in /usr/ports ... - 16409 port
entries found
.1000.2000.3000.4000.5000.6000.7000.8000.9000.1.11000.12000.13000.14000.15000.16000
. done]
missing key: categories: Cannot read the portsdb!
---  Session ended at: Wed, 31 Jan 2007 23:22:31
+0100 (consumed 00:00:06)
/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:548:in
`open_db': database file error (PortsDB::DBError)
from
/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:702:in
`port'
from
/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:890:in
`all_depends_list'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:809:in
`tsort_build'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:801:in
`each'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:801:in
`tsort_build'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:823:in
`sort_build'
from
/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:827:in
`sort_build!'
from /usr/local/sbin/portupgrade:721:in `main'
from
/usr/local/lib/ruby/1.8/optparse.rb:755:in
`initialize'
from /usr/local/sbin/portupgrade:220:in `new'
from /usr/local/sbin/portupgrade:220:in `main'
from /usr/local/sbin/portupgrade:2084

What's wrong?




 

Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie Problems with cvsup and updating files.

2004-08-01 Thread epilogue
On Sun, 1 Aug 2004 00:23:01 -0400 (EDT)
Paul R Culmo [EMAIL PROTECTED] wrote:

 On Sat, 31 Jul 2004, Bill Moran wrote:
  Yes, I think your supfile is wrong.
 
   *default release=cvs RELENG_5_2_1_RELEASE
  
  ^^^ This line is what I believe is wrong, replace it with these two
  lines:
  *default release=cvs
  *default tag=RELENG_5_2_1_RELEASE
  
  Although I would recommend tag=RELENG_5_2_1, but that's you're call.
  
 
 Thanks for the reply ,  I made the changes you suggested and re-ran the 
 cvsup but then things got worse,  it deleted all the Makefiles.  I guess
 I need to start over with a vanilla src tree from the CD?  then make 
 buildworld etc.. right ?

um, to my knowledge, no.  not if you've got connectivity and cvsup
installed. in fact, you don't even need to remove /usr/src, because cvsup
should take care of everything for you (ie. remove wrong files, add
necessary ones, leave correct ones).

i suspect that your standard-supfile is to blame, if anything isn't
working.  it could be that you're inadvertently pulling down HEAD, which is
by definition, not guaranteed to build.

here is a copy of my file:


*default host=cvsup3.freebsd.org
*default base=/usr/local/etc/cvsup
*default prefix=/usr/
*default release=cvs tag=RELENG_4_10
*default delete use-rel-suffix compress

# 1) change cvsup3 for the host you want to use
# 2) change RELENG_4_10 for the tag you want
# i believe that RELENG_5_2 is the correct number in your case
# this will pull down any security and other critical fixes based upon
# freebsd 5.2.x

src-base
src-bin
src-contrib
src-crypto
src-etc
src-games
src-gnu
src-include
src-lib
src-libexec
src-release
src-sbin
src-secure
src-share
src-sys
src-sys-crypto
src-tools
src-usrbin
src-usrsbin

#src-all
#src-kerberos5
#src-kerberosIV
#src-eBones


1) you might find it easier to simple use 'src-all' and comment out or
delete the rest of the src-* entries.

2) if you're using a refuse file, do double check that it's contents
reflect what you actually want.  if you're not _100%_sure_ whether or not
you have one, try 'find / -name refuse -print'

3) depending on where you placed your config files, you may not be using
the correct supfile.  try feeding cvsup an absolute path, just to be
certain.  'cvsup /foo/path/to/your/standard-supfile'

hope this helps.


cheers,
epi

 Thanks again 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie Problems with cvsup and updating files.

2004-08-01 Thread Morten Liebach
On 2004-08-01 00:23:01 -0400, Paul R Culmo wrote:
 On Sat, 31 Jul 2004, Bill Moran wrote:
  Yes, I think your supfile is wrong.
 
   *default release=cvs RELENG_5_2_1_RELEASE
  
  ^^^ This line is what I believe is wrong, replace it with these two
  lines:
  *default release=cvs
  *default tag=RELENG_5_2_1_RELEASE
  
  Although I would recommend tag=RELENG_5_2_1, but that's you're call.

It's RELENG_5_2, not RELENG_5_2_1

Have a nice day
 Morten

-- 
http://m.mongers.org/ -- http://gallery.zentience.org/
__END__
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie Problems with cvsup and updating files.

2004-08-01 Thread Matthew Seaman
On Sat, Jul 31, 2004 at 11:04:25PM -0400, Bill Moran wrote:

 Although I would recommend tag=RELENG_5_2_1, but that's you're call.

Make that tag=RELENG_5_2 -- there's no such tag as the one you
recommend, and trying to use that will end up deleting all of the
user's files.  Note too that this tag only applies to the src -- not
the ports.  Try this instead:

*default host=ftp4.us.freebsd.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=RELENG_5_2
*default delete use-rel-suffix
*default compress

src-all
ports-all tag=.

Note too that there's not much point in only grabbing parts of the
ports collection.  Unless you know exactly what you're doing, you need
the whole thing in order to have much change of success at using it.

Cheers

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgprtQjIXmWZ6.pgp
Description: PGP signature


Re: Newbie Problems with cvsup and updating files.

2004-08-01 Thread Bill Moran
Morten Liebach [EMAIL PROTECTED] wrote:

 On 2004-08-01 00:23:01 -0400, Paul R Culmo wrote:
  On Sat, 31 Jul 2004, Bill Moran wrote:
   Yes, I think your supfile is wrong.
  
*default release=cvs RELENG_5_2_1_RELEASE
   
   ^^^ This line is what I believe is wrong, replace it with these two
   lines:
   *default release=cvs
   *default tag=RELENG_5_2_1_RELEASE
   
   Although I would recommend tag=RELENG_5_2_1, but that's you're call.
 
 It's RELENG_5_2, not RELENG_5_2_1

Oops ... sorry about that.  Yeah, trying to grab RELENG_5_2_1 would result
in your entire src tree being deleted, since there is not such branch.

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie Problems with cvsup and updating files

2004-08-01 Thread Paul R Culmo

 It's RELENG_5_2, not RELENG_5_2_1

Thanks all, :)   I did manage to try RELENG_5_2_1 and it did wack the 
entire /usr/src directory after I had reloaded it from CD :) but that's ok 
I did make a backup up my custom kernel file so I didn't lose anything 
major. Just took a while waiting for the system to reload the files off 
the Cd.  

Not that it relates to this subject but reloading the files from the CD 
image caused /etc/master.passwd to change, my users that I added to it 
were gone so I had to re-add them .  This wasn't a big deal I was able to 
fix that on my own.  :) 

 -- 
Regards.

Paul R Culmo

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Newbie Problems with cvsup and updating files.

2004-07-31 Thread Paul R Culmo

wGreetings,

I've been a newbie on FreeBSD 5.2.1 now for about a month. I Have had 
much success lately but I wanted to try the cvsup and update the sources
(/usr/src) so I can stay current on patches and security updates.

I've managed to create a cvsupfile but all the docs I've read do not
instruct you how to update the old files with the new files. Does this 
happen automatically or do I need to create a script to do it ?

I setup my cvsupfile to grab src-all and it downloaded but now I have 
filenames with a ,v for almost every file.  Like Makefile and now there is  
a Makefile,v in /usr/src and make buildworld will not compile anymore. It 
get errors when trying to build tools.  

Below is a snip of my cvsupfile,  did I do something wrong? or forget a
step? I've followed the docs and howto's relating to this to a T as far as
I can tell.

Thanks in advance!

Paul R Culmo


--snip--

*default host=ftp4.us.FreeBSD.org
*default base=/usr
*default prefix=/usr
*default release=cvs RELENG_5_2_1_RELEASE
*default delete use-rel-suffix


*default compress

src-all
ports-base
ports-www
#cvsroot-common
#cvsroot-src
#cvsroot-ports
#cvsroot-doc

--end snip---





___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie Problems with cvsup and updating files.

2004-07-31 Thread Bill Moran
Paul R Culmo [EMAIL PROTECTED] wrote:
 
 wGreetings,
 
 I've been a newbie on FreeBSD 5.2.1 now for about a month. I Have had 
 much success lately but I wanted to try the cvsup and update the sources
 (/usr/src) so I can stay current on patches and security updates.
 
 I've managed to create a cvsupfile but all the docs I've read do not
 instruct you how to update the old files with the new files. Does this 
 happen automatically or do I need to create a script to do it ?
 
 I setup my cvsupfile to grab src-all and it downloaded but now I have 
 filenames with a ,v for almost every file.  Like Makefile and now there is  
 a Makefile,v in /usr/src and make buildworld will not compile anymore. It 
 get errors when trying to build tools.  
 
 Below is a snip of my cvsupfile,  did I do something wrong?

Yes, I think your supfile is wrong.

 --snip--
 
 *default host=ftp4.us.FreeBSD.org
 *default base=/usr
 *default prefix=/usr
 *default release=cvs RELENG_5_2_1_RELEASE

^^^ This line is what I believe is wrong, replace it with these two
lines:
*default release=cvs
*default tag=RELENG_5_2_1_RELEASE

Although I would recommend tag=RELENG_5_2_1, but that's you're call.

 *default delete use-rel-suffix
 
 
 *default compress
 
 src-all
 ports-base
 ports-www
 #cvsroot-common
 #cvsroot-src
 #cvsroot-ports
 #cvsroot-doc

-- 
Bill Moran
Potential Technologies
http://www.potentialtech.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Newbie Problems with cvsup and updating files.

2004-07-31 Thread Paul R Culmo
On Sat, 31 Jul 2004, Bill Moran wrote:
 Yes, I think your supfile is wrong.

  *default release=cvs RELENG_5_2_1_RELEASE
 
 ^^^ This line is what I believe is wrong, replace it with these two
 lines:
 *default release=cvs
 *default tag=RELENG_5_2_1_RELEASE
 
 Although I would recommend tag=RELENG_5_2_1, but that's you're call.
 

Thanks for the reply ,  I made the changes you suggested and re-ran the 
cvsup but then things got worse,  it deleted all the Makefiles.  I guess I 
need to start over with a vanilla src tree from the CD?  then make 
buildworld etc.. right ?

Thanks again 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Problems after CVSUP

2004-05-31 Thread Edward Carmody
I cvsup'd src-all and ports-all.  Can't think of anything else that I might
have done...

Another weird thing I've noticed...the directories for ports no longer have
makefiles, etc, only html README files.


-Original Message-
From: Kent Stewart [mailto:[EMAIL PROTECTED] 
Sent: Saturday, May 29, 2004 1:17 AM
To: [EMAIL PROTECTED]
Cc: Edward Carmody
Subject: Re: Problems after CVSUP

On Friday 28 May 2004 09:41 pm, Edward Carmody wrote:
 Not quite a newbie, but not very good either, apparently. :(  I did a
 cvsup last night, following instructions from the handbook, and hosed
 up my box.

 =
 [EMAIL PROTECTED] /home/ecarmody] $ uname -a
 FreeBSD oberon.hudsonvalleynetworks.com 5.2.1-RELEASE-p7 FreeBSD
 5.2.1-RELEASE-p7 #0: Thu May 27 19:57:55 EDT 2004
 root@:/usr/obj/usr/src/sys/GENERIC  i386
 [EMAIL PROTECTED] /home/ecarmody] $
 =

 I should not be running 5.2.1-RELEASE due to my inexperience, I know,
 but need to in order to support my IDE controller.  I was using the
 box for www, sendmail, tacacs, ntp, syslog, samba, for my home
 network, and just trying to learn UNIX a la FreeBSD.

 My immediate issues are these:
 At boot, ntpd hangs, holding up the rest of the startup process.  If
 I kill it with a ctrl-c, sendmail then does some funky things, and
 also hangs.

 ===
 /var/log/ntp shows:
 [EMAIL PROTECTED] /var/log] # cat ntp.log
 28 May 23:53:37 ntpd[609]: ntpd exiting on signal 15
 28 May 23:56:37 ntpd[409]: ntpd exiting on signal 2
 [EMAIL PROTECTED] /var/log] #

 which I think is from me killing it via ctrl-c
 ===

 So, to workaround temporarily, I commented out ntpd_enable=YES in
 rc.conf. Ntpd obviously doesn't hold up my boot anymore but sendmail
 does.

 ===
 Starting sendmail.
 safefile(etc/mail/services.switch, uid=0, gid=0, flags=6480,
 mode=400): safedirpath(/etc/mail, uid=0, gid=0 flags =6580, level=0,
 offset=0): [dir /etc/mail] OK
   No such file or directory

 Then I get similar lines for /etc/mail/submit.cf,
 etc/mail/relay-domains, The last line is:
 Recipient names must be specified

 I can't seem to find the output I'm seeing in /var/log/messages or
 /var/log/maillog, so I've hand-typed in the bit above.

 /var/log/maillog has lots of:
 May 29 00:00:05 oberon sm-msp-queue[436]: i4S2ug7P087593: to=root,
 ctladdr=root (0/0), delay=1+01:03:23, xdelay=00:00:00, mailer=relay,
 pri=4980184, relay=[127.0.0.1], dsn=4.0.0, stat=Deferred: Connection
 refused by [127.0.0.1]

 which also started after my cvsup last night.
 ===


 Not sure what else to provide.  Any direction on how to 'shoot and
 fix this wins a free beer next time you're in NYC.  Thanks...

Running cvsup didn't do all of this. What did you cvsup and what  else 
did you do :)?

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Problems after CVSUP

2004-05-31 Thread Edward Carmody
Conrad,

Run mergemaster a second time?  Didn't do that...

I've since rebooted this box a couple times...is it too late to run
mergemaster a second time?  Also, is it too late to run the make all install
in /etc/mail?

If it's too late for these, how do I fix the damage I've done?

-Original Message-
From: Conrad Sabatier [mailto:[EMAIL PROTECTED] 
Sent: Saturday, May 29, 2004 2:16 AM
To: Edward Carmody
Cc: [EMAIL PROTECTED]
Subject: Re: Problems after CVSUP


On 29-May-2004 Edward Carmody wrote:
 Not quite a newbie, but not very good either, apparently. :(  I did a
cvsup
 last night, following instructions from the handbook, and hosed up my box.
 
 =
 [EMAIL PROTECTED] /home/ecarmody] $ uname -a
 FreeBSD oberon.hudsonvalleynetworks.com 5.2.1-RELEASE-p7 FreeBSD
 5.2.1-RELEASE-p7 #0: Thu May 27 19:57:55 EDT 2004
 root@:/usr/obj/usr/src/sys/GENERIC  i386
 [EMAIL PROTECTED] /home/ecarmody] $
 =
 
 I should not be running 5.2.1-RELEASE due to my inexperience, I know, but
 need to in order to support my IDE controller.  I was using the box for
www,
 sendmail, tacacs, ntp, syslog, samba, for my home network, and just trying
 to learn UNIX a la FreeBSD.  
 
 My immediate issues are these:
 At boot, ntpd hangs, holding up the rest of the startup process.  If I
kill
 it with a ctrl-c, sendmail then does some funky things, and also hangs.  
 
 ===
 /var/log/ntp shows:
 [EMAIL PROTECTED] /var/log] # cat ntp.log 
 28 May 23:53:37 ntpd[609]: ntpd exiting on signal 15
 28 May 23:56:37 ntpd[409]: ntpd exiting on signal 2
 [EMAIL PROTECTED] /var/log] #
 
 which I think is from me killing it via ctrl-c
 ===
 
 So, to workaround temporarily, I commented out ntpd_enable=YES in
rc.conf.
 Ntpd obviously doesn't hold up my boot anymore but sendmail does.  
 
 ===
 Starting sendmail.
 safefile(etc/mail/services.switch, uid=0, gid=0, flags=6480, mode=400):
 safedirpath(/etc/mail, uid=0, gid=0 flags =6580, level=0, offset=0):
   [dir /etc/mail] OK
   No such file or directory
 
 Then I get similar lines for /etc/mail/submit.cf, etc/mail/relay-domains,
 The last line is:
 Recipient names must be specified
 
 I can't seem to find the output I'm seeing in /var/log/messages or
 /var/log/maillog, so I've hand-typed in the bit above.
 
 /var/log/maillog has lots of:
 May 29 00:00:05 oberon sm-msp-queue[436]: i4S2ug7P087593: to=root,
 ctladdr=root (0/0), delay=1+01:03:23, xdelay=00:00:00, mailer=relay,
 pri=4980184, relay=[127.0.0.1], dsn=4.0.0, stat=Deferred: Connection
refused
 by [127.0.0.1]
 
 which also started after my cvsup last night.  
 ===
 
 
 Not sure what else to provide.  Any direction on how to 'shoot and fix
this
 wins a free beer next time you're in NYC.  Thanks...

Did you forget to run mergemaster?

When updating via cvsup, you should *always* do the following:

1) cvsup
2) make buildworld
3) make buildkernel
4) make installkernel
5) reboot in single-user mode
6) run mergemaster -p
7) make installworld
8) run mergemaster

Then, double-check /etc/rc.conf against /etc/defaults/rc.conf to see if
there
are any important changes in startup functionality.  Then, and only then,
should it be safe to reboot.

If you've merged in any changes under /etc/mail, you should also cd
/etc/mail
and make all install before rebooting as well.

HTH

-- 
Conrad Sabatier [EMAIL PROTECTED] - In Unix veritas

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems after CVSUP

2004-05-31 Thread Matthew Seaman
On Mon, May 31, 2004 at 02:46:43PM -0400, Edward Carmody wrote:
 I cvsup'd src-all and ports-all.  Can't think of anything else that I might
 have done...
 
 Another weird thing I've noticed...the directories for ports no longer have
 makefiles, etc, only html README files.

Classic error.  You tried to use one of the *system* CVS tags on the
ports tree.  As is now abundantly clear, that does not work.  Check
your supfile -- you need tag=. for the ports collections.  Look at the
example supfiles in /usr/share/examples/cvsup and read the extensive
comments within those files for details.  Or search the archives of
this mailing list for the many, many occasions where this has been
dealt with before.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgpIIe80gYKdt.pgp
Description: PGP signature


RE: Problems after CVSUP

2004-05-31 Thread Edward Carmody
Matthew,

So, like this?:

*default host=cvsup2.us.FreeBSD.org  
*default base=/usr/local/etc/cvsup
*default prefix=/usr
*default release=cvs tag=RELENG_5_2   
*default delete use-rel-suffix
*default compress
src-all
ports-all tag=.

-Original Message-
From: Matthew Seaman [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 31, 2004 3:22 PM
To: Edward Carmody
Cc: 'Kent Stewart'; [EMAIL PROTECTED]
Subject: Re: Problems after CVSUP

On Mon, May 31, 2004 at 02:46:43PM -0400, Edward Carmody wrote:
 I cvsup'd src-all and ports-all.  Can't think of anything else that I
might
 have done...
 
 Another weird thing I've noticed...the directories for ports no longer
have
 makefiles, etc, only html README files.

Classic error.  You tried to use one of the *system* CVS tags on the
ports tree.  As is now abundantly clear, that does not work.  Check
your supfile -- you need tag=. for the ports collections.  Look at the
example supfiles in /usr/share/examples/cvsup and read the extensive
comments within those files for details.  Or search the archives of
this mailing list for the many, many occasions where this has been
dealt with before.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems after CVSUP

2004-05-29 Thread Conrad Sabatier

On 29-May-2004 Edward Carmody wrote:
 Not quite a newbie, but not very good either, apparently. :(  I did a cvsup
 last night, following instructions from the handbook, and hosed up my box.
 
 =
 [EMAIL PROTECTED] /home/ecarmody] $ uname -a
 FreeBSD oberon.hudsonvalleynetworks.com 5.2.1-RELEASE-p7 FreeBSD
 5.2.1-RELEASE-p7 #0: Thu May 27 19:57:55 EDT 2004
 root@:/usr/obj/usr/src/sys/GENERIC  i386
 [EMAIL PROTECTED] /home/ecarmody] $
 =
 
 I should not be running 5.2.1-RELEASE due to my inexperience, I know, but
 need to in order to support my IDE controller.  I was using the box for www,
 sendmail, tacacs, ntp, syslog, samba, for my home network, and just trying
 to learn UNIX a la FreeBSD.  
 
 My immediate issues are these:
 At boot, ntpd hangs, holding up the rest of the startup process.  If I kill
 it with a ctrl-c, sendmail then does some funky things, and also hangs.  
 
 ===
 /var/log/ntp shows:
 [EMAIL PROTECTED] /var/log] # cat ntp.log 
 28 May 23:53:37 ntpd[609]: ntpd exiting on signal 15
 28 May 23:56:37 ntpd[409]: ntpd exiting on signal 2
 [EMAIL PROTECTED] /var/log] #
 
 which I think is from me killing it via ctrl-c
 ===
 
 So, to workaround temporarily, I commented out ntpd_enable=YES in rc.conf.
 Ntpd obviously doesn't hold up my boot anymore but sendmail does.  
 
 ===
 Starting sendmail.
 safefile(etc/mail/services.switch, uid=0, gid=0, flags=6480, mode=400):
 safedirpath(/etc/mail, uid=0, gid=0 flags =6580, level=0, offset=0):
   [dir /etc/mail] OK
   No such file or directory
 
 Then I get similar lines for /etc/mail/submit.cf, etc/mail/relay-domains,
 The last line is:
 Recipient names must be specified
 
 I can't seem to find the output I'm seeing in /var/log/messages or
 /var/log/maillog, so I've hand-typed in the bit above.
 
 /var/log/maillog has lots of:
 May 29 00:00:05 oberon sm-msp-queue[436]: i4S2ug7P087593: to=root,
 ctladdr=root (0/0), delay=1+01:03:23, xdelay=00:00:00, mailer=relay,
 pri=4980184, relay=[127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused
 by [127.0.0.1]
 
 which also started after my cvsup last night.  
 ===
 
 
 Not sure what else to provide.  Any direction on how to 'shoot and fix this
 wins a free beer next time you're in NYC.  Thanks...

Did you forget to run mergemaster?

When updating via cvsup, you should *always* do the following:

1) cvsup
2) make buildworld
3) make buildkernel
4) make installkernel
5) reboot in single-user mode
6) run mergemaster -p
7) make installworld
8) run mergemaster

Then, double-check /etc/rc.conf against /etc/defaults/rc.conf to see if there
are any important changes in startup functionality.  Then, and only then,
should it be safe to reboot.

If you've merged in any changes under /etc/mail, you should also cd /etc/mail
and make all install before rebooting as well.

HTH

-- 
Conrad Sabatier [EMAIL PROTECTED] - In Unix veritas

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problems after CVSUP

2004-05-28 Thread Edward Carmody
Not quite a newbie, but not very good either, apparently. :(  I did a cvsup
last night, following instructions from the handbook, and hosed up my box.

=
[EMAIL PROTECTED] /home/ecarmody] $ uname -a
FreeBSD oberon.hudsonvalleynetworks.com 5.2.1-RELEASE-p7 FreeBSD
5.2.1-RELEASE-p7 #0: Thu May 27 19:57:55 EDT 2004
root@:/usr/obj/usr/src/sys/GENERIC  i386
[EMAIL PROTECTED] /home/ecarmody] $
=

I should not be running 5.2.1-RELEASE due to my inexperience, I know, but
need to in order to support my IDE controller.  I was using the box for www,
sendmail, tacacs, ntp, syslog, samba, for my home network, and just trying
to learn UNIX a la FreeBSD.  

My immediate issues are these:
At boot, ntpd hangs, holding up the rest of the startup process.  If I kill
it with a ctrl-c, sendmail then does some funky things, and also hangs.  

===
/var/log/ntp shows:
[EMAIL PROTECTED] /var/log] # cat ntp.log 
28 May 23:53:37 ntpd[609]: ntpd exiting on signal 15
28 May 23:56:37 ntpd[409]: ntpd exiting on signal 2
[EMAIL PROTECTED] /var/log] #

which I think is from me killing it via ctrl-c
===

So, to workaround temporarily, I commented out ntpd_enable=YES in rc.conf.
Ntpd obviously doesn't hold up my boot anymore but sendmail does.  

===
Starting sendmail.
safefile(etc/mail/services.switch, uid=0, gid=0, flags=6480, mode=400):
safedirpath(/etc/mail, uid=0, gid=0 flags =6580, level=0, offset=0):
[dir /etc/mail] OK
No such file or directory

Then I get similar lines for /etc/mail/submit.cf, etc/mail/relay-domains,
The last line is:
Recipient names must be specified

I can't seem to find the output I'm seeing in /var/log/messages or
/var/log/maillog, so I've hand-typed in the bit above.

/var/log/maillog has lots of:
May 29 00:00:05 oberon sm-msp-queue[436]: i4S2ug7P087593: to=root,
ctladdr=root (0/0), delay=1+01:03:23, xdelay=00:00:00, mailer=relay,
pri=4980184, relay=[127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused
by [127.0.0.1]

which also started after my cvsup last night.  
===


Not sure what else to provide.  Any direction on how to 'shoot and fix this
wins a free beer next time you're in NYC.  Thanks...



Edward Carmody, CCNP
Systems Engineer
ShoreGroup, Inc.
M: 845-649-7791
F: 646-349-3506
[EMAIL PROTECTED]


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems after CVSUP

2004-05-28 Thread Kent Stewart
On Friday 28 May 2004 09:41 pm, Edward Carmody wrote:
 Not quite a newbie, but not very good either, apparently. :(  I did a
 cvsup last night, following instructions from the handbook, and hosed
 up my box.

 =
 [EMAIL PROTECTED] /home/ecarmody] $ uname -a
 FreeBSD oberon.hudsonvalleynetworks.com 5.2.1-RELEASE-p7 FreeBSD
 5.2.1-RELEASE-p7 #0: Thu May 27 19:57:55 EDT 2004
 root@:/usr/obj/usr/src/sys/GENERIC  i386
 [EMAIL PROTECTED] /home/ecarmody] $
 =

 I should not be running 5.2.1-RELEASE due to my inexperience, I know,
 but need to in order to support my IDE controller.  I was using the
 box for www, sendmail, tacacs, ntp, syslog, samba, for my home
 network, and just trying to learn UNIX a la FreeBSD.

 My immediate issues are these:
 At boot, ntpd hangs, holding up the rest of the startup process.  If
 I kill it with a ctrl-c, sendmail then does some funky things, and
 also hangs.

 ===
 /var/log/ntp shows:
 [EMAIL PROTECTED] /var/log] # cat ntp.log
 28 May 23:53:37 ntpd[609]: ntpd exiting on signal 15
 28 May 23:56:37 ntpd[409]: ntpd exiting on signal 2
 [EMAIL PROTECTED] /var/log] #

 which I think is from me killing it via ctrl-c
 ===

 So, to workaround temporarily, I commented out ntpd_enable=YES in
 rc.conf. Ntpd obviously doesn't hold up my boot anymore but sendmail
 does.

 ===
 Starting sendmail.
 safefile(etc/mail/services.switch, uid=0, gid=0, flags=6480,
 mode=400): safedirpath(/etc/mail, uid=0, gid=0 flags =6580, level=0,
 offset=0): [dir /etc/mail] OK
   No such file or directory

 Then I get similar lines for /etc/mail/submit.cf,
 etc/mail/relay-domains, The last line is:
 Recipient names must be specified

 I can't seem to find the output I'm seeing in /var/log/messages or
 /var/log/maillog, so I've hand-typed in the bit above.

 /var/log/maillog has lots of:
 May 29 00:00:05 oberon sm-msp-queue[436]: i4S2ug7P087593: to=root,
 ctladdr=root (0/0), delay=1+01:03:23, xdelay=00:00:00, mailer=relay,
 pri=4980184, relay=[127.0.0.1], dsn=4.0.0, stat=Deferred: Connection
 refused by [127.0.0.1]

 which also started after my cvsup last night.
 ===


 Not sure what else to provide.  Any direction on how to 'shoot and
 fix this wins a free beer next time you're in NYC.  Thanks...

Running cvsup didn't do all of this. What did you cvsup and what  else 
did you do :)?

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problems with cvsup mirror.

2004-03-15 Thread stan
One of my cvsup mirro machines (the one at work, naturaly) continues to
have indegestion. I'm getting thsi in. cvsupd.log

Mar 15 09:00:00 cvsup cvsupd[87665]: Error in /usr/local/etc/cvsup/sup.client/c
vs-all/checkouts.cvs: 224883: File is truncated
Mar 15 09:00:31 cvsup last message repeated 118212 times


I tried delting this file this morning, in the hpes it would be rebuilt,
but I'm still getting these errors.

What do I need to do to correct this?
-- 
They that would give up essential liberty for temporary safety deserve
neither liberty nor safety.
-- Benjamin Franklin
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problems after CVSUP

2003-08-17 Thread Tuc
Hi,

I CVSUP every other day or so, depends on when I remember. Any time
there is something out of date, I portupgrade it.

Within the last week, after CVSUP, it appears I loaded something thats
really wreaking havock on my system. 

My Netscape browser is SLOW AS HELL. If in my window manager I double 
click to tuck it up under the bar, then again to expand it down, it stutters 
and then finally refreshes. Any time I surf to a page it takes forever to 
build the page.

When I start GAIM, it looks like the popup boxes for it blink a
few dozen times before it stops.  I can type a sentence into the box, and press
enter, and sometimes 5-10 seconds later it'll finish writing the text in the
box and then accept the enter. 

The problem is I don't remember what I portupgraded in the last week
before I finally realized what happened. Is there something I can do to find
out, and then do a test backout of it to see if it fixes things?

Has anyone heard/seen this before and maybe know what the issue is?


Thanks, Tuc/TTSG Internet Services, Inc.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems after CVSUP

2003-08-17 Thread Kent Stewart
On Sunday 17 August 2003 07:51 am, Tuc wrote:
 Hi,

   I CVSUP every other day or so, depends on when I remember. Any time
 there is something out of date, I portupgrade it.

   Within the last week, after CVSUP, it appears I loaded something
 thats really wreaking havock on my system.

   My Netscape browser is SLOW AS HELL. If in my window manager I
 double click to tuck it up under the bar, then again to expand it
 down, it stutters and then finally refreshes. Any time I surf to a
 page it takes forever to build the page.

   When I start GAIM, it looks like the popup boxes for it blink a
 few dozen times before it stops.  I can type a sentence into the box,
 and press enter, and sometimes 5-10 seconds later it'll finish
 writing the text in the box and then accept the enter.

   The problem is I don't remember what I portupgraded in the last week
 before I finally realized what happened. Is there something I can do
 to find out, and then do a test backout of it to see if it fixes
 things?

   Has anyone heard/seen this before and maybe know what the issue is?

Did you recently upgrade libxml2 and not build the ports that depend on 
it? I am seeing the same problem and it started when I only 
portupgraded libxml2. I am rebuilding everything that uses it right now 
(-pufr libxml2) to see if that gets rid of it.

Kent



   Thanks, Tuc/TTSG Internet Services, Inc.
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems after CVSUP

2003-08-17 Thread Tuc
  Has anyone heard/seen this before and maybe know what the issue is?
 
 Did you recently upgrade libxml2 and not build the ports that depend on 
 it? I am seeing the same problem and it started when I only 
 portupgraded libxml2. I am rebuilding everything that uses it right now 
 (-pufr libxml2) to see if that gets rid of it.
 
Yea, I did... On the 12th. 

Please let me know if it works/helps/etc.  If not, is there anyone
else thats run into it?

Thanks,
Tuc/TTSG Internet Services, Inc.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problems after CVSUP

2003-08-17 Thread Kent Stewart
On Sunday 17 August 2003 08:27 am, Tuc wrote:
 Has anyone heard/seen this before and maybe know what the issue
   is?
 
  Did you recently upgrade libxml2 and not build the ports that
  depend on it? I am seeing the same problem and it started when I
  only portupgraded libxml2. I am rebuilding everything that uses it
  right now (-pufr libxml2) to see if that gets rid of it.

   Yea, I did... On the 12th.

   Please let me know if it works/helps/etc.  If not, is there anyone
 else thats run into it?

I upgraded to libxml2-2.5.10 on the 15th. That seems to be when things 
got bad. I have everything built right now and am doing the -Pruf 
libxml2 on this system right now. 

FWIW, I can't even look at html files on this system much less use the 
Internet.

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problems with CVSUP

2002-07-18 Thread Boris

Hi!
I want do update my FreeBSD 4.4 using cvsup and to I`ll get do this at 
night. But I`m using dialup and the connection could broken. My ppp 
always redealing, but cvsup retry only after 15 minutes. Why it can`t 
start after 1 or about minutes?
Thank  You.
P.S: Sorry for my English.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Problems with CVSUP

2002-07-18 Thread Alex



Thursday, July 18, 2002, 12:47:34 PM, you wrote:

B Hi!
B I want do update my FreeBSD 4.4 using cvsup and to I`ll get do this at 
B night. But I`m using dialup and the connection could broken. My ppp 
B always redealing, but cvsup retry only after 15 minutes. Why it can`t 
B start after 1 or about minutes?
B Thank  You.
B P.S: Sorry for my English.


B To Unsubscribe: send mail to [EMAIL PROTECTED]
B with unsubscribe freebsd-questions in the body of the message

Dear Boris,

This would put a to heavy load on the cvs server. If you can detect
the disco of the dailup then you could kill the cvsup and start it
again (you will continue where you where, more or less). Or may be it
would be an idea to redail after 13 minutes.

-- 
Best regards,
Alex

The FreeBSD handbook
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message