system wide config for spamassassin

2002-12-03 Thread Ilia Chipitsine
Dear Sirs,

I couldn't figure out from supplied documentation what is default name
for system wide config file of spamassassin ?

Regards, (îÁÉÌÕÞÛÉÅ ÐÏÖÅÌÁÎÉÑ)
Ilia Chipitsine (éÌØÑ ûÉÐÉÃÉÎ)


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



Re: File Counts

2002-12-03 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2002-12-02 21:26:24 -0500:
 On Mon, 2 Dec 2002, Doug Hardie wrote:
  Thanks to all who responded.  The approach below does just what I
  needed.
 
 Here's another way I don't see listed:
 
 $ find . -type f | wc -l
 
 This means find, starting right here, all files here and in
 subdirectories - then pipe the output through word count just the
 lines.
 
 You'd think FreeBSD would have a command similar to ls, df, du or a
 flag to the find command such as -countitems or something.

count the keystrokes:

find . -type f|wc -l
find . -type f -countitems
 
plus, -countitems switch would only work for find(1), obviously,
while a pipe to wc(1) works with any output.

of course, if you want to see the number of
files/directories/symlinks in current directory, setup a function to
compute them, and let your shell display the results in your prompt.

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

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



test

2002-12-03 Thread Ÿ‰ ë€
test

_
MSN Messenger¸¦ ÅëÇØ ¿Â¶óÀÎ»ó¿¡ Àִ ģ±¸¿Í ´ëÈ­¸¦ ³ª´©¼¼¿ä.  
http://messenger.msn.co.kr 


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


--;

2002-12-03 Thread Ÿ‰ ë€






_
Àü¼¼°èÀÎÀÌ ÇÔ²²ÇÏ´Â À¥ ¸ÞÀÏ ¼­ºñ½ºÀÎ MSN HotmailÀ» ¸¸³ª º¸¼¼¿ä.   
http://loginnet.passport.com/login.srf?id=2svc=mailcbid=24325msppjph=1lc=1042 



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


sss

2002-12-03 Thread 돼지 불량
sss

_
Add photos to your e-mail with MSN 8. Get 2 months FREE*. 
http://join.msn.com/?page=features/featuredemail


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


Re: Ports base? [hear my $500]

2002-12-03 Thread Ceri Davies
On Mon, Dec 02, 2002 at 09:28:07PM -0500, Peter Leftwich wrote:
   On Mon, Nov 25, 2002 at 09:53:29PM -0500, Peter Leftwich wrote:
Why can't someone write a shell script or binary that would prompt the user 
with:
Hello, which port would you like?

Boggle.
Do you mean something like this ?

#!/bin/sh --

/bin/echo -n Hello, which port would you like? : 
read PORT
portinstall $PORT

 $500 is pretty steep, even if it IS for a priceless utility!  Negotiable?

One item from my amazon.co.uk wishlist ;)

Ceri
-- 
By my forefathers, I shall avenge the end of my bold warriors!

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



Re: hello

2002-12-03 Thread Jonathan Chen
On Tue, Dec 03, 2002 at 03:55:14PM +0800, ?? ? wrote:

[...]
I have a request.Can I build a new website that take place of the 
 original one in China. I introduce my background. I am working for a big 
 network company in Guangdong Province,China. I am much experienced in 
 building and administrating many kinds of website,including 
 hardware,software etc.

As this is a strictly volunteer project, you are welcome to submit
your efforts to [EMAIL PROTECTED]

Cheers.
-- 
Jonathan Chen [EMAIL PROTECTED]
--
  Opportunities are seldom labeled

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



Re: is there a replace command ?

2002-12-03 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2002-12-03 11:13:39 +0100:
 On Tue, 3 Dec 2002, Malik Blent wrote:
  But my expression has / that is there is a / in a expression
  What shall i do ?
  my expression is new: 11  I want to change new: 11  with new/11
 
  thanks
 
 # echo new: 11 | sed s/new\:\ 11/new\\/11/

you don't have to use slashes for the delimiters. see sed(1).

roman@freepuppy ~ 1003:0  echo new: 11 | sed 's,: ,/,'
new/11
roman@freepuppy ~ 1004:0  echo new: 11 | sed 's:\: :/:'
new/11
roman@freepuppy ~ 1005:0  echo new: 11 | sed 's-: -/-'
new/11

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

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



Re: dhclient dhcpd bind to address

2002-12-03 Thread Matthew Seaman
On Tue, Dec 03, 2002 at 11:05:43AM +0100, Thomas Spreng wrote:

 i'm just trying to set up some jails on my master machine. According
 to the man page, you have to change daemons from listening to all
 local addresses. I have done this for every tcp port that is listed
 within the netstat command. But i'm having problems with some daemons
 that are listening for udp packets on all interfaces.
 netstat -na:
 
 udp4   0  0  *.68   *.*
 udp4   0  0  *.67   *.* 
 
 these ports are used by dhcpd (isc-dhcpd) and dhclient. Has anyone ever
 managed to make those two programs only listen on a specific interface?
 
 PS: both daemons are run with an interface name as a command line argument
 that should make them only listen on that one:
 /usr/local/sbin/dhcpd fxp0
 /sbin/dhclient fxp1

Yes.  Your jail should still work, except that you won't be able to
run any processes within it that bind to UDP ports 67 or 68.  As you
can't run dhclient from within a jail and I don't think that running
dhcpd within a jail would be a particularly good idea either, that
shouldn't cause you any noticable grief.

dhcpd is not the only culprit.  I never could get named(8) to stop
binding to UDP port 1024, even though I've managed to restrict all
it's TCP traffic to specific interfaces.  Neither can I make ntpd(8)
listen on a specific interface.  However, this has not deleteriously
affected the jail(8) I'm running.  I could in theory use 'ntpq' or
'ntpdc' from within the jail to sabotage the ntpd setup on the local
machine, except that the jail doesn't have the right ntp.keys file for
that sort of access.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
  Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK

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



Re: Upgrading kde with ports

2002-12-03 Thread Marc Silver
Hi there,

You could use /usr/ports/sysytils/portupgrade to do this... and as far
as I know it can use packages instead of source... :)

Good luck,
Marc

On Tue, Dec 03, 2002 at 05:42:08PM +1030, Ian Moore wrote:
 If I want to upgrade kde 3.0.3 to 3.0.5 using the packages, rather
 than compiling from ports, what is the best way to do it?  I've
 cvsup'ed my ports tree last night and downloaded all the packages from
 ftp.kde Is there some way to upgrade to the new packages and all their
 dependencies in the same way that the ports system would upgrade
 dependencies automatically?

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



Re: flash for opera

2002-12-03 Thread dick hoogendijk
Op 02 Dec schreef je:
 On Mon, Dec 02, 2002 at 07:26:01PM +0100, dick hoogendijk wrote:
  Any news about some project to use flash and native opera?
  Or do mozilla and galeon stay the only fbsd browsers supporting flash as
  well as java?
 I don't know about Java, but Flash works fine on my installation of
 Opera.  I'm using linux-flashplugin-5.0r51 from the ports
 collection.

That's weird..
I have that installed too. Use the wrapper for mozilla/galeon, but for
opera it doesn't do a thing ;-( I've native fbsd opera and _not_
linux-opera.

-- 
dick -- http://www.nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 4.7 ++ Debian GNU/Linux (Woody)

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



Re: Ports base? [hear my $500] ..improvement

2002-12-03 Thread Cliff Sarginson
On Tue, Dec 03, 2002 at 10:09:24AM +, Ceri Davies wrote:
 On Mon, Dec 02, 2002 at 09:28:07PM -0500, Peter Leftwich wrote:
On Mon, Nov 25, 2002 at 09:53:29PM -0500, Peter Leftwich wrote:
 Why can't someone write a shell script or binary that would prompt the user 
with:
 Hello, which port would you like?
 
 Boggle.
 Do you mean something like this ?
 
   #!/bin/sh --
   while :
do
 /bin/echo -n Hello, which port would you like? : 
 read PORT
  [ $PORT =  ]  { echo Toodle Pip; exit 0; } 
 portinstall $PORT
done
 
  $500 is pretty steep, even if it IS for a priceless utility!  Negotiable?
 
Price just went up :)

-- 
Regards
   Cliff Sarginson 
   The Netherlands

[ This mail has been checked as virus-free ]

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



Re: is there a replace command ?

2002-12-03 Thread Paul Everlund
On Tue, 3 Dec 2002, Roman Neuhauser wrote:

 # [EMAIL PROTECTED] / 2002-12-03 11:13:39 +0100:
  On Tue, 3 Dec 2002, Malik Bülent wrote:
   But my expression has / that is there is a / in a expression
   What shall i do ?
   my expression is new: 11  I want to change new: 11  with new/11
  
   thanks
 
  # echo new: 11 | sed s/new\:\ 11/new\\/11/

 you don't have to use slashes for the delimiters. see sed(1).

 roman@freepuppy ~ 1003:0  echo new: 11 | sed 's,: ,/,'
 new/11
 roman@freepuppy ~ 1004:0  echo new: 11 | sed 's:\: :/:'
 new/11
 roman@freepuppy ~ 1005:0  echo new: 11 | sed 's-: -/-'
 new/11

Thanks for the tip! I wasn't aware of that. When it comes to man sed(1):
Reading a Kafka book is light weight reading compared to that man
page. :-)

Best regards,
Paul


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



Re: is there a replace command ?

2002-12-03 Thread Cliff Sarginson
On Tue, Dec 03, 2002 at 11:42:05AM +0100, Paul Everlund wrote:
 On Tue, 3 Dec 2002, Roman Neuhauser wrote:
 
  # [EMAIL PROTECTED] / 2002-12-03 11:13:39 +0100:
   On Tue, 3 Dec 2002, Malik Blent wrote:
But my expression has / that is there is a / in a expression
What shall i do ?
my expression is new: 11  I want to change new: 11  with new/11
   
thanks
  
   # echo new: 11 | sed s/new\:\ 11/new\\/11/
 
  you don't have to use slashes for the delimiters. see sed(1).
 
  roman@freepuppy ~ 1003:0  echo new: 11 | sed 's,: ,/,'
  new/11
  roman@freepuppy ~ 1004:0  echo new: 11 | sed 's:\: :/:'
  new/11
  roman@freepuppy ~ 1005:0  echo new: 11 | sed 's-: -/-'
  new/11
 
 Thanks for the tip! I wasn't aware of that. When it comes to man sed(1):
 Reading a Kafka book is light weight reading compared to that man
 page. :-)
 
Mmm, it ought to be in lights.
Problem with sed is that it has a set of advanced features that very few
people ever work out how to use. Simple facts like the possibility of
using another string delimiter probably get lost in the melee. The
advanced features could probably be wripped out and I doubt if anyone
would notice...
-- 
Regards
   Cliff Sarginson 
   The Netherlands

[ This mail has been checked as virus-free ]

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



Re: /usr/bin/finger problems...

2002-12-03 Thread Peter Pentchev
On Tue, Dec 03, 2002 at 02:18:09PM +1100, J R Matthews wrote:
 On Mon, 2 Dec 2002, Kris Kennaway wrote:
 
  On Mon, Dec 02, 2002 at 10:01:22PM +1100, J R Matthews wrote:
 
   I can submit a patch to fix this if you want or not.. I honestly dont give
   a damn to be honest ;)
 
  Submitting a PR containing a patch is the best way to get this fixed.
  Thanks!
 
 Well the guy who emailed me who dealt with the 'send-pr' which I submitted
 agreed that it was kinda stupid submitting a patch with it.
 
 If you cant figure out the one-liner then there's something seriously
 wrong ;)

I believe that Kris meant that submitting a PR would be the best way to
handle any problems you have with FreeBSD, besides usage questions which
belong on the various mailing lists.  In this case, for a genuine
problem, you did the right thing by submitting a PR - this way the fix
progress can be tracked using the GNATS PR database.

A patch was not needed for this particular case, indeed, but in general,
reports for not-so-trivial problems are much more likely to be handled
quickly if they contain patches :)  Of course, PR's without patches are
not taken any less seriously, it's just that they may be delayed a bit,
until somebody figures out exactly what the problem is and how to fix
it.

G'luck,
Peter

-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
I am jealous of the first word in this sentence.



msg10868/pgp0.pgp
Description: PGP signature


IPsec VPN between FreeBSD and WinXP

2002-12-03 Thread RJ45

Hello.
I could set up succesfully a IPSec transport mode VPN between WinXP and
FreeBSD 4.7
The problem is that it works only if I Start the first connection from
WinXP to FreeBSD box, and the vice versa does not work.
If The very first IPSec connection starts from FreeBSD I have this kind of
errors:
Dec  3 12:32:41 hal9000 /kernel: IPv4 ESP input: no key association found
for spi 69118078

Instead once I ping from WinXP then I Can also ping from FreeBSD to WinXP
succesfully.
It looks like IPsec transport cannot be initialized if FreeBSD starts a
connection with its peer IPsec WinXP host.
any hints about this??
I used this document as reference for setting up IPsec VPN: 
http://www.wiretapped.net/~fyre/ipsec/

thanks

Rick



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



Îòã.: [courier-users] Re: courier-imap troubleshoting

2002-12-03 Thread blabla
Kyriakos Oikonomakos [EMAIL PROTECTED] íàïèñà :

 [EMAIL PROTECTED]
 wrote:
  Hello,
  i have problem with my courier-imap.
  I recompile it and instaled on FreeBSD 4.7 from ports.
  I unable to loggin:
  my authdaemonrc file:
  --- begin paste ---
  --- cut ---
  authmodulelist=authmysql
  authmodulelistorig=authmysql
  --- end paste ---
  authmysqlrc file i configure correctly.
  My database on 127.0.0.1 and i put them in authmysqlrc file
 
 
 Why don't you attach your authmysqlrc file along?
 
 Have you tried running tcpdump while authenticating to
 your imap server to check if there is an attempted connection
 to your mysql database (destination port should be 3306 ).
 
 
  with username, password, database ...
 []
 
  
  Regards,
  Condor
  
   
 
 Kyriakos
 
OK, i dumped trafic with tcpdump to port 3306 where is my mysql, i do not see any 
attempts
to connect with mysql, and mysql.log file is empty.
I thinks that this is not problem with my authmysqlrc file
because i not see any attempts to connect with mysql.
Hostname (127.0.0.1), username (admin), password (password)and db (mails) are 
configured in authmusqlrc file and if courier-imap is worked i must see in mysql.log 
file or with tcpdump attempt to connect, but i not.

Any another ideas?

Condor




___
 http://www.vcable.net



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



Re: IPsec VPN between FreeBSD and WinXP

2002-12-03 Thread Kevin Stevens

On Tuesday, Dec 3, 2002, at 03:31 US/Pacific, RJ45 wrote:

I could set up succesfully a IPSec transport mode VPN between WinXP and
FreeBSD 4.7
The problem is that it works only if I Start the first connection from
WinXP to FreeBSD box, and the vice versa does not work.
If The very first IPSec connection starts from FreeBSD I have this 
kind of
errors:
Dec  3 12:32:41 hal9000 /kernel: IPv4 ESP input: no key association 
found
for spi 69118078

Instead once I ping from WinXP then I Can also ping from FreeBSD to 
WinXP
succesfully.

Me too.  I don't remember the details since I tried this a couple of 
months ago, but I had the same issue.

KeS

(cripes, what a useless post this is!)


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


Re: How do I use uvisor?

2002-12-03 Thread Dan Pelleg
Pat Lashley [EMAIL PROTECTED] writes:

 I've been syncing my Handspring Visor over the USB cable using
 coldsync and ugen0 for a couple of years now.  One of the recent
 system updates introduced ucom and uvisor; and now I can't get
 the Visor to sync.  (I'm currently running FreeBSD 4.7-STABLE
 as of about 29 October.)
 

You'll need to hit the hotsync button *first*. See my post to
freebsd-stable regarding this.

This is for user-triggered syncs (coldsync on the command line or click on
jpilot's sync button). I'm not sure how to get it to trigger a sync (from
usbd) myself.

-- 

  Dan Pelleg

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



XML to PDF parser, preferably FOP, for FreeBSD?

2002-12-03 Thread Gabriel Ambuehl
Hello,
I'm looking for an XML to PDF Parser (preferably FOP like the
charming http://xml.apache.org/fop/index.html project) that actually
works under FreeBSD without first going through the hoops of
installing Java (never managed to get it running anyway), meaning it
must be in some other language than Java (C, C++, Python, Ruby, Perl,
PHP all fine, just not Java). Speed isn't an issue at all (it's used
only very infrequently, like 1 time a day for a 2 page report) but
working under FreeBSD most certainly is.

If anyone knows about a FOP parser that isn't implemented in Java, I'd
really appreciate to hear about it (preferably CC it to me as the
traffic on this list is somewhat high and messages get lost in the
noise [1]).

TIA  regards,
Gabriel
[1] Meaning stuff I'm not interested in, not noise per se just so
nobody feels insulted.


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



[no subject]

2002-12-03 Thread Partha Debnath
sir,
please send me all category's some free
megazine's,catalogs,
Brochures, CD'c, book's and ect., also send some free
products.  
For Men's
my Jeans - 32
my shirt size haff- 40
my shirt size full- XXL

my mailimg address is
Partha Debnath,
C/O.Sankar Dey,
Northbanamali pur, Near Citty Office.
Agartala,Tripura,INDIA.
PIN - 799001.

thank you
partha


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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



cd contents

2002-12-03 Thread anthony digiambattista
Hello
I just recently purchased freebsd 4.7 and was
woundering if there was a list of the contents of each
of the cd's.
 Thank you
  Tony

__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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



Re: New install won't boot off A7V133

2002-12-03 Thread Scott I. Remick
In article ashllk$28g0$[EMAIL PROTECTED], you say...
 On Mon, Dec 02, 2002 at 08:19:36PM -0800, Scott I. Remick wrote:
  I just got in an ATA133 30GB drive that I am going to dedicat to FreeBSD
on
  my main system (an Asus A7V133). I took off the existing 20GB (Win2000),
put
  the 30GB in its place (primary master). I boot from a 4.7-REL CD I made,
  install goes fine... it detects the controllers, drive, I partition the
  whole thing for FreeBSD, setting the auto defaults, etc etc.  Everything
  goes swell.  Then I'm done, I reboot, take out the CD... and it just
sits
  there when it should be booting from the drive.
  
 I can't tell you the solution, but by pure chance I too have been
 fiddling with installs on a A7V133 system with a 30GB drive. I am
 convinced there is a bug in the BIOS because it doesn't honour the boot
 order you set in the BIOS sometimes. I did a quick experiemental install
 of 5.0 just to see. It all went fine, and did indeed boot. However it
 then refused to boot anything other than the HD, Despite the boot order
 being FD, CD, HD. I got around this by rather drastic means,,,but if it
 happens again I shall be..mmm..pissed off :)
 
 Although this is not what you are seeing, it is a bit of a co-incidence.

Cliff,

Just to confirm: you get beyond the POST, to the hardware info screen, where
you should normally start seeing the boot process, correct? Mine just sits
there at that point.

A few things I haven't done yet that I intend on are installing MS-DOS to
the drive, as well as using a different drive, in order to determine whether
it is FreeBSD or the specific hard drive.

What brand drive is yours, out of curiosity? Mine is an IBM DeskStar.

What BIOS version are you using? I know there's a 1010 beta out for this
board, but I'm hesitant to try it until I've done some other things (as I
use this computer for Win2K also).

It is interesting that 5.0 boots for you... if it were truly a problem with
the A7V133's BIOS I'd expect 5.0 to not boot also.

Anyhow, I will be troubleshooting this some more tonight. Maybe others will
pipe in throughout the course of today with more ideas.

=
Scott I. Remick   --==--   ICQ: 450152 
Save the internet - Use Mozilla: http://home.adelphia.net/~sremick/mozilla/
Voici mon secret. Il est tres simple: on ne voit bien qu'avec le coeur. L'essentiel 
est invisible pour les yeux.
No trees were harmed in the composition of this message, although some
electrons were mildly inconvenienced.

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



Re: File Counts

2002-12-03 Thread Giorgos Keramidas
On 2002-12-02 21:26, Peter Leftwich [EMAIL PROTECTED] wrote:
 On Mon, 2 Dec 2002, Doug Hardie wrote:
  Thanks to all who responded.  The approach below does just what I needed.

 Here's another way I don't see listed:

 $ find . -type f | wc -l

 This means find, starting right here, all files here and in subdirectories
 - then pipe the output through word count just the lines.

 You'd think FreeBSD would have a command similar to ls, df, du or a flag to
 the find command such as -countitems or something.

Nah.  The Unix way of doing things is to avoid implementing
everything in one, huge, monolithic tool and relying instead on the
user to find creative ways to make many small tools work together.

wc(1) already does 'counting', and it works fine in that respect.
find(1) doesn't need a 'count items' option, because it's so easy to
pipe the output to wc(1) and do the job.


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



Re: XML to PDF parser, preferably FOP, for FreeBSD?

2002-12-03 Thread Robin Damm
On Tue, Dec 03, 2002 at 01:18:40PM +0100, Gabriel Ambuehl wrote:
 Hello,
 I'm looking for an XML to PDF Parser (preferably FOP like the
 charming http://xml.apache.org/fop/index.html project) that actually
 works under FreeBSD without first going through the hoops of
 installing Java (never managed to get it running anyway), meaning it
 must be in some other language than Java (C, C++, Python, Ruby, Perl,
 PHP all fine, just not Java). Speed isn't an issue at all (it's used
 only very infrequently, like 1 time a day for a 2 page report) but
 working under FreeBSD most certainly is.
 
 If anyone knows about a FOP parser that isn't implemented in Java, I'd
 really appreciate to hear about it (preferably CC it to me as the
 traffic on this list is somewhat high and messages get lost in the
 noise [1]).

I can't offer a solid solution but here are a few pointers.

For FO generation take a look at xsltproc (ports/textproc/libxslt).
The only non-java FO processor I can think of would be PassiveTex
(ports/print/passivetex). I can't comment on PassiveTex but xsltproc
works great. OpenJade (ports/textproc/openjade) is an option too.

These all make use of TeX and friends so maybe your java problems
aren't so bad. :)

-- 
Robin Damm [EMAIL PROTECTED]

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



experience with Thinkpad T23?

2002-12-03 Thread Brent J Miller
Hello all, I'm in the process of setting up FBSD on a Thinkpad T23, and 
was wondering if any of you have successfully done this.  Specifically, 
I'd like to have a look at a working XF86Config file as I've gotten X 
working, but I'm not using the entire screen (not sure if the T23 has 
some strange display dimensions or what, there appears to be about a 
half inch on either side of the screen that isn't used).  I'm sure I'll 
have questions about the sound when I get to that part too... Thanks.

Sincerely,
Brent J Miller  [EMAIL PROTECTED]
==
A truly wise person uses few words.
-- King Solomon, Proverbs 17:27 (NLT)


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


microuptime went backwards ??

2002-12-03 Thread Bertrand Habib
Dear all,

writing on ata disk, i get full screens of
microuptime() went backwards ( nnn.nn - mmm.m )

with mmm.m being less than nnn.n (i.e backwards )
Broken hardware ?
Wo may help me to interpret this message and, eventualy, correct that issue ?

Many thanks in advance for your tips.
Kindest regards
Bertrand

Details:
---
Athlon 800 cpu on 771AS motherboard
40GB Maxtor 6L040J2
FreeBSD 4.7-RELEASE with GENERIC kernel (can't compile a new one)



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



Re: experience with Thinkpad T23?

2002-12-03 Thread Mark Fujie
Try using the max resolution for the display (check http://www.thinkpad.com).  Even
under Windows, using 1024x768 will result in the black bars you're seeing.

Mark


 Hello all, I'm in the process of setting up FBSD on a Thinkpad T23, and  was
 wondering if any of you have successfully done this.  Specifically,  I'd like to
 have a look at a working XF86Config file as I've gotten X  working, but I'm not
 using the entire screen (not sure if the T23 has  some strange display dimensions
 or what, there appears to be about a  half inch on either side of the screen that
 isn't used).  I'm sure I'll  have questions about the sound when I get to that part
 too... Thanks.

 Sincerely,
 Brent J Miller  [EMAIL PROTECTED]
 ==
 A truly wise person uses few words.
 -- King Solomon, Proverbs 17:27 (NLT)


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




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



Re: microuptime went backwards ??

2002-12-03 Thread Christopher Rosado

On Tue, 03 Dec 2002 16:49:48 -0800
Bertrand Habib [EMAIL PROTECTED] wrote:

BH  Dear all,
BH 
BH  writing on ata disk, i get full screens of
BH  microuptime() went backwards ( nnn.nn - mmm.m )

Sounds like an AMD Athlon.

BH  with mmm.m being less than nnn.n (i.e backwards )
BH  Broken hardware ?
BH  Wo may help me to interpret this message and, eventualy, correct that
BH  issue ?

Disable power management in your BIOS.  Also, I recommend disabling it in
the kernel as well.  I had this exact same problem last year, and had to do
that.  I don't recall if it absolutely had to be disabled in the kernel or
if I did that just to be on the safe side, but do it just to be on the safe
side :)

Comment out Device apm0 in your kernel config (here's the relevant bit
from my config)

# Power management support (see LINT for more options)
# deviceapm0at nexus? disable flags 0x20
# Advanced Power Management
# Disable due to microuptime() issue last year

-- 
Christopher Rosado

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



Re: Re[2]: XML to PDF parser, preferably FOP, for FreeBSD?

2002-12-03 Thread Simon Dick
On Tue, 2002-12-03 at 16:14, Gabriel Ambuehl wrote:
 -BEGIN PGP SIGNED MESSAGE-
 
 Hello Robin,
 
 Tuesday, December 3, 2002, 4:16:55 PM, you wrote:
  These all make use of TeX and friends so maybe your java problems
  aren't so bad. :)
 
 
 Now if I could get FOP to work within kaffe or sablevm, I'd be happy
 to stick to Java but installing the whole emulation layer cruft isn't
 exactly what I want to have on my todo list. Not to mention that it is
 a PITA to maintain.
 
 So the next question would probably be: has anyone successfully ran
 Apache's FOP under either sablevm oder kaffe?

I've not tried, but is there any reason you couldn't run it under the
FreeBSD native jdk/jre rather than the linux one?

-- 
Simon Dick  [EMAIL PROTECTED]


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



RE: Is there any way to disable passive mode on ftpd?

2002-12-03 Thread Liquid
Sorry Alvaro, I forgot to send this to the list... oops.

 -Original Message-
 From: Liquid [mailto:[EMAIL PROTECTED]]
 Sent: December 3, 2002 11:39 AM
 To: 'Alvaro Gil'
 Subject: RE: Is there any way to disable passive mode on ftpd?
 
 I have a better question perhaps...
 
 Is it possible to set specific ports for passive mode on the ftpd?
 Though it is possible to simply rdr the ports to the machine running
 this anonymous ftp, I don't think it would be wise to redirect ports
 in that range as they are often used by other services aren't they?
 
 If that's not possible, I guess I need to know the same thing as
 Alvaro here was asking...
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:owner-freebsd-
  [EMAIL PROTECTED]] On Behalf Of Alvaro Gil
  Sent: December 3, 2002 10:36 AM
  To: [EMAIL PROTECTED]
  Subject: Is there any way to disable passive mode on ftpd?
 
  My server is behind a NAT firewall until I have time to put it in
  front of it.  People are having trouble downloading from the
  anonymous FTP server.
 
  I understand that normal the ftp sever goes into passive mode and
  opens a new port in the high 1000-5000 ranges.  How can i force it
 to
  use port 21 for all connections?  Even though I urged everyone to
 set
  their clients correctly, some people cannot do so.
 
  Some people are having trouble with this movie.  I cannot assume
  everyone knows what they are doing, I would like to set up a
  fail-safe downloading point.
  ftp://alvarogil.com/pub/muni/TourneMuniS3MPG4.mov
 
  Thanks.!
  --
  
  Alvaro Gil
  http://www.AlvaroGil.com
  '84 Volvo 242 Turbo (Silver) 15 psi
  '97 Leopard Gecko (White, Yellow, Black)
  NJIT Mechanical Engineering Student
  
 
  To Unsubscribe: send mail to [EMAIL PROTECTED]
  with unsubscribe freebsd-questions in the body of the message


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



Galeon compile errors , FreeBSD 4.7-release

2002-12-03 Thread John Carri
Hello,
I recently installed FreeBSD 4.7-release onto an old spare PC (266 MHz PII) 
so I could learn more about FreeBSD.  Consider me a pretty raw newbie right 
now. 

Yesterday I attempted to use the ports collection to install the Galeon web 
browser, but the process aborted :


su
password
cd /usr/ports/www/galeon
make
...

several hours go by while tarballs are downloaded via my dial-up modem and
 
Mozilla compiles (as a dependency for Galeon)


Checksum mismatch for gnome/gnome-vfs-1.0.5.tar.bz2
Make sure Makefile and distinfo file are up to date
Stop in /usr/ports/devel/gnomevfs


Any suggestions on fixing this?  
TIA,

-John Carri

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



Re: Galeon compile errors , FreeBSD 4.7-release

2002-12-03 Thread Joe Marcus Clarke
On Tue, 2002-12-03 at 11:58, John Carri wrote:
 Hello,
   I recently installed FreeBSD 4.7-release onto an old spare PC (266 MHz PII) 
 so I could learn more about FreeBSD.  Consider me a pretty raw newbie right 
 now. 
 
 Yesterday I attempted to use the ports collection to install the Galeon web 
 browser, but the process aborted :
   
 
   su
   password
   cd /usr/ports/www/galeon
   make
   ...
   
   several hours go by while tarballs are downloaded via my dial-up modem and
 
   Mozilla compiles (as a dependency for Galeon)
   
   
   Checksum mismatch for gnome/gnome-vfs-1.0.5.tar.bz2
   Make sure Makefile and distinfo file are up to date
   Stop in /usr/ports/devel/gnomevfs

Do a make distclean in the devel/gnomevfs directory, then try to
rebuild.

Joe

 
 
 Any suggestions on fixing this?  
 TIA,
 
 -John Carri
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
-- 
PGP Key : http://www.marcuscom.com/pgp.asc




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



RE: A question on AppleLaser Writer 16/1600 PS [off-topic-ish]

2002-12-03 Thread Alvaro Gil
I have been trying to find the answer to this question for years. 
The apple service manual says to replace the mother board!

The best solution I have found other than taking it in for service is 
to get another ROM.  A version 3.0 ROM fixes password problems and 
has the side effect of clearing the password.  I have not done this, 
and i only found one person online that has verified that it worked. 
sunrem.com used to have them, but they are backordered now.  As soon 
as I find a 3.0 rom im going to try it on my printer

--

Alvaro Gil
http://www.AlvaroGil.com
'84 Volvo 242 Turbo (Silver) 15 psi
'97 Leopard Gecko (White, Yellow, Black)
NJIT Mechanical Engineering Student


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


Is there any way to disable passive mode on ftpd?

2002-12-03 Thread Alvaro Gil
My server is behind a NAT firewall until I have time to put it in 
front of it.  People are having trouble downloading from the 
anonymous FTP server.

I understand that normal the ftp sever goes into passive mode and 
opens a new port in the high 1000-5000 ranges.  How can i force it to 
use port 21 for all connections?  Even though I urged everyone to set 
their clients correctly, some people cannot do so.

Some people are having trouble with this movie.  I cannot assume 
everyone knows what they are doing, I would like to set up a 
fail-safe downloading point.
ftp://alvarogil.com/pub/muni/TourneMuniS3MPG4.mov

Thanks.!
--

Alvaro Gil
http://www.AlvaroGil.com
'84 Volvo 242 Turbo (Silver) 15 psi
'97 Leopard Gecko (White, Yellow, Black)
NJIT Mechanical Engineering Student


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


Large disk support with Unix

2002-12-03 Thread Carlos Ross
I'm having problems getting FDISK to use my 8.4GB hard disk; it
only sees 2GB of space. My BIOS supports large disks, and it
reports geometry c = 4092, H = 16, S= 63 with 16406208 total sectors.
FDISK reports the same geometry, but only one quarter of the total
sectors.
Prior to this, I installed Windows 2000, and QNX, and neither one
of those OS's had this problem.
I need to resolve this problem soon. Please advice.

Carlos Ross






_
The new MSN 8: advanced junk mail protection and 2 months FREE* 
http://join.msn.com/?page=features/junkmail


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


Re: Large disk support with Unix

2002-12-03 Thread Christopher Rosado

On Tue, 03 Dec 2002 11:29:27 -0500
Carlos Ross [EMAIL PROTECTED] wrote:

CR I'm having problems getting FDISK to use my 8.4GB hard disk; it
CR only sees 2GB of space. My BIOS supports large disks, and it
CR reports geometry c = 4092, H = 16, S= 63 with 16406208 total sectors.
CR FDISK reports the same geometry, but only one quarter of the total
CR sectors.
CR Prior to this, I installed Windows 2000, and QNX, and neither one
CR of those OS's had this problem.
CR I need to resolve this problem soon. Please advice.

Check the jumper settings on the hard drive.

-- 
Christopher Rosado

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



RE: Is there any way to disable passive mode on ftpd?

2002-12-03 Thread Alvaro Gil
If that's not possible, I guess I need to know the same thing as Alvaro
here was asking...


The other problem is that when it goes into passive mode, the ip 
changes form a global one to the local ip the machine is on!  So it 
really only works well on the local network
--

Alvaro Gil		  
http://www.AlvaroGil.com
'84 Volvo 242 Turbo (Silver) 15 psi
'97 Leopard Gecko (White, Yellow, Black)
NJIT Mechanical Engineering Student


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


Re: List of big names ...

2002-12-03 Thread Marc G. Fournier
On Mon, 2 Dec 2002, Terry Lambert wrote:

 Marc G. Fournier wrote:
   FWIW: If you examine the history of this thread, you will see that
   it was posted to -questions, and Bcc:'ed to -advocacy.
  
   If you need to assign blame, assign it to the original poster,
   which the headers claim is Marc G. Fournier [EMAIL PROTECTED].
 
  Ummm, I never BCC'd to -advocacy, only sent it to -questions ... totally
  forgot about the -advocacy group even though I am on that list :(

 That's bizarre.  The headers claim it came in via -advocacy; I
 can post them if you want.

 At first, I thought the hidden cross-post was a troll...

Nope, I generally avoid trolling on mailing lists ... this whole thread
was a very serious one, since one of the major hurdles I know I experience
is trying to explain to someone going FreeBSD when everyone else and
their dog have jump'd behind Linux :(



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



Re: XML to PDF parser, preferably FOP, for FreeBSD?

2002-12-03 Thread Robin Damm
On Tue, Dec 03, 2002 at 05:14:26PM +0100, Gabriel Ambuehl wrote:
 Hello Robin,
 
 Tuesday, December 3, 2002, 4:16:55 PM, you wrote:
  These all make use of TeX and friends so maybe your java problems
  aren't so bad. :)
 
 
 Now if I could get FOP to work within kaffe or sablevm, I'd be happy
 to stick to Java but installing the whole emulation layer cruft isn't
 exactly what I want to have on my todo list. Not to mention that it is
 a PITA to maintain.
 
 So the next question would probably be: has anyone successfully ran
 Apache's FOP under either sablevm oder kaffe?

I don't know about sablevm or kaffe but using fop as a standalone
application works fine with the native jdk.

-- 
Robin Damm [EMAIL PROTECTED]

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



Problems with i810 + FreeBSD4.6 + Gnome

2002-12-03 Thread manish jain

03 Dec, 02


Hi everyone,

I am running FreeBSD 4.6 with Celeron800  Intel810 chipset and am facing 
problems with my X-server.

Before I detail the problem, I'll make a brief note of options I have
enabled/disabled in my system configuration :

1) agp_load has been enabled in /boot/loader.conf (Before enabling
agp_load, I created agpgart in /dev through MAKEDEV)
2) Option NoDDC has been enabled in the XFree86 configuration file


Now the problems. When I start gnome (as root), I get the message :

'Could not find the address for . This may prevent gnome from operating
correctly. It may be possible to correct the error by adding to /etc/hosts'

No address is specified in the first line - just a dot, nor is it specified 
what should be added to /etc/hosts. I must mention though that, despite the 
initial error message, X does start up and works pretty much okay - till I 
try and run Nautilus. This results in the following message :

'Nautilus encountered an unexpacted factory error from OAF.
Try killing oafd and restarting Nautilus'

Nautilus exits after displaying the message. As one might expect, the
message is repeated upon killing oafd and restarting Nautilus.

Can anyone please suggest some remedy ?

By the way, are cable modems true hardware modems ? I ask this because my 
winmodem does not work under BSD and I am thinking of purchasing a cable 
modem if that can connect my FreeBSD system to the internet.


Thanks.

Manish Jain

[EMAIL PROTECTED]


_
Tired of spam? Get advanced junk mail protection with MSN 8. 
http://join.msn.com/?page=features/junkmail


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


missing map file

2002-12-03 Thread David N Hare
Hey all been struggling with this one and I give up

It started when I tried to get majordomo up and possibly trying to get
roots mail forwarded;

I get Dec 3 12:48:51 teapottraveler sm-mta[7759]: gB3HmgVn007758:
SYERR(root): hash map Alias0: missing map file /etc/mail/aliases.db:
No such file or directory

I created a aliases.db and message changed to inappropriate file type or
format I removed it and message reverted to one above.

I deinstalled majordomo and message continues

The only line I changed in aliases is root: pixiedave to forward roots
mail to pixiedaves commented out or uncommented the message repeats
every few minutes

Any help or pointers  thanks


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



Automount from a Solaris NIS server possible?

2002-12-03 Thread Tiarnan O'Corrain
Hello--

I'm running FreeBSD 4.7-STABLE and have managed
(after some difficulty), to get it to bind to a Solaris
NIS server we have here. All NIS users can log on
now, but I can't figure out how to get home 
directories automounted when users do log in.

I tried a couple of things on the web, an awk
script to transform the Solaris auto.home, to
amd syntax, and it seems to work fine, except that
no home directories are mounted when NIS users
log in.

I'm hoping for a silver bullet solution! Here are some
relevant bits:

# cat /etc/amd.conf
[ global ]
auto_dir = /net
log_file = /var/log/amd
log_options = all
search_path = /etc/amdmaps

[/net]
map_type = nis
map_name = amd.nis

 From the amd.nis map
/defaults  
opts:=rw,grpid,intr,rsize=8192,wsize=8192,resvport;type:=nfs
username host==nlattp6sfs1;type:=link;fs:=/volumes/home/toostenburg
host!=nlattp6sfs1;os!=netbsd1;type:=nfs;rhost:=nlattp6sfs1;rfs:=/volumes/home/toostenburg
host!=nlattp6sfs1;os==netbsd1;type:=nfs;opts:=rw,grpid,intr,resvport,proto=udp,vers=2;rhost:=nlattp6sfs1

It seems that amd is not picking up NIS logons.

Any ideas?

Cheers

Tiarnan


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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



Re: Upgrading kde with ports

2002-12-03 Thread Franklin Pierce
Without having to quote the etire email:

portupgrade can handle packages instead of source

portupgrade -PP

will force it to use packages only.  Of course, it does require the portupgrade be 
installed which requires ruby . . .

   
-- 
___
Get your free email from http://mymail.operamail.com

Powered by Outblaze

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



Re: microuptime went backwards ??

2002-12-03 Thread Bertrand Habib


BH  microuptime() went backwards ( nnn.nn - mmm.m )

Sounds like an AMD Athlon.


Yes


Disable power management in your BIOS.


Nop! It was disabled and this brough me to the microuptime problem.
After having re-enabled it (i.e: ACPI enable, APM enable), it seams to work.


Also, I recommend disabling it in
the kernel as well.


Kernel is GENERIC (in fact I did'nt checked if APM was still disabled in 
4.7 GENRIC ).

# Power management support (see LINT for more options)
# deviceapm0at nexus? disable flags 0x20
# Advanced Power Management
# Disable due to microuptime() issue last year


New kernel build ongoing accordingly your config tip.

Last word: many thanks for your help, Christopher :)

Bertrand



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



Re: /usr/bin/top seg faulting

2002-12-03 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2002-12-03 11:11:24 -0800:
 I just cvsup'd, buildworld, installworld, etc. this morning to RELENG_4_7.
 /usr/bin/top is segfaulting...
 
 FreeBSD flagg.csl.sri.com 4.7-RELEASE-p2 FreeBSD 4.7-RELEASE-p2 #6: Tue
 Dec 3 10:42:13 PST 2002
 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/FLAGG i386
 
 -r-xr-sr-x  1 root  kmem  32520 Dec  3 03:04 /usr/bin/top
 
 bash-2.05a$ top
 Segmentation fault

have you updated the kernel as well? buildkernel/installkernel.
ls -l /kernel will tell you if in doubt.

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html

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



Re: /usr/bin/top seg faulting

2002-12-03 Thread Mike Hogsett

 # [EMAIL PROTECTED] / 2002-12-03 11:11:24 -0800:
  I just cvsup'd, buildworld, installworld, etc. this morning to RELENG_4_7.
  /usr/bin/top is segfaulting...
  
  FreeBSD flagg.csl.sri.com 4.7-RELEASE-p2 FreeBSD 4.7-RELEASE-p2 #6: Tue
  Dec 3 10:42:13 PST 2002
  [EMAIL PROTECTED]:/usr/obj/usr/src/sys/FLAGG i386
  
  -r-xr-sr-x  1 root  kmem  32520 Dec  3 03:04 /usr/bin/top
  
  bash-2.05a$ top
  Segmentation fault
 
 have you updated the kernel as well? buildkernel/installkernel.
 ls -l /kernel will tell you if in doubt.

Yes (that was implied by `etc.' above)

bash-2.05a$ ls -l /kernel
-r-xr-xr-x  1 root  wheel  2048739 Dec  3 03:00 /kernel
bash-2.05a$ 

 - Mike


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



Re: Problems with i810 + FreeBSD4.6 + Gnome

2002-12-03 Thread Joe Marcus Clarke
On Tue, 2002-12-03 at 13:09, manish jain wrote:
 03 Dec, 02
 
 
 Hi everyone,
 
 I am running FreeBSD 4.6 with Celeron800  Intel810 chipset and am facing 
 problems with my X-server.
 
 Before I detail the problem, I'll make a brief note of options I have
 enabled/disabled in my system configuration :
 
 1) agp_load has been enabled in /boot/loader.conf (Before enabling
 agp_load, I created agpgart in /dev through MAKEDEV)
 2) Option NoDDC has been enabled in the XFree86 configuration file
 
 
 Now the problems. When I start gnome (as root), I get the message :
 
 'Could not find the address for . This may prevent gnome from operating
 correctly. It may be possible to correct the error by adding to /etc/hosts'

What is the hostname for your machine?  Does it have a permanent IP
address?  If it does, add an entry for it in /etc/hosts.  If not, add an
alias to 127.0.0.1 that points to your hostname.  For example:

127.0.0.1   localhost localhost.marcuscom.com
gyros.marcuscom.com gyros

Joe

-- 
PGP Key : http://www.marcuscom.com/pgp.asc




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



POP3d slowing down mail downloads

2002-12-03 Thread Peter Rosa
Hello everybody,

I have sent this question few monts ago, but no reply come back.
Is everybody out there who knows the solution?

Please advice with small problem.
I have the gateway running FreeBSD 4.3 with sendmail and pop3d.
It seems to slow down all downloads of localy saved mails.
Two months ago I can download eg. 5MB mail up to 15 secs,
now it is about 2-3 mins. It is still worse and worse :-(((

Where could be the problem ?

Thanks for all replies.

Peter Rosa

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



Re[4]: XML to PDF parser, preferably FOP, for FreeBSD?

2002-12-03 Thread Gabriel Ambuehl
-BEGIN PGP SIGNED MESSAGE-

Hello Simon,

Tuesday, December 3, 2002, 5:27:41 PM, you wrote:

 So the next question would probably be: has anyone successfully ran
 Apache's FOP under either sablevm oder kaffe?

 I've not tried, but is there any reason you couldn't run it under
the
 FreeBSD native jdk/jre rather than the linux one?


The native JDK is based on the Linux one for all I can tell.


Best regards,
 Gabriel

-BEGIN PGP SIGNATURE-
Version: PGP 6.0.2i

iQEVAwUBPezpNcZa2WpymlDxAQEWtwf/Vho1aD9csSTZq7WNvSxER4mGZTsZO9TF
qEfrRPAoIFYxcH/tN8N4hGWKEG5NBm4hLkrRyNQu0NSn+uRiASz1n07wve9CQVGj
IIQZpcSNJBowMWN9If9EURo47/xC6yMm5QwQf5LlsK+rVZnRCWUDTUuF/PVR3QdK
3gmYrU+f0OrJrMz2SMwOmuP4LXPXsOxH5MsM+GXcSbUIWxsLDyzyPvm2Thfq6JDy
5KOWku4RgDh7qJX+wcyUr1U7lXfNCQ5GjkjJQUB7L72Gb2YNx29fzYDe2e/L7E4I
jAACFj9SoQBVKmwuq7G7kWI2BTmlfAPjj0ccxey+QY0ITnOGHF3ZTg==
=ksIC
-END PGP SIGNATURE-


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



RE: POP3d slowing down mail downloads

2002-12-03 Thread Barry Byrne
Do you have your client set to leave mail on the server? If so, you will
find performance getting worse and worse as the mailbox grows larger - POP
clients should normally be told to delete mail from the server after
retrieval.

 - Barry

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Rosa
 Sent: 03 December 2002 18:06
 To: [EMAIL PROTECTED]
 Subject: POP3d slowing down mail downloads
 Importance: High


 Hello everybody,

 I have sent this question few monts ago, but no reply come back.
 Is everybody out there who knows the solution?

 Please advice with small problem.
 I have the gateway running FreeBSD 4.3 with sendmail and pop3d.
 It seems to slow down all downloads of localy saved mails.
 Two months ago I can download eg. 5MB mail up to 15 secs,
 now it is about 2-3 mins. It is still worse and worse :-(((

 Where could be the problem ?

 Thanks for all replies.

 Peter Rosa

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



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



RE: Is there any way to disable passive mode on ftpd?

2002-12-03 Thread Liquid
Now I don't know if that's a result of using a certain NAT setup vs
another, but I'm using ipnat + ipfilter, and I had ftp forwarded to a
windows box, and it worked fine for ftp, setting ports 10010-1030 for
passive mode.  I then decided to play with ncftpd on a linux box a while
back, and it too worked, using the same ports and such.  When the NAT
does its thing, if I'm to understand this correctly, the ftp will
think that anything coming in is coming from the gateway anyway... so
its ok if it's the LAN IP's.. or something like that.  I'm going to read
through the ipfilter whitepaper again and find exactly what was said
there.  (If you're using ipf already, you really must look at
www.obfuscation.org/ipf )


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:owner-freebsd-
 [EMAIL PROTECTED]] On Behalf Of Alvaro Gil
 Sent: December 3, 2002 11:46 AM
 To: [EMAIL PROTECTED]
 Subject: RE: Is there any way to disable passive mode on ftpd?
 
 If that's not possible, I guess I need to know the same thing as
 Alvaro
 here was asking...
 
 The other problem is that when it goes into passive mode, the ip
 changes form a global one to the local ip the machine is on!  So it
 really only works well on the local network
 --
 
 Alvaro Gil
 http://www.AlvaroGil.com
 '84 Volvo 242 Turbo (Silver) 15 psi
 '97 Leopard Gecko (White, Yellow, Black)
 NJIT Mechanical Engineering Student
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


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



USB Help?

2002-12-03 Thread Mark-Nathaniel Weisman
I've ensured that my v4.5-STABLE kernel contained the appropriate lines
of devices, I've run the (./makedev), I've loaded the statements in
rc.conf (find below) and I've set my device and protocol in X86Setup.
Yet, my USB mouse still does not respond. It's on a dual boot machine,
and it works fine under windows. During the load (using dmesg) I can see
where the hub and devices are loading, yet as soon as I go into X, I get
nothing. My ums0 device is not available for selection under the XConfig
either. Help?

Thanks,
Mark

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



Re: Intel SE7500CW2 narrowed down...

2002-12-03 Thread beemern

 Ok, I've been hacking up /usr/src/sys/i386/i386/mp_machdep.c to spit
 out some more debugging stuff. Here is what I have now.

You're covering already covered ground
if you'll check the last few months archives, you'll see this issue with
the SE7500CW2 addressed and re-addressed time and again

i *was* waiting on a fix, and then thought perhaps fbsd 5.0 with its SMPng
would be the answer... however, after comparing mach_dep.c etc from the
4.x tree and the current tree, i doubt thats an answer

the good news?  linux works great (windows too for that matter), and
having converted, i'm now fully smp functional

nathan


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



RE: Simple Question

2002-12-03 Thread Barry Byrne
PicoBSD (http://www.picobsd.org/) fits on a floppy.

 -- Barry

--
Barry Byrne, IT Manager,
WBT Systems, Block 2, Harcourt Centre
Harcourt Street, Dublin 2, Ireland

Phone:  +353 1 417 0150
Fax:+353 1 478 5544
Email:  [EMAIL PROTECTED]
Web:www.wbtsystems.com

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Asenchi
 Sent: 03 December 2002 20:14
 To: [EMAIL PROTECTED]
 Subject: Simple Question
 
 
 What is the smallest fBSD install out there?  How small of a hard drive
 could you fit a good install of bsd on?
 
 Not a problem, just a question.
 
 ASENCHI
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 

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



XFree86 Mouse

2002-12-03 Thread Pierrick Brossin
Hi,

Some people on this list asked questions regarding mice under XFree86.
I always said XFree86 -configure or protocol auto.
But this time I have the problem !

I bougth a kind of no name mouse.. It's called 'Okano'.
Never heard that name but I thought it would just work under FreeBSD.

The problem is when I'm under XFree, I can go almost everywhere on the
screen but suddendly the mouse gets back to a border of the screen.
Really fast. And it's doing it again and again .. so it's impossible
to work.

Dunno why!

Any one have an idea ?

Thanx


--
Pierrick Brossin
IT Employee
15, Ch. du Château, 1422 Grandson, Switzerland
Tel Prof: +41-327201423 Mobile Priv: +41-794137145
Mail Prof: [EMAIL PROTECTED] Mail Priv: [EMAIL PROTECTED]


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



[Q] Disk geometry problems

2002-12-03 Thread jon
Hiya


I've just built a server based around an Epox KT333 mmotherboard
and Athlon processor.

I booted from the 4.7 CD, but when I went to the slice editor
sysinstall complained that my disk geometery was incorrect and
it was using its own values. I tried using 'G' to set the
geometry to the BIOS values but sysinstall rejected them.

It wouldn't have bothered me that much, but the machine wouldn't
boot into FreeBSD after the installation.  It just went away
for a while, then gave the 'missing system disk' error.

Although it's possible that booting is failing for some reason
other than the geometry issue, has anyone else run into a similar
problem before?

The BIOS's idea of the disk geometry:

Cyl 28733
Head 16
Precomp 0
Landing Zone 28732
Sector 255

FreeBSD says:

Cyl 7297
Head 255
Sector 63

I could try setting the BIOS geometry to the FreeBSD geometry
(which would require switching from LBA mode to CHS), is this
likely to make any difference?

Cheers,


--Jon

http://www.witchspace.com




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



tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Thomas von Hassel
Any ideas in re to subject ?

/thomas


--
Thomas von Hassel
DarX @ irc
darxmac @ AIM/iChat
Powered by inkwell...!


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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Jerry McAllister
 
 S)ubject: Re: tool/method to convert DOS line endings to UNIX line endings
 Any ideas in re to subject ?

First of all, please put all relevant information in the body of your
message.  It makes it very difficult to read and impossible to quote
things that are only mentioned in the subject line.  This is a matter
of practicallity as well as courtesy.

Two possibilities:

Are you coming from a DOS place to a UNIX place or are the files
already in your UNIX place and you need to fix them there?

If you are moving th efiles, use ftp in ASCII mode.  It will then
do the conversion for you.  After you make the ftp connection and
before GETting or PUTting the file, type ASCII to select ASCII mode.

If the file is already on FreeBSD UNIX then use 'tr(1)'.
Presuming your text file is called dosfile and you convert it to
a file named unixfile for example type:

  tr -d \r  dosfile  unixfile

jerry

 
 /thomas
 
 --
 Thomas von Hassel
 DarX @ irc
 darxmac @ AIM/iChat
 Powered by inkwell...!

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



Re: /usr/bin/top seg faulting

2002-12-03 Thread Kent Stewart
On Tuesday 03 December 2002 11:31 am, Mike Hogsett wrote:
  # [EMAIL PROTECTED] / 2002-12-03 11:11:24 -0800:
   I just cvsup'd, buildworld, installworld, etc. this morning to
   RELENG_4_7. /usr/bin/top is segfaulting...
  
   FreeBSD flagg.csl.sri.com 4.7-RELEASE-p2 FreeBSD 4.7-RELEASE-p2
   #6: Tue Dec 3 10:42:13 PST 2002
   [EMAIL PROTECTED]:/usr/obj/usr/src/sys/FLAGG i386
  
   -r-xr-sr-x  1 root  kmem  32520 Dec  3 03:04 /usr/bin/top
  
   bash-2.05a$ top
   Segmentation fault
 
  have you updated the kernel as well?
  buildkernel/installkernel. ls -l /kernel will tell you if in
  doubt.

 Yes (that was implied by `etc.' above)

 bash-2.05a$ ls -l /kernel
 -r-xr-xr-x  1 root  wheel  2048739 Dec  3 03:00 /kernel
 bash-2.05a$

I think you have corrupted src. I am running basically the same source 
- util.c from diff and not having any problems. I would clean out 
/usr/src/contrib/top, recvsup, and rebuild everything.

Kent

-- 
Kent Stewart
Richland, WA

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


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



Re: missing map file

2002-12-03 Thread Matthew Seaman
On Tue, Dec 03, 2002 at 01:17:42PM -0500, David N Hare wrote:

 It started when I tried to get majordomo up and possibly trying to get
 roots mail forwarded;
 
 I get Dec 3 12:48:51 teapottraveler sm-mta[7759]: gB3HmgVn007758:
 SYERR(root): hash map Alias0: missing map file /etc/mail/aliases.db:
 No such file or directory

Perhaps you need to run:

newaliases

to rebuild the aliases.db file

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
  Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK

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



Re: /usr/bin/top seg faulting

2002-12-03 Thread Mike Hogsett

 I think you have corrupted src. I am running basically the same source -
 util.c from diff and not having any problems. I would clean out
 /usr/src/contrib/top, recvsup, and rebuild everything.

You said rebuild everything. Did you mean world/kernel or just top.  I
cleaned out top and rebuilt it but it made no difference.

 - Mike 

flagg# pwd
/usr/src/usr.bin/top
flagg# rm *
flagg# rm /usr/src/contrib/top/*
flagg# cvsup /etc/standard-supfile 
Connected to cvsup14.freebsd.org
Updating collection src-all/cvs
 Checkout src/contrib/top/ADVERTISEMENT
 Checkout src/contrib/top/Changes
 Checkout src/contrib/top/Configure
 Checkout src/contrib/top/DISCLAIMER
 Checkout src/contrib/top/FAQ
 Checkout src/contrib/top/INSTALL
 Checkout src/contrib/top/Make.desc.X
 Checkout src/contrib/top/Makefile.X
 Checkout src/contrib/top/Porting
 Checkout src/contrib/top/README
 Checkout src/contrib/top/boolean.h
 Checkout src/contrib/top/commands.c
 Checkout src/contrib/top/display.c
 Checkout src/contrib/top/display.h
 Checkout src/contrib/top/getans
 Checkout src/contrib/top/getopt.c
 Checkout src/contrib/top/install
 Checkout src/contrib/top/layout.h
 Checkout src/contrib/top/loadavg.h
 Checkout src/contrib/top/m-template
 Checkout src/contrib/top/machine.h
 Checkout src/contrib/top/metatop
 Checkout src/contrib/top/os.h
 Checkout src/contrib/top/patchlevel.h
 Checkout src/contrib/top/prime.c
 Checkout src/contrib/top/screen.c
 Checkout src/contrib/top/screen.h
 Checkout src/contrib/top/sigconv.awk
 Checkout src/contrib/top/top.X
 Checkout src/contrib/top/top.c
 Checkout src/contrib/top/top.h
 Checkout src/contrib/top/top.local.H
 Checkout src/contrib/top/username.c
 Checkout src/contrib/top/utils.c
 Checkout src/contrib/top/utils.h
 Checkout src/contrib/top/version.c
 Checkout src/usr.bin/top/Makefile
 Checkout src/usr.bin/top/machine.c
 Checkout src/usr.bin/top/sigdesc.h
 Checkout src/usr.bin/top/top.local.1
Finished successfully
flagg# pwd
/usr/src/usr.bin/top
flagg# make clean  make  make install
rm -f top.local.h top.x top.1 top commands.o display.o machine.o screen.o top.o 
username.o utils.o version.o top.1.gz top.1.cat.gz
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER-c 
/usr/src/usr.bin/top/../../contrib/top/commands.c
Making top.local.h from /usr/src/usr.bin/top/../../contrib/top/top.local.H
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER-c 
/usr/src/usr.bin/top/../../contrib/top/display.c
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER-c 
/usr/src/usr.bin/top/machine.c
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER-c 
/usr/src/usr.bin/top/../../contrib/top/screen.c
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER-c 
/usr/src/usr.bin/top/../../contrib/top/top.c
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER-c 
/usr/src/usr.bin/top/../../contrib/top/username.c
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER-c 
/usr/src/usr.bin/top/../../contrib/top/utils.c
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER-c 
/usr/src/usr.bin/top/../../contrib/top/version.c
cc -O -pipe  -DHAVE_GETOPT -DHAVE_STRERROR -I/usr/src/usr.bin/top 
-I/usr/src/usr.bin/top/../../contrib/top -I. -DORDER -o top commands.o display.o 
machine.o screen.o top.o username.o utils.o version.o -ltermcap -lm -lkvm
Making top.x from /usr/src/usr.bin/top/../../contrib/top/top.X
cat top.x /usr/src/usr.bin/top/top.local.1  top.1
gzip -cn top.1  top.1.gz
install -s -o root -g kmem -m 2555   top /usr/bin
install -o root -g wheel -m 444 top.1.gz  /usr/share/man/man1
flagg# top
Segmentation fault
flagg# 

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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Thomas von Hassel

On Tuesday, December 3, 2002, at 10:11 PM, Jerry McAllister wrote:



If you are moving th efiles, use ftp in ASCII mode.  It will then
do the conversion for you.  After you make the ftp connection and
before GETting or PUTting the file, type ASCII to select ASCII mode.


that doesnt work, tried diferent ftp clients both getting and putting 
the files ...

/thomas


--
Thomas von Hassel
DarX @ irc
darxmac @ AIM/iChat
Powered by inkwell...!


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


Re: /usr/bin/top seg faulting

2002-12-03 Thread Mike Hogsett

 
  I think you have corrupted src. I am running basically the same source -
  util.c from diff and not having any problems. I would clean out
  /usr/src/contrib/top, recvsup, and rebuild everything.
 
 You said rebuild everything. Did you mean world/kernel or just top.  I
 cleaned out top and rebuilt it but it made no difference.
 
 flagg# top
 Segmentation fault
 flagg# 
 

Just as a side note regarding this host, everything else appears to be
running fine (apache, postgresql, radiusd, cvsupd,  syslogd are its
primary services, and the other obvious things like getty's and sshd,
etc. are fine).

And so there is not confusion...

flagg# which top
/usr/bin/top
flagg# ls -l `which top`
-r-xr-sr-x  1 root  kmem  32520 Dec  3 13:42 /usr/bin/top
flagg# 




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



RE: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Jeff MacDonald
if it's just a few files you can open with 

vi and type this

press escape
:%s/press ctrl-v press ctrl-m//g  
press enter

jeff.
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Thomas von
 Hassel
 Sent: Tuesday, December 03, 2002 4:47 PM
 Cc: [EMAIL PROTECTED]
 Subject: Re: tool/method to convert DOS line endings to UNIX line
 endings
 
 
 
 On Tuesday, December 3, 2002, at 10:11 PM, Jerry McAllister wrote:
 
 
  If you are moving th efiles, use ftp in ASCII mode.  It will then
  do the conversion for you.  After you make the ftp connection and
  before GETting or PUTting the file, type ASCII to select ASCII mode.
 
 that doesnt work, tried diferent ftp clients both getting and putting 
 the files ...
 
 /thomas
 
 
 --
 Thomas von Hassel
 DarX @ irc
 darxmac @ AIM/iChat
 Powered by inkwell...!
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 

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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Lee J Carmichael
If you are going from DOS to Unix you could use the following perl script:

#!/usr/bin/perl -w

use strict;

my $pcfile = shift || /tmp/dosfile.txt ;
my $outfile = shift || /tmp/unixconverted.txt;

die Cannot read $pcfile... unless -r $pcfile;

open(IN, $pcfile) or die Cannot open $pcfile: $!;
open(OUT, $outfile) or die Cannot open $outfile: $!;

$/ = \r; ## pc end of line, damn gates

while(IN) {
   chomp;
   print OUT \n;
}

## should really check the close of these but...
close(IN);
close(OUT);

exit;



Lee Carmichael  
Service Architect - WorkSpace

WAM!NET Inc.
655 Lone Oak Rd Building A
Eagan, MN 55121

ph# 651-256-5292 
email: [EMAIL PROTECTED]

On Tue, 3 Dec 2002, Thomas von Hassel wrote:

 
 On Tuesday, December 3, 2002, at 10:11 PM, Jerry McAllister wrote:
 
 
  If you are moving th efiles, use ftp in ASCII mode.  It will then
  do the conversion for you.  After you make the ftp connection and
  before GETting or PUTting the file, type ASCII to select ASCII mode.
 
 that doesnt work, tried diferent ftp clients both getting and putting 
 the files ...
 
 /thomas
 
 
 --
 Thomas von Hassel
 DarX @ irc
 darxmac @ AIM/iChat
 Powered by inkwell...!
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message
 


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



PROBLEM FOUND WAS : Re: /usr/bin/top seg faulting

2002-12-03 Thread Mike Hogsett

  flagg# top
  Segmentation fault
  flagg# 
  

I got a core file and ran gdb... I know almost nothing about gdb, but what
the heck.

(gdb) where
#0  0x2810cbd8 in endpwent () from /usr/lib/libc.so.4
#1  0x2810d421 in endpwent () from /usr/lib/libc.so.4
#2  0x2810c1da in getpwent () from /usr/lib/libc.so.4
#3  0x804b28e in free ()
#4  0x804cb94 in clear ()
#5  0x8049389 in free ()

Ok.  So this led me to a password file entry.

This host is a NIS client with 

+@vpnusers/tmp:/usr/bin/false

at the end of master.passwd (for the radiusd).

Some missing commas in the netgroup file...

Thanks for everyone's help.

 - Mike

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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Warren Block
On Tue, 3 Dec 2002, Lee J Carmichael wrote:

 If you are going from DOS to Unix you could use the following perl script:

[script snipped] 

It's a bit easier if you let Perl do the heavy lifting:

perl -pi -e 's/\r//g' file-to-convert

-Warren Block * Rapid City, South Dakota USA



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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Lee J Carmichael
Good point, I pulled it from a script that was doing some additional
magic.

Lee 

On Tue, 3 Dec 2002, Warren Block wrote:

 On Tue, 3 Dec 2002, Lee J Carmichael wrote:
 
  If you are going from DOS to Unix you could use the following perl script:
 
 [script snipped] 
 
 It's a bit easier if you let Perl do the heavy lifting:
 
 perl -pi -e 's/\r//g' file-to-convert
 
 -Warren Block * Rapid City, South Dakota USA
 
 


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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Larry Rosenman
tr(1), ports/converters/dosunix,ports/converters/unix2dos

LER


--On Tuesday, December 03, 2002 21:59:03 +0100 Thomas von Hassel 
[EMAIL PROTECTED] wrote:

Any ideas in re to subject ?

/thomas


--
Thomas von Hassel
DarX @ irc
darxmac @ AIM/iChat
Powered by inkwell...!


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





--
Larry Rosenman http://www.lerctr.org/~ler
Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED]
US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749




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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Jerry McAllister
 
 On Tuesday, December 3, 2002, at 10:11 PM, Jerry McAllister wrote:
 
 
  If you are moving th efiles, use ftp in ASCII mode.  It will then
  do the conversion for you.  After you make the ftp connection and
  before GETting or PUTting the file, type ASCII to select ASCII mode.
 
 that doesnt work, tried diferent ftp clients both getting and putting 
 the files ...

Gee, I have never found an FTP that didn't work doing that.

Anyway, the 'tr' thing as in my previous message will work.

jerry

 
 /thomas
 
 
 --
 Thomas von Hassel
 DarX @ irc
 darxmac @ AIM/iChat
 Powered by inkwell...!
 

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



Opera

2002-12-03 Thread Peter Milne
Opera was working fine.  I now try to load a page and it crashes and closes.  Every 
page, every site.  I installed it from ports.

How do I get rid of it all or how do I fix it?

-- 

  
Pete

Mail brought to you by FreeBSD 4.7 and Sylpheed-claws

http://milneweb.com

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



Virtual Private Servers

2002-12-03 Thread Greg Goodman
Hello freebsd-questions,

  Does anyone have any information on setting up virtual private
  servers with Freebsd? There are a lot of people doing it out there
  but I can't seem to find any documentation supporting it.

  Any information would be much appreciated.

  Thanks

-- 
Best regards,
 Greg Goodman

 Chief Technical Officer   mailto:[EMAIL PROTECTED]

  Fastserve Network
   http://www.fastserve.net
  (213)673-4440 ext 204
548 S. Spring St. Suite 1100
   Los Angeles Ca. 90013
   The Net Never Sleeps And Neither Do We  


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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Thomas von Hassel

On Wednesday, December 4, 2002, at 12:09 AM, Jerry McAllister wrote:



On Tuesday, December 3, 2002, at 10:11 PM, Jerry McAllister wrote:



If you are moving th efiles, use ftp in ASCII mode.  It will then
do the conversion for you.  After you make the ftp connection and
before GETting or PUTting the file, type ASCII to select ASCII mode.


that doesnt work, tried diferent ftp clients both getting and putting
the files ...


Gee, I have never found an FTP that didn't work doing that.

Anyway, the 'tr' thing as in my previous message will work.



yep, like a charm, even wrapped it in some nice shell scripts to make 
thins easier :)

/thomas
--
Thomas von Hassel
DarX @ irc
darxmac @ AIM/iChat
Powered by inkwell...!


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


Re: Virtual Private Servers

2002-12-03 Thread Kliment Andreev
   Does anyone have any information on setting up virtual private
   servers with Freebsd? There are a lot of people doing it out there
   but I can't seem to find any documentation supporting it.

As far as I know virtual private server is a remote FreeBSD server with
root access.
What ACTUALLY do you want to know? mail, web, ftp, dns?

http://www.google.com/search?hl=enlr=ie=UTF-8oe=UTF-8q=freebsd+virtual+p
rivate+server




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



Re: Virtual Private Servers

2002-12-03 Thread Justin Ovens
Not sure if this is what you want, but try 'man jail'
- Original Message -
From: Greg Goodman [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, December 03, 2002 7:01 PM
Subject: Virtual Private Servers


 Hello freebsd-questions,

   Does anyone have any information on setting up virtual private
   servers with Freebsd? There are a lot of people doing it out there
   but I can't seem to find any documentation supporting it.

   Any information would be much appreciated.

   Thanks

 --
 Best regards,
  Greg Goodman

  Chief Technical Officer
mailto:[EMAIL PROTECTED]

   Fastserve Network
http://www.fastserve.net
   (213)673-4440 ext 204
 548 S. Spring St. Suite 1100
Los Angeles Ca. 90013
The Net Never Sleeps And Neither Do We


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



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



Re: Virtual Private Servers

2002-12-03 Thread Kevin D. Kinsey, DaleCo, S.P.
From: Greg Goodman [EMAIL PROTECTED]
Subject: Virtual Private Servers


 Hello freebsd-questions,

   Does anyone have any information on setting up virtual private
   servers with Freebsd? There are a lot of people doing it out
there
   but I can't seem to find any documentation supporting it.

   Any information would be much appreciated.

   Thanks

 --
 Best regards,
  Greg Goodman

$cd /usr/ports
$make search key=vpn
Port:   poptop-1.1.3_1
Path:   /usr/ports/net/poptop
Info:   Windows 9x compatible PPTP (VPN) server
Maint:  [EMAIL PROTECTED]
Index:  net
B-deps:
R-deps:

Port:   pptpclient-1.1.0
Path:   /usr/ports/net/pptpclient
Info:   PPTP client for establishing a VPN link with an NT server
Maint:  [EMAIL PROTECTED]
Index:  net
B-deps: libgnugetopt-1.2
R-deps: libgnugetopt-1.2

Port:   openvpn-1.3.0
Path:   /usr/ports/security/openvpn
Info:   Secure IP/Ethernet tunnel daemon
Maint:  [EMAIL PROTECTED]
Index:  security
B-deps: lzo-1.08_1
R-deps: lzo-1.08_1

Port:   tinc-1.0p8_1
Path:   /usr/ports/security/tinc
Info:   A Virtual Private Network (VPN) daemon
Maint:  [EMAIL PROTECTED]
Index:  security
B-deps: expat-1.95.5 gettext-0.11.5_1 libiconv-1.8_1
R-deps: expat-1.95.5 gettext-0.11.5_1 libiconv-1.8_1

Port:   vpnd-1.1.0
Path:   /usr/ports/security/vpnd
Info:   VPN daemon offering transparent blowfish encryption between
networks
Maint:  [EMAIL PROTECTED]
Index:  security
B-deps:
R-deps:


Kevin Kinsey
DaleCo, S.P.


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



Help !!!

2002-12-03 Thread David Kerr
I have a problem .. hope someone can help ! 

I am running FreeBSD 4.7 and it seems that if I log in as root I can 
compile most anything, the problem is that if a normal user logs in 
they dont seem to be able to compile anything, 
I fear that the permissions in the / directory were changed ... is 
there any way to reverse this ? 


Regards
David Kerr



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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread Kirk Strauser

At 2002-12-03T21:53:29Z, Lee J Carmichael [EMAIL PROTECTED] writes:

 while(IN) {
chomp;
print OUT \n;
 }

Wouldn't that print only an EOL?  Shouldn't that be:

  print OUT $_\n;

or similar?
-- 
Kirk Strauser
In Googlis non est, ergo non est.

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



Re: Virtual Private Servers

2002-12-03 Thread Kirk Strauser

At 2002-12-04T00:01:49Z, Greg Goodman [EMAIL PROTECTED] writes:

 Hello freebsd-questions,
 
   Does anyone have any information on setting up virtual private
   servers with Freebsd? There are a lot of people doing it out there
   but I can't seem to find any documentation supporting it.
 
   Any information would be much appreciated.
 
   Thanks

I wrote something about that at:

   http://subwiki.honeypot.net/cgi-bin/view/Freebsd/JailEnvironment

Be sure to check out the BuildAndUpdateJails link for a mini-HOWTO.
-- 
Kirk Strauser
In Googlis non est, ergo non est.

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



Re: Help !!!

2002-12-03 Thread Joan Picanyol i Puig
* David Kerr [EMAIL PROTECTED] [20021204 01:47]:
 I have a problem .. hope someone can help ! 
yourself :)

 I fear that the permissions in the / directory were changed ... is 
 there any way to reverse this ? 
read through wks.uts.ohio-state.edu/basic_unix_guide/unix_guide.html
particularly de Permissions part

qvb
-- 
pica

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



upgrading freebsd 4.5 to 4.7 with adaptec 2100s raid controller

2002-12-03 Thread Liam Hudson
Has anyone got a 2100s raid controller installed on a freebsd system. I
have got it working fine on freebsd 4.5 but when I try to upgrade to 4.7
the os no longer recognises it as a boot device and I have to boot off
/kernel.old.

My upgrade procedure is as follows, but it dies on the init 6. Any help
would really be appreciated:

  # cd /usr/src
  # cvsup supfile
  # make buildworld  make buildkernel KERNCONF=X330-SMP
  # make installkernel KERNCONF=X330-SMP
  # init 6
  # init 1
  # mount -u /  # make the root filesystem updatable
  # mount -a# mount the other filesystems
  # cd /usr/src
  # make installworld
  # mergemaster




  



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



Re: Opera

2002-12-03 Thread Scott Robbins
On Tue, Dec 03, 2002 at 04:11:29PM -0700, Peter Milne wrote:
 Opera was working fine.  I now try to load a page and it crashes and closes.  Every 
page, every site.  I installed it from ports.
 
 How do I get rid of it all or how do I fix it?

I had the same issue--and a search of google indicated that one or two
others were as well.

So, I then installed Linux-opera from ports.  That worked. A day or two
later, I tried the normal opera again.  And that worked.  shrug

I can't see one being connected to the other, but who knows?  


-- 

Scott Robbins

PGP keyID EB3467D6
( 1B48 077D 66F6 9DB0 FDC2 A409 FA54 D575 EB34 67D6 )
gpg --keyserver pgp.mit.edu --recv-keys EB3467D6

Willow: Diana, Hecate, I hereby license thee to depart.
Goddess of creatures great and small, I conjure thee to withdraw
Amy: (squeak)
Buffy: Maybe we should get her one of those wheel thingies.



msg10943/pgp0.pgp
Description: PGP signature


Re: Opera

2002-12-03 Thread Wilkinson,Alex
How do I get rid of it all or how do I fix it?

shell pkg_delete /var/db/pkg/opera*

 - aW

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



Re: Virtual Private Servers/Jails

2002-12-03 Thread Simon1
   Does anyone have any information on setting up virtual private
   servers with Freebsd? There are a lot of people doing it out there
   but I can't seem to find any documentation supporting it.

FreeBSD doesn't offer true virtual machines. FreeBSD does come with
jails. Which can provide similar functionality in many cases. Jails aren't
nearly as polished as the virtual servers I've seen in the linux world.
In most cases, the problems I've dealt with either aren't jail specific,
or else are caused by the various utilities inability to adapt to jailed
environments.

I've run jails on production webservers, in most cases to consolidate
older legacy systems, so I've got some experience with them. I also took
on the fun task of porting a lot of the custom utilities we used over to
them. Now, I haven't worked with jails since the end of July, but I doubt
much has changed in the past 4 or 5 months. If I'm wrong, please correct
me. I hammer quotas a lot, because of how important they and other limits
are in the web hosting environments I was using them in.

What I've found:
1) Connecting (aka telnet, ftp, ssh) from one jail to another or even to
the physical host is supposed to work, but I was never able to make it
happen. If anyone knows why, please chip in... The jails could access the
internet, but not its host or sister jails. /stand/sysinstall also didn't
like to download ports, which I'm guessing is for a related reason.

2) Quotas work, but its painful.
The FreeBSD quota system/utilities hasn't really been modified
for jails. It works, but it isn't fun getting it to. I've seen one,
maybe two sites out there that actually give some good information on
this. Essentially, FreeBSD tracks quotas by UID, host side. They're still
effective in jails, but you have to make sure that you don't have two
UID's on the same filesystem.
Also, to make the jails work happily with quotas and, almost
as important, quota utilities, you've got to hack things up a bit with the
init scripts. Make sure the jails /etc/fstab actually does list the *real*
devices if you want to do anything quota related from them. The jail may
not need to know about the devices in /etc/fstab, but almost all of the
quota utilities do.
The perl quota module can't cope with the jail environment,
edquota will work, but I think I had to use the /etc/fstab workaround to
get it to function.
To make the quotas work, and to make them editable /from within
the jail/ you have to mount the root of the filesystem to a point
*within the jail.*

3) Virtual Filesystems are a no-no.

In theory, you'd just make a new vfs for each jail. That sidesteps
the problem of duplicate quotas on a single fs and/or migrating. To
migrate, you just move the file to a new host and issue the mount/jail start
commands. That's the theory anyhow.
Do they work, yes. Do they work well? No. I had so many problems
with the things deadlocking. Once that happens, you're screwed. If you
issue a reboot command FreeBSD hangs while waiting for the fs to unmount
-- which it can't do sence a write/read is pending/hung. Very nasty when
you're working on a server you don't have physical access too.
Also, when mounting/unmounting these things, espically during the
creation process, I found that unmounts wouldn't always work cleanly.
Probably related to the above problems. You'd issue an unmount command,
and it would work.. sort of. Except you couldn't remount the vfs to a new
device, nor could you use the old vfs device either.. It just wouldn't
show up in df anymore.

A couple of points:
DO use a separate filesystem for each jail
DO NOT use the virtual filesystems for it.
DO make sure to use separate UID's for /each/ jail if at all possible. I
would use ranges for each jail (ie: 5,000-10,000 for the firt one,
10,001-12,000 for the second and so on.. )
DO mount proc for process commands to show up.


The linux virtual servers I played with a bit were more like true
virtual machines. Which is probably what you're after. The jail is more
or less a locked down subset of the main, physical host. Aside from the
quotas, it also wasn't possible to set jail-specific limits. IE: 10% of
processor, 2gb total disk space for the jail, etc. Also, while someone
with root in a jail can't trash the main system, they can still do a lot
of damage.
If you're thinking of using shared filesystems for multiple
jails, and use quotas, you're going to have problems if two users share
the same UID. --Quotas are checked against UID /on the physical host
side/, and then checked by the filesystem (again, on the physical host
side).
Since root wasn't given out, except to people with root access on
the physical machine, I didn't have problems with quota's for the root
partition. I grouped 5-10 jails on a single disk and didn't worry about
it. For the users, since their quota's *did* count, the jails /home was an
actual filesystem mounted 

Re: Virtual Private Servers/Jails

2002-12-03 Thread Philip Hallstrom
Does anyone have any information on setting up virtual private
servers with Freebsd? There are a lot of people doing it out there
but I can't seem to find any documentation supporting it.

 FreeBSD doesn't offer true virtual machines. FreeBSD does come with
 jails. Which can provide similar functionality in many cases. Jails aren't
 nearly as polished as the virtual servers I've seen in the linux world.

The only glitch I've run into to date is that you can't run *multiple*
instances of an app that uses shared memory such as PostgreSQL.  Put the
database on a separate server and let the jails talk to it though and it's
fine.  And some apps like top don't work right (something to do with
accessing kernel paramaters that don't technically exist in the jail).
Not a big deal though since if you want top there's a good chance your an
admin and should probably be on the host box anyway :)

The rest of my comments concern FreeBSD version:
4.7-RC FreeBSD 4.7-RC #2: Fri Oct 11 15:44:24 PDT 2002

   I've run jails on production webservers, in most cases to consolidate

I run them for development servers.  oak is the physical box and runs
postgresql.  I've got 4 jails running apache so each developer can have
his own sandbox and can royally screw things up without affecting the rest
of us.  Works awesome.

 me. I hammer quotas a lot, because of how important they and other limits
 are in the web hosting environments I was using them in.

I don't use quotas since this isn't for a commercial web hosting
environment

 What I've found:
 1) Connecting (aka telnet, ftp, ssh) from one jail to another or even to
 the physical host is supposed to work, but I was never able to make it
 happen. If anyone knows why, please chip in... The jails could access the
 internet, but not its host or sister jails. /stand/sysinstall also didn't
 like to download ports, which I'm guessing is for a related reason.

Works great for me... I can do all three b/n jails, host, and remote
servers or any combination.  Also updating ports with cvsup and/or
installing them with porteasy also works just fine.  Never tried using
sysinstall.


 2) Quotas work, but its painful.
   The FreeBSD quota system/utilities hasn't really been modified
 for jails. It works, but it isn't fun getting it to. I've seen one,
 maybe two sites out there that actually give some good information on
 this. Essentially, FreeBSD tracks quotas by UID, host side. They're still
 effective in jails, but you have to make sure that you don't have two
 UID's on the same filesystem.

Not realtime, but you could run a du -hcs * on the top level directory
that holds the jails to get a count, then substract what a bare jail
contains and this would give you a snapshot of how much space is being
used.  Granted in a commercial environment your users could use as much as
they want and then remove it before you run the script, but that's life :)

 with root in a jail can't trash the main system, they can still do a lot
 of damage.

They can?  How?  Other than destroying that jail and thus anything on that
IP, they can't touch the rest of the system.. at least that's my
understanding.  Please correct me if I'm wrong.

 4) Needed utilities and commands. (Call it my wishlist)
   1) A way to list jails.
   2) A way to list processes BY jail, and a way to show (host side)
 which jail a process belongs to.
   3) jail halt, jail restart commands to close out the jail, and
 possibly restart it.

Check out the following ports which do what you want with maybe the
exception of #2, but maybe even that, I don't remember.

jailer-1.1.1Manage FreeBSD jail startup, shutdown and console
jailutils-0.5.1 Several utilies for managing jails


   I was very happy with how wells the jails worked, but I would have

So far I've been very happy as well...

-philip


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



PICOBSD/FBSD 4.7-p2 won't build with KERB5 and KERB-IV

2002-12-03 Thread Hartmann, O.
Dear Sirs.

We run a filtering bridge using PicoBSD based on FreeBSD 4.7-p2.
Several weeks ago we start building FreeBSD 4.7-p2 with both
'MAKE_KERBEROS4=yes' and 'MAKE_KERBEROS5=yes' enabled by
using the appropriate switches in /etc/make.conf.

PicoBSD built correctly when only MAKE_KERBEROS5=yes is set,
but Kerberos/Heimdal seems to be unable to operate only with
KRB5 is built. While only Heimdal/KRB5 has been built when
doing a 'make world' PicoBSD built correctly.

Now we compile a 'WORLD' by enabling both KRB4 and KRB5/Heimdal
and PicoBSD doesn't built anymore.
First I thought it may has to do with some config errors, but every
preconfigured PicoBSD is unable to produce a correct image.

We use a clone of 'bridge' with several changes within the floppy tree
but still using a 'normal' crunch.conf.

When building/compiling a standard PicoBSD with the original crunch.conf
I get a  lot of errors when populating the binary image (kernel has been
compiled successfuly). Always 'passwd.o' reports lacking in some libraries
using krb_xxx specific things or com_err-specific things. to get rid of these
errors I added an additional line with new libraries defined in crunch.conf
and several errors disappeared. The following error-output shows up the
added libs and the error:

crunchide -k _crunched_mount_cd9660_stub mount_cd9660.lo
cc -static -o crunch1 crunch1.o init.lo fsck.lo ifconfig.lo sh.lo echo.lo pwd.lo 
mkdir.lo rmdir.lo chmod.lo chown.lo mv.lo ln.lo
mount.lo minigzip.lo cp.lo rm.lo ls.lo kill.lo df.lo ps.lo ns.lo vm.lo cat.lo test.lo 
tr.lo time.lo hostname.lo login.lo getty.lo
stty.lo w.lo msg.lo kget.lo reboot.lo sysctl.lo swapon.lo pwd_mkdb.lo dev_mkdb.lo 
umount.lo mount_std.lo du.lo tail.lo tee.lo
passwd.lo sleep.lo basename.lo expr.lo route.lo mount_msdos.lo ee.lo arp.lo 
disklabel.lo fdisk.lo vnconfig.lo grep.lo date.lo
mount_nfs.lo ping.lo ipfw.lo traceroute.lo mount_cd9660.lo -L/usr/lib -lncurses -ledit 
-lutil -lmd -lcrypt -lmp -lgmp -lm -lkvm
-lmytinfo -lipx -lz -lpcap -lwrap -ltermcap -lgnuregex -ldes -lkrb -lkrb5 -lcom_err 
-lpam -lrpcsvc -lcrypto -lkadm -lkadm5clnt
-lkadm5srv
/usr/lib/libkadm.a(kadm_cli_wrap.o): In function `kadm_init_link':
kadm_cli_wrap.o(.text+0x6c): undefined reference to `initialize_krb_error_table'
kadm_cli_wrap.o(.text+0x368): undefined reference to `krb_net_write'
kadm_cli_wrap.o(.text+0x383): undefined reference to `krb_net_write'
kadm_cli_wrap.o(.text+0x39e): undefined reference to `krb_net_read'
kadm_cli_wrap.o(.text+0x3f9): undefined reference to `krb_net_read'
kadm_cli_wrap.o(.text+0x516): undefined reference to `krb_mk_priv'
kadm_cli_wrap.o(.text+0x5a1): undefined reference to `des_quad_cksum'
kadm_cli_wrap.o(.text+0x76f): undefined reference to `krb_rd_priv'
/usr/lib/libkadm.a(kadm_stream.o): In function `stv_string':
kadm_stream.o(.text+0x202): undefined reference to `strnlen'
*** Error code 1

Stop in /usr/src/release/picobsd/build_dir-bastion/crunch.
--- fail: Error 1 error code crunch in 
Error while building bastion.
--- Aborting /usr/src/release/picobsd/build/picobsd


It is very curious that 'strnlen' is missing due to the fact this is part of libc and
gcc should include this by default.

Can someone confirm this behaviour (enable building Kerb4 and Kerb5/Heimdal and then
make world, then try to build any of the examples in /usr/src/release/picobsd, for 
instance
'bridge'-PicoBSD.

I would appreciate any comment, hint or tip ...

If this is a kind of bug I should send a bug-report, but it may be possible that
I did a stupid mistake ...

Oliver

--
MfG
O. Hartmann

[EMAIL PROTECTED]
--
IT-Administration des Institutes fuer Physik der Atmosphaere (IPA)
--
Johannes Gutenberg Universitaet Mainz
Becherweg 21
55099 Mainz

Tel: +496131/3924662 (Maschinenraum)
Tel: +496131/3924144 (Buero)
FAX: +496131/3923532


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



Re: Bootable FreeBSD cd

2002-12-03 Thread Albertus Magnus
On Tuesday 03 December 2002 01:38, Nick Twaddell wrote:
 How can I make a bootable cd of freebsd 4.7-CURRENT

 The iso on the mirrors is -RELEASE I believe.

 Nick

ftp://snapshots.jp.freebsd.org has isos of daily 4.7-STABLE builds.  
Builds of -CURRENT, too, for that matter.

Regards,
Albert

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



Re: Virtual Private Servers/Jails

2002-12-03 Thread Kirk Strauser

At 2002-12-04T01:33:02Z, Simon1 [EMAIL PROTECTED] writes:

 4) Needed utilities and commands. (Call it my wishlist)
   1) A way to list jails.
   2) A way to list processes BY jail, and a way to show (host side)
 which jail a process belongs to.
   3) jail halt, jail restart commands to close out the jail, and
 possibly restart it.

My JailAdmin program (at http://subwiki.honeypot.net/cgi-bin/view/Freebsd/JailAdmin) 
handles those functions.  For example:

root@kanga:/home/kirk# jailadmin status all
Server: vserver1

USER   PID %CPU %MEM   VSZ  RSS  TT  STAT STARTED  TIME COMMAND
root 23688  0.0  0.1   944  532  ??  SsJ  Mon10AM   0:00.21 /usr/sbin/syslogd -a 
127.0.0.1/8
root 23695  0.0  0.1  1056  428  ??  IsJ  Mon10AM   0:00.00 /usr/sbin/inetd -wWl
root 23697  0.0  0.1   984  452  ??  IsJ  Mon10AM   0:00.30 /usr/sbin/cron
root 23699  0.0  0.2  2852 1440  ??  IsJ  Mon10AM   0:00.66 /usr/sbin/sshd

Server: vserver2

USER   PID %CPU %MEM   VSZ  RSS  TT  STAT STARTED  TIME COMMAND
root   573  0.0  0.1   952  500  ??  SsJ  Mon09AM   0:01.37 /usr/sbin/syslogd -a 
127.0.0.1/8
root   581  0.0  0.1  1064  476  ??  IsJ  Mon09AM   0:00.03 /usr/sbin/inetd -wWl
root   583  0.0  0.1   988  476  ??  IsJ  Mon09AM   0:00.36 /usr/sbin/cron
root   585  0.0  0.1  2852 1052  ??  IsJ  Mon09AM   0:00.51 /usr/sbin/sshd
root   893  0.0  0.2  2788 1364  ??  IsJ  Mon09AM   0:00.06 sendmail: Queue 
runner@00:30:00 for /var/spool/mqueue (sendmail)
smmsp   896  0.0  0.2  2664 1260  ??  IsJ  Mon09AM   0:00.05 sendmail: Queue 
runner@00:30:00 for /var/spool/clientmqueue (sendmail)
news 22029  0.0  0.7  5536 5232  ??  IsJ   7:19PM   0:00.78  (leafnode)

Server: vserver3

USER   PID %CPU %MEM   VSZ  RSS  TT  STAT STARTED  TIME COMMAND
root   671  0.0  0.1   944  492  ??  SsJ  Mon09AM   0:00.24 /usr/sbin/syslogd -a 
127.0.0.1/8
root   678  0.0  0.1  1040  432  ??  IsJ  Mon09AM   0:00.00 /usr/sbin/inetd -wWl
root   680  0.0  0.1   976  484  ??  IsJ  Mon09AM   0:00.43 /usr/sbin/cron
root   682  0.0  0.1  2852 1012  ??  IsJ  Mon09AM   0:00.64 /usr/sbin/sshd
root  1002  0.0  0.1  1052  564  ??  IJ   Mon09AM   0:00.00 cron: running job 
(cron)
1100  1009  0.0  0.1  2688 1148  ??  IsJ  Mon09AM   0:00.02 /usr/sbin/sendmail 
-FCronDaemon -odi -oem -oi -t
1100  1051  0.0  2.8 95876 21856  ??  SJ   Mon09AM  90:21.23 
/usr/local/jdk1.3.1/bin/i386/green_threads/java freenet.node.Main

Stopping an individual jail:

root@kanga:/home/kirk# jailadmin stop vserver1
Stopping server vserver1...
Sending signal TERM to all processes in the jail
Waiting 5 seconds to check success...

Starting an individual jail:

root@kanga:/home/kirk# jailadmin start vserver1
Starting server vserver1...
Skipping disk checks ...
Doing initial network setup:.
ifconfig: ioctl (SIOCDIFADDR): permission denied
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
Additional routing options: tcp extensions=NOsysctl: net.inet.tcp.rfc1323: 
Operation not permitted
 TCP keepalive=YESsysctl: net.inet.tcp.always_keepalive: Operation not permitted
.
Routing daemons:.
Additional daemons: syslogd.
Doing additional network setup:.
Starting final network daemons:.
ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib /usr/local/lib
a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout /usr/X11R6/lib/aout
Starting standard daemons: inetd cron sshd.
Initial rc.i386 initialization:.
Additional ABI support:.
Local package initialization: pgsql apache jabberd  mysqld Zope.
Additional TCP options:.

Wed Dec  4 01:43:08 GMT 2002

The version I finished yesterday has provisions for automatically mounting a
(list of) filesystem(s) before starting the jail, and umounting them (in
reverse order) after stopping the jail.  I did this to simplify sharing
/usr/ports/distfiles via NFS from the host environment among all of the jail
environments:

root@kanga:/home/kirk# cat /usr/local/etc/jailadmin.conf
jaildir=/usr/export

vserver1
ip: 10.0.0.32
hostname: virtual1.honeypot.net
mount: /usr/ports/distfiles

JailAdmin comes with a few other features, such as an SNMP module for the
'net-snmp' port, allowing Cricket, MRTG, etc. to graph statistics from the
jails on a given server.  Right now, the module only returns a minimal
amount of information (IP, hostname, number of loaded processes, etc.), but
I wrote it with expandability in mind.
-- 
Kirk Strauser
In Googlis non est, ergo non est.

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



Re: Doom as a tool for system administration (unique to say the least)

2002-12-03 Thread Adam Weinberger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

 (12.03.2002 @ 1142 PST): Bsd Neophyte said, in 0.4K: 
 i thought this was pretty interesting and i figured i'd share it...
 Doom as a tool for system administration
 http://www.cs.unm.edu/~dlchao/flake/doom/
 end of Doom as a tool for system administration (unique to say the least) from 
Bsd Neophyte 

You're right; it is certainly an amusing tool. Unless it's changed since
I last looked at it months ago, it's Linux-only.

# Adam


- --
Adam Weinberger
vectors.cx[EMAIL PROTECTED]
FreeBSD.org   [EMAIL PROTECTED]
Bayer Berkeley[EMAIL PROTECTED]
#vim:set ts=8: 8-char tabs prevent tooth decay.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (FreeBSD)

iD8DBQE97WAPo8KM2ULHQ/0RAuLPAKCmb4CIYnbPXYm0KEXczFz6q3HOrACbBBhf
waJ5I/Pt/CAGNi1+p2Jhj/U=
=AFwT
-END PGP SIGNATURE-

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



Re: tool/method to convert DOS line endings to UNIX line endings

2002-12-03 Thread D J Hawkey Jr
[Posted and mailed]

In article [EMAIL PROTECTED],
[EMAIL PROTECTED] writes:
 On Tue, 3 Dec 2002, Lee J Carmichael wrote:
 
 If you are going from DOS to Unix you could use the following perl script:
 
 [script snipped] 
 
 It's a bit easier if you let Perl do the heavy lifting:
 
 perl -pi -e 's/\r//g' file-to-convert

Even easier (and lighter) if you ditch the perl:
   sed -e 's/\r//g' input output

I like the tr(1) conversion too, but I always seem to think in terms of
sed(1) and awk(1).

 -Warren Block * Rapid City, South Dakota USA

:-)
Dave

-- 

Windows: Where do you want to go today?
Linux: Where do you want to go tomorrow?
FreeBSD: Are you guys coming, or what?


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



Re: Opera

2002-12-03 Thread Andrew Prewett
On Dec 3 Scott Robbins wrote:

 On Tue, Dec 03, 2002 at 04:11:29PM -0700, Peter Milne wrote:
  Opera was working fine.  I now try to load a page and it crashes and closes.  
Every page, every site.  I installed it from ports.
 
  How do I get rid of it all or how do I fix it?

 I had the same issue--and a search of google indicated that one or two
 others were as well.

 So, I then installed Linux-opera from ports.  That worked. A day or two
 later, I tried the normal opera again.  And that worked.  shrug

 I can't see one being connected to the other, but who knows?
 

 If opera uses SysV IPC (I don't now, newer used) maybe not cleaning up
correctly before exit/crash. List with ipcs, delete with ipcrm if apply.
I had the same problem with compupic, which sometimes doesn't delete the
shared memory segment.

-andrew



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



Re: Virtual Private Servers/Jails

2002-12-03 Thread Simon1
 I run them for development servers.  oak is the physical box and runs
 postgresql.  I've got 4 jails running apache so each developer can have
 his own sandbox and can royally screw things up without affecting the rest
 of us.  Works awesome.

That's always useful. Like I said, I just never got the jails to speak to
each other. It might have had something to do with the specific setup I
had going. I no longer manage the webhosting I was using the jails in, but
I'll see if I can't get some time with one of my development boxes to play
with.  Postgres I've never used, MySQL on the other hand..

 I don't use quotas since this isn't for a commercial web hosting
 environment

That's what I was using them for. All of the work I did with jails was
targeted towards that environment.

  What I've found:
  1) Connecting (aka telnet, ftp, ssh) from one jail to another or even to
  the physical host is supposed to work, but I was never able to make it

[snip]

 Works great for me... I can do all three b/n jails, host, and remote
 servers or any combination.  Also updating ports with cvsup and/or
 installing them with porteasy also works just fine.  Never tried using
 sysinstall.

I seem to be the only person unable to get it to go. I think it may have
had something to do with the firewall rules, but even allow any from any
didn't seem to have a big effect. Not sure if dummynet may have had
anything to do with it either, though I doubt it.

 Not realtime, but you could run a du -hcs * on the top level directory
 that holds the jails to get a count, then substract what a bare jail
 contains and this would give you a snapshot of how much space is being
 used.  Granted in a commercial environment your users could use as much as
 they want and then remove it before you run the script, but that's life :)

Realtime quotas are a must in web hosting. The stuff I've had users do was
incredible. At one point, there were no quotas except as you described
above. The amount of trouble that caused.. *shakes head*

Anything that has to scan the files works okay in smaller environments.
But when you break 10-20k accounts things really bog down.

  with root in a jail can't trash the main system, they can still do a lot
  of damage.

 They can?  How?  Other than destroying that jail and thus anything on that
 IP, they can't touch the rest of the system.. at least that's my
 understanding.  Please correct me if I'm wrong.

No, you can't mess with processes or files outside of the jail. However,
you can run processes which bring the system to its knees (think while(1)
{ fork; }  --don't laugh, I'm not making this up. People really do
run commands like that just to see what would happen)

Also, if someone doesn't know any better (or doesn't have an option) they
might put the jail on one of their main partitions. FreeBSD may still
function, but it gets unhappy when a drive is totally full. Should you
have anything running that needs to save state (think databases here)
you'll have some problems.

That's what I was thinking of when I wrote what I did. I should have
clarified that, sorry.

 Check out the following ports which do what you want with maybe the
 exception of #2, but maybe even that, I don't remember.

 jailer-1.1.1Manage FreeBSD jail startup, shutdown and console
 jailutils-0.5.1 Several utilies for managing jails

I also saw a post made right after I composed mine with a JailAdmin tool
that looked very promising. I haven't used any of the tools above, but I'm
glad to see that many of my 'wishes' have already come true. =)



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



Re: Help !!!

2002-12-03 Thread Wilkinson,Alex
From the ports tree ? Or from there home directories ?

 - aW


I am running FreeBSD 4.7 and it seems that if I log in as root I can
compile most anything, the problem is that if a normal user logs in
they dont seem to be able to compile anything,
I fear that the permissions in the / directory were changed ... is
there any way to reverse this ? 

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



strange ftpd login problem

2002-12-03 Thread Kurt Bigler
I am using a VPS service provider who is running:
FreeBSD 4.6.1-RELEASE-p10
FTP server (Version 6.00LS)

A user is having problems with FTP login using GoLive 6.0 on MacOS X.  The
user has no problems with other FTP servers.  I tried a series of passwords
and he tried each with the result being that only passwords that begin with
his user name permit a successful login.  I installed GoLive 6.0 myself
under MacOS X and for me all passwords work on his account.

So unless you have a hunch about this, I would like to be able to view the
FTP sessions from the server side.  Is there a way to arrange this using
ftpd?  I can use a different port if necessary.  Alternatively I could
manually emulate an FTP server if I could create some talk-style interface
that his FTP client could connect to, but I have no idea how to do that.  Is
there a way to connect a terminal up to an incoming FTP port?

Thanks for any help.

-Kurt Bigler


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



More then 4 IDE devices in one FreeBSD server.

2002-12-03 Thread mike

 Hey people,

Here's the long and short of it. I have my main server unixhideout.com
running samba. All my windows clients programs such as kaZAa and even
their My documents save to /mirror /mirror2 /mirror3 and /mirror4 which
are writable shares, that way we can reinstall windows weekly if need be
(ha) but all important data is safe on FreeBSD. Its working really well
for years now. Problem is as you can guess from the subject is i got 4 120
gig hard drives in there, and i would like to have a CDROM and maybe even
more disks as needed.

A: What is the hardware name of the device i am looking for that will
allow more then 4 ide devices to one box.

B: do you know of a brand name i should be looking for that you recommend,
or even a retailer.

*SCSI is expensive and IS better but at this time not an option so please
stick with IDE in your suggestions.

-- 
-mike
[EMAIL PROTECTED]
 Network administrator
The unixhideout network
 http://www.unixhideout.com

Need to get a hold of me?
finger [EMAIL PROTECTED]


-
Free email that kicks ass from UnixHideout
   The UnixHideout network
http://www.unixhideout.com/



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



Re: strange ftpd login problem

2002-12-03 Thread Duncan Anker
On Wed, 2002-12-04 at 13:55, Kurt Bigler wrote:
 I am using a VPS service provider who is running:
 FreeBSD 4.6.1-RELEASE-p10
 FTP server (Version 6.00LS)
 
 A user is having problems with FTP login using GoLive 6.0 on MacOS X.  The
 user has no problems with other FTP servers.  I tried a series of passwords
 and he tried each with the result being that only passwords that begin with
 his user name permit a successful login.  I installed GoLive 6.0 myself
 under MacOS X and for me all passwords work on his account.

That sounds really bizarre - is this Go Live under Mac OS X on a
*different* machine that it works though?

 
 So unless you have a hunch about this, I would like to be able to view the
 FTP sessions from the server side.  Is there a way to arrange this using
 ftpd?  I can use a different port if necessary.  Alternatively I could
 manually emulate an FTP server if I could create some talk-style interface
 that his FTP client could connect to, but I have no idea how to do that.  Is
 there a way to connect a terminal up to an incoming FTP port?
 
 Thanks for any help.
 

I haven't used it, but I recently read about a utility called sockspy,
which is meant to sit between servers and clients for the purpose of
debugging network issues like this.

Try http://sockspy.sourceforge.net/sockspy.html (URL obtained from
SysAdmin magazine, December 2002)

Hope that helps

-- 

The information contained in this email is confidential.
If you are not the intended recipient, you may not disclose or use the
information in this email in any way.
Dark Blue Sea does not guarantee the integrity of any emails or attached
files.
The views or opinions expressed are the author's own and may not reflect
the views or opinions of Dark Blue Sea.
Dark Blue Sea does not warrant that any attachments are free from
viruses or other defects.
You assume all liability for any loss, damage or other consequences
which may arise from opening or using the attachments.


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



NTFS with Wine and VMware?

2002-12-03 Thread David Loszewski
If i have a dual boot system of Win2k and FreeBSD at which the Win2k is 
on a NTFS partition will I beable to use Wine and VMWare with this 
win2k? or does the partition have to be FAT or FAT32?

Dave


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


Re: More then 4 IDE devices in one FreeBSD server.

2002-12-03 Thread David Loszewski
For what you're doing just get an IDE Raid controller card, then you'll 
technically have 8 drives, 4 of which you can raid by hardware and 
another 4 that you can raid by software.  They're not that expensive. 
Just make sure before you buy one that you check out the supported 
hardware under your version of freebsd to make sure it is supported.

Dave

mike wrote:

Hey people,

Here's the long and short of it. I have my main server unixhideout.com
running samba. All my windows clients programs such as kaZAa and even
their My documents save to /mirror /mirror2 /mirror3 and /mirror4 which
are writable shares, that way we can reinstall windows weekly if need be
(ha) but all important data is safe on FreeBSD. Its working really well
for years now. Problem is as you can guess from the subject is i got 4 120
gig hard drives in there, and i would like to have a CDROM and maybe even
more disks as needed.

A: What is the hardware name of the device i am looking for that will
allow more then 4 ide devices to one box.

B: do you know of a brand name i should be looking for that you recommend,
or even a retailer.

*SCSI is expensive and IS better but at this time not an option so please
stick with IDE in your suggestions.

 





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



Re: microuptime went backwards ??

2002-12-03 Thread bastill
Quoting Bertrand Habib [EMAIL PROTECTED]:

 
 BH  microuptime() went backwards ( nnn.nn - mmm.m )
 
 Sounds like an AMD Athlon.
 
 Yes
 
 Disable power management in your BIOS.
 
 Nop! It was disabled and this brough me to the microuptime problem.
 After having re-enabled it (i.e: ACPI enable, APM enable), it seams to work.
 
 Also, I recommend disabling it in
 the kernel as well.

NOT ENOUGH!

 Kernel is GENERIC (in fact I did'nt checked if APM was still disabled in 
 4.7 GENRIC ).

Makes no difference.  As Greg Lehey explained earlier the only solution is to
delete all reference to APM in your kernel config file.  Disabled means still
there but not being used.
What we want is NOT PRESENT in any shape or form.

Regards,
Brian



---
This message sent through Adam Internet Webmail
  http://www.adam.com.au

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



  1   2   >