Smbfs and SMP

2003-06-06 Thread Ali Soylu
I've recompiled the kernel, and added the following options:
options SMP
options APIC_IO
options HTT 

And recompiled  reinstalled using:

make buildkernel KERNCONF=AAP
make installkernel KERNCONF=AAP

When I try to mount a smb volume, here's that I get:
Jun  5 08:34:22 bsd /kernel: error: module compiled without SMP support
Jun  5 08:34:22 bsd /kernel: netsmb_dev: unloaded
Jun  5 08:34:22 bsd /kernel: module_register_init: MOD_LOAD (dev_netsmb,
c26c0794, 0) error 1
Jun  5 08:34:22 bsd /kernel: error: module compiled without SMP support

I'm sure the modules are recompiled (checked the dates), but I still get
this smp support message. I'm using 4.8-release.

Any suggestions?

Ali

PS: Please cc your reply to my e-mail address...

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


mutex in kld

2003-06-06 Thread Anurag Chaudhary
I am using mutex in a kld.
mutex protects an open file so lock and unlock functions are called from 
open and close functions of the kld repectively.
but when i start second instance of an application working on this file, my 
system hangs.
there is no sleep call in the code.

can anybody figure out what's the prob.

thanx
Anurag
_
Staying fit. It's about being happy! 
http://server1.msn.co.in/features/stayingfit/index.asp Check out the new 
mantra.

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


Re: Can I synchronise local time with some NTP-server?

2003-06-06 Thread Tom Limoncelli
[ I'm CC:'ing [EMAIL PROTECTED] so that he can add this as a How to 
get started document to the web site. ]

On Wednesday, June 4, 2003, at 03:37  PM, Constantine wrote:

Hello!

I am running FreeBSD 4.8. How can I synchronise my clock with some NTP 
server? The time on my server right now is 4 minutes fast, and I do 
not like that... Can I set up a script that would automatically 
synchronise the time with some available server?

My server is located in the USA, in case one would like to suggest 
some good servers to synchronise with. :-)
I don't think that read the man page is a very good answer.  The man 
page doesn't explain things very well (if someone would like to submit 
what I write below to the maintainer, please do so).

Step 0:  Is it ntp or xntp?

Some operating systems supply binaries with the x and sometimes 
without the x.  This document uses options that should work for 
either.  I'll always specify the command without the x.  If you 
receive a command not found, try it with an x.

Step 1: Pick your servers

Find some public servers that you can sync with.  Two is good enough.  
There is a complete list here: http://www.ntp.org (it's a link to 
http://www.eecis.udel.edu/~mills/ntp/servers.html;)

These sites are kind enough to perform this service for you, you should 
follow any guidelines they request (asking permission first, donations, 
thank-you notes, whatever.)

Let's suppose you've picked clock.example.org and 
timekeeper.sample.com.  Those aren't real sites, but I'll use them as 
examples in the rest of this document.

Step 2:  Manually set the clock correctly just once

Let's manually set the clock to the correct time just to start things 
off.  When ntpd is running and finds your clock is wrong, it makes tiny 
little changes until the clock is right.  This way applications don't 
get confused.  However, on reboot, the clock may have lost a lot of 
time and since no applications are running yet, we can make a big 
timeleap to correct the clock.  To do this, we use a different utility 
called ntpdate.  It can't run at the same time as ntpd.  We even give 
it the -b option so that it knows to leap forward or backwards in 
time to set the clock correctly.

Here's the command that does this:

ntpdate -b clock.example.org timekeeper.sample.com
(NOTE: Substitute the 2 NTP servers that you'd like to sync with.)
Try this once from the command line (as root) to make sure you're got 
it right.

# ntpdate -b clock.example.org timekeeper.sample.com
 5 Jun 08:50:18 ntpdate[23777]: step time server SOME_IP_ADDRESS offset 
-111.106949 sec

This means that your clock was off by -111.106949 seconds, but now it's 
been brought up to date.  The good news is that for an instant you were 
in sync.  The bad news is that by the time you read this, your clock 
has drifted. Darn computers!

Step 2:  Set the clock correctly on every boot up

On reboot, you want to tell the system to sync up quickly.  While your 
machine was down the CPU gets bored and plays with the clock.  Haven't 
you ever been in a clock store waiting for your mother to make her 
purchase and started setting the clocks to funny times?  It's like 
that, only your mother has nothing to do with this (I'm sure she's a 
very nice person, you just don't appreciate her enough).

Let's configure your system to run this command on boot up.  Here's how 
to do this on various operating systems:

FreeBSD:
Simply add this line to the end of /etc/rc.conf:
ntpdate_enable=YES
ntpdate_flags=-b clock.example.org timekeeper.sample.com
Solaris 9:
This is done automatically if a properly configured 
/etc/inet/ntp.conf exists.

(people can volunteer the easiest way to do this on their favorite OS)

Step 3: Keep the clock in sync permanently and continuously.

Having your clock set properly every time you boot is nice, if you 
reboot constantly.  Of course, you could put that command in cron but 
we have a solution that is so much better you'll thank me in the 
morning.  We'll run ntpd which will constantly keep your clock 
correct by making micro-adjustments all day long.  Heck, ntpd is so 
smart that if you lose contact with all your NTP servers it will 
remember how bad your clock was and keep making adjustments based on 
past bad performance.  Pretty cool, eh?

The NTP documentation has volumes about the various features and entire 
books can be written about the theory of operation of NTP.  It's really 
quite amazing how the system works so precisely, so accurately, does 
the right thing through outages, detects and avoids misconfigured 
servers, conserves bandwidth, and fixes problems that you don't yet 
realize you have.  However, you don't care about that, you just want a 
simple configuration that works.  Here's one:

Create a configuration file.  Different systems call it different 
things.
FreeBSD 4.x:  /etc/ntp.conf
Solaris 9: /etc/inet/ntp.conf

Put these 3 lines in your configuration file:

driftfile /etc/ntp.drift
server 

lockmgr

2003-06-06 Thread Anurag Chaudhary
is lockmgr interface safer than mutexes.

_
Himalayan holiday! Waiting to be won. 
http://server1.msn.co.in/sp03/summerfun/index.asp Find out more.

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


Changing path of formatted man pages

2003-06-06 Thread Christian Laursen
I'm trying to figure out how to change the location of
formatted man pages, but have so far been unsuccessful.

I want them to end up somewhere under /var instead of
/usr. Has anyone had any success with this?

Thanks in advance.

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


Kdevelop C/C++ reference problem SOLVED

2003-06-06 Thread J. Seth Henry
I was somewhat distraught to find that after all my trouble, the package
was little more than a bunch of HTML files. ARGH! Unfortunately, for me, I
discovered this after mucking with the configure script.

Anyway, I discovered that the --enable-mt option in the configure script
was only allowed on a linux system. Apparently, there is a case
structure, and if it sees anything other than some linux it craps
out. Since FreeBSD obviously supports multithreading of Qt, I fixed
this by commenting out the case statements, leaving only the GCC check.
Not the correct solution, but it works.

It also installs to the wrong place. I manually moved the files from
/usr/local/kde/share/doc/HTML/en/kdevelop/reference to
/usr/local/share/doc/HTML/en/kdevelop/reference. And, since the installer
didn't remove it, I removed the existing index.html and symlinked c.html
to index.html.

Lastly, there is an error in c.html. The Master Index link should
reference master_index.html, not mindxbdy.html. So far, this is the only
place I have encounted the incorrect link.

Not entirely certain if it was worth it, but I now have the Kdevelop
C/C++ reference installed on my dev system. :)

Regards, and thanks for the pointers,
Seth Henry
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Convert UFS to UFS2 in FreeBSD 5

2003-06-06 Thread G D McKee
Hi all,

This many have already been answered but I can't find the answer, so here goes!!

I have been tracking 5-CURRENT since before ufs2 partitions were the standard.  Is 
there a way to convert my file system to ufs2 or is a reinstall necessary?

Thanks in advance.

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


Build a kernel, extract from build dir without 'make install'?

2003-06-06 Thread Ryan Martin
I'm trying to build a kernel that will be installed on target systems 
via sysinstall+PXE Netboot, but due to the possible impact of some of 
its customizations I do not want it to install as the kernel on the 
system on which it is being developed/built. Is there a convenient way 
to collect all the kmods and such from the sys/compile/ID directory 
without using 'make install'?

--
Ryan Martin [EMAIL PROTECTED] System Engineer @ Lumeta Corp.
P:(732)357-3523 F:(732)564-0731

Lumeta: The Source of Network Knowledge -- http://www.lumeta.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can I synchronise local time with some NTP-server?

2003-06-06 Thread Tom Limoncelli
An HTML-formatted version can be found here: 
http://whatexit.org/tal/mywritings/starting-ntp.html

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


Re: cvsup to 4.8 - kernel doesn't build

2003-06-06 Thread Lord Sith
Are you using a custom kernel?

I was using a cutom kernel and didn't notice they had made some changes to 
entries in the GENERIC kernel config file. Once I added those diffs into my 
custom kernel config file and deleted the usr directory in /usr/obj/ I 
didn't have the problems complining the kernel.

From: Scott Kupferschmidt [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: cvsup to 4.8 - kernel doesn't build
Date: Thu, 5 Jun 2003 00:39:38 -0400 (EDT)
MIME-Version: 1.0
Hello,

I think something changed in the kernel as it is no longer compiling after
I do a cvsup to 4.8-stable.  It seems it's a common problem looking on
line 47 of some .c files to include a file that does not exist.  I've
noticed this so far in the hifn and ubsec modules, trying to include
opt_hifn.h or opt_ubsec.h and causing the build to fail.
Can someone else verify this?  The solution I've been doing for now is
just removing that include line in the code and seems to be building fine
otherwise.
Sincerely,

Scott Kupferschmidt
ISPrime, Inc.
866.502.4678 ext. 3
AIM: Scott ISPrime - ICQ: 174337249
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
_
MSN 8 with e-mail virus protection service: 2 months FREE*  
http://join.msn.com/?page=features/virus

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


amd always nfs mounts as tcp?

2003-06-06 Thread Tom Limoncelli
amd on my NFS clients always mounts using TCP.  I need to use UDP (long 
story).  I've tried many different options and I can't get it to use 
UDP.

If I mount it manually (i.e. without amd) it works fine:
mount_nfs -3 -U server1:/u1/foo /mnt
I can verify that it is using tcpdump.
The amd map lists:
/defaults   
type:=nfsl;rhost:=server1;opts:=rw:nfs_proto=udp;rfs:=${fs}
foo fs:=/u1/${key}
bar fs:=/u2/${key}
baz fs:=/u2/${key}

The NFS client is running FreeBSD 4.7, and the NFS server is running 
4.8.

How do I get amd to use udp instead of tcp?

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


Question about a large volumn of errors I've been getting.

2003-06-06 Thread Dragoncrest
	Just a curiousity question actually.  Cause so far I haven't had any 
issues that I can see.  What's basically happened is in my daily reports 
I've been seeing a lot of these types of messages:

Jun  4 03:10:21 sendmail[76254]: h543AIjS076253: Fixed MIME 
Content-Disposition header field (possible attack)

	I know it's not an attack because the machine is tucked comfortably behind 
a firewall and sendmail is only available through localhost.  Mail is 
delivered to that box from external pop accounts via fetchmail.  One thing 
I have noticed a lot of lately is spam.  It has increased at least a good 
3-4x's what it was.  Spam assassin has been doing an awesome job of weeding 
it all out, but it has just been coming in droves and it's more like a 
small tidalwave now.  So, I was wondering if this was just related to the 
spam or if there's something else I should be looking into?  Like maybe 
fetchmail got borked or something.  So far everything seems to be running 
fine.  I just found this curious is all.  Thanks for the info.

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


Re: Improving FreeBSD NFS performance (esp. directory updates)

2003-06-06 Thread Thomas A. Limoncelli
On Thu, May 29, 2003 at 04:05:04PM -0500, Marc Wiz wrote:
 On Thu, May 29, 2003 at 04:54:00PM -0400, Tom Limoncelli wrote:
  I have a NFS server with (so far) a single NFS client.  Things work 
  fine, however if (on the client) I do an rm -rf foo on a large (deep 
  and wide) directory tree the tty receives NFS server not 
  responding/NFS server ok messages.
  
  I don't think the network is at fault, nor is the server really going 
  away.  I think the client is just impatient.  Is there a way to speed 
  up a large rm -rf?  I have soft-writes enabled but alas
 
 Tom,
 
 please reproduce the problem but before doing it run the following commands
 and save the output:
 
 On the client:
 
 nfsstat -c
 netstat -m
 netstat -s
 
 On the server:
 
 nfsstat -s
 netstat -m
 netstat -s
 
 Run the rm -rf /foo
 
 Rerun the above commands on both the client and server and of course
 save the output again :-)
 
 RTFM-ing for nfsstat I am disappointed that nfsstat does not have -z 
 option for zeroing out the counters.  Time to look at the source :-)

It turns out the issue isn't only the rm -rf, so I've eliminated
that.  The process is creating many subdirectories and files.

Here's the output that you requested.  I've generated the output
at a baseline, 1 minute into the process, and then every 4 hours.
Sorry for the flood of information but I figure more is better.
You can look at the first and last items if you prefer.

I really appreciate the help!
--tal

-- 
Tom Limoncelli -- [EMAIL PROTECTED]  --  www.lumeta.Com


# CLIENT BASELINE:
Thu Jun  5 01:41:32 UTC 2003
Client Info:
Rpc Counts:
  Getattr   SetattrLookup  Readlink  Read WriteCreateRemove
 16222151  2470   9976708 91232  23111364  23342730544746 51291
   Rename  Link   Symlink Mkdir Rmdir   Readdir  RdirPlusAccess
  385 0 11004760080 13602 16651 0  69815088
MknodFsstatFsinfo  PathConfCommitGLeaseVacate Evict
030962158 0  21980734 0 0 0
Rpc Info:
 TimedOut   Invalid X Replies   Retries  Requests
0 0 0   239 166249915
Cache Info:
Attr HitsMisses Lkup HitsMisses BioR HitsMisses BioW HitsMisses
359087567  84614481 137095640   9976703 201904089  23084158  15151506  23342730
BioRLHitsMisses BioD HitsMisses DirE HitsMisses
  5296031 91232817844 16635 53658 0
257/608/18240 mbufs in use (current/peak/max):
257 mbufs allocated to data
256/312/4560 mbuf clusters in use (current/peak/max)
776 Kbytes allocated to network (5% of mb_map in use)
0 requests for memory denied
0 requests for memory delayed
0 calls to protocol drain routines
tcp:
205722821 packets sent
155645171 data packets (2158194817 bytes)
109 data packets (89632 bytes) retransmitted
0 resends initiated by MTU discovery
34720623 ack-only packets (365546 delayed)
0 URG only packets
0 window probe packets
15355469 window update packets
1449 control packets
213168802 packets received
152983420 acks (for 2158194689 bytes)
1424 duplicate acks
0 acks for unsent data
208828275 packets (1042433032 bytes) received in-sequence
3 completely duplicate packets (192 bytes)
0 old duplicate packets
0 packets with some dup. data (0 bytes duped)
62 out-of-order packets (5136 bytes)
0 packets (0 bytes) of data after window
0 window probes
62774 window update packets
0 packets received after close
0 discarded for bad checksums
0 discarded for bad header offset fields
0 discarded because packet too short
671 connection requests
119 connection accepts
1 bad connection attempt
0 listen queue overflows
790 connections established (including accepts)
777 connections closed (including 2 drops)
202 connections updated cached RTT on close
202 connections updated cached RTT variance on close
3 connections updated cached ssthresh on close
0 embryonic connections dropped
152983420 segments updated rtt (of 149305673 attempts)
74 retransmit timeouts
1 connection dropped by rexmit timeout
0 persist timeouts
0 connections dropped by persist timeout
31 keepalive timeouts
31 keepalive probes sent
0 connections dropped by keepalive
3834814 correct ACK header predictions
60088755 correct data packet header predictions
119 syncache entries added
  

Re: BIND 8.3.5 port?

2003-06-06 Thread Chuck Swiger
Doug Barton wrote:
[ ... ]
However, if Mark wanted to run the version of named that already comes
with FreeBSD, or the current 8.3.4 port, he wouldn't have asked for an
updated port of BIND-8.3.5.  The maintainer of any software project
ought to regard other people's interest as a positive and constructive
thing-- otherwise, why bother?
Just for your information, here is what the paragraph above sounds like to
me:
Blah blah blah, I didn't actually read the comment in the Makefile where
it says if you urgently desire to run the latest BIND you can just compile
it from source and install it yourself, blah blah blah, Do what I want you
to do because I want you to do it, blah blah blah.
This, because I chose not to second-guess why Mark asked for a port of
BIND-8.3.5 and simply did something to help him?
Fact: I haven't asked *you* to do a single thing, Doug!

Unless being CC:'ed on an update to a port that you are listed as $MAINTAINER of
deserves the false and unjustified mischaracterization above.  Doug, are you
deliberately trying to convince the members of this list that they should not
try to port new versions of software?
Are you trying to convince people that contacting the listed maintainer of a
port with an update will result in arrogant, scornful abuse from someone with
@freebsd.org in their email address?
If you think this is unecessarily harsh, please check the many gigabytes
of mail archives where the subject of rational expectations on your part
regarding how and when people who are volunteering their time to help you
should be doing it.
Fact: I didn't ask for your help.  Nor did Mark, for that matter, and that's
probably a good thing considering your reaction!
Also, you should probably consider the possibility that if I thought it
was a good idea for everyone in the FreeBSD community to rush out and run
the latest and greatest version of BIND, I would already have upgraded the
port.
Why should I consider that?  I answered Mark's request; I didn't tell him, or
anyone else for that matter, to upgrade their version of BIND.  True, or not true?
 all of which tells me that you didn't actually READ what I said in
the Makefile. Or if you did, you didn't bother to try and understand it.
Either way, you've demonstrated to me that further communication with you
isn't likely to yield fruitful results.
True, Doug, but you probably aren't honest enough to take responsibility for
your own actions causing the problem.  I haven't done anything wrong, except
maybe try to help someone else in your presence.
--
-Chuck


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


test message

2003-06-06 Thread Lawrence koffer
test


-
Do you Yahoo!?
Free online calendar with sync to Outlook(TM).
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: test message

2003-06-06 Thread Daniel Bye
On Thu, Jun 05, 2003 at 08:38:33AM -0700, Lawrence koffer wrote:
 test

Sorry, you fail.

There is a list specifically for testing, so you don't have to pollute the
real lists.  It is, now this is inspired, [EMAIL PROTECTED]

-- 
Daniel Bye

PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
PGP Key fingerprint: 3D73 AF47 D448 C5CA 88B4 0DCF 849C 1C33 3C48 2CDC
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Configure Exim/Sendmail on FreeBSD

2003-06-06 Thread gagan_grewal
Hi FreeBSD ppl :)

I am new entry into this mailing list ...

Have been a Linux user since '98 and now am trying FreeBSD too.
(Hope I didn't step on any Flames ?)

Well ... I am having trouble configuring Exim/Sendmail on FreeBSD

My Config...
- FreeBSD 4.7 RELEASE
- Exim-3.x
- Mutt 1.4i
- Dial-up internet connectivity

The trouble with sendmail ... 

The output queue is being created in /var/spool/clientmqueue instead
of /var/spool/mqueue.

In Linux I simply disabled sendmail from starting up during init, and
queued up mail using Mutt in /var/spool/mqueue and when was connected
I simply invoked sendmail as 'sendmail -q' ... that did the job.

But things are different in FreeBSD ... plz guide me on how to setup sendmail.

If not sendmail then how to setup Exim ... Exim is a breeze on Debian Potato ... but 
mostly due to 'eximconfig'

I tried the BAD WAY of copying /etc/exim.conf from Debian into
/usr/local/etc/exim/configure on FreeBSD ...

Well it started up fine ... but while using fetchmail ... the incoming
mail instead of getting delivered is getting queued up in
/var/spool/exim/input ... :(

Is 'eximconfig' or equivalent available for FreeBSD ... if not then
what needs to be done ?

I did try googling and found some solutions too, but didn't work !!!

Whew !!! what a newbie this :(

Thanks in advance ...

Regards,

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


commande make non reconnue

2003-06-06 Thread Philippe Sirugue
Bonjour,

j'ai trouvé votre adresse de courriel dans la page si quelquechose se
passe mal
(http://www.freebsd-fr.org/doc/fr/books/handbook/kernelconfig-trouble.html)
je suis tout nouveau dans Linux, en voulant installer ma carte
video j'ai découvert que la commande make n'est pas reconnue par mon 
Mandrake 8.1, ça me répond qu'elle n'existe pas quand je tape man make

la facilité avec laquelle vous parlez de Linux sur votre site me
laisse espérer que vous saurez m'aider
merci à vous,
Philippe
p.s. vous conseillez de joindre le fichier de configuration du noyau, 
mais je ne sais pas de quoi il s'agit

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


Re: Can I synchronise local time with some NTP-server?

2003-06-06 Thread Alex de Kruijff
On Thu, Jun 05, 2003 at 09:55:39AM -0400, Tom Limoncelli wrote:
 [ I'm CC:'ing [EMAIL PROTECTED] so that he can add this as a How to 
 get started document to the web site. ]
 
 On Wednesday, June 4, 2003, at 03:37  PM, Constantine wrote:
 
 Hello!
 
 I am running FreeBSD 4.8. How can I synchronise my clock with some NTP 
 server? The time on my server right now is 4 minutes fast, and I do 
 not like that... Can I set up a script that would automatically 
 synchronise the time with some available server?
 
 My server is located in the USA, in case one would like to suggest 
 some good servers to synchronise with. :-)
 
 I don't think that read the man page is a very good answer.  The man 
 page doesn't explain things very well (if someone would like to submit 
 what I write below to the maintainer, please do so).
 
 

Hi,

The man page are not meant for this, there scope is limmited to the 
command. Books and article are. In fact the FreeBSD handbook have a 
section about this.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-ntp.html

Alex

P.S. Its a good article. :-)
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Configure Exim/Sendmail on FreeBSD

2003-06-06 Thread Jez Hancock
On Thu, Jun 05, 2003 at 09:55:02PM +0500, [EMAIL PROTECTED] wrote:
 If not sendmail then how to setup Exim ... Exim is a breeze on Debian Potato ... but 
 mostly due to 'eximconfig'
There's a short article on configuring Exim on FreeBSD here:

http://munk.nu/exim/exim-freebsd-asmtp.txt

You can safely ignore any comments relating to cyrus-sasl/authenticated
smtp (asmtp) if you want, but the overhead is minimal installing exim 
with support for asmtp.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: commande 'make' non reconnue

2003-06-06 Thread Eduardo Viruena Silva
 Original Message 
Subject: Re: commande 'make' non reconnue
From: [EMAIL PROTECTED]
Date: Thu, June 5, 2003 12:49 pm
To: [EMAIL PROTECTED]

Philippe,

It would be a good idea write your message in English.

 Bonjour,

 j'ai trouvé votre adresse de courriel dans la page si quelquechose se
 passe mal
 (http://www.freebsd-fr.org/doc/fr/books/handbook/kernelconfig-trouble.html)

you are saying that you found this mail address in the file:
what if something goes wrong in:

http://www.freebsd-fr.org/doc/fr/books/handbook/kernelconfig-trouble.html


 je suis tout nouveau dans Linux, en voulant installer ma carte
 video j'ai découvert que la commande make n'est pas reconnue par mon
 Mandrake 8.1, ça me répond qu'elle n'existe pas quand je tape man
 make

 la facilité avec laquelle vous parlez de Linux sur votre site me
 laisse espérer que vous saurez m'aider

you said:

t you are new at Linux [even though this is not a linux list].
t and you wish install your video card, when you typed make command
in t Mandrake 8.1 it is not recognized.  Now, you are supposing we
speak t Linux fluently, and this make you think we can help...

sorry, this is not a Linux List.
we do not know which video card you are using and
it is almost impossible for us to help you installing your
card in that operating system.




 merci à vous,
 Philippe

 p.s. vous conseillez de joindre le fichier de configuration du noyau,
 mais je ne sais pas de quoi il s'agit


Argh!!! my French is abandoning me...

You said:
t we suggest to attach your configuration file but you dont know
t how...

Perhaps you referred to /etc/X11/XF86Config file, but I don't know
where to find it in Mandrake.

THIS IS A FREEBSD LIST, NOT A LINUX-MANDRAKE LIST.


 ___
 [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]


cups/kde madness

2003-06-06 Thread T Kellers
When printing with kde, using kprinter, without using cups but with Generic 
Unix lpd(OR LPR/LPRNG) lpr I get the following error:

/usr/local/bin/lpr -P 'lj' -#1 'tmp/kde-timothyk/kdeprint_kYcOjKA

lpr:unable to print file:
server-error-service-unavailable.

After I (re)install apsfilter (which unCUPS /etc/printcap)
from a shell, lpr -P lj filename works fine

When I pkg_delete -f cups*, I still get the same error.

Is kdeprinter hard-coded to look in /usr/local/bin for lp/lpr?

generic lpr lives in /usr/bin/lpr, and there is no /usr/local/bin/lpr after 
cups was deleted.

Full install of kde3.1.2 on 4.8-STABLE

FreeBSD dhcp187-25.njit.edu 4.8-STABLE FreeBSD 4.8-STABLE #8: Mon Apr 28 
12:35:07 EDT 2003 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/ARGUS  
i386

And a full install of kde1.1.2 on 5.1-CURRENT

FreeBSD 128.235.220.97 5.1-CURRENT FreeBSD 5.1-CURRENT #3: Thu Jun  5 13:23:34 
EDT 2003 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/TK  i386


Both machines do have a full install of gnome2, also, including 
gnomeprint-0.37.

I don't know know if I have a conflict, a misconfiguration or an old-fashioned 
Unix haunting going on here.

Thanks in advance for any ideas.

Tim Kellers
CPE/NJIT


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


printing man pages and source code (with vgrind + troff)

2003-06-06 Thread Joan Picanyol i Puig
Hi,

I need to print many man pages and source code files, and I need the
output to be in pdf and preferably with two pages per side (syntax
colouring would be amazing:). So I've been looking at vgrind (+ ps2pdf?)
for the source code, but I can't get what I want. As for the man pages,
the semman2html

Can someone tell me what the one-liner for this is?

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


SORRY commande make PARDON

2003-06-06 Thread Philippe Sirugue
Hello everybody,
Salut à tous,
thank you very much for all your quick answers to my question
merci à tous pour les réponses que j'ai eues, malgré mon hors sujet 
remarquable

I do apologize, I did not notice that I was writing to a list (the email 
was inside an html page so I thought I was writing to one person only)
pardon pour le dérangement, je ne pensais pas écrire à une liste, mais à 
une personne qui avait mis son adresse de courriel sur son site

I have understood that freeBSD has nothing to do with Linux, I won't 
disturb you any more, I do now have new places were to seek
je viens de comprendre que freeBSD n'a rien a voir avec Linux, je ne 
vous embêterai donc plus, j'ai de nouvelles pistes de recherche grâce à vous

bonne continuation
best regards
Philippe

Bonjour,

j'ai trouvé votre adresse de courriel dans la page si quelquechose se
passe mal
(http://www.freebsd-fr.org/doc/fr/books/handbook/kernelconfig-trouble.html) 

je suis tout nouveau dans Linux, c'est en voulant installer ma carte
video que la commande make n'a pas été reconnue, ça me répond qu'elle
n'existe pas quand je tape man make
vous conseillez de joindre le fichier de configuration du noyau, mais je
ne sais pas de quoi il s'agit, je tourne sous Mandrake 8.1
la facilité avec laquelle vous parlez de tout ça sur votre site me
laisse espérer que vous saurez m'aider
à bientôt,
Philippe
___
[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: printing man pages and source code (with vgrind + troff)

2003-06-06 Thread Erik Trulsson
On Thu, Jun 05, 2003 at 07:57:51PM +0200, Joan Picanyol i Puig wrote:
 Hi,
 
 I need to print many man pages and source code files, and I need the
 output to be in pdf and preferably with two pages per side (syntax
 colouring would be amazing:). So I've been looking at vgrind (+ ps2pdf?)
 for the source code, but I can't get what I want. As for the man pages,
 the semman2html
 
 Can someone tell me what the one-liner for this is?

I would suggest using a2ps, and then pdf2ps to convert the postscript
file to PDF. a2ps can convert most types of textfiles into nice-looking
postscript. 

The one-liner would look something like:

a2ps -2 -o - /path/to/input/file | ps2pdf - outputfile.pdf

There are lots of flags you can give to a2ps to control the exact look
of the output.  Read the documentation if necessary.


-- 
Insert your favourite quote here.
Erik Trulsson
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can I synchronise local time with some NTP-server?

2003-06-06 Thread Tom Limoncelli
On Thursday, June 5, 2003, at 01:11  PM, Alex de Kruijff wrote:

The man page are not meant for this, there scope is limmited to the
command. Books and article are. In fact the FreeBSD handbook have a
section about this.
Yet of all the email on this topic, nobody pointed out this most  
excellent article.

Of the many problems with the man page system, this is one that has  
always been a torn in my side.  I feel that man pages should have a  
getting started section, even if it only points to articles like the  
one you suggested.

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network- 
ntp.html


P.S. Its a good article. :-)
I agree.  It's a shame that the first place that people turn for help  
(the man pages) doesn't refer to it.

-tal

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


password aging

2003-06-06 Thread Glenn Johnson
Is there any way to get password aging to work properly on FreeBSD?  It
seems every time I figure out how to work around one limitation, I come
across another one.

-- 
Glenn Johnson
USDA, ARS, SRRC  Phone: (504) 286-4252
New Orleans, LA 70124   e-mail: [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


GPS and NTP

2003-06-06 Thread Arun Welch
Is there any software out there for hooking up the time signal from a
GPS device to an NTP server? I've found software to read off the GPS,
and software for running NTP, but nothing that combines the two.

...arun


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


Re: cyrus-sasl2 setup failing

2003-06-06 Thread Grzegorz Czaplinski
On Wed, Jun 04, 2003 at 08:35:50PM -0800, admin wrote:
 wait I figured this out.  I changed the saslauthd flags to 
 
 if [ -z ${sasl_saslauthd_flags} ]; then
 sasl_saslauthd_flags=-a getpwent
 fi
 
 got the daemon running and things are fine now.
 
 are there any security issues here.  looks liek I cannot send mail unless I
 have SSL enabled on the client side.  SO I think I have things running properly.

No security issues here...

Cheers,
gregory
--
Grzegorz Czaplinski gregory at prioris.mini.pw.edu.pl
The Power to Serve, Right for the Power Users! - http://www.FreeBSD.org/
 Fingerprint: EB77 E19D CFA2 5736 810F  847C A70F A275 2489 469F


pgp0.pgp
Description: PGP signature


Re: password aging

2003-06-06 Thread Toni Schmidbauer
On Thu, Jun 05, 2003 at 01:41:10PM -0500, Glenn Johnson wrote:
 Is there any way to get password aging to work properly on FreeBSD?  It
 seems every time I figure out how to work around one limitation, I come
 across another one.

man pw(8)

see options -e and -p

for example pw usermod luser -p 01072003, so the user has to
change his pw on 01-07-2003.

if this is not working for you, please post the error message.

hth,
toni
-- 
Behandle die Menschen, als wären sie, was sie sein | toni at stderror dot at
sollten, und du wirst ihnen helfen, zu werden, was | Toni Schmidbauer
sie sein können.  - Johann Wolfgang von Goethe |


pgp0.pgp
Description: PGP signature


Re: GPS and NTP

2003-06-06 Thread Arthur W. Neilson III
--On Thursday, June 05, 2003 1:49 PM -0500 Arun Welch said:
| Is there any software out there for hooking up the time signal from a
| GPS device to an NTP server? I've found software to read off the GPS,
| and software for running NTP, but nothing that combines the two.
|
| ...arun
ntpd can do this.  go to

http://www.eecis.udel.edu/~ntp/ntp_spool/html/

and do some reading :^) specifically look at this

http://www.eecis.udel.edu/~ntp/ntp_spool/html/refclock.html

it details the supported NTP reference clocks, type 30 is
the Motorola UT+ which is what I use.
Here's info on my clock.

http://www.wh7n.net/refclock/clock1.php

--
Arthur W. Neilson III, WH7N - FISTS #7448
Bank of Hawaii Network Services
http://www.pilikia.net
[EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Bind 9 Port

2003-06-06 Thread Jonathan Chen
On Wed, Jun 04, 2003 at 08:40:14PM -0700, cp wrote:

[...]
 Before I go any further with 5.0, is it most appropriate
 to use FreeBSD 4.8 STABLE April with the Bind 9.2.2
 binary from ISC? I just want know it works or if there
 is a better combination that is secure and functional? 

If you're using the box for production purposes, it best to go with
4-STABLE. Bind9 has been working fine on my 4-STABLE machine for more
than a year now.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
 Power corrupts, Absolute Power is pretty neat
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Strange PPPoE behaviour -- Need help to avoid fees

2003-06-06 Thread Adam
I just got a call from my ISP telling me that my DSL has been
disconnecting and reconnecting every 3 minutes for the past few months,
and that this is putting a heavy load on their servers. They're
considering charging me for all this extra bandwidth, as they're certain
that the problem is on my end.

I don't notice the disconnections here, but maybe the ppp process is
doing some weirdness that is transparent to me. Here's my ppp.conf:

default:
 set log Phase Chat LCP IPCP CCP tun command
 ident user-ppp VERSION (built COMPILATIONDATE)

openweb:
 set authname [EMAIL PROTECTED]
 set authkey 
 set device PPPoE:dc0
 enable dns
 enable lqr
 add default HISADDR
 set dial
 set login
 set mru 1492
 set reconnect 3 6000


Does anyone see anything suspicious in my configuration that might be
causing the problem? I'm going to try switching my GNet modem with a
Daewoo, but I'm thinking that the problem probably lies in my ppp.conf
settings. 

Thanks,
-- 
Adam [EMAIL PROTECTED]

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


Re: Strange PPPoE behaviour -- Need help to avoid fees

2003-06-06 Thread Peter Elsner
Configuration looks fine... What does the ppp.log file show?

Peter

At 04:14 PM 6/5/2003 -0400, you wrote:
I just got a call from my ISP telling me that my DSL has been
disconnecting and reconnecting every 3 minutes for the past few months,
and that this is putting a heavy load on their servers. They're
considering charging me for all this extra bandwidth, as they're certain
that the problem is on my end.
I don't notice the disconnections here, but maybe the ppp process is
doing some weirdness that is transparent to me. Here's my ppp.conf:
default:
 set log Phase Chat LCP IPCP CCP tun command
 ident user-ppp VERSION (built COMPILATIONDATE)
openweb:
 set authname [EMAIL PROTECTED]
 set authkey 
 set device PPPoE:dc0
 enable dns
 enable lqr
 add default HISADDR
 set dial
 set login
 set mru 1492
 set reconnect 3 6000
Does anyone see anything suspicious in my configuration that might be
causing the problem? I'm going to try switching my GNet modem with a
Daewoo, but I'm thinking that the problem probably lies in my ppp.conf
settings.
Thanks,
--
Adam [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
--
Peter Elsner [EMAIL PROTECTED]
Vice President Of Customer Service (And System Administrator)
1835 S. Carrier Parkway
Grand Prairie, Texas 75051
(972) 263-2080 - Voice
(972) 263-2082 - Fax
(972) 489-4838 - Cell Phone
(425) 988-8061 - eFax
I worry about my child and the Internet all the time, even though she's
too young to have logged on yet. Here's what I worry about. I worry
that 10 or 15 years from now, she will come to me and say Daddy, where
were you when they took freedom of the press away from the Internet?
-- Mike Godwin
Unix IS user friendly... It's just selective about who its friends are.
System Administration - It's a dirty job, but somebody said I had to do it.
If you receive something that says 'Send this to everyone you know,
pretend you don't know me.
Standard $500/message proofreading fee applies for UCE.

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


Re: Strange PPPoE behaviour -- Need help to avoid fees

2003-06-06 Thread Christian Sauer

Adam said:
 I just got a call from my ISP telling me that my DSL has been
 disconnecting and reconnecting every 3 minutes for the past few months,
 and that this is putting a heavy load on their servers. They're
 considering charging me for all this extra bandwidth, as they're certain
 that the problem is on my end.

 I don't notice the disconnections here, but maybe the ppp process is
 doing some weirdness that is transparent to me. Here's my ppp.conf:

 default:
  set log Phase Chat LCP IPCP CCP tun command
  ident user-ppp VERSION (built COMPILATIONDATE)

 openweb:
  set authname [EMAIL PROTECTED]
  set authkey 
  set device PPPoE:dc0
  enable dns
  enable lqr
  add default HISADDR
  set dial
  set login
  set mru 1492
  set reconnect 3 6000


according to the man page ... by default the PPP connection times out
after 3 mins.  It suggests using set timeout 0 to disable it.  try
adding that to the ppp.conf file.


 Does anyone see anything suspicious in my configuration that might be
 causing the problem? I'm going to try switching my GNet modem with a
 Daewoo, but I'm thinking that the problem probably lies in my ppp.conf
 settings.

 Thanks,
 --
 Adam [EMAIL PROTECTED]

-Christian

-- 
Van Buren: He probably thought a 9mm divorce would be cheaper
Briscoe: ..And less bloody

-Law  Order: Season 9 _Formerly Famous_

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


Re: Can I synchronise local time with some NTP-server?

2003-06-06 Thread Alex de Kruijff
On Thu, Jun 05, 2003 at 02:27:13PM -0400, Tom Limoncelli wrote:
 On Thursday, June 5, 2003, at 01:11  PM, Alex de Kruijff wrote:
 
 The man page are not meant for this, there scope is limmited to the
 command. Books and article are. In fact the FreeBSD handbook have a
 section about this.
 
 Yet of all the email on this topic, nobody pointed out this most  
 excellent article.

I was wondering about that to. Its not that hard to find, since it 
has a link on the main page of the website.

 Of the many problems with the man page system, this is one that has  
 always been a torn in my side.  I feel that man pages should have a  
 getting started section, even if it only points to articles like the  
 one you suggested.
 

There is usaly a refereal section at the end of the manual. It is a idee
to included a URL there. This is not possible for non-systems (aka 
comming from the ports).

 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network- 
 ntp.html
 
 
 P.S. Its a good article. :-)
 
 I agree.  It's a shame that the first place that people turn for help  
 (the man pages) doesn't refer to it.

I meant you article here. (This may not have bin clear). I find the 
link is also good. 


I don't agree on the the shame part. I find the documentation of 
FreeBSD excelent. The startging point, realy, is the website 
(www.freebsd.org) and from there one can come to lots of mailinglist, 
newsgroups, article, and the handbook. I use FreeBSD for these reasons.
The handbook is the starting your looking for.

I feel that in this case the starter of this tread knew what he wanted to
do, but not knew what he needed. I feel that he never would have read 
one the manuals, because of that. This mailinglist is, amoung other 
questions, for questions like his.

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


Command confirmation request (37491F7F)

2003-06-06 Thread L-Soft list server at FEAT (1.8e)
Your command:

 PW REP 

requires confirmation. To  confirm the execution of  your command, simply
point your browser to the following URL:

 http://list.feat.org/scripts/wa.exe?OK=37491F7F

Alternatively, if  you have no WWW  access, you can reply  to the present
message and type  ok (without the quotes) as the  text of your message.
Just the word ok - do not  retype the command. This procedure will work
with any mail  program that fully conforms to the  Internet standards for
electronic  mail. If  you receive  an error  message, try  sending a  new
message to  [EMAIL PROTECTED] (without using the  reply function -
this  is very  important) and  type  ok 37491F7F  as the  text of  your
message.

Finally, your  command will be  cancelled automatically if  LISTSERV does
not receive your confirmation within 48h. After that time, you must start
over and resend the command to get a new confirmation code. If you change
your mind and decide that you do  NOT want to confirm the command, simply
discard the present message and let the request expire on its own.

- Original mail header --
[Request submitted through anonymous TCP/IP interface from 127.0.0.1]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


OpenOffice.org Linux binary works (was OpenOffice.org 1.0.2 andFreeBSD 4.8-RELEASE)

2003-06-06 Thread David Gerard
Doug Poland ([EMAIL PROTECTED]) [030601 01:18]:
 On Sun, Jun 01, 2003 at 01:00:33AM +1000, David Gerard wrote:

  So. On the other box (FreeBSD 4.8), we've just installed OOo 1.0.2 from
  ports. A few days' compilation from source. It, er, sort of works. It
  starts up, but crashes when you try to save anything (dies with an internal
  error).
  The README claims it works with FreeBSD 4.5 and up, but I'll believe that
  when I see it doing so.
  What are others' experiences so far? Is there some undocumented hoop one
  must jump through to get it to behave itself?

 I had been using linux binaries with success.  I've been trying to build
 native 1.0.3 but the build keeps failing.  I've never been able to compile
 any version of OO.org from source.


We just installed the Linux binary (as downloaded from openoffice.org) for
1.0.3, and it's working very nicely so far. Ran 'install' (which gave a lot
of errors) then 'setup', and it works fine. Ticked 'KDE integration' and it
even put itself into the KDE menus properly. I'm about to try it on the
4.6.2 box as well. I'll let you all know if that works too.


- d.



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


RE: OpenOffice.org Linux binary works (was OpenOffice.org 1.0.2andFreeBSD 4.8-RELEASE)

2003-06-06 Thread Chris
I agree here. On make install clean, I never really got OOo to install. I
grabbedn the bins off the OOo site, run the tar in /home/me, and ran the
install. Bingo! instant OOo.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of David Gerard
Sent: Thursday, June 05, 2003 3:52 PM
To: [EMAIL PROTECTED]
Subject: OpenOffice.org Linux binary works (was OpenOffice.org 1.0.2
andFreeBSD 4.8-RELEASE)


Doug Poland ([EMAIL PROTECTED]) [030601 01:18]:
 On Sun, Jun 01, 2003 at 01:00:33AM +1000, David Gerard wrote:

  So. On the other box (FreeBSD 4.8), we've just installed OOo 1.0.2 from
  ports. A few days' compilation from source. It, er, sort of works. It
  starts up, but crashes when you try to save anything (dies with an
internal
  error).
  The README claims it works with FreeBSD 4.5 and up, but I'll believe
that
  when I see it doing so.
  What are others' experiences so far? Is there some undocumented hoop one
  must jump through to get it to behave itself?

 I had been using linux binaries with success.  I've been trying to build
 native 1.0.3 but the build keeps failing.  I've never been able to compile
 any version of OO.org from source.


We just installed the Linux binary (as downloaded from openoffice.org) for
1.0.3, and it's working very nicely so far. Ran 'install' (which gave a lot
of errors) then 'setup', and it works fine. Ticked 'KDE integration' and it
even put itself into the KDE menus properly. I'm about to try it on the
4.6.2 box as well. I'll let you all know if that works too.


- d.



___
[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]


Kernel Panic during install with 4.8 mini ISO

2003-06-06 Thread Chris Ward
I'm seeing a kernel panic during boot of 4.8 mini ISO install CD, details
below.

Fault virtual addr = 0xeb902
Fault code = supervisor read, page not present
Instr Ptr = 0x8:0xc00eb807
Stack Ptr = 0x10:0xc0843d6c
Frame Ptr = 0x10:0xc0843d6c
Code Seg = base 0x0, limit 0xf, type 0x1b, DPL0, pres 1, def32 1, gran 1
Proc eflags = interrupt enabled, resume, IOPL=0
Current proc = 0 (swapper)
IRQ mask = net tty bio cam
Trap no = 12

Just prior to this it was probing the VGA:

pcio0: unknown card (vendor = 0x1039, dev = 0x7013) at 1.6 irq 10
pcib2: PCI to PCI bridge (vendor = 1039, device = 0001) at device 2.0 on
pci0
pci1: PCI bus on pcib2
pci1: SIS model 6300 VGA-compatible display device at 0.0
pci_cfgintr_virgin: using routable interrupt 3

Kernel panic follows...

The kernel is unmodified from that of the ISO image.

I'm guessing that I need to pass in some params to init the graphics card
but being new to FreeBSD I'm not sure how to do this.

Could somebody please point me in the right direction?

Thx.
Chris.



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


Linux compat: /lib/libc.so.6: version `GLIBC_2.1.3' not found

2003-06-06 Thread David Gerard
David Gerard ([EMAIL PROTECTED]) [030606 06:53]:

 We just installed the Linux binary (as downloaded from openoffice.org) for
 1.0.3, and it's working very nicely so far. Ran 'install' (which gave a lot
 of errors) then 'setup', and it works fine. Ticked 'KDE integration' and it
 even put itself into the KDE menus properly. I'm about to try it on the
 4.6.2 box as well. I'll let you all know if that works too.


I just tried it on the 4.6.2 box and got this:

[EMAIL PROTECTED]:~/install $ ./install
Installation starting, please be patient ...
./setup: /lib/libc.so.6: version `GLIBC_2.1.3' not found (required by ./setup)

Installation Completed
[EMAIL PROTECTED]:~/install $ ./setup
./setup: /lib/libc.so.6: version `GLIBC_2.1.3' not found (required by ./setup)
[EMAIL PROTECTED]:~/install $


So. What do I need to install or do to my Linux compat so I don't get this
error? Remember that this is FreeBSD 4.6.2, and it works fine on FreeBSD 4.8.


- d.



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


Re: Strange PPPoE behaviour -- Need help to avoid fees

2003-06-06 Thread Adam
On Thu, 2003-06-05 at 16:37, Christian Sauer wrote:
 according to the man page ... by default the PPP connection times out
 after 3 mins.  It suggests using set timeout 0 to disable it.  try
 adding that to the ppp.conf file.

Thanks for the tip. I'll give it a try and see what happens.


-- 
Adam [EMAIL PROTECTED]

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


ipfw Help me

2003-06-06 Thread Patricia
I want reroute and ip of my LAN to WAN but

this ip it's maked by torjan and I want reroute this ip 1.2.3.4 to 
127.0.0.1 ( to local)

deny don't work and I deny ip soft crash.
I have ban this ip to my external firewall and it's work very wll but 
my all friend don't have external firewall.

ipfw add divert natd all from x.x.x.x to 127.0.0.1

don't work

can you help me plz

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


HELP ON ACCESS FOR SENDMAIL

2003-06-06 Thread Dr. Tim
I have freebsd 4.4 sendmail 8.12.6

when I modify access in etc/mail
to two simple lines

spammer.com 550 goaway
12.13.14RELAY

do a make
(*even tried init 6ing)

sendmail happily accepts mail from [EMAIL PROTECTED]
and refused to relay from 12.13.14.*

it is like it won't 'take' the new access.

WHAT is going on?  any ideas

Please email me back at 
[EMAIL PROTECTED]
thanks in advance
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: password aging

2003-06-06 Thread Glenn Johnson
On Thu, Jun 05, 2003 at 09:28:28PM +0200, Toni Schmidbauer wrote:

 On Thu, Jun 05, 2003 at 01:41:10PM -0500, Glenn Johnson wrote:

  Is there any way to get password aging to work properly on FreeBSD?
  It seems every time I figure out how to work around one limitation,
  I come across another one.

 man pw(8)

 see options -e and -p

 for example pw usermod luser -p 01072003, so the user has to change
 his pw on 01-07-2003.

 if this is not working for you, please post the error message.

I know I was vague in my message, I was beating my head against the wall
at the time.  The implementation of a password aging scheme has been
mandated by my employer.

I have used pw -p to set the age field in master.passwd.

Problems:

[1] Password aging does not work with NIS, which I use.  My
understanding is that password aging does work with nisplus, but
FreeBSD does not have that.  I figured out how to work around this
by disabling console logins on the backend nodes and just having one
machine for logins that uses local password entries.  I adjusted
nsswitch.conf accordingly.  This is a cluster so that workaround is
satisfactory for my situation.

[2] After a user changes the password, the change field in master.passwd
is set back to 0.  I want the counter to start counting another 30
days.  A cron job can handle running 'pw usermod user -p +30d' so
this is no big deal but it would be nice to have an option to repeat
the time period of expiration.

[3] Password aging does not work with xdm/gdm/kdm.  I know this is not a 
FreeBSD problem and a script in the session startup files is needed
here.

[4] This is the show-stopper.  When the password is expired, ssh logins
fail.  There is no opportunity to change the password because the
connection is closed immediately.  I get the following error:

sshd[45700]: fatal: monitor_read: unsupported request: 24

So if I need to login remotely and the password has expired, I am
out of luck.

-- 
Glenn Johnson
USDA, ARS, SRRC  Phone: (504) 286-4252
New Orleans, LA 70124   e-mail: [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


MS Frontpage in KDE/BSD?

2003-06-06 Thread Lord Raiden
I know this is kind of a stretch, but is there a way to run MS frontpage
under linux?  I know wine can potentially do it, but for some reason I
can't get it to even install let alone run.  I'm needing it for a
client.  Any info would be welcome.  thanks.

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


Re: lockmgr

2003-06-06 Thread Kris Kennaway
On Thu, Jun 05, 2003 at 07:26:32PM +0530, Anurag Chaudhary wrote:
 is lockmgr interface safer than mutexes.

Define safer.  They are certainly different.

Kris


pgp0.pgp
Description: PGP signature


Re: Strange PPPoE behaviour -- Need help to avoid fees

2003-06-06 Thread Adam
On Thu, 2003-06-05 at 16:14, Adam wrote:
 I just got a call from my ISP telling me that my DSL has been
 disconnecting and reconnecting every 3 minutes for the past few months,
 and that this is putting a heavy load on their servers. They're
 considering charging me for all this extra bandwidth, as they're certain
 that the problem is on my end.

Well, the problem is certainly related to LQR. I disabled LQR, and the
problem has stopped happening. I got suspicious of LQR when I looked in
my ppp.log and saw this:

***
Jun  5 18:01:40 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(1)
state = Opened 
Jun  5 18:01:40 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(1) state
= Opened 
Jun  5 18:02:00 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(2)
state = Opened 
Jun  5 18:02:00 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(2) state
= Opened 
Jun  5 18:02:10 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(3)
state = Opened 
Jun  5 18:02:10 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(3) state
= Opened 
Jun  5 18:02:21 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(4)
state = Opened 
Jun  5 18:02:21 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(4) state
= Opened 
Jun  5 18:02:41 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(5)
state = Opened 
Jun  5 18:02:41 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(5) state
= Opened 
Jun  5 18:02:51 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(6)
state = Opened 
Jun  5 18:02:51 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(6) state
= Opened 
Jun  5 18:03:01 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(7)
state = Opened 
Jun  5 18:03:02 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(7) state
= Opened 
Jun  5 18:03:12 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(8)
state = Opened 
Jun  5 18:03:12 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(8) state
= Opened 
Jun  5 18:03:32 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(9)
state = Opened 
Jun  5 18:03:32 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(9) state
= Opened 
Jun  5 18:04:03 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(10)
state = Opened 
Jun  5 18:04:03 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(10)
state = Opened 
Jun  5 18:04:13 jake ppp[74]: tun0: LCP: deflink: RecvEchoRequest(11)
state = Opened 
Jun  5 18:04:13 jake ppp[74]: tun0: LCP: deflink: SendEchoReply(11)
state = Opened 
Jun  5 18:04:17 jake ppp[74]: tun0: Phase: deflink: ** Too many LQR
packets lost ** 
Jun  5 18:04:17 jake ppp[74]: tun0: CCP: deflink: State change Stopped
-- Closed 
Jun  5 18:04:17 jake ppp[74]: tun0: CCP: deflink: State change Closed
-- Initial 
Jun  5 18:04:17 jake ppp[74]: tun0: LCP: deflink: LayerDown 
Jun  5 18:04:17 jake ppp[74]: tun0: LCP: deflink: State change Opened
-- Starting 
Jun  5 18:04:17 jake ppp[74]: tun0: Phase: deflink: open - lcp 
Jun  5 18:04:17 jake ppp[74]: tun0: IPCP: deflink: LayerDown:
64.39.186.203 
Jun  5 18:04:17 jake ppp[74]: tun0: IPCP: deflink: State change Opened
-- Starting 
Jun  5 18:04:17 jake ppp[74]: tun0: IPCP: deflink: LayerFinish. 
Jun  5 18:04:17 jake ppp[74]: tun0: IPCP: Connect time: 179 secs: 61162
octets in, 14938 octets out 
Jun  5 18:04:17 jake ppp[74]: tun0: IPCP: 8042 packets in, 8796 packets
out 
Jun  5 18:04:17 jake ppp[74]: tun0: IPCP:  total 425 bytes/sec, peak
7749 bytes/sec on Thu Jun  5 18:01:20 2003 
Jun  5 18:04:17 jake ppp[74]: tun0: IPCP: deflink: State change Starting
-- Initial 
Jun  5 18:04:17 jake ppp[74]: tun0: Phase: bundle: Terminate 
Jun  5 18:04:17 jake ppp[74]: tun0: LCP: deflink: LayerFinish 
Jun  5 18:04:17 jake ppp[74]: tun0: LCP: deflink: State change Starting
-- Initial 
Jun  5 18:04:17 jake ppp[74]: tun0: Phase: deflink: Disconnected! 
***

So, either my firewall is too strict, or the remote end isn't responding
to the LQR packet. Disabling LQR has fixed the problem, but now I wonder
if I am losing out by now utilizing LQR? Could it have been my firewall
that was blocking it? I couldn't find any good information online about
firewalling LQR packets.


-- 
Adam [EMAIL PROTECTED]

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


Re: MS Frontpage in KDE/BSD?

2003-06-06 Thread Vulpes Velox
Wine.

btw freebsd is not linux...

On Thu, 5 Jun 2003 18:36:48 -0400
Lord Raiden [EMAIL PROTECTED] wrote:

 I know this is kind of a stretch, but is there a way to run MS frontpage
 under linux?  I know wine can potentially do it, but for some reason I
 can't get it to even install let alone run.  I'm needing it for a
 client.  Any info would be welcome.  thanks.
 
 ___
 [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]


Mount command...again

2003-06-06 Thread jonr
Ok, here is what I am trying to do. I am trying to mount a samba served
directory on a remote system onto my local system. Both servers are
running freebsd4.8. I want to mount the remote directory with the
priveliges of the remote owner of the directory onto my local system.

In Linux I can do it this way:
mount -t smbfs -o username=loginname,password=passwdtoshare,
uid=jonr,gid=jonr //sambaserver/share /path/to/mount/point

This will send my username and password then mount the share with the
remote users uid and gid.

Is there a way to do this on FreeBSD? I have been reading the man pages
for mount and mount_smbfs and can't find out how to do this.
-- 
Jon Reynolds [EMAIL PROTECTED]


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


Re: How to analyse squid logs and wierd time stamps

2003-06-06 Thread Murray Taylor
On Thu, 2003-06-05 at 09:37, Sergey Akifyev wrote:
 On Thu, 2003-06-05 at 05:50, Murray Taylor wrote:
  Strange as it seems ... one of our netadmins came 
  to me with the same query, so I created this little program
 How about following :)
   date -r timestamp

True ... but then I wouldnt have got a chance to explore the 
vagaries of the time functions ... 8-)

explore ... practice ... dig and delve



This Email has been scanned for Viruses by MailMarshal.

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


Re: Linux compat: /lib/libc.so.6: version `GLIBC_2.1.3' not found

2003-06-06 Thread David Gerard
David Gerard ([EMAIL PROTECTED]) [030606 07:18]:

 [EMAIL PROTECTED]:~/install $ ./install
 Installation starting, please be patient ...
 ./setup: /lib/libc.so.6: version `GLIBC_2.1.3' not found (required by ./setup)
 
 Installation Completed
 [EMAIL PROTECTED]:~/install $ ./setup
 ./setup: /lib/libc.so.6: version `GLIBC_2.1.3' not found (required by ./setup)
 [EMAIL PROTECTED]:~/install $
 
 So. What do I need to install or do to my Linux compat so I don't get this
 error? Remember that this is FreeBSD 4.6.2, and it works fine on FreeBSD 4.8.


Turns out I had linux_base-6 and not linux_base-7. Just downloaded and
added linux_base-7.1_3.tgz and all is well :-)


- d.



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


eudaemonia as a state of happiness requiring a daemon server spirit

2003-06-06 Thread JamesLyle77
what are the classical antecedants of this?   they have been compared to 
guardian angels.   one of the earliest of such is the guardian angel protectecting 
the people of the treaty, michael who bars balem from going to place wheere 
he will be paid to place a curse on them. angels were presented as servant 
spirits who guarded man and then their was the genie of alladi's lamp type.  one 
pohilosopher, speaking tohte country club, the harvard types of the day, stated 
that eudamonia is happiness is security, security for onself, one's friend's, 
and all the descendants of these as far into the future as can be forseen.  
This is best guarrranteed by democracy he states.  sparta outlasted all the 
other classsical greek city states because it had a dual chief executiveship: in 
its case dual kings who ruled on alternate years.  each in his year of service 
would consult with the other be cause he would have had an aversion to being 
reversed next year by the other.  ther cherokees had dual cheif executives in 
the form of a peace cheir, who could be a man of a woman, and a war cheif who 
had to be a man.  the chrokees, of the cherokee-iroquois langage group, were 
the only amerindain tribe to invent on their own a written alphabet, build 
baptist churches, grist mills, north european style log cabins, european farm 
animals and a european life style.   
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Strange PPPoE behaviour -- Need help to avoid fees

2003-06-06 Thread Clement Laforet
On 05 Jun 2003 18:42:39 -0400
Adam [EMAIL PROTECTED] wrote:


 So, either my firewall is too strict, or the remote end isn't
 responding to the LQR packet. Disabling LQR has fixed the problem, but
 now I wonder if I am losing out by now utilizing LQR? Could it have
 been my firewall that was blocking it? I couldn't find any good
 information online about firewalling LQR packets.

It seems to be a ppp 3.1 problem. I have got the same problem when I
upgrade my gateway from 4.3 to -STABLE. 
It had been discussed on freebsd-net@ few weeks ago, look at archives ;)
If you want to see lqr again, you need to downgrade.

Regards,

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


Re: Strange PPPoE behaviour -- Need help to avoid fees

2003-06-06 Thread Adam
On Thu, 2003-06-05 at 19:40, Clement Laforet wrote:
 It seems to be a ppp 3.1 problem. I have got the same problem when I
 upgrade my gateway from 4.3 to -STABLE. 
 It had been discussed on freebsd-net@ few weeks ago, look at archives ;)
 If you want to see lqr again, you need to downgrade.

I'm pretty sure this problem has been going on for at least 3-4 months.
How recent is the bug in ppp?

I don't subscribe to freebsd-net .. I will subscribe tonight .. Thanks
for the tip .

-- 
Adam [EMAIL PROTECTED]

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


Re: Strange PPPoE behaviour -- Need help to avoid fees

2003-06-06 Thread Clement Laforet
On 05 Jun 2003 19:46:15 -0400
Adam [EMAIL PROTECTED] wrote:

 On Thu, 2003-06-05 at 19:40, Clement Laforet wrote:
  It seems to be a ppp 3.1 problem. I have got the same problem when I
  upgrade my gateway from 4.3 to -STABLE. 
  It had been discussed on freebsd-net@ few weeks ago, look at archives ;)
  If you want to see lqr again, you need to downgrade.
 
 I'm pretty sure this problem has been going on for at least 3-4 months.
 How recent is the bug in ppp?

ppp revision bump to 3.1 is dated from 09/01/2002


 I don't subscribe to freebsd-net .. I will subscribe tonight .. Thanks
 for the tip .

you're welcome :)

regards,

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


Gated freebsd

2003-06-06 Thread DanB
What does }; in config file mean?  ; is end of statment.

Dan

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


Re: Firewall/DMZ routing

2003-06-06 Thread Olivier Nicole
 08:33:08.160246 arp who-has A.B.C.154 tell A.B.C.145

It looks to me as if your ISP does not know you've subnetd your
subnet.

If it knew, it should never try to do an arp for the subnet
A.B.C.152/29 but route the ICMP to A.B.C.146 and that's it.

So the router of your ISP genuinely beleive that A.B.C.154 belongs to
its Ethernet reachable network (which is not as you have the FW in
between).

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


Re: Mount command...again

2003-06-06 Thread yussef
this isnt a a direct solution, but have you considered using nfs
instead? it seems to be the better tool between unix systems.

yussef

On Thu, 05
Jun 2003 14:45:04-0800(AKDT) [EMAIL PROTECTED] wrote:

 Ok, here is what I am trying to do. I am trying to mount a samba
 served directory on a remote system onto my local system. Both servers
 are running freebsd4.8. I want to mount the remote directory with the
 priveliges of the remote owner of the directory onto my local system.
 
 In Linux I can do it this way:
 mount -t smbfs -o username=loginname,password=passwdtoshare,
 uid=jonr,gid=jonr //sambaserver/share /path/to/mount/point
 
 This will send my username and password then mount the share with the
 remote users uid and gid.
 
 Is there a way to do this on FreeBSD? I have been reading the man
 pages for mount and mount_smbfs and can't find out how to do this.
 -- 
 Jon Reynolds [EMAIL PROTECTED]
 
 
 ___
 [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]


Made a big oops and formatted the wrong partition.

2003-06-06 Thread Robert J. Lynn Jr.
Oops.

I had an NTFS drive containing about 10GB in MP3s.

And my backups of those MP3s, waiting to be burned.

Until today, anyhow, when I deleted the partition, made a FreeBSD partition
in its place, and proceeded to install over it all. I'm using a hex tool to
try and find it on the drive, but I'm not sure how to look, as I'm not sure
what the mkfs process does. Is there any point in even looking, or is it
futile?

Sorry to bother the mailing list with something so trivial, but I figured it
wouldn't hurt to try. Please reply to me ( [EMAIL PROTECTED] ) as I'm not on
the mailing list.
Thanks in advance.
-Rob

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


Hardware for 100Mbps bridge

2003-06-06 Thread Olivier Nicole
Hi,

I am considering buying a new box to run FreeBSD and brige+ipfilter.

Would anyone has a recommendation on what kind of mother board/NIC to
use?

For the moment I am using a P4 1.5 GHz and 3com 905B, but they may not
be able to support full load of 100Mbps.

Best regards,

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


Re: Hardware for 100Mbps bridge

2003-06-06 Thread Bob Bomar
On Fri, Jun 06, 2003 at 08:41:14AM +0700, Olivier Nicole wrote:
 Hi,
 
 I am considering buying a new box to run FreeBSD and brige+ipfilter.
 
 Would anyone has a recommendation on what kind of mother board/NIC to
 use?
 
 For the moment I am using a P4 1.5 GHz and 3com 905B, but they may not
 be able to support full load of 100Mbps.
 

I run OpenBSD, with pf and bridging on a P-166 w/48M RAM and 2 100mb/s
cards and it runs just fine.



-- 
Bob Bomar
[EMAIL PROTECTED]
-
FreeBSD: The Power to Serve
http://www.freebsd.org



pgp0.pgp
Description: PGP signature


Re: HELP ON ACCESS FOR SENDMAIL

2003-06-06 Thread Warren Block
On Thu, 5 Jun 2003, Dr. Tim wrote:

 I have freebsd 4.4 sendmail 8.12.6

 when I modify access in etc/mail
 to two simple lines

 spammer.com   550 goaway
 12.13.14  RELAY

 do a make
 (*even tried init 6ing)

 sendmail happily accepts mail from [EMAIL PROTECTED]
 and refused to relay from 12.13.14.*

 it is like it won't 'take' the new access.

It's 'make maps'.  See /etc/mail/Makefile.

-Warren Block * Rapid City, South Dakota USA
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Kernel Panic during install with 4.8 mini ISO

2003-06-06 Thread yussef
before the kernel is loaded, when you're given 10 seconds, hit any key
besides enter, then type 'set hw.pcic.intr_path=1' without the quotes.
good luck. hope this works.

yussef

On Thu, 5 Jun 2003 22:11:18 +0100
Chris Ward [EMAIL PROTECTED] wrote:

 I'm seeing a kernel panic during boot of 4.8 mini ISO install CD,
 details below.
 
 Fault virtual addr = 0xeb902
 Fault code = supervisor read, page not present
 Instr Ptr = 0x8:0xc00eb807
 Stack Ptr = 0x10:0xc0843d6c
 Frame Ptr = 0x10:0xc0843d6c
 Code Seg = base 0x0, limit 0xf, type 0x1b, DPL0, pres 1, def32 1,
 gran 1 Proc eflags = interrupt enabled, resume, IOPL=0
 Current proc = 0 (swapper)
 IRQ mask = net tty bio cam
 Trap no = 12
 
 Just prior to this it was probing the VGA:
 
 pcio0: unknown card (vendor = 0x1039, dev = 0x7013) at 1.6 irq 10
 pcib2: PCI to PCI bridge (vendor = 1039, device = 0001) at device
 2.0 on pci0
 pci1: PCI bus on pcib2
 pci1: SIS model 6300 VGA-compatible display device at 0.0
 pci_cfgintr_virgin: using routable interrupt 3
 
 Kernel panic follows...
 
 The kernel is unmodified from that of the ISO image.
 
 I'm guessing that I need to pass in some params to init the graphics
 card but being new to FreeBSD I'm not sure how to do this.
 
 Could somebody please point me in the right direction?
 
 Thx.
 Chris.
 
 
 
 ___
 [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]


Advise needed to write a script

2003-06-06 Thread Mark Pearce
Hi

I have a permanent internet connection using modems.  Every now and then
I loose my connection, or at least, I loose the IP but I remain
connected.  If I reboot my box, I come back online with the IP address
and everything works 100%, then a while later the IP dissapears but I
remain connected.

I have found 2 ways to resolve this, either reboot the server or write a
script that kills and restarts ppp, I am using userland-ppp.

What I would like to do is the following.
create a script that runs contineously in the background, checking on
the IP address every 5 minutes, and if it's not there, run a script to
kill and restart ppp.

I have no clue where to start on this.

I'd appreciate any info on writing something or pointing me in the right
direction to resolve this problem.

Thanks

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


RE: A couple of questions for 5.1rc1....

2003-06-06 Thread Derrick Ryalls
I run 4.8, but here are my suggestions:

 
 The final question I have is one that's probably obscure.  I 
 remember a switch used to tell the dhcp client to send the 
 host name of the laptop to a dhcp server.  While it gets a 

man dhclient.conf

 lease perfectly fine, opening up my linksys dhcp table ( at 
 home ) or the NT dhcp server at work I can only see that a 
 machine has that lease.  The name of the laptop isn't listed. 
  I had enabled something on a laptop I had a couple of years 
 ago that made it so the name showed up, but I haven't been 
 able to find anything on this since and I have no idea how I 
 did it before or even where I found it.

I don't think dhclient is the issue.  If you want your machine
to appear on the network, install samba.  You don't need to 
share anything out unless you want to, but samba contains the
network name service (nmbd).  Then again, maybe I misunderstood
you.


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


Re: OpenOffice

2003-06-06 Thread David Gerard
Rob Lahaye ([EMAIL PROTECTED]) [030606 12:58]:
 Larry Rosenman wrote:

  visit:
  http://projects.imp.ch/openoffice
  and you can download a pre-built package.

 Why has this not yet become part of the precompiled package
 selection of FreeBSD, so that everyone can find it where one
 expect it to be found?


It has. But it doesn't, ah, work. Trying to use it feels like using Mozilla
did in 2000 - you can see the hard work that's going into it, but for
actual day-to-day use it's not up to beta status.

After beating my head against the FreeBSD version (and I wish them only the
best in getting it to work properly), I eventually downloaded the Linux
binary. Which works very well with linux_base-7 installed.


- d.



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


RE: Kernel Panic during install with 4.8 mini ISO

2003-06-06 Thread Chris Ward
Thanks Yussef, that's done the job.

Chris.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of yussef
Sent: 06 June 2003 07:40
To: [EMAIL PROTECTED]
Subject: Re: Kernel Panic during install with 4.8 mini ISO

before the kernel is loaded, when you're given 10 seconds, hit any key
besides enter, then type 'set hw.pcic.intr_path=1' without the quotes.
good luck. hope this works.

yussef

On Thu, 5 Jun 2003 22:11:18 +0100
Chris Ward [EMAIL PROTECTED] wrote:

 I'm seeing a kernel panic during boot of 4.8 mini ISO install CD,
 details below.

 Fault virtual addr = 0xeb902
 Fault code = supervisor read, page not present
 Instr Ptr = 0x8:0xc00eb807
 Stack Ptr = 0x10:0xc0843d6c
 Frame Ptr = 0x10:0xc0843d6c
 Code Seg = base 0x0, limit 0xf, type 0x1b, DPL0, pres 1, def32 1,
 gran 1 Proc eflags = interrupt enabled, resume, IOPL=0
 Current proc = 0 (swapper)
 IRQ mask = net tty bio cam
 Trap no = 12

 Just prior to this it was probing the VGA:

 pcio0: unknown card (vendor = 0x1039, dev = 0x7013) at 1.6 irq 10
 pcib2: PCI to PCI bridge (vendor = 1039, device = 0001) at device
 2.0 on pci0
 pci1: PCI bus on pcib2
 pci1: SIS model 6300 VGA-compatible display device at 0.0
 pci_cfgintr_virgin: using routable interrupt 3

 Kernel panic follows...

 The kernel is unmodified from that of the ISO image.

 I'm guessing that I need to pass in some params to init the graphics
 card but being new to FreeBSD I'm not sure how to do this.

 Could somebody please point me in the right direction?

 Thx.
 Chris.



 ___
 [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]


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


mutex in kld

2003-06-06 Thread Anurag Chaudhary
I am using mutex in my kld.
but every time i run two instances of a program that uses this driver, the 
system hangs.
I hav put the lock function in the open function of kld and unlock in close 
function.
There is no call to sleep.
Although it is a big code to protect, but i need it that way.
Is there some solution to the problem.
Is lockmgr a better idea for this.
this is urgent

thanx
Anurag
_
Dress up your desktop! Get the best wallpapers. 
http://server1.msn.co.in/msnchannels/Entertainment/wallpaperhome.asp Just 
click here!

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


Re: OpenOffice.org Linux binary works (was OpenOffice.org 1.0.2andFreeBSD 4.8-RELEASE)

2003-06-06 Thread Kjell Midtseter
On Thursday,  5 June 2003 at 15:57:03 -0500, Chris wrote:
 I agree here. On make install clean, I never really got OOo to install. I
 grabbedn the bins off the OOo site, run the tar in /home/me, and ran the
 install. Bingo! instant OOo.

I have made an attempt at this but failed. 
If I pkg_add openoffice-1.1Beta.tbz I get an error.
If I try tar on openoffice-1.1Beta.tbz I also get an error.
What did you do?
Tnx from Kjell

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


Re: FLAC audio port in FreeBSD: boom. crash. core dump.

2003-06-06 Thread Herbert
On Thu, Jun 05, 2003 at 08:50:09PM -0700, BSD baby wrote:
 On a virgin FreeBSD 4.8 system, I've tried to use the FLAC audio compression port:
 
 /usr/ports/audio/flac
 
 Using no special options on a .wav file:
 flac mysong.wav
 
 I get Illegal instruction (core dumped).
 
 I've tried it on 3 different FreeBSD 4.8 boxes, and many different .wav files.
 
 Has anyone gotten it to work?

Of course!

% flac cdda.wav

[snip]

options: -P 4096 -b 4608 -m -l 8 -q 0 -r 3,3
cdda.wav: wrote 39604764 bytes, ratio=0.598

% uname -rs
FreeBSD 5.1-RELEASE

% uname -rs
FreeBSD 4.7-STABLE

Maybe you are building world/kernel/ports with the wrong optimisations
(/etc/make.conf).

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


FreeBSD disk defragment

2003-06-06 Thread vampiere
Hello freebsd-questions,

   ,   4.6 ?

-- 
Best regards,
 vampiere  mailto:[EMAIL PROTECTED]

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


error when compiling 5.1

2003-06-06 Thread User
hi,

i cvsed the new 5.1 source code and when i try to build the new kernel i got 
this error:
buildsystem is 5.0 and buildworld build without any errors

 linking kernel
init_main.o: In function `proc0_init':
init_main.o(.text+0x279): undefined reference to `kse0_sched'
init_main.o(.text+0x283): undefined reference to `ksegrp0_sched'
init_main.o(.text+0x28d): undefined reference to `proc0_sched'
init_main.o(.text+0x297): undefined reference to `thread0_sched'
kern_clock.o: In function `statclock':
kern_clock.o(.text+0x675): undefined reference to `sched_clock'
kern_condvar.o: In function `cv_waitq_add':
kern_condvar.o(.text+0x1403): undefined reference to `sched_sleep'
kern_exit.o: In function `exit1':
kern_exit.o(.text+0x1468): undefined reference to `sched_exit'
kern_fork.o: In function `fork1':
kern_fork.o(.text+0xc1c): undefined reference to `sched_fork'
kern_idle.o: In function `idle_proc':
kern_idle.o(.text+0x1c6): undefined reference to `sched_runnable'
kern_thr.o: In function `thr_exit1':
kern_thr.o(.text+0xe8): undefined reference to `sched_exit_kse'
kern_thr.o(.text+0x17b): undefined reference to `sched_exit_thread'
kern_thr.o: In function `thr_create':
kern_thr.o(.text+0x46f): undefined reference to `sched_fork_kse'
kern_thr.o(.text+0x481): undefined reference to `sched_fork_thread'
kern_mutex.o: In function `propagate_priority':
kern_mutex.o(.text+0x70): undefined reference to `sched_prio'
kern_proc.o: In function `procinit':
kern_proc.o(.text+0xe9): undefined reference to `sched_sizeof_proc'
kern_proc.o: In function `fill_kinfo_proc':
kern_proc.o(.text+0x1675): undefined reference to `sched_pctcpu'
kern_resource.o: In function `donice':
kern_resource.o(.text+0x918): undefined reference to `sched_nice'
kern_resource.o: In function `rtp_to_pri':
kern_resource.o(.text+0xcd5): undefined reference to `sched_class'
kern_subr.o: In function `uio_yield':
kern_subr.o(.text+0x548): undefined reference to `sched_prio'
kern_switch.o: In function `choosethread':
kern_switch.o(.text+0x6): undefined reference to `sched_choose'
kern_switch.o: In function `kse_reassign':
kern_switch.o(.text+0xda): undefined reference to `sched_add'
kern_switch.o: In function `adjustrunqueue':
kern_switch.o(.text+0x155): undefined reference to `sched_rem'
kern_switch.o(.text+0x15d): undefined reference to `sched_add'
kern_switch.o(.text+0x18b): undefined reference to `sched_rem'
kern_switch.o: In function `setrunqueue':
kern_switch.o(.text+0x27c): undefined reference to `sched_rem'
kern_switch.o(.text+0x324): undefined reference to `sched_add'
kern_synch.o: In function `msleep':
kern_synch.o(.text+0x52f): undefined reference to `sched_sleep'
kern_synch.o: In function `mi_switch':
kern_synch.o(.text+0xe0f): undefined reference to `sched_switchout'
kern_synch.o(.text+0xe38): undefined reference to `sched_switchin'
kern_synch.o: In function `setrunnable':
kern_synch.o(.text+0xf33): undefined reference to `sched_wakeup'
kern_synch.o: In function `yield':
kern_synch.o(.text+0x1169): undefined reference to `sched_prio'
kern_thread.o: In function `threadinit':
kern_thread.o(.text+0x14c7): undefined reference to `sched_sizeof_thread'
kern_thread.o(.text+0x1511): undefined reference to `sched_sizeof_ksegrp'
kern_thread.o(.text+0x155b): undefined reference to `sched_sizeof_kse'
subr_trap.o: In function `userret':
subr_trap.o(.text+0x18): undefined reference to `sched_userret'
subr_trap.o: In function `ast':
subr_trap.o(.text+0x667): undefined reference to `sched_prio'
ksched.o: In function `ksched_attach':
ksched.o(.text+0x31): undefined reference to `sched_rr_interval'
ksched.o: In function `ksched_setscheduler':
ksched.o(.text+0x2c3): undefined reference to `sched_prio'
ksched.o(.text+0x3a1): undefined reference to `sched_prio'
ffs_snapshot.o: In function `ffs_snapshot':
ffs_snapshot.o(.text+0xb85): undefined reference to `sched_nice'
ffs_snapshot.o(.text+0x257d): undefined reference to `sched_nice'
vm_zeroidle.o: In function `vm_pagezero':
vm_zeroidle.o(.text+0x3e2): undefined reference to `sched_runnable'
vm_pageout.o: In function `vm_pageout_scan':
vm_pageout.o(.text+0x1ae5): undefined reference to `sched_nice'
machdep.o: In function `cpu_idle':
machdep.o(.text+0x16be): undefined reference to `sched_runnable'
*** Error code 1

Stop in /usr/obj/usr/src/sys/GENERIC.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

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


Re: HELP ON ACCESS FOR SENDMAIL

2003-06-06 Thread Warren Block
On Thu, 5 Jun 2003, Micheal Patterson wrote:

 Specifically, look for your .mc file and see if this entry is in there:

 FEATURE(access_db, `hash -o -TTMPF /etc/mail/access')

 If you're using the stock sendmail, if I remember correctly, access_db isn't
 included by default.

It is in the freebsd.mc file, at least in the last few releases of
FreeBSD.

-Warren Block * Rapid City, South Dakota USA
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


[no subject]

2003-06-06 Thread Tsu-Fan Cheng
hi, freebsd, I am a user on 4.8, and I am wondering if anybody can write a 
how-to about duplex printing on freebsd? thanks!

--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


passwd

2003-06-06 Thread Mark Redding
Hi all,

I'm building a system (FreeBSD 4.7) which upon which I
wish the majority of users to only have extremely
limited access to (ie. to be able to telnet
elsewhere).

One of the things I've done is to chmod o-rwx most
everything in /bin/ /sbin/ /usr/bin/ /usr/sbin/ and
/usr/libexec/

The only commands that users can access now are
passwd and telnet as I've changed permissions to
give them r-x access to these commands, and also to
/usr/libexec/ld.elf*

The problem I have at present is that users can
telnet, but they cannot issue the passwd command
without getting :-

passwd: permission denied

Does anyone know what other commands passwd may be
trying to execute, or of any way I can 'trace' the
program to see what it's trying to do (I've KTRACE
switched OFF in the kernel and have no intention of
switching it on).

thanks in advance,

Mark Redding.


=
Mark W J Redding

__
Yahoo! Plus - For a better Internet experience
http://uk.promotions.yahoo.com/yplus/yoffer.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: error when compiling 5.1

2003-06-06 Thread Matthew Emmerton
 i cvsed the new 5.1 source code and when i try to build the new kernel i
got
 this error:
 buildsystem is 5.0 and buildworld build without any errors

  linking kernel
 init_main.o: In function `proc0_init':
 init_main.o(.text+0x279): undefined reference to `kse0_sched'
 init_main.o(.text+0x283): undefined reference to `ksegrp0_sched'
 init_main.o(.text+0x28d): undefined reference to `proc0_sched'
 init_main.o(.text+0x297): undefined reference to `thread0_sched'
 kern_clock.o: In function `statclock':
 kern_clock.o(.text+0x675): undefined reference to `sched_clock'
 kern_condvar.o: In function `cv_waitq_add':
 kern_condvar.o(.text+0x1403): undefined reference to `sched_sleep'
 kern_exit.o: In function `exit1':
 kern_exit.o(.text+0x1468): undefined reference to `sched_exit'
 kern_fork.o: In function `fork1':
 kern_fork.o(.text+0xc1c): undefined reference to `sched_fork'
 kern_idle.o: In function `idle_proc':
 kern_idle.o(.text+0x1c6): undefined reference to `sched_runnable'
 kern_thr.o: In function `thr_exit1':
 kern_thr.o(.text+0xe8): undefined reference to `sched_exit_kse'
 kern_thr.o(.text+0x17b): undefined reference to `sched_exit_thread'
 kern_thr.o: In function `thr_create':
 kern_thr.o(.text+0x46f): undefined reference to `sched_fork_kse'
 kern_thr.o(.text+0x481): undefined reference to `sched_fork_thread'
 kern_mutex.o: In function `propagate_priority':
 kern_mutex.o(.text+0x70): undefined reference to `sched_prio'
 kern_proc.o: In function `procinit':
 kern_proc.o(.text+0xe9): undefined reference to `sched_sizeof_proc'
 kern_proc.o: In function `fill_kinfo_proc':
 kern_proc.o(.text+0x1675): undefined reference to `sched_pctcpu'
 kern_resource.o: In function `donice':
 kern_resource.o(.text+0x918): undefined reference to `sched_nice'
 kern_resource.o: In function `rtp_to_pri':
 kern_resource.o(.text+0xcd5): undefined reference to `sched_class'
 kern_subr.o: In function `uio_yield':
 kern_subr.o(.text+0x548): undefined reference to `sched_prio'
 kern_switch.o: In function `choosethread':
 kern_switch.o(.text+0x6): undefined reference to `sched_choose'
 kern_switch.o: In function `kse_reassign':
 kern_switch.o(.text+0xda): undefined reference to `sched_add'
 kern_switch.o: In function `adjustrunqueue':
 kern_switch.o(.text+0x155): undefined reference to `sched_rem'
 kern_switch.o(.text+0x15d): undefined reference to `sched_add'
 kern_switch.o(.text+0x18b): undefined reference to `sched_rem'
 kern_switch.o: In function `setrunqueue':
 kern_switch.o(.text+0x27c): undefined reference to `sched_rem'
 kern_switch.o(.text+0x324): undefined reference to `sched_add'
 kern_synch.o: In function `msleep':
 kern_synch.o(.text+0x52f): undefined reference to `sched_sleep'
 kern_synch.o: In function `mi_switch':
 kern_synch.o(.text+0xe0f): undefined reference to `sched_switchout'
 kern_synch.o(.text+0xe38): undefined reference to `sched_switchin'
 kern_synch.o: In function `setrunnable':
 kern_synch.o(.text+0xf33): undefined reference to `sched_wakeup'
 kern_synch.o: In function `yield':
 kern_synch.o(.text+0x1169): undefined reference to `sched_prio'
 kern_thread.o: In function `threadinit':
 kern_thread.o(.text+0x14c7): undefined reference to `sched_sizeof_thread'
 kern_thread.o(.text+0x1511): undefined reference to `sched_sizeof_ksegrp'
 kern_thread.o(.text+0x155b): undefined reference to `sched_sizeof_kse'
 subr_trap.o: In function `userret':
 subr_trap.o(.text+0x18): undefined reference to `sched_userret'
 subr_trap.o: In function `ast':
 subr_trap.o(.text+0x667): undefined reference to `sched_prio'
 ksched.o: In function `ksched_attach':
 ksched.o(.text+0x31): undefined reference to `sched_rr_interval'
 ksched.o: In function `ksched_setscheduler':
 ksched.o(.text+0x2c3): undefined reference to `sched_prio'
 ksched.o(.text+0x3a1): undefined reference to `sched_prio'
 ffs_snapshot.o: In function `ffs_snapshot':
 ffs_snapshot.o(.text+0xb85): undefined reference to `sched_nice'
 ffs_snapshot.o(.text+0x257d): undefined reference to `sched_nice'
 vm_zeroidle.o: In function `vm_pagezero':
 vm_zeroidle.o(.text+0x3e2): undefined reference to `sched_runnable'
 vm_pageout.o: In function `vm_pageout_scan':
 vm_pageout.o(.text+0x1ae5): undefined reference to `sched_nice'
 machdep.o: In function `cpu_idle':
 machdep.o(.text+0x16be): undefined reference to `sched_runnable'
 *** Error code 1

 Stop in /usr/obj/usr/src/sys/GENERIC.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.

You're missing SCHED_4BSD in your kernel configuration file.

--
Matt Emmerton

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


Re: passwd

2003-06-06 Thread Daniel Bye
On Fri, Jun 06, 2003 at 01:26:44PM +0100, Mark Redding wrote:
 Hi all,
 
 I'm building a system (FreeBSD 4.7) which upon which I
 wish the majority of users to only have extremely
 limited access to (ie. to be able to telnet
 elsewhere).
 
 One of the things I've done is to chmod o-rwx most
 everything in /bin/ /sbin/ /usr/bin/ /usr/sbin/ and
 /usr/libexec/
 
 The only commands that users can access now are
 passwd and telnet as I've changed permissions to
 give them r-x access to these commands, and also to
 /usr/libexec/ld.elf*
 
 The problem I have at present is that users can
 telnet, but they cannot issue the passwd command
 without getting :-
 
 passwd: permission denied
 
 Does anyone know what other commands passwd may be
 trying to execute, or of any way I can 'trace' the
 program to see what it's trying to do (I've KTRACE
 switched OFF in the kernel and have no intention of
 switching it on).

passwd needs to run setuid root, so it can write the new password to
/etc/master.passwd:

[homer: danielby: ~]$ ls -l `which passwd`
-r-sr-xr-x  2 root  wheel  32824 19 May 11:04 /usr/bin/passwd*

You need to re-enable the setuid bit.

While a lot more work, you might want to look at jail(8) - you can then
provide only those programs you want your users to have access to, while
leaving the base system a bit more sane.  It takes a bit of tinkering, but
works reasonably well.

 
 thanks in advance,
 
 Mark Redding.
 
 
 =
 Mark W J Redding
 
 __
 Yahoo! Plus - For a better Internet experience
 http://uk.promotions.yahoo.com/yplus/yoffer.html
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

-- 
Daniel Bye

PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
PGP Key fingerprint: 3D73 AF47 D448 C5CA 88B4 0DCF 849C 1C33 3C48 2CDC
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: A couple of questions for 5.1rc1....

2003-06-06 Thread chris corayer
- Original Message - 
From: Derrick Ryalls [EMAIL PROTECTED]
To: 'chris corayer' [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Friday, 06 June, 2003 2:50
Subject: RE: A couple of questions for 5.1rc1


I run 4.8, but here are my suggestions:


 The final question I have is one that's probably obscure.  I
 remember a switch used to tell the dhcp client to send the
 host name of the laptop to a dhcp server.  While it gets a

man dhclient.conf

 lease perfectly fine, opening up my linksys dhcp table ( at
 home ) or the NT dhcp server at work I can only see that a
 machine has that lease.  The name of the laptop isn't listed.
  I had enabled something on a laptop I had a couple of years
 ago that made it so the name showed up, but I haven't been
 able to find anything on this since and I have no idea how I
 did it before or even where I found it.

I don't think dhclient is the issue.  If you want your machine
to appear on the network, install samba.  You don't need to
share anything out unless you want to, but samba contains the
network name service (nmbd).  Then again, maybe I misunderstood
you.


I neglected to mention that I had read through the dhcp related man pages.
Probably due to my lack of sleep I missed it but I managed to find what I
needed.  It was not what I expected it to be.

I had put in the line   send host-name myhost; into my dhclient.conf
file.  However, the line I was actually looking for wassend
dhcp-client-identifier myhost; I'm not entirely sure why you would use
the first one I tried, perhaps if the server always assigns a particular
system the same IP address?  Then again, wouldn't the line I ended up using
do the same thing?  Anyway, with the dhcp-client-identifier line, the system
now shows up in the NT server/linksys router dhcp clients table.  So that's
one part down.

I will likely be adding samba soon as it will be nice for the laptop to show
up in the browse lists as well.

Now I just need to spend some more time this weekend and see if I can't fix
those ACPI/APM issues.

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


Re: passwd

2003-06-06 Thread Mark Redding

#snip#

passwd needs to run setuid root, so it can write the
new password to
/etc/master.passwd:

[homer: danielby: ~]$ ls -l `which passwd`
-r-sr-xr-x  2 root  wheel  32824 19 May 11:04
/usr/bin/passwd*

You need to re-enable the setuid bit.

#end-snip#

That's not it I'm afraid. The setuid bit was set
anyway, and anyway, users who are members of the wheel
group can execute the passwd command without trouble
(I've only switched off 'other' access).

:-(



=
Mark W J Redding

__
Yahoo! Plus - For a better Internet experience
http://uk.promotions.yahoo.com/yplus/yoffer.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Setting sendmail not to resolve domains?

2003-06-06 Thread Dragoncrest
	Hi all. I'm wondering how I would go about disabling dns lookups in 
sendmail?  Right now it's denying mail delivery because it can't resolve 
the senders domain of most of the mail it's recieving.  I'd like to tell it 
to just accept them regardless if it can resolve the domain name or 
not.  Can someone tell me where and how to do this?  Maybe give me some 
examples?  Thanks. Also, I'm a sendmail newbie so please keep it as simple 
as possible.  Thanks.

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


Re: passwd

2003-06-06 Thread Steve Coile
On Fri, 6 Jun 2003, Mark Redding wrote:
 #snip#
 
 passwd needs to run setuid root, so it can write the
 new password to
 /etc/master.passwd:
 
 [homer: danielby: ~]$ ls -l `which passwd`
 -r-sr-xr-x  2 root  wheel  32824 19 May 11:04
 /usr/bin/passwd*
 
 You need to re-enable the setuid bit.
 
 #end-snip#
 
 That's not it I'm afraid. The setuid bit was set
 anyway, and anyway, users who are members of the wheel
 group can execute the passwd command without trouble
 (I've only switched off 'other' access).

Many programs load shared libraries or invoke additional executables.
By disabling access to everything else, you prevent the use of these
additional files.

My recommendation is that you restore the permissions on everything and
find another way to do what you're trying to do.  Consider using the
restricted mode of existing command shells (e.g. bash -r).

You didn't change permissions on any directories, did you?  If so,
at least restore execute access for all users on those directories
you changed.  This will allow executables to use specific files within
those directories.

To determine what other files a program needs, you'll need to see what
dynamic libraries it's trying to load:

ldd `which passwd`

Make sure all of the files referenced are executable by all users.

Some programs (perhaps passwd) actually invoke other executables.
To find these, you'll have to use something akin to strace or ltrace
(I don't know what the FreeBSD equivalent is) and look for references to
exec and variations.

strace -o /tmp/passwd.strace passwd
...
grep -w 'exec[0-9a-z]*' /tmp/passwd.strace

You'll then need to determine why the program is invoking these other
executables, decide whether the reasons are acceptable, then enable
access to the acceptable executables.

You might also want to review the files that the program is trying to
open.  In your zeal, you might have inadvertently changed the permissions
on a data file.  You can find these using the output from strace, too:

grep -w 'f?open' /tmp/passwd.strace

-- 
Steve Coile
Systems Administrator
Nando Media
ph: 919-861-1200
fax: 919-861-1300
e-mail: [EMAIL PROTECTED]
http://www.nandomedia.com

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


russian freetype fonts

2003-06-06 Thread Igor Pokrovsky
Hi,

I'm interested where can I get russian freetype fonts
to use for example with xterm? I tried google, but
unsuccessfully. Maybe there is some kind of how-to
on this subject?

-- 
Igor

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


RE: passwd

2003-06-06 Thread Peut Kotze
Here is a list of libraries and files accessed by passwd from ktrace:

Exec:
/sbin/passwd
/bin/passwd
/usr/sbin/passwd

Libraries:
/usr/libexec/ld-elf.so.1
/usr/lib/libcrypt.so.2
/usr/lib/librpcsvc.so.2
/usr/lib/libutil.so.3
/usr/lib/libc.so.4

Files:
/etc/malloc.conf
/etc/spwd.db
/etc/login.conf
/etc/login.conf.db
/etc/auth.conf
/etc/master.passwd
/etc/localtime

Devices:
/dev/tty
/dev/urandom

Enjoy...
Peut

-Original Message-
From: Mark Redding [mailto:[EMAIL PROTECTED]
Sent: 06 June 2003 02:53
To: [EMAIL PROTECTED]
Subject: Re: passwd



#snip#

passwd needs to run setuid root, so it can write the
new password to
/etc/master.passwd:

[homer: danielby: ~]$ ls -l `which passwd`
-r-sr-xr-x  2 root  wheel  32824 19 May 11:04
/usr/bin/passwd*

You need to re-enable the setuid bit.

#end-snip#

That's not it I'm afraid. The setuid bit was set
anyway, and anyway, users who are members of the wheel
group can execute the passwd command without trouble
(I've only switched off 'other' access).

:-(



=
Mark W J Redding

__
Yahoo! Plus - For a better Internet experience
http://uk.promotions.yahoo.com/yplus/yoffer.html
___
[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: Setting sendmail not to resolve domains?

2003-06-06 Thread Barry Byrne
Not recommended if you want to avoid SPAM, but add the following to your .mc
file, rebuild .cf file and restart sendmail.

 - Barry

FEATURE(accept_unresolvable_domains)


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Dragoncrest
 Sent: 06 June 2003 14:27
 To: [EMAIL PROTECTED]
 Subject: Setting sendmail not to resolve domains?


   Hi all. I'm wondering how I would go about disabling dns lookups in
 sendmail?  Right now it's denying mail delivery because it can't resolve
 the senders domain of most of the mail it's recieving.  I'd like
 to tell it
 to just accept them regardless if it can resolve the domain name or
 not.  Can someone tell me where and how to do this?  Maybe give me some
 examples?  Thanks. Also, I'm a sendmail newbie so please keep it
 as simple
 as possible.  Thanks.

 ___
 [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: Setting sendmail not to resolve domains?

2003-06-06 Thread Dragoncrest
Spam isn't an issue as all the box is doing is pulling in mail 
from outside via fetchmail while behind a firewall, so port 25 is closed 
off.  :)

Mail is delivered to sendmail on localhost via fetchmail and 
filtered through procmail.  The biggest hurtle for me is to get past 
sendmail either accepting or denying delivery when downloading mail via 
fetchmail.  I'd prefer that it just accepted all of it regardless if it 
resolved the domain or not and then just let my filters do the rest of the 
work.

At 02:27 PM 6/6/03 +0100, Barry Byrne wrote:
Not recommended if you want to avoid SPAM, but add the following to your .mc
file, rebuild .cf file and restart sendmail.
 - Barry

FEATURE(accept_unresolvable_domains)

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Dragoncrest
 Sent: 06 June 2003 14:27
 To: [EMAIL PROTECTED]
 Subject: Setting sendmail not to resolve domains?


   Hi all. I'm wondering how I would go about disabling dns lookups in
 sendmail?  Right now it's denying mail delivery because it can't resolve
 the senders domain of most of the mail it's recieving.  I'd like
 to tell it
 to just accept them regardless if it can resolve the domain name or
 not.  Can someone tell me where and how to do this?  Maybe give me some
 examples?  Thanks. Also, I'm a sendmail newbie so please keep it
 as simple
 as possible.  Thanks.

 ___
 [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: directv satellite internet conection

2003-06-06 Thread Ben Bullock
Russ Letlow wrote:

 will it work??

I've been using a Hughes Direcway two-way dish since late February, but
have had to use Windows because of the propriatary drivers that Hughes
provides. My internal network relies on Windows connection sharing,
which, based on my recent experience, is not very good.  Hughes also
sells a router, the 4020 IIRC, that alleviates the need to run Windows,
but this unit is very expensive and I'm not sure it is widely available
yet. I really wish there was a FreeBSD solution to this problem, but
there are so few people using satellite internet connections that it is
not likely to be developed.

One thing I can tell you is that if DSL or Cable becomes available in my
area, I'll dump the satellite immediately.  If you want more
information about my satellite experience, contact me off list.

-Ben


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


Re: USB Modem

2003-06-06 Thread David Rio
On Thu, Jun 05, 2003 at 09:24:18AM +0200, Jeandre du Toit wrote:
 
 Does anyone know how to configure a USB Modem on FreeBSD?
 
 Please Cc me.
 

Check here:

http://www.freebsd.org/releases/5.0R/hardware-i386.html#USB

If your modem implements the Communication Device Class, it 
will work with freebsd.

If it is supported after plug it on the bus, you will be able
to use it as a serial modem. From umodem(4):

   The device is accessed through the ucom(4) driver which makes it behave
 like a tty(4).

Good luck.


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


RE: passwd

2003-06-06 Thread Mark Redding
Quick update for all who were good enough to reply.

My problem is now solved...for any others wishing to
secure their servers in such a fashion, here is what
it was..

1. /usr/bin/yppasswd needs to be other executable.
2. even with the above done, if I login as one use,
then su to root and then su to the poor old
non-priviledged user it gives the error. login in
directly (via ssh/telnet/console) with the above
change and it works.

sign!!!

once again, thanks for the help and advise.

=
Mark W J Redding

__
Yahoo! Plus - For a better Internet experience
http://uk.promotions.yahoo.com/yplus/yoffer.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


restart rc.conf.local

2003-06-06 Thread DanB
How do you reload rc.conf.local.

Dan

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


reverse makemap hash to get original text file

2003-06-06 Thread Dave [Hawk-Systems]
we have a 0 length file, but a 4k db

is there a way to reverse the db to get the original data (or close to)

thanks

Dave

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


Re: reverse makemap hash to get original text file

2003-06-06 Thread Ceri Davies
On Fri, Jun 06, 2003 at 11:53:13AM -0400, Dave [Hawk-Systems] wrote:
 we have a 0 length file, but a 4k db
 
 is there a way to reverse the db to get the original data (or close to)

makemap -u

Ceri
-- 
User: DO YOU ACCEPT JESUS CHRIST AS YOUR PERSONAL LORD AND SAVIOR?
Iniaes: Sure, I can accept all forms of payment.
   -- www.chatterboxchallenge.com


pgp0.pgp
Description: PGP signature


porting linux driver to freebsd

2003-06-06 Thread Anthony Martin
Hi!
I need to port a pci driver from Linux to Freebsd!
Are there any good resources on Freebsd's kernel api's
or any books on porting from Linux to Freebsd?

Thanks
Anthony Martin
Software Engineer
Corrent Corporation 
The Security Processing Company
1701 W. Greentree Dr.
Suite 201
Tempe, AZ 85284
[EMAIL PROTECTED]



__
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.
http://search.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: restart rc.conf.local

2003-06-06 Thread Matthew Seaman
On Fri, Jun 06, 2003 at 03:00:48PM +, DanB wrote:
 How do you reload rc.conf.local.

Assuming you're running 4.x, about the only sure ways are:

i) Drop down to single user mode, and then back to multiuser:

   # shutdown now
   [...]
   # exit

ii) Do a complete reboot

   # shutdown -r now

Neither of those solutions will be any good to you if you can't
interrupt service on your machine.

rc.conf and rc.conf.local aren't executable files in that sense: they
are configuration files for the other /etc/rc* scripts, so to apply
changes in rc.conf you've got to re-run the /etc/rc* scripts, and that
means you've got to reboot.

Otherwise you could trace through the /etc/rc* scripts and find out
what effect the rc.conf variables you've changed actually have.  Then
manually run commands to achieve the same effect.  Doing this does
require quite a deal of knowledge about how the various daemons
etc. work and shouldn't be undertaken unless you are sure you know
what you're doing.

On 5.x with the rcNG stuff, you may be able to stop and restart
individual components by using the appropriate rc scripts, but
otherwise your choices are as above.

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


pgp0.pgp
Description: PGP signature


unable to transfer install error

2003-06-06 Thread Paul Lambert
I have previously installed FreeBSD 4.2 successfully and am attempting to 
install 5.0 with a AMD Duron processor on a PCCHIPS M810L MOBO.

The disk has been partitioned into 4 parts all NTFS.  I have FreeBSD CDs 1 
and 2.  I boot successfully, delete one of the NTFS partitions and the 
create a FreeBSD partition (bootable, 165) and then create swap and root 
(/) slices.  I also install the Boot Mngr so I can boot from the different 
partitions.  I finally select to install from CD.  This all goes well.

Once the install begins, I do see a message that states All files written 
successfully, which I believe is the boot mngr install 
status.  Immediately after this I start getting an unable to transfer 
errors which repeats for each of the following  base distribution, doc 
distribution, manpages, dict distribution, crypto and packages/INDEX.  The 
installer exists with errors.

Upon rebooting, I see the 4 partitions although the NTFS ones are labeled 
?? instead of NTFS.  The FreeBSD partition is there as well.  The system 
will boot the windows partition okay but there is no boot software on the 
FreeBSD partition.

The fact that I can boot the kernel from CD, write to the boot block, etc. 
tells me that the hardware is all compatible.  The FreeBSD partition was 
formatted as an NTFS partition the subsequently deleted and created as a 
FreeBSD partition.  I do get this warning that states using existing root 
partition that assumes that the appropriate driver entries are in /dev.  I 
don't think this is true since I am performing a new install.  The 
partition needs to be reformatted and then a complete new install.  What is 
your advice?

Paul

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


O/S - System upgrade with CVS

2003-06-06 Thread Joseph Maxwell
Hello,
Attempting to update my O/S from 4.2 to 4.8

Existing dir structure : == /usr/CVSROOT ( created from dist disks w/
initial installation )

I used the following cvsup files to acquire  distribute the files for
the respository, creating /usr/src /usr/ports /usr/doc /usr/packages (MT
Directory)


 *default  host=cvsup3.FreeBSD.org
 *default  base=/usr
 *default  prefix=/usr
 *default  release=cvs
 *default  tag=.
 *default  delete use-rel-suffix

 src-all tag=RELENG_4


 *default  host=cvsup3.FreeBSD.org
 *default  base=/usr
 *default  prefix=/usr
 *default  release=cvs
 *default  tag=.
 *default  delete use-rel-suffix

 ## Ports Collection.
 #
 # The easiest way to get the ports tree is to use the
 ports-all
 # mega-collection.  It includes all of the individual
 ports-*
 # collections,
 ports-all
 doc-all
 cvs-crypto


The documentation Complete FreeBSD 3rd Ed. states that CVSROOT is not
part of the source tree.

 == setenv CVSROOT /usr ( hopefully this is the correct path )

I then attempted to do an update

 machine1# cvs update -P -d
 cvs update: in directory .:
 cvs [update aborted]: there is no version here; run 'cvs
 checkout' first
 machine1# cvs checkout
 cvs [checkout aborted]: must specify at least one module or
 directory


So I went ahead with a make world  ==

 --
 --
 --

 --

  stage 4: building libraries
 --

 cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj  MACHINE_ARCH=i386
 MACHINE=i386
 OBJFORMAT_PATH=/usr/obj/usr/src/i386/usr/libexec
 PERL5LIB=/usr/obj/usr/src/i386/usr/libdata/perl/5.00503
 GROFF_BIN_PATH=/usr/obj/usr/src/i386/usr/bin
 GROFF_FONT_PATH=/usr/obj/usr/src/i386/usr/share/groff_font
 GROFF_TMAC_PATH=/usr/obj/usr/src/i386/usr/share/tmac
 DESTDIR=/usr/obj/usr/src/i386  INSTALL=sh
 /usr/src/tools/install.sh
 
PATH=/usr/obj/usr/src/i386/usr/sbin:/usr/obj/usr/src/i386/usr/bin:/usr/obj/usr/src/i386/usr/games:/sbin:/bin:/usr/sbin:/usr/bin
 make -f Makefile.inc1 -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG
 libraries
 cd /usr/src;  make -f Makefile.inc1 _startup_libs;  make -f
 Makefile.inc1 _prebuild_libs;  make -f Makefile.inc1
 _generic_libs;
 echo === gnu/lib/csu;  cd /usr/src/gnu/lib/csu;  make
 DIRPRFX=gnu/lib/csu/ depend;  make DIRPRFX=gnu/lib/csu/ all;
 make DIRPRFX=gnu/lib/csu/ install
 === gnu/lib/csu
 echo '#include i386/i386.h'tm.h
 echo '#include i386/att.h' tm.h
 echo '#include freebsd.h' 
 tm.h
 echo '#include i386/freebsd.h' tm.h
 echo '#include i386/perform.h' tm.h
 rm -f .depend
 mkdep -f .depend -a
 -I/usr/src/gnu/lib/csu/../../../contrib/gcc/config -I.
 -DIN_GCC  /usr/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c

 cc -O -pipe
 -I/usr/src/gnu/lib/csu/../../../contrib/gcc/config -I.
 -DIN_GCC  -finhibit-size-directive -fno-inline-functions
 -fno-exceptions -fno-omit-frame-pointer  -g0 -DCRT_BEGIN  -c
 -o crtbegin.o
 /usr/src/gnu/lib/csu/../../../contrib/gcc/crtstuff.c
 *** Signal 10

 Stop in /usr/src/gnu/lib/csu.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.
 *** Error code 1

 Stop in /usr/src.

Could someone guide me over this hump?

Thanks

--  Joe --

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


chkrootkit-0.40 FreeBSD 5.1

2003-06-06 Thread xcas
Is there a problem with 'chkrootkit-0.40' on 5.x? It tells me that some of
the files are infected (I know for a fact that they're not)..

Files reported as infected:
/usr/bin/chfn
/usr/bin/chsh
/bin/date
/bin/ls
/bin/ps

localhost# uname -a
FreeBSD localhost.tuxsux.org 5.1-RELEASE FreeBSD 5.1-RELEASE #0: Wed Jun  4 06:09:58 
MST 2003
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/KADAFI  i386
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


set of ethernet adress on boot

2003-06-06 Thread Moritz Fromwald
Hello
Is it possible to set the ethernet adress automatically at boot time before 
dhclient attempts to contact a DHCP?
thx  regards

moritz fromwald

-- 
+++ GMX - Mail, Messaging  more  http://www.gmx.net +++
Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage!

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


Re: chkrootkit-0.40 FreeBSD 5.1

2003-06-06 Thread Joshua Oreman
On Fri, Jun 06, 2003 at 11:21:47AM -0700 or thereabouts, [EMAIL PROTECTED] seemed to 
write:
 Is there a problem with 'chkrootkit-0.40' on 5.x? It tells me that some of
 the files are infected (I know for a fact that they're not)..
 
 Files reported as infected:
 /usr/bin/chfn
 /usr/bin/chsh
 /bin/date
 /bin/ls
 /bin/ps
 
 localhost# uname -a
 FreeBSD localhost.tuxsux.org 5.1-RELEASE FreeBSD 5.1-RELEASE #0: Wed Jun  4 06:09:58 
 MST 2003
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/KADAFI  i386

Yes.
It gives false positives for these 5 commands.

-- Josh

 ___
 [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]


Problems Installing on a Presario 2200

2003-06-06 Thread Gerald Coco
Hello,

Im not sure if this is the e-mail where you guys answer questions pertaining
to FreeBSD installation problems, if not please direct me to the place where
I can find answers. Ok anyways, here are my problems and questions...

Im trying to install FreeBSD 5.0, but I cant seem to get passed the boot
process where everything is being loaded and printed to the screen (dmesg).
It gets to a certain point and it stops booting (this is the installer from
the freebsd cdrom by the way).  Here is where it starts going wrong:

Sc0:VGA 16 Virtual Consoles flags=0300
Sio0:   at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
Sio0:   type 16550A
Sio0:   configured irq 3 not in bitmap of probed irqs 0
Sio0:   port may not be enabled.
vga0:   Generic ISA VGA at port 0x3c0-0x3df iomem oxa-oxb on
isa 0
unknown:  PNP0303 can't assign resources port
unknown:  PNP0F13 can't assign resources irq
unknown:  PNP0600 can't assign resources port
unknown:  PNP0600 can't assign resources port
unknown:  PNP0200 can't assign resources port
unknown:  PNP0600 can't assign resources port
unknown:  PNP0501 can't assign resources port
unknown:  PNP0400 can't assign resources port
unknown:  PNP0700 can't assign resources port

After this msg it just stops loading and sits there... What can I do to get
rid of this?  Is some of my hardware not supported?  Do I have to reset my
BIOS or even upgrade them?  Please let me know what you think I'm stumped!

Thanks!
Gerald Coco


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


  1   2   >