Re: KLD and UID

2004-03-18 Thread Chris Pressey
On Tue, 16 Mar 2004 23:09:36 -0700
Simon Timms [EMAIL PROTECTED] wrote:

 Hi there, I am playing around with kernel modules trying to learn
 something and hopefully not destroy my computer too badly.  Right now
 my goal is to print out the user id from an open() call.  I am basing
 my work around that found at http://www.nux-acid.org/src/open.c.  To
 that basic code I added (in the new_open method) 
  
 printf(uid %u\n, p-p_ucred-cr_uid);
  
 However this completely doesn't work and I end up crashing the kernel.
 I notice in other places people do things like
  
 uid_t uid = p-p_cred-p_svuid;
  
 however I don't see a p_cred member in the proc structure.  Is there
 something obvious I am missing here?  Complete code listing at
 http://simon.ma.cx/module.c.  Any additional comments/criticisms
 always appreciated.  
  
 Thanks, Simon

What version of FreeBSD are you trying this on?

You might want to look at this thread on hackers@, it's very similar to
what you're trying to do, I think:

  http://docs.freebsd.org/cgi/mid.cgi?20040316163956.GD638

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


Perl won't compile

2004-03-18 Thread Shawn Ramsey
I've got a 4.7-STABLE system, and perl or the port won't compile... Does anyone have 
any clue what the problem might be? Haven't had any other issues compiling... other 
than Base 64 for perl. If I try to install the Base 64 module for the currently 
installed perl(5.6.0) it bombs with the same error :



   Making MIME::Base64 (dynamic)
cc -c-DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.2/BSDPAN -DHAS_FPSETMASK -DHAS
_FLOATINGPOINT_H -fno-strict-aliasing -I/usr/local/include -O -pipe-DVERSION
=\2.21\  -DXS_VERSION=\2.21\ -DPIC -fPIC -I../../..   Base64.c
Base64.xs: In function `XS_MIME__Base64_decode_base64':
Base64.xs:219: `dowarn' undeclared (first use in this function)
Base64.xs:219: (Each undeclared identifier is reported only once
Base64.xs:219: for each function it appears in.)
*** Error code 1
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Error running linux-flashplugin6/linuxpluginwrapper

2004-03-18 Thread Mats Dufberg
I have installed www/firefox, www/linux-flashplugin6 and
www/linuxpluginwrapper from ports. From that I should get flash support in
firefox. When I start firefox is complains with the following error
message:

LoadPlugin: failed to initialize shared library
  /usr/local/lib/linux-flashplugin6/libflashplayer.so [Shared object
  libpthread.so.0 not found]
LoadPlugin: failed to initialize shared library
  /usr/local/Acrobat5/Browsers/intellinux/nppdf.so [Shared object
  libc.so.6 not found]

(I focus on the flash problem now.)


libpthread.so.0 is installed and the machine has linux support:

$ locate libpthread.so.0
/usr/compat/linux/lib/libpthread.so.0

$ uname -r
5.1-RELEASE-p8

$ kldstat | grep linux
 41 0xc4332000 18000linux.ko

$ grep linux /etc/rc.conf
linux_enable=YES


I tested to make a symbolic link from /lib/libpthread.so.0 to
/usr/compat/linux/lib/libpthread.so.0 and updated the regular FreeBSD
library cache (with ldconfig) and then libpthread.so.0 seems to be
found, but libflashplayer.so compained about anohter library.


Does anyone have a suggestion what is wrong?



Mats

-
Mats Dufberg  [EMAIL PROTECTED]
Blaoarvsgraend 42  +46-8-38 48 59
SE-162 45 Vaellingby, Sweden  +46-70-258 2588
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: amd64 -CURRENT: portinstall x11/kde3 fails, missing shared libraries

2004-03-18 Thread Burkard Meyendriesch
On Wed, 17 Mar 2004 23:04:24 -0800 Kris Kennaway wrote:

 On Thu, Mar 18, 2004 at 07:58:35AM +0100, Burkard Meyendriesch wrote:
 
  Are there any differences in making ports between i386 STABLE and
  amd64 CURRENT? What is going wrong? What can I do to solve this?
 
 Compare the build logs of the openldap port from i386 and amd64; it's
 possible the build is turning off shared library support because of a
 buggy configure script, or something.
 
I have got the same problem with several other libraries on my amd64
box. Here is the relevant difference in config.log between Grimbart
(i386 STABLE) and Reineke (amd64 CURRENT) when making libiconv:

--- config.log (Reineke) ---
LIBICONV='/usr/local/lib/libiconf.a'

--- config.log (Grimbart) ---
LIBICONV='/usr/local/lib/libiconf.so -Wl, -rpath -Wl, /usr/local/lib'


I think this difference is the problem on Reineke. How is LIBICONV
generated during the make process? Which part of Reinekes configuration
is the reason that it does not make the shared libraries?

Burkard

--
Burkard Meyendriesch
Stevern 2
D-48301 Nottuln
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


downmix wave file from stereo to mono

2004-03-18 Thread Zhang Weiwu
Today I got a simple job to convert a 600MB stereo .wav file to mono .wav 
file. Very simple task.

First I read the lame(1) manual carefully, and decide it cannot help. I 
tried to install several sound editor, glame tried to pull down the gtk1 
library and depended packages, so stopped it. audacity takes too long time 
to compile (still doing now). I tried sweep, and it hung my machine; it 
seems trying to load the whole wave file into memory. I find xwava compiles 
correctly, runs okay, but it can do downmix only when the file fits 
memory. I also tried several other ports I don't remember now. Now I 
worked the whole afternoon without any progress.

I think there must be some handy tools can do this. On audio port directory 
I tried
make search key=mono
make search key=downmix
Both returned nothing.

So what do you suggest me to use?

If this happens to be your situation, dudes, how do you find a handy tool 
quickly? I don't want to waste time on such jobs in future again.

_
 MSN Explorer:   http://explorer.msn.com/lccn/  

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


making buildworld@5.1 relese

2004-03-18 Thread Oleg Shevtsov

hi,


I'm trying to make buildworld on 5.1-RELEASE.
Found next mistake:

 stage 3: cross tools
--
cd /usr/src; TOOLS_PREFIX=/usr/obj/usr/src/i386
MAKEOBJDIRPREFIX=/usr/obj/usr/src/i386  DESTDIR=  INSTALL=sh
/usr/src/tools/install.sh make -f Makefile.inc1 -DBOOTSTRAPPING
-DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED  -DNO_WERROR
-DNO_FORTRAN -DNO_GDB cross-tools
echo === usr.bin/genassum;  cd /usr/src/usr.bin/genassum;  make
DIRPRFX=usr.bin/genassum/ obj;  make DIRPRFX=usr.bin/genassum/ depend;
make DIRPRFX=usr.bin/genassum/ all;  make DIRPRFX=usr.bin/genassum/
DESTDIR=/usr/obj/usr/src/i386 install
=== usr.bin/genassum
cd: can't cd to /usr/src/usr.bin/genassum
*** Error code 2
1 error
*** Error code 2
1 error
*** Error code 2
1 error

What's wrong? 
In Makefile.inc1 I have next:
.if ${TARGET_ARCH} == i386  ${MACHINE_ARCH} != i386   
_btxld= usr.sbin/btxld  
.endif  

cross-tools:
.for _tool in ${_btxld} ${_elf2exe} usr.bin/genassum usr.bin/gensetdefs
\   
gnu/usr.bin/binutils usr.bin/objformat usr.sbin/crunch/crunchide \  
gnu/usr.bin/cc  
${ECHODIR} === ${_tool}; \   
cd ${.CURDIR}/${_tool}; \   
${MAKE} DIRPRFX=${_tool}/ obj; \
${MAKE} DIRPRFX=${_tool}/ depend; \ 
${MAKE} DIRPRFX=${_tool}/ all; \
${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}
install   
.endfor 


But why I don't have them at usr.bin and what should I do?


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


SV: FreeBSD-SA-04:05.openssl Question (UPDATED!)

2004-03-18 Thread Pelle Andersson (SPD Systems AB)

It should be 'make buildworld' below, not 'recompile the kernel?' :-/

Hi again list!

Please have indulgence with this question ;)

[QUOTE]
Note that any statically linked applications that are not part of the base
system (i.e. from the Ports Collection or other 3rd-party sources) must be
recompiled.
[/QUOTE]

Does this mean I need to:
1. Apply the patch
2. Recompile the kernel
3. 'make deinstall' to the following application I have installed from
ports?

Qpopper (- Using SSL)
Apache2 (- Using SSL)
Postfix (- Using SSL)
ProFTPD (- Using SSL)
MySQL   (- Using SSL)

#OpenSSL (In basesystem, do nothing)

And then 'make install clean' again for all these application?

Or can I just upgrade all there is with?:

*default host=cvsup.ca.FreeBSD.org
*default release=cvs
*default base=/usr
*default prefix=/usr
*default delete use-rel-suffix
*default tag=RELENG_4_9
src-all

And then 'make buildworld'?

Sorry for not understanding this to 100% Still learning...

Thanks!



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



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


Re: downmix wave file from stereo to mono

2004-03-18 Thread Zhang Weiwu

   Zhang Weiwu wrote:  Today I got a simple job to convert a 600MB
   stereo .wav file to mono .wav file. Very simple task. Oh god. Now I
   installed audacity. What the hell, I don't find a menuitem/settings
   dialogue box to let me downmix it. Should I finish learning a whole
   sound editor before I can do simple work like downmixing a wave file?
   OMG someone help me out.
   _
MSN Explorer: http://explorer.msn.com/lccn/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Need some port installation help.

2004-03-18 Thread Matthew Seaman
On Mon, Mar 15, 2004 at 06:24:45PM -0600, Jason Zimberoff wrote:

Hmmm... Either your clock is a few days out, or it took 3 days for
this message to make it to the list...

 I am trying to install xmms.  When I run sysinstall, I first have to
 change the location to something else because 5.0-RELEASE is not there.
 I have been choosing 5.0-CURRENT instead, and that seems to at least get
 me into the list of available packages.

First of all, FreeBSD-5.0 is obsolete and buggy -- you should
certainly be thinking about updating.

Secondly, sysinstall(8) is meant to be a tool for installing the
system, not as a general system administration tool.  Once you've got
the system up and running, there's the whole panoply of system tools
available to you.  In your case, that would be pkg_add(1).  For a
supported release, the command to install xmms would be:

# pkg_add -r xmms

which will search the appropriate release directory for the xmms
package, download it and install it.  It will also do the same for any
prerequisite packages.

Now, since the packages-5.0-release directory has gone from the FTP
servers, you need to make pkg_add look in the packages-5-current
directory. You do that by setting PACKAGESITE in your environment:

(tcsh)

# setenv PACKAGESITE 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5-current/All

(sh, bash)

# PACKAGESITE=ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5-current/All 
; export PACKAGESITE

If there is still a problem with the expat package, you should get a
reasonable error message out of pkg_add(1).
 
 When I try in install the xmms-1.2.10 package, one of the dependency
 packags fails to install right away. (expat-1.95.6_1)  All it says is
 error code 1 - see debug screen for more info...  How do I find the 
 debug screen?

The debug screen comes from the Install process -- where you'ld type
Alt-F2 to get to it.  If you just run sysinstall from the shell, I
don't think that's going to be accessible to you.

Cheers,

Matthew

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


pgp0.pgp
Description: PGP signature


Re: making buildworld@5.1 relese

2004-03-18 Thread Kris Kennaway
On Thu, Mar 18, 2004 at 10:51:08AM +0200, Oleg Shevtsov wrote:
 
 hi,
 
 
 I'm trying to make buildworld on 5.1-RELEASE.
 Found next mistake:
 
  stage 3: cross tools
 --
 cd /usr/src; TOOLS_PREFIX=/usr/obj/usr/src/i386
 MAKEOBJDIRPREFIX=/usr/obj/usr/src/i386  DESTDIR=  INSTALL=sh
 /usr/src/tools/install.sh make -f Makefile.inc1 -DBOOTSTRAPPING
 -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED  -DNO_WERROR
 -DNO_FORTRAN -DNO_GDB cross-tools
 echo === usr.bin/genassum;  cd /usr/src/usr.bin/genassum;  make
 DIRPRFX=usr.bin/genassum/ obj;  make DIRPRFX=usr.bin/genassum/ depend;
 make DIRPRFX=usr.bin/genassum/ all;  make DIRPRFX=usr.bin/genassum/
 DESTDIR=/usr/obj/usr/src/i386 install
 === usr.bin/genassum
 cd: can't cd to /usr/src/usr.bin/genassum

That's supposed to be genassym, not genassum.  Something is very wrong
on your system.  Try checking out the source tree again.

Kris


pgp0.pgp
Description: PGP signature


Use LDAP auth at 5.2.1 ?

2004-03-18 Thread Frank Bonnet
Hi

I just installed a 5.2.1 machine I want to use LDAP
authentication to login.
I've installed nss_ldap and pam_ldap but I need a bit
of help as it does not work for now.
Is there some howto to use nss_ldap and pam_ldap
at FreeBSD 5.2.1 ?
Thanks
--
Regards/Cordialement,
Frank Bonnet
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: openSSL certificate key's

2004-03-18 Thread Matthew Seaman
On Thu, Mar 18, 2004 at 12:34:32AM +0100, albi wrote:
 On Thu, 18 Mar 2004 00:24:07 +0100
 Martijn [EMAIL PROTECTED] wrote:
 
  I was wondering if anyone could tell me how
  I can generate my openSSL certificate key's.
 
 for apache ?
 e.g. in the apache13-modssl port you can try to use : make certificate
 
 for courier-imap, there are tools included to make a SSL-cert for
 pop3-ssl and imap-ssl

If you want to make a self-signed certificate, suitable for use with
apache, or sendmail or various other programs, there's a neat little
(barebones, no explanation) guide at:

http://www.sendmail.org/~ca/email/other/cagreg.html

You may need to edit newreq.pem to extract the private key from it --
which is pretty obvious how to do just from looking at the file.

Cheers,

Matthew

NB. Verb. Sap.  Some applications (*cough* Outlook *cough*) get upset
when the OU in the certificate is the same as the OU of your
certificate authority.

Cheers,

Matthew

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


pgp0.pgp
Description: PGP signature


Re: MYSQL startup error

2004-03-18 Thread Supote Leelasupphakorn
 --- Gareth Bailey [EMAIL PROTECTED] wrote:  I am running
5.2 Release, and have recently installed
 mysql-4.0.18 server. I
 first made a default install by issuing the following commands
 in the port:
 
 $ make
 # make install
 $ cd /var/db/mysql  mysql_db_install
 
 Worked perfectly when i started up with:
 $ mysqld_safe 
 
 Then i decided i wanted to reinstall with DB_DIR=/usr/db/mysql
 I made deinstall and clean in the port. I removed the /var/db
 directory
 manually. I then did the following in an attempt to install
 the DB_DIR in
 /usr/db/mysql:
 
 # mkdir /usr/db/mysql
 # chown -R mysql /usr/db
 #chgrp -R mysql /usr/db
 $ make DB_DIR=/usr/db/mysql
 # make DB_DIR=/usr/db/mysql install
 
 I encountered the following two problems:
 
 1. Crontab complained with the following message:
 
 mkdir: /var/db/entropy: Permission denied
 /usr/libexec/save-entropy[45954]: The entropy directory
 /var/db/entropy does
 not exist, and cannot be created. Therefore no entropy can be
 saved.
 
 I solved this by creating /var/db/entropy and chowned and
 chgrped to mysql
 (don't know if that was right.)
 
 2. I can't start mysqld_safe using command 'mysqld_safe '. I
 get the
 following errors...
 
  when i try as normal user:
 /usr/local/bin/mysqld_safe: cannot create
 /usr/db/mysql/server.err:
 Permission denied
 
 when i try from  root:
 server# Starting mysqld daemon with databases from
 /usr/db/mysql
 040318 09:51:58  mysqld ended
 
 I had a look at server.err in /usr/db/mysql and i found the
 following line:
 
 040318  9:51:56  Fatal error: Can't open privilege tables:
 Can't find file:
 './mysql/host.frm' (errno: 13)
 
 Please advise. Any assistance will be very much appreciated.
 Thank you
 Gareth

After you re-install, have you run the script: mysql_db_install 
again ? That script is for prepare core database in data 
directory (in this case is /usr/db/mysql) and then don't forget
to chown and chgrp /usr/db/mysql as well.






Yahoo! Messenger - Communicate instantly...Ping 
your friends today! Download Messenger Now 
http://uk.messenger.yahoo.com/download/index.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


spam scanner install failed

2004-03-18 Thread rfa
I'm trying to Install

Qmail-scanner
p5-Mail-SpamAssassin
Amavisd-new

on my 4.8-STABLE FreeBSD mail box running qmail and courier-imap

but I can't seem to find the file

Time-HiRes-1.51.tar.gz

from a whole bunch of ftp sites.  I checked some of the sites
for example
ftp://ftp.is.co.za/programming/perl/CPAN/modules/by-module/Time/
ftp://ftp.chg.ru/pub/lang/perl/CPAN/modules/by-module/Time/
http://cpan.shellhung.org/modules/by-module/Time/

and saw that this file was nonexistant, only

Time-HiRes-1.52.tar.gz up to
Time-HiRes-1.56.tar.gz

were available.

Is there a way to still install these programs??  I tried installing just
after doing a #cvsup -g -L 2 /etc/ports-supfile

Any ideas?

TIA

Rommel









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


How can I log message via syslog ?

2004-03-18 Thread Supote Leelasupphakorn
Hi, all

   Sorry for my Englist. I have a shell script let say
script.sh and I would like to log logging message for
that script by using syslog. What're step accomplish this
this and how syslog look like ?

TIA,
Pote


Yahoo! Messenger - Communicate instantly...Ping 
your friends today! Download Messenger Now 
http://uk.messenger.yahoo.com/download/index.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


packages question

2004-03-18 Thread Christopher Bingham
Hi!

If I download the two iso images (1 and 2) of version 5.2.1, 
will this include all the packages in the ports directory of 
the ports directory in the ftp mirror I am using? 

Thanks.

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


Re: How can I log message via syslog ?

2004-03-18 Thread Matthew Seaman
On Thu, Mar 18, 2004 at 09:21:35AM +, Supote Leelasupphakorn wrote:

Sorry for my Englist. I have a shell script let say
 script.sh and I would like to log logging message for
 that script by using syslog. What're step accomplish this
 this and how syslog look like ?

See logger(1) -- lets you submit messages to the system log from
within shell scripts.  Eg:

logger -p local3.debug -i -t myscript Your log message here

Cheers,

Matthew

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


pgp0.pgp
Description: PGP signature


Re: openSSL certificate key's

2004-03-18 Thread Matthew Seaman
On Thu, Mar 18, 2004 at 09:15:28AM +, Matthew Seaman wrote:
 NB. Verb. Sap.  Some applications (*cough* Outlook *cough*) get upset
 when the OU in the certificate is the same as the OU of your
 certificate authority.

Ahem.  The CN or Common Name is what I should have said there.  Ooops.

Cheers,

Matthew

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


pgp0.pgp
Description: PGP signature


Re: packages question

2004-03-18 Thread Matthew Seaman
On Thu, Mar 18, 2004 at 10:24:54AM +0100, Christopher Bingham wrote:

 If I download the two iso images (1 and 2) of version 5.2.1, 
 will this include all the packages in the ports directory of 
 the ports directory in the ftp mirror I am using? 

No.  There's 10,000+ ports: far more than will fit on two whole CD
Roms, let alone the spare space after the system stuff has been
written there.

Cheers,

Matthew

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


pgp0.pgp
Description: PGP signature


Re: downmix wave file from stereo to mono

2004-03-18 Thread Peder Blom
On Thu, 18 Mar 2004 16:45:49 +0800
Zhang Weiwu [EMAIL PROTECTED] wrote:

 Today I got a simple job to convert a 600MB stereo .wav file to mono
 .wav file. Very simple task.
 
 First I read the lame(1) manual carefully, and decide it cannot help.
 I tried to install several sound editor, glame tried to pull down the
 gtk1 library and depended packages, so stopped it. audacity takes too
 long time to compile (still doing now). I tried sweep, and it hung my
 machine; it seems trying to load the whole wave file into memory. I
 find xwava compiles correctly, runs okay, but it can do downmix only
 when the file fits memory. I also tried several other ports I don't
 remember now. Now I worked the whole afternoon without any progress.
 
 I think there must be some handy tools can do this. On audio port
 directory I tried
 make search key=mono
 make search key=downmix
 Both returned nothing.
 
 So what do you suggest me to use?

ports/audio/sox should be able to do what you want.

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


Re: apache+mod_ssl + php4 crashes

2004-03-18 Thread Heinrich Rebehn
Matthew Seaman wrote:
On Wed, Mar 17, 2004 at 02:20:34PM +0100, Heinrich Rebehn wrote:


this is the ldd output:

[EMAIL PROTECTED] [/usr/local/libexec/apache] # ldd ./libphp4.so
./libphp4.so:
[...]

   libc_r.so.5 = /usr/lib/libc_r.so.5 (0x287fd000)


H... Which OS version are you building this on?  If it's
5.2.1-RELEASE, I think that libc_r.so.5 should be replaced by
libpthread.so.N -- and one exceedingly annoying problem is that in a
dynamically linked program like Apache, parts of it can end up being
linked against libpthread, and other parts can be linked against
libc_r, which will cause the whole thing to crash.
One solution is to use /etc/libmap.conf to substiture libpthread for
libc_r during the dynamic link stage of program startup. See
libmap.conf(5).  /etc/libmap.conf should contain something like:
 libpthread.so.1 libpthread.so.1 # Everything uses 'libpthread'
 libpthread.so   libpthread.so
 libc_r.so.5 libpthread.so.1 # Everything that uses 'libc_r'
 libc_r.so   libpthread.so   # now uses 'libpthread'
Of course, the ultimate solution is to fix all of the ports and
recompile them so that they automatically link against the correct
threading library.
	Cheers,

	Matthew

Hi Matthew,

for some reason i do not have libpthread on my system:

[EMAIL PROTECTED] [~] # find /usr -name 'libpthread*'
/usr/src/lib/libpthread
/usr/compat/linux/lib/libpthread-0.9.so
/usr/compat/linux/lib/libpthread.so.0
[EMAIL PROTECTED] [~] # find /lib -name 'libpthread*'
[EMAIL PROTECTED] [~] #
This is strange, because /usr/src/lib/libpthread exists. Should i simply 
go there and do 'make install' ?

And yes, i use 5.2.1-RELEASE-p1.

Your other suggestion about editing /etc/make.conf unfortunately did not 
help.

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


dummynet and adsl

2004-03-18 Thread Francis GUDIN
Hello everybody,

I'm in the process of setting up a bandwidth control with ipfw and
dummynet. My connection is done through pppoe on adsl.

In ipfw(8), i found the following:
 If a device name is specified instead of a numeric value, as in

   ipfw pipe 1 config bw tun0

  then the transmit clock is supplied by the specified device.  At
  the moment only the tun(4) device supports this functionality,
  for use in conjunction with ppp(8).

Having two different bandwidth available (up- and downstream), would
this option work ? Or, is only symetric bw case taken into account
when using this syntax ?


Any help greatly appreciated.
Please cc: in your replies as i'm not subscribed to these lists.

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


Sysinstall, install.cfg, unable to find device node

2004-03-18 Thread Jacob Atzen
Hello all,

I am trying to make an automatic install procedure of a FreeBSD 5.2.1.
I'm booting from the 5.2.1-miniiso and then I insert a floppy containing
my install.cfg. Then I select the Load config menuitem from sysinstall
and run the install.cfg. It then perform some network operations but
halts shortly after with the following error message:

Unable to find device node for /dev/aacd0s2b in /dev!

The Debug console is telling me this:

...
DEBUG: Scanning disk aacd0 for swap partitions
DEBUG: Found swapdev at aacd0s2b!

I've noticed that the slice created by my install.cfg get a partition
subtype 3 and not 165 as one would expect. If I examine the labels
through the sysinstall menu it seems as if they're created.

If I try to manually delete the created labels and manually creates some
new ones I get the same error. But if I delete the created slice and
afterwards creates the labels things seems to be alright.

Any suggestions as to what might be wrong?

My install.cfg is as follows (some of the comments have been wrapped
but are as they should be in the original file):


# 
# FreeBSD Unattended Install Sample install.cfg
# Provided by http://bsdhound.com
# 

# Turn on extra debugging.
debug=YES

# Initialize all variables to their defaults, overriding any previous
settings.
installVarDefaults


# 
# Networking Information
# 
hostname=goodman
domainname=interflow.dk
# DHCP Server Should take care of below
nameserver=192.168.1.1
defaultrouter=192.168.1.1
ipaddr=192.168.1.115
netmask=255.255.255.0

#ntpdate_flags=-b ntp.lth.se
#configNTP

# 
# Which installation method to use
# 
# FTP
_ftpPath=ftp://ftp.dk.freebsd.org/pub/FreeBSD/
netDev=em0
mediaSetFTP
# NFS
#mediaSetNFS
#nfs=MyNfsServer:/export/ari_scratch2/gallatin/freebsd-dist

# 
# Select which distributions we want.
# 
dists= bin doc catpages dict info crypto ports

#THE INFORMATION ABOVE HERE SHOULD BE ON 1 LINE.

distSetCustom

# 
# Set the parameters for the partition editor
# 
# ad = IDE, da = SCSI
disk=aacd0

# Enable this for interactive fdisk
# If you plan on using this on various other machies
# it might be wise to enable the interactive fdisk and
# disklabel
#diskInteractive

# Change this to all if this is a server, we don't want any
multi-booting rubbish on our servers
partition=free
bootManager=boot

diskPartitionEditor

# 
# - All sizes are expressed in 512 byte blocks!
# - Size in MB = sectors * 512 / 1024 / 1024
# - Number of blocks = xsize in mb * 1024 * 1024 / 512
# The non-zero value after the mountpoint means enable soft updates
# 

# 256MB UFS root
aacd0s2-1=ufs 524288 /

# 1024MB SWAP aacd0s2b
aacd0s2-2=swap 2097152 none

# 256MB UFS aacd0s2e
aacd0s2-3=ufs 524288 /var 1

# 256MB UFS aacd0s2f
aacd0s2-4=ufs 524288 /tmp 1

# Rest of FreeBSD partition aacd0s2g
aacd0s2-5=ufs 0 /usr 1

diskLabelEditor

# OK, everything is set.  Do it!
installCommit

# 
# Install some packages at the end.
# 
#package=BitchX-1.0c19_3
#packageAdd

# 
# this last package is special.  It is used to configure the machine.
# it installs several files (like /root/.rhosts) an its installation
# script tweaks several options in /etc/rc.conf
# 
#package=ari-0.0
#packageAdd

# In case of any problem with the script we enable remote access now
and set a temporary root password
command=echo rc_conf_files=/etc/rc.conf /etc/rc.conf.local 
/etc/rc.conf
system
command=echo keymap=danish.iso  /etc/rc.conf
system
command=echo keyrate=fast  /etc/rc.conf
system
command=echo sshd_enable=YES  /etc/rc.conf
system
command=echo 'devilinside' | /usr/sbin/pw usermod -u root -h 0
system

command=/sbin/reboot
system


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


I need help mounting a floppy

2004-03-18 Thread Willy Dingledorf
  
Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: openoffice-1.1.1RC install without jdk

2004-03-18 Thread Dmitry Morozovsky
On Wed, 17 Mar 2004, Lowell Gilbert wrote:

LG Building OpenOffice is a huge effort anyway; the port isn't kidding
LG about needing 4GB free for build space, and it takes a long time.
LG On the system I'm trying to build it on, I have a slow processor and
LG insufficient disk space, so I'm mounting the port and the build space
LG over the network.  I wouldn't be surprised if it takes a week to build.

Yeah, our build machines (P4 2GHz/512M and AthlonXP 2200+) on reasonably fast
ATA drives both spend 10+ hours to build OO 1.1 during local package build
process...

Sincerely,
D.Marck [DM5020, MCK-RIPE, DM3-RIPN]

*** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- [EMAIL PROTECTED] ***

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


Re: Why does `df` lie about free space (it doesn't)

2004-03-18 Thread Kyryll A Mirnenko
Using tunefs -m. You need to be really careful doing this, and read
the man page for tunefs again, particularly the warning about how
lowering this number can trash your filesystem's performance.

  I don't want that, I need to allow using preserved 8% of disk space to a little 
group of non-root users (for ex. postgres  rootty, my unprivileged user), but noone 
more. How do I do this?

PS. You keep on appearing to confuse the notion of free data blocks with
free inodes. They're not the same thing: they are two distinct resources
and your filesystem can run out of either pretty much independently.

  inode(5) descrbes inodes as a table of block addresses kinda FAT but with variable 
block sizes inodes point to. That is.

--
 -  . http://www.ukrpost.net/
IMAP POP3 NNTP RSSNews Unicode.

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


Re: packages question

2004-03-18 Thread Kris Kennaway
On Thu, Mar 18, 2004 at 09:30:34AM +, Matthew Seaman wrote:
 On Thu, Mar 18, 2004 at 10:24:54AM +0100, Christopher Bingham wrote:
 
  If I download the two iso images (1 and 2) of version 5.2.1, 
  will this include all the packages in the ports directory of 
  the ports directory in the ftp mirror I am using? 
 
 No.  There's 10,000+ ports: far more than will fit on two whole CD
 Roms, let alone the spare space after the system stuff has been
 written there.

...and all the packages that are buildable and distributable are
available on the FTP site.

Kris


pgp0.pgp
Description: PGP signature


Re: Why does `df` lie about free space (it doesn't)

2004-03-18 Thread Jan Grant
On Thu, 18 Mar 2004, Kyryll A Mirnenko wrote:

 Using tunefs -m. You need to be really careful doing this, and read
 the man page for tunefs again, particularly the warning about how
 lowering this number can trash your filesystem's performance.

   I don't want that, I need to allow using preserved 8% of disk space
 to a little group of non-root users (for ex. postgres  rootty, my
 unprivileged user), but noone more. How do I do this?

You don't, without hacking filesystem code. The suggestion of another
poster to buy more disk is a good one.

 PS. You keep on appearing to confuse the notion of free data blocks with
 free inodes. They're not the same thing: they are two distinct resources
 and your filesystem can run out of either pretty much independently.

   inode(5) descrbes inodes as a table of block addresses kinda FAT but
 with variable block sizes inodes point to. That is.

It's not really like FAT operation at all; but another responder has
given some detail along these lines.

-- 
jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/
Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/
Theory and practice _are_ the same thing. In theory.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


libidn-0.4.1 on FreeBSD4.8-p17

2004-03-18 Thread Vikash Badal - PCS
Greetings,

I am unable to compile libidn-0.4.1, error message:

Making all in tld
restore=:   backupdir=.am$$   am__cwd=`pwd`  cd .   rm -rf $backupdir  
mkdir $backupdir   for f in ./libidn.info ./libidn.info-[0-9] 
./libidn.info-[0-9][0-9] ./libidn.i[0-9] ./libidn.i[0-9][0-9]; do  if test -f $f; then 
 mv $f $backupdir;  restore=mv;  fi;  done;  cd $am__cwd;  if /bin/sh 
/usr/ports/devel/libidn/work/libidn-0.4.1/missing --run makeinfo   -I .  -o 
./libidn.info ./libidn.texi;  then  rc=0;  cd .;  else  rc=$?;  cd .   $restore 
$backupdir/* `echo ././libidn.info | sed 's|[^/]*$||'`;  fi;  rm -rf $backupdir;  
exit $rc
./libidn.texi:211: @image file `components.txt' (for text) unreadable: No such file or 
directory.
makeinfo: Removing output file `./libidn.info' due to errors; use --force to preserve.
*** Error code 1

Stop in /usr/ports/devel/libidn/work/libidn-0.4.1/doc.
*** Error code 1

please advise

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


Question

2004-03-18 Thread Adam Borntrager
I am very new to this and I have installed the FreeBSD on my computer.
What is the command that you use to launch the GUI that is installed
with this?? (I think it was Xfree86 or Xwindows)
 
Thank you for helping me to learn about this technology.
 
Adam Borntrager
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Tcp patch for 5.1

2004-03-18 Thread Gerd Schweier
Hello,

Sorry - one question -  is there a tcp patch available for i386 5.1 ?

thanx

Gerd Schweier
___

HURRA Communications GmbH  - HRB 19688
Wollgrasweg 27, D-70599 Stuttgart
Tel: +49.711.45 99 94 23, Fax: +49.711.45 99 94 10
mailto:[EMAIL PROTECTED]
http://www.hurra-communications.com
___
Suchmaschinen-Marketing, Direkt-Marketing und Mobile-Marketing 

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


Re: Question

2004-03-18 Thread Bernard El-Hagin
Adam wrote:

I am very new to this and I have installed the FreeBSD on my computer.
What is the command that you use to launch the GUI that is installed
with this?? (I think it was Xfree86 or Xwindows)


Assuming you have everything properly installed you only need to execute
the:


  startx


command. Here's some more info on the subject:


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


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


Re: openoffice-1.1.1RC install without jdk

2004-03-18 Thread Lowell Gilbert
Lowell Gilbert [EMAIL PROTECTED] writes:

 The port is under construction at the moment.  I told is explicitly to
 use my installed java:
  make CONFIGURE_ARGS+=--with-jdk-home=/usr/local/jdk1.4.2
 which solves that problem, but I haven't gotten it all the way built
 yet, so I can't be sure that's all you need to know.
 
 This particular problem seems to be caused by the makefile using
 JDKDIR and JAVAVM before defining them.  It looks like the definitions
 should be able to just get moved up, so I'm trying that, but it hasn't
 gotten far yet.

No, that doesn't do it.  I can't remember why I thought it would,
either; it doesn't actually affect the configure script.

I won't get more time to work on it for a few days, and by then there
may be more changes to the port.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: I need help mounting a floppy

2004-03-18 Thread Lowell Gilbert
From the FAQ document:
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#REMOVABLE-DRIVES
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Zope

2004-03-18 Thread Khairil Yusof
On Wed, 2004-03-17 at 19:07 -0800, Chad Gross wrote:

 I am perplexed as to what I am doing wrong with Zope
 on FreeBSD 4.9. I have managed to get it to start, but
 when I go to localhost:8080

I can't duplicate this problem on any Zope port installs I've done so
far (FreeBSD-5.x) and you should not have to change permissions of any
of the Zope directories.

Can you give the output of /usr/local/www/Zope/var/zope-output ?

Anybody running Zope (from ports) on 4.9?


signature.asc
Description: This is a digitally signed message part


please help me

2004-03-18 Thread siavash mahjoob
hi dear mr or mrs
i have freebsd-5.0 in my computer.i install
qpopper-4.0.5 in my machine. then check with
telnet localhost 110 then install openssl-0.9.7d with
stunnel-3.26.
i use this command   stunnel -d 995 -p
/usr/local/ssl/certs/stunnel.pem -r localhost:pop3.
when i want connect with outlook express,i recive this
message in bash(freebsd mashine):
SSL_read (SSL_ERROR_SYSCALL): connection reset by peer
(45)
please hel me
regards,
Email:[EMAIL PROTECTED]

__
Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
http://mail.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Question

2004-03-18 Thread Jerry McAllister
 
 I am very new to this and I have installed the FreeBSD on my computer.
 What is the command that you use to launch the GUI that is installed
 with this?? (I think it was Xfree86 or Xwindows)
  
 Thank you for helping me to learn about this technology.

Probably you are looking for  startx

But, you must have installed an X manager and configured it properly.
The default is a very basic one called  xwm  I think and I believe it
gets installed by default when you install XFree86.   But, it is very
bare bones.   I prefer AfterStep (along with OpenOffice) for most basic 
stuff like writing programs and reading Email and editing web pages 
because it is quite basic and doesn't get in your way much, but it is a 
little more serviceable than plain xwm.   If I want more of a desktop I 
use KDE which I also install right at the beginning.   You need to 
tinker startx or something to choose between the two if you want to 
switch between them.  Then there is Gnome which is just overkill for 
my tastes.  

You probably will also need to edit /usr/X11R6/lib/X11/xinit/xinitrc
to get things to come up just the way you want.  But, they have simple
default configs that can get you started without editing that right
away. 

So, as long as you installed XFree86 and at least one window manager,
just type  startx and see what happens and go from there.

jerry

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

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


Re: freebsd-questions Digest, Vol 52, Issue 12

2004-03-18 Thread Ben Paley
 I am trying to install xmms.  When I run sysinstall, I first have to
 change the location to something else because 5.0-RELEASE is not there.
 I have been choosing 5.0-CURRENT instead, and that seems to at least get
 me into the list of available packages.

 When I try in install the xmms-1.2.10 package, one of the dependency
 packags fails to install right away. (expat-1.95.6_1)  All it says is
 error code 1 - see debug screen for more info...  How do I find the
 debug screen?

 What am I doing wrong in general?

Are you using sysinstall to install the port from a cd? It's almost certainly 
better in the long run to install the ports collection on your machine (you 
might already have it: look to see if you have /usr/ports and lots of 
subdirectories) and install from the net. That way you can keep the ports 
collection up to date with cvsup and install individual ports with 
portinstall. These things take a little setting up but make life a lot 
easier.

Cheers,
Ben

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


FreeBSD as vmware guest OS and net

2004-03-18 Thread J. W. Ballantine

I have a box with w2k as the primary OS and FreeBSD 4.9-stable installed
as a dual-boot.  I also have vmware 4 installed under w2k with
bsd as the guest OS.  My problem is I can't get bsd to talk to
the network card.  What settings do I need and/or network driver do I
need to set???

Jim


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


Re: Zope

2004-03-18 Thread george donnelly
Khairil Yusof [EMAIL PROTECTED] on 3/18/04 wrote:

On Wed, 2004-03-17 at 19:07 -0800, Chad Gross wrote:

 I am perplexed as to what I am doing wrong with Zope
 on FreeBSD 4.9. I have managed to get it to start, but
 when I go to localhost:8080

I can't duplicate this problem on any Zope port installs I've done so
far (FreeBSD-5.x) and you should not have to change permissions of any
of the Zope directories.

Can you give the output of /usr/local/www/Zope/var/zope-output ?

Anybody running Zope (from ports) on 4.9?

not from ports but then I say you should install it from source. its
./configure --prefix=x ; make ; make install. very easy.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD as vmware guest OS and net

2004-03-18 Thread JAroslav Suchanek
On Thu, Mar 18, 2004 at 09:36:18AM -0500, J. W. Ballantine wrote:
 
 I have a box with w2k as the primary OS and FreeBSD 4.9-stable installed
 as a dual-boot.  I also have vmware 4 installed under w2k with
 bsd as the guest OS.  My problem is I can't get bsd to talk to
 the network card.  What settings do I need and/or network driver do I
 need to set???

I think, there are no special settings. I have network card in 'Bridged'
mode and default installation of FreeBSD. Network card has been detected as:

lnc0: PCNet/PCI Ethernet adapter port 0x10c0-0x10df irq 11 at device 16.0 on pci0
lnc0: PCnet-PCI II address 00:0c:29:e7:5c:66

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

-- 
Jaroslav Suchanek
GRISOFT, s.r.o.
http://www.grisoft.com
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Server automatically Shuts down.

2004-03-18 Thread samy lancher
Last night the system again crashed. Are there any other ways to redude power load on 
the system.?
 
Thanks,
Naveen.

JJB [EMAIL PROTECTED] wrote:
Since your system did not crash with case open, the odds just got
much higher that problem is heat related.
Clean the dust off of motherboard and the inside of the power
supply,
and all fans, and you should be back to normal operating
temperature,
and good to go with case closed.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of samy
lancher
Sent: Wednesday, March 17, 2004 2:40 PM
To: Chris Pressey
Cc: [EMAIL PROTECTED]
Subject: Re: Server automatically Shuts down.

I am not sure how to check auto power off at  option in BIOS.
Yesterday, i let the case open and the system did not crash last
night. I will keep the case open for few more days and see what
happens.

Thanks,
Naveen.
Chris Pressey wrote:
On Tue, 16 Mar 2004 06:33:33 -0800 (PST)
samy lancher wrote:

 My system does not auto reboot. It just crashes as if some one has
 pressed the power off button. I think it is surely some thing to
do
 with power supply. I will open the case and leave for a day. I
will
 also remove one of the CDROM and see what happens.

One simple and obvious thing comes to mind, only because no one has
mentioned it yet:

Does the BIOS on the machine have an auto power off at  option?
And is it active?

-Chris
Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]

Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Help with Hewlett-Packard hp LaserJet 1000 USB PRINTER

2004-03-18 Thread freeman
Hi, all!

Does anybody help me with configure SUBJ printer on my Desktop system.
In the Handbook i didn't find any information about USB printers.
(please give me instructions by mail, because i have only mail
access to Internet).

This is my /var/log/messages:
Mar 18 17:43:24 freedot kernel: ulpt0: Hewlett-Packard hp LaserJet 1000, rev 
1.10/1.20, addr 2, iclass 7/1
Mar 18 17:43:24 freedot kernel: ulpt0: using bi-directional mode
Mar 18 17:47:37 freedot su: freeman to root on /dev/ttyp0
Mar 18 17:50:17 freedot lpd[32492]: lpd startup: logging=0
Mar 18 17:55:55 freedot lpd[32676]: restarting lp
Mar 18 17:55:55 freedot kernel: ulpt0: offline
Mar 18 17:55:55 freedot lpd[32676]: restarting lp
Mar 18 17:55:56 freedot kernel: ulpt0: offline
Mar 18 17:55:56 freedot lpd[32676]: restarting lp
Mar 18 17:55:56 freedot lpd[32676]: lp: job could not be printed 
(cfA011freedot.dot.net)
Mar 18 17:55:57 freedot lpd[32676]: mail sent to user root about job unknown 
on printer lp (FATALERR)
Mar 18 17:56:31 freedot lpd[32698]: restarting lp
Mar 18 17:56:32 freedot last message repeated 3 times
Mar 18 17:56:33 freedot lpd[32698]: lp: job could not be printed 
(cfA012freedot.dot.net)
Mar 18 17:56:33 freedot lpd[32698]: mail sent to user freeman about job 
unknown on printer lp (FATALERR)

and strings for printer in /etc/printcap:
lp|local line printer:\
:sh:\
:lp=/dev/ulpt0:sd=/var/spool/output/lpd:lf=/var/log/lpd-errs:

Thanks in advance!
-- 
..:::..
:: Sincerely yours, freeman! ::
:::)::
:: FreeBSD is power to serve!::
..:::..

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


citrix

2004-03-18 Thread Brian Henning
Greetings:
I am trying to install the citrix client for freebsd.
I went to the site: http://www.citrix.com/download/bin/license.asp?client=linux
and i looked for the citrix_ica-linuxx86-7.00.tar.gz file, but all i could get
was linuxx86.tar.gz.
is this the same file or should I rename this file to
citrix_ica-linuxx86-7.00.tar.gz.

Thanks,

brian

[EMAIL PROTECTED] /usr/ports/net/citrix_ica make
===  Vulnerability check disabled

You have to fetch the file manually after reading and
agreeing to the license at:

http://www.citrix.com/download/bin/license.asp?client=linux

Once linuxx86.tar.gz has been downloaded move it to
/usr/ports/distfiles/citrix_ica-linuxx86-7.00.tar.gz and restart the build.

*** Error code 1

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


portupgrade strangeness

2004-03-18 Thread stan
I suddenly have a bunch of machines where I'mgetting portupgrade failures
on various ports wiht uninstall error.

I've found thta if I manually do a make deintall ; make resiantll
sequence on these, that I cna fix the proble,

However this seesm to be a new behavior. I normally run portupgrarde with
teh -arR -l report) options, so is there a new option or somethinng that
has changed this tools behavior?

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


cdrom mount problem

2004-03-18 Thread Chris
*This message was transferred with a trial version of CommuniGate(tm) Pro*




In summary: the only way to mount my cdrom after burning an ISO is to reboot first.


Prior to 5.2.1-RC1, I was able to burn ISO imaged onto a CDRW using burncd, then later 
mount /cdrom to access the files I burned. With RC1 and now with 5.2.1-RELEASE, a 
strange thing happens:

After a reboot, I can mount /cdrom and access files on the disc. But if I re-burn the 
ISO file, then try to mount /cdrom, I get this:

cd9660: /dev/acd0: Input/output error

BUT... if I reboot THEN try to access that same disk, it works fine.

Thanks,
Chris


_
Email harvesters eat this: [EMAIL PROTECTED]

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


XFree86-4.2.0 ?

2004-03-18 Thread RJ45
Hello,
where could I find binaries of XFree86-4.2.0 ?
actually this is the only one XFree version 4 working on my Alpha
architecture (XP1000)

but on the FreeBSD main site I Cannot find packages other than 4.3.0

or how can I import in the ports a older 4.2.0 version of XFree instead of
newer 4.3.0 ?

thanks

Rick


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


Re: spam scanner install failed

2004-03-18 Thread Gary
On Thu, Mar 18, 2004 at 05:42:34PM +0800 or thereabouts, [EMAIL PROTECTED] wrote:
 I'm trying to Install
 
 Qmail-scanner
 p5-Mail-SpamAssassin
 Amavisd-new
 
 Time-HiRes-1.51.tar.gz
 
 from a whole bunch of ftp sites.  I checked some of the sites
 for example
 ftp://ftp.is.co.za/programming/perl/CPAN/modules/by-module/Time/
 ftp://ftp.chg.ru/pub/lang/perl/CPAN/modules/by-module/Time/
 http://cpan.shellhung.org/modules/by-module/Time/
 
 and saw that this file was nonexistant, only
 Time-HiRes-1.52.tar.gz up to
 Time-HiRes-1.56.tar.gz
 were available.
 
 Is there a way to still install these programs??  I tried installing just
 after doing a #cvsup -g -L 2 /etc/ports-supfile

http://www.cpan.org/misc/cpan-faq.html#How_install_Perl_source
 

-- 
Gary

Your E-Mail has been returned due to insufficient voltage
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: citrix

2004-03-18 Thread Peter Risdon
Brian Henning wrote:

Greetings:
I am trying to install the citrix client for freebsd.
I went to the site: http://www.citrix.com/download/bin/license.asp?client=linux
and i looked for the citrix_ica-linuxx86-7.00.tar.gz file, but all i could get
was linuxx86.tar.gz.
is this the same file or should I rename this file to
citrix_ica-linuxx86-7.00.tar.gz.
 

In the make output you copied into your mail, it says:

Once linuxx86.tar.gz has been downloaded move it to
/usr/ports/distfiles/citrix_ica-linuxx86-7.00.tar.gz and restart the build.
 

Unless I misunderstand you, this answers your question.

PWR.

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


Re: dummynet and adsl

2004-03-18 Thread Luigi Rizzo
On Thu, Mar 18, 2004 at 11:57:28AM +0100, Francis GUDIN wrote:
 Hello everybody,
 
 I'm in the process of setting up a bandwidth control with ipfw and
 dummynet. My connection is done through pppoe on adsl.
 
 In ipfw(8), i found the following:
  If a device name is specified instead of a numeric value, as in
 
ipfw pipe 1 config bw tun0
 
   then the transmit clock is supplied by the specified device.  At
   the moment only the tun(4) device supports this functionality,
   for use in conjunction with ppp(8).
 
 Having two different bandwidth available (up- and downstream), would
 this option work ? Or, is only symetric bw case taken into account

'bw tun0' means that the pipe will transmit a new packet when
the device's (tun0 in this case) transmit queue becomes empty.

In any case the question is irrelevant here because tun0's queue
is drained by the userland process reading from /dev/tun0
and writing onto the output link. With a serial line and no
buffering you could hope that this matches the outbound
bandwidth, but with pppoe on adsl you basically see the
ethernet speed on transmission.

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


Re: cdrom mount problem

2004-03-18 Thread Martijn
Hi chris,

You first have to unmount the cdrom before you can mount
a new cd, you can do that by typing:
umount /cdrom

greets, Martijn

On Thursday 18 March 2004 16:35, Chris wrote:
 *This message was transferred with a trial version of CommuniGate(tm) Pro*




 In summary: the only way to mount my cdrom after burning an ISO is to
 reboot first.


 Prior to 5.2.1-RC1, I was able to burn ISO imaged onto a CDRW using burncd,
 then later mount /cdrom to access the files I burned. With RC1 and now with
 5.2.1-RELEASE, a strange thing happens:

 After a reboot, I can mount /cdrom and access files on the disc. But if I
 re-burn the ISO file, then try to mount /cdrom, I get this:

 cd9660: /dev/acd0: Input/output error

 BUT... if I reboot THEN try to access that same disk, it works fine.

 Thanks,
 Chris


 _
 Email harvesters eat this: [EMAIL PROTECTED]

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


Re: Syslog

2004-03-18 Thread Joshua Lokken
* JJB [EMAIL PROTECTED] [2004-03-18 07:30]:
 *.err;kern.debug;auth.notice;mail.crit  /dev/console
 
 That would be this
 
 *.err;kern.none;auth.none;mail.none  /dev/console
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Doug Hardie
 Sent: Wednesday, March 17, 2004 7:57 PM
 To: [EMAIL PROTECTED]
 Subject: Syslog
 
 FreeBSD 4.6.  I have a server running that logs to syslog for
 recording
 interesting information.  It uses LOG_DAEMON facility so give the
 standard syslog.conf entries of:
 
 *.err;kern.debug;auth.notice;mail.crit  /dev/console
 *.notice;kern.debug;lpr.info;mail.crit;news.err /var/log/messages
 
 all of those records go to both console and messages in addition to
 the
 desire file specified with a ! statement.  Is there a way to modify
 the
 statements above such that log entries from the specified program
 are
 not sent to console or messages?  I couldn't find anything in the
 man
 pages on this.  I had thought I could add a !prog after mail.crit
 in
 the first entry to do that, but it appears that my memory is
 corrupt.


This is more of a question, but could the lines above simply
be commented out?

Top-posting makes list mails a bit difficult to follow
logically; please do not top-post.

-- 
Joshua

Women professionals do tend to over-compensate.
-- Dr. Elizabeth Dehaver, Where No Man Has Gone Before,
   stardate 1312.9.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cdrom mount problem

2004-03-18 Thread Lowell Gilbert
Chris [EMAIL PROTECTED] writes:

 *This message was transferred with a trial version of CommuniGate(tm) Pro*
 
 
 
 
 In summary: the only way to mount my cdrom after burning an ISO is to reboot first.
 
 
 Prior to 5.2.1-RC1, I was able to burn ISO imaged onto a CDRW using burncd, then 
 later mount /cdrom to access the files I burned. With RC1 and now with 
 5.2.1-RELEASE, a strange thing happens:
 
 After a reboot, I can mount /cdrom and access files on the disc. But if I re-burn 
 the ISO file, then try to mount /cdrom, I get this: 
 
 cd9660: /dev/acd0: Input/output error
 
 BUT... if I reboot THEN try to access that same disk, it works fine.

Try ejecting and re-loading the disk. 
I've seen some firmware that gets confused easily in these cases...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Question

2004-03-18 Thread carlos.rocha
Hi,
Does FreeBSD 4.9 support the Adaptec SCSI Controller 29320R and A2120S?

Thank you for your attention,
Bye

Carlos Rocha
MACTEK - Matosinhos (Portugal)
[EMAIL PROTECTED]


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


Passing make parameters

2004-03-18 Thread Ben Paley
Hello,

I just recently read somewhere of a file where I can put make parameters for 
any programs, so that, for instance, I don't have to remember to add 
WITH_MOTIF=YES every time I build kdebase...

...but I've forgotten what it is, or where I read about it. Anyone know?

Cheers,
Ben

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


Re: Perl won't compile

2004-03-18 Thread Joshua Lokken
* Shawn Ramsey [EMAIL PROTECTED] [2004-03-18 07:31]:
 I've got a 4.7-STABLE system, and perl or the port won't compile... Does anyone have 
 any clue what the problem might be? Haven't had any other issues compiling... other 
 than Base 64 for perl. If I try to install the Base 64 module for the currently 
 installed perl(5.6.0) it bombs with the same error :
 
 


This may not be the answer you are looking for, but you might
try upgrading your system to 4.9 or 4-STABLE and having another
go at it.

-- 
Joshua

We have the right to survive!
Not to be killing others.
-- Deela and Kirk, Wink of An Eye, stardate 5710.5
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: dummynet and adsl

2004-03-18 Thread Francis GUDIN
On Thursday, 18 March 2004 at  8:08:49 -0800, Luigi Rizzo wrote :
 On Thu, Mar 18, 2004 at 11:57:28AM +0100, Francis GUDIN wrote:
  Hello everybody,
  
  I'm in the process of setting up a bandwidth control with ipfw and
  dummynet. My connection is done through pppoe on adsl.
  
  In ipfw(8), i found the following:
   If a device name is specified instead of a numeric value, as in
  
 ipfw pipe 1 config bw tun0
  
then the transmit clock is supplied by the specified device.  At
the moment only the tun(4) device supports this functionality,
for use in conjunction with ppp(8).
  
  Having two different bandwidth available (up- and downstream), would
  this option work ? Or, is only symetric bw case taken into account
 
 'bw tun0' means that the pipe will transmit a new packet when
 the device's (tun0 in this case) transmit queue becomes empty.
 
 In any case the question is irrelevant here because tun0's queue
 is drained by the userland process reading from /dev/tun0
 and writing onto the output link. With a serial line and no
 buffering you could hope that this matches the outbound
 bandwidth, but with pppoe on adsl you basically see the
 ethernet speed on transmission.
 
   cheers
   luigi
 

Thank you ! Things are much clearer to me, now. Back to work !

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


Re: openSSL certificate key's

2004-03-18 Thread Shaun T. Erickson
Matthew Seaman wrote:

On Thu, Mar 18, 2004 at 09:15:28AM +, Matthew Seaman wrote:

NB. Verb. Sap.  Some applications (*cough* Outlook *cough*) get upset
when the OU in the certificate is the same as the OU of your
certificate authority.


Ahem.  The CN or Common Name is what I should have said there.  Ooops.
Or, spend $49.00 and get a real SSL Cert from InstantSSL, like I did. 
Works like a charm. No, I don't work for them, and am not associated 
with them in any way, other than as a happy customer. Their cert was 
cheap enough to make getting a real one worth it.

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


Re: How to avoid booting PC to reconnect broadband

2004-03-18 Thread Joshua Lokken
* Stephen Liu [EMAIL PROTECTED] [2004-03-18 07:30]:
 Hi folks,
 
 FreeBSD 5.2
 ADSL, pppoe
 Connection: via ADSL modem
 
 If broadband connection dies accidentally due to unsecured plug how to 
 re-activate it avoiding rebooting PC.  Occasionally re-securing the plug and 
 waiting for a while the broadband connection will reactivate automatically.
 
 kindly advise.  TIA
 
 B.R.
 Stephen Liu


Again, all very thoroughly explained in the included
documentation.  As suggested, 'man ppp' and 

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ppp-and-slip.html

Just so you know, the handbook and manpages are generally
included in the system install, unless you explicitly left
them out.


-- 
Joshua

It would seem that evil retreats when forcibly confronted
-- Yarnek of Excalbia, The Savage Curtain, stardate 5906.5
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mozilla + reallayer plugin: how to get this work?

2004-03-18 Thread Rob


Hi,

I have following installed on STABLE PC:

mozilla-1.6_3,2
linux-flashplugin-6.0r79_1
linuxpluginwrapper-20040310_1
mplayerplug-in-2.45
linux-realplayer-8.cs2_4
I have following in /usr/X11R6/lib/browser_plugins :

raclass.zip - /usr/local/lib/RealPlayer8/raclass.zip
rpnp.so - /usr/local/lib/RealPlayer8/rpnp.so
To no avail; realplay plugin does not work with
mozilla. Any more hints?
Thanks,
Rob.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cdrom mount problem

2004-03-18 Thread Joshua Lokken
* Martijn [EMAIL PROTECTED] [2004-03-18 08:14]:
 Hi chris,
 
 You first have to unmount the cdrom before you can mount
 a new cd, you can do that by typing:
 umount /cdrom
 
 greets, Martijn
 
 On Thursday 18 March 2004 16:35, Chris wrote:
  *This message was transferred with a trial version of CommuniGate(tm) Pro*
 
 
 
 
  In summary: the only way to mount my cdrom after burning an ISO is to
  reboot first.
 
 
  Prior to 5.2.1-RC1, I was able to burn ISO imaged onto a CDRW using burncd,
  then later mount /cdrom to access the files I burned. With RC1 and now with
  5.2.1-RELEASE, a strange thing happens:
 
  After a reboot, I can mount /cdrom and access files on the disc. But if I
  re-burn the ISO file, then try to mount /cdrom, I get this:
 
  cd9660: /dev/acd0: Input/output error
 
  BUT... if I reboot THEN try to access that same disk, it works fine.
 
  Thanks,
  Chris


Please don't top-post.  I have used burncd since 4.5, and I have
never mounted a CD-R to burn it.  I'm sorry, I have no light to
shed on your problem, just wanted to keep your confusion to a
minimum.  Again, burning a CD-R under FreeBSD with burncd does
NOT involve mounting the drive first.

-- 
Joshua

Beauty is transitory.
Beauty survives.
-- Spock and Kirk, That Which Survives, stardate unknown
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Question

2004-03-18 Thread Terry L. Tyson Jr.
On Thu, Mar 18, 2004 at 04:17:14PM +, carlos.rocha wrote:
 Hi,
 Does FreeBSD 4.9 support the Adaptec SCSI Controller 29320R and A2120S?
 
 Thank you for your attention,
 Bye

Look in:
http://www.FreeBSD.org/releases/4.9R/hardware.html

--
Terry L. Tyson Jr.
Baytown, Texas USA
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


gnomemeeting still marked as forbidden but culprit ports fixed?

2004-03-18 Thread Wayne Sierke
As I was updating my ports I got gnomemeeting failing as forbidden with
a reference to:
http://people.freebsd.org/~eik/portaudit/27c331d5-64c7-11d8-80e3-0020ed76ef5a.html

which says:

Affects:
  * pwlib 1.6.0
  * asterisk =0.7.2
  * openh323 =1.12.0_2

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


Re: XFree86-4.2.0 ?

2004-03-18 Thread Joshua Lokken
* RJ45 [EMAIL PROTECTED] [2004-03-18 07:53]:
 Hello,
 where could I find binaries of XFree86-4.2.0 ?
 actually this is the only one XFree version 4 working on my Alpha
 architecture (XP1000)
 
 but on the FreeBSD main site I Cannot find packages other than 4.3.0
 
 or how can I import in the ports a older 4.2.0 version of XFree instead of
 newer 4.3.0 ?
 
 thanks
 
 Rick



You can download the source code from http://xfree86.org/downloads.html

HTH,


-- 
Joshua

No problem is insoluble.
-- Dr. Janet Wallace, The Deadly Years, stardate 3479.4
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Passing make parameters

2004-03-18 Thread Joshua Lokken
* Ben Paley [EMAIL PROTECTED] [2004-03-18 08:35]:
 Hello,
 
 I just recently read somewhere of a file where I can put make parameters for 
 any programs, so that, for instance, I don't have to remember to add 
 WITH_MOTIF=YES every time I build kdebase...
 
 ...but I've forgotten what it is, or where I read about it. Anyone know?
 
 Cheers,
 Ben
 


/usr/local/etc/pkgtools.conf

I think that's what you're looking for.

-- 
Joshua

Youth doesn't excuse everything.
-- Dr. Janice Lester (in Kirk's body), Turnabout Intruder,
   stardate 5928.5.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Tcp patch for 5.1

2004-03-18 Thread Chris
On Thursday 18 March 2004 03:29 am, Gerd Schweier wrote:
 Hello,

 Sorry - one question -  is there a tcp patch available for i386 5.1 ?

 thanx

 Gerd Schweier

Goto www.FreeBSD.org - Look to the bottom right hand corner.
There is a heading called Security Advisories.

You will find all your needed info there. In addition, you could subscribe to 
the [EMAIL PROTECTED] mailing list.

OR -  http://lists.freebsd.org/mailman/listinfo

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


Re: cd-rom drive on parallel port

2004-03-18 Thread UBM
On Fri, 12 Mar 2004 12:45:39 +0100
Marc UBM Bocklet [EMAIL PROTECTED] wrote:

 
 Hiho! :-)
 
 I've an old 8x cdrom that gets connected to a parallel port. It's
 working under DOS 6.2 with a special driver but there is no sign of it
 in the dmesg or anywhere else under FreeBSD 5.2.1.
 
 Is this kind of device supported under FreeBSD?
 I've checked the man pages and google, but found nothing on the
 subject.
 
 It's not really important to get it to work, I'm mainly curious ;-)
 
 Thanks in advance.

Nobody on this list ever tried using one? :-)

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


question on OpenSSL

2004-03-18 Thread J.D. Bronson
I noticed of course the patch out for OpenSSL...is there anyway
to patch openssl and not have to make world?
I have done a tremendous amount of custom binary installs and know that 
this would blow up if I tried it.

My other OSs that I use (like Solaris) - I can simply recompile the new 
OpenSSL tarball and install it. All of my apps use 'shared' files, so that 
works out perfect.

Any thoughts on this please?

Thanks.





--
J.D. Bronson
Aurora Health Care // Information Services // Milwaukee, WI USA
Office: 414.978.8282 // Email: [EMAIL PROTECTED] // Pager: 414.314.8282
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re[2]: cdrom mount problem

2004-03-18 Thread Chris
*This message was transferred with a trial version of CommuniGate(tm) Pro*



 In summary: the only way to mount my cdrom after burning an ISO
 is to reboot first.


Try ejecting and re-loading the disk.
I've seen some firmware that gets confused easily in these cases...

I use the CDRW to burn backup files every night via cron, so driving to the machine 
(45 min away) and cycling the drive is not feasible. Further, this was never an issue 
with 4.x releases, and if I'm not mistaken, 5.1 either. I think this started somewhere 
with 5.2 and beyond.



You first have to unmount the cdrom before you can mount
a new cd, you can do that by typing:
umount /cdrom

Normally it's not in a mounted state after burning, as best I recall. But I've tried 
that several times anyway, to no avail. Thanks for the suggestion.



Looks like bug. Submit problem report on it, is only way it will be
looked at and fixed by 5.x development team.

This is possible, I guess. Makes since, as this problem cropped up after upgrading. I 
could be wrong, but it seems that since mount does not do anything different from the 
point just before reboot and just after reboot, perhaps it's more likely the burncd 
command not releasing the cdrw drive properly, or something like that...

Thanks,
Chris


_
Email harvesters eat this: [EMAIL PROTECTED]

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


Re: gnomemeeting still marked as forbidden but culprit ports fixed?

2004-03-18 Thread Wayne Sierke
Apologies for previous post; finger trouble in evolution...

On Fri, 2004-03-19 at 03:32, Wayne Sierke wrote:
 As I was updating my ports I got gnomemeeting failing as forbidden with
 a reference to:
 http://people.freebsd.org/~eik/portaudit/27c331d5-64c7-11d8-80e3-0020ed76ef5a.html
 
 which says:
 
 Affects:
   * pwlib 1.6.0
   * asterisk =0.7.2
   * openh323 =1.12.0_2
 

Well, I was about to say that the ports versions of openh323 are at
1.12.0_3 and pwlib at 1.6.0 but when I just went to generate the version
text to copy into this message, now I'm only seeing pwlib at 1.5.0_4, so
I'm not sure what happened (probably I mis-read the 5 for a 6).

The other part of the query was that I couldn't find a dependency of
gnomemeeting on net/asterisk (asterisk is still at 0.7.2), but that
seems to be moot now although I'm still interested to hear suggested
techniques for discovering dependencies, ie. how could I confirm a
requirement for asterisk by the gnomemeeting port? If the answer to that
is something like: portupgrade -Rn the next question is: how do the -n
and -f switches interact (since the port is actually installed I need to
use -f, does -n override everything? I guess the alternative is to
deinstall gnomemeeting first.)

Sorry for the noise.




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


Install problems

2004-03-18 Thread Darryl Hoar
I have a computer that I have had Freebsd on previously.  I recently
re-installed 5.1-release on it as I was going to make it a firewall.
Well, I pulled one of the nic out, and have been trying to do a 
full install from ftp.

So,
I boot using the (2) floppies.  Go through the standard install
(blow away partition, create, etc).  When I get to the media
source and choose FTP, then selected the default ftp.freebsd.org.

I tries, and comes back to the media selection screen.  I have 
tried (last night) all the USA ftp servers with the same result.
Tried a different NIC.  Same result.  Tried a different port on
my switch.  Same result.  I can see it talking as the activity lights
are blinking.  I am configuring the NIC with a static internal
IP of 192.168.1.77 (my internal LAN uses 192.168.1.X).  I set
the gateway IP to my gateway (192.168.1.75).

All my machines can see the internet and each other (except
this box I'm working on).

Any ideas on the culprit ?

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


Re: portupgrade strangeness

2004-03-18 Thread Peter Ulrich Kruppa
On Thu, 18 Mar 2004, stan wrote:

 I suddenly have a bunch of machines where I'mgetting portupgrade failures
 on various ports wiht uninstall error.

 I've found thta if I manually do a make deintall ; make resiantll
 sequence on these, that I cna fix the proble,
Please mind: I am not sure about the reasons of this behaviour,
but I had the same problem. If you have a look at
/usr/ports/UPDATING you will find some changes that might affect
your system:
- ruby/portupgrade
- expat2

Regards,

Uli.




 However this seesm to be a new behavior. I normally run portupgrarde with
 teh -arR -l report) options, so is there a new option or somethinng that
 has changed this tools behavior?

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


+---+
|Peter Ulrich Kruppa|
| Wuppertal |
|  Germany  |
+---+
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


John The Ripper?

2004-03-18 Thread Eric F Crist
Hello list,

Does anyone know the best way to execute john the ripper against freebsd 
password files?  I'm testing the strength of my own passwords and have never 
used this software for.  The way it looks to me, I need to obtain a 
dictionary file, or pound on the keyboard to have john start guessing 
passwords.

Thanks for your help.
-- 
Eric F Crist
AdTech Integrated Systems, Inc
(612) 998-3588


pgp0.pgp
Description: signature


Re: Zope

2004-03-18 Thread Chad Gross
Thank you for your assistence, I managed to figure out
what my problem was. It turns out zope must be started
as root. I was starting it as another user which is
what Zope.org suggests to do. I guess I have to change
ownership though for the rest of the files to that
user in order to be able to run it as a different
user. I should be able to figure out the rest of this
Zope beast. Again I appreciate the quick responses.

Thank you,

Chad G. 

--- Khairil Yusof [EMAIL PROTECTED] wrote:
 On Wed, 2004-03-17 at 19:07 -0800, Chad Gross wrote:
 
  I am perplexed as to what I am doing wrong with
 Zope
  on FreeBSD 4.9. I have managed to get it to start,
 but
  when I go to localhost:8080
 
 I can't duplicate this problem on any Zope port
 installs I've done so
 far (FreeBSD-5.x) and you should not have to change
 permissions of any
 of the Zope directories.
 
 Can you give the output of
 /usr/local/www/Zope/var/zope-output ?
 
 Anybody running Zope (from ports) on 4.9?
 

 ATTACHMENT part 2 application/pgp-signature
name=signature.asc



=
Chad Gross
[EMAIL PROTECTED]
Within the mind you can find the meaning to your existance!

__
Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
http://mail.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: uptime wrong?

2004-03-18 Thread Spades
Hi,

My box has been up for 50+ days, however uptime only
shows always less than 2:00 hrs.

Any idea?

 5:59PM  up  1:55, 1 user, load averages: 0.00, 0.00, 0.00

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


Re: question on OpenSSL

2004-03-18 Thread Chris
On Thursday 18 March 2004 11:23 am, J.D. Bronson wrote:
 I noticed of course the patch out for OpenSSL...is there anyway
 to patch openssl and not have to make world?

 I have done a tremendous amount of custom binary installs and know that
 this would blow up if I tried it.

 My other OSs that I use (like Solaris) - I can simply recompile the new
 OpenSSL tarball and install it. All of my apps use 'shared' files, so that
 works out perfect.

 Any thoughts on this please?


If you did not update your src, you might consider looking into 
freebsd-update.  From what I hear, it updates only the binaries.

it's in /usr/ports/security/freebsd-update

And, from the pkd-descr:
more pkg-descr 
This is the client half of the FreeBSD Update system; it fetches and
applies binary security updates.

WWW: http://www.daemonology.net/freebsd-update/

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


Re: Question

2004-03-18 Thread Jud

On Thu, 18 Mar 2004 09:21:52 -0500 (EST), Jerry McAllister
[EMAIL PROTECTED] said:
  
  I am very new to this and I have installed the FreeBSD on my computer.
  What is the command that you use to launch the GUI that is installed
  with this?? (I think it was Xfree86 or Xwindows)
   
  Thank you for helping me to learn about this technology.
 
 Probably you are looking for  startx
 
 But, you must have installed an X manager and configured it properly.
 The default is a very basic one called  xwm  I think and I believe it
 gets installed by default when you install XFree86.   But, it is very
 bare bones.   I prefer AfterStep (along with OpenOffice) for most basic 
 stuff like writing programs and reading Email and editing web pages 
 because it is quite basic and doesn't get in your way much, but it is a 
 little more serviceable than plain xwm.   If I want more of a desktop I 
 use KDE which I also install right at the beginning.   You need to 
 tinker startx or something to choose between the two if you want to 
 switch between them.  Then there is Gnome which is just overkill for 
 my tastes.  
 
 You probably will also need to edit /usr/X11R6/lib/X11/xinit/xinitrc
 to get things to come up just the way you want.  But, they have simple
 default configs that can get you started without editing that right
 away. 
 
 So, as long as you installed XFree86 and at least one window manager,
 just type  startx and see what happens and go from there.

I've found URL:
http://www.onlamp.com/pub/a/bsd/2000/06/21/FreeBSD_Basics.html to be
very helpful in outlining the steps to follow.

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


Re: uptime wrong?

2004-03-18 Thread Dan Rue
On Fri, Mar 19, 2004 at 01:42:01AM +0800, Spades wrote:
 Hi,
 
 My box has been up for 50+ days, however uptime only
 shows always less than 2:00 hrs.
 
 Any idea?
 
  5:59PM  up  1:55, 1 user, load averages: 0.00, 0.00, 0.00
 
 Thanks.
Perhaps your box rebooted and you didn't know it?  Look at dmesg and not
the timestamp of the last boot.  That should tell ya.  If your last boot
really wasn't 2 hours ago, I dunno.

If your server is rebooting periodically, make sure you have good ram
and cooling.. 

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


Re: Install problems

2004-03-18 Thread Peter Risdon
Darryl Hoar wrote:

I have a computer that I have had Freebsd on previously.  I recently
re-installed 5.1-release on it as I was going to make it a firewall.
Well, I pulled one of the nic out, and have been trying to do a 
full install from ftp.

So,
I boot using the (2) floppies.  Go through the standard install
(blow away partition, create, etc).  When I get to the media
source and choose FTP, then selected the default ftp.freebsd.org.
 

Have you tried passive ftp?

PWR.

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


Root password not responding

2004-03-18 Thread tamx5
Alright I have recently installed BSD onto my 
computer as one of the OS systems to dual boot.  
However, recently the root usner name and password, 
when entered correctly or incorrectly, does not 
login.  It gives me the message of Incorrect password 
or usnername.  Why has this suddenly started 
occurring and how do I fix this?
Thanks
Costomer


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


Re: Root password not responding

2004-03-18 Thread Remko Lodder
Hit him, perhaps he responds then :-)

No Serious, it could mean a lot of things,
did you try just entering from the login prompt?
Login: root
Password: Hit enter here
You might accidently changed it, someone might have changed it, it was 
unset, you were toying with vipw, and dozens options more ;-)

Perhaps you should boot into single user mode, remount the / (readwrite) 
and use passwd root

BTW: Where are you seeing this message? Remote ROOT logins are denied by 
default..

Cheers

[EMAIL PROTECTED] wrote:

Alright I have recently installed BSD onto my 
computer as one of the OS systems to dual boot.  
However, recently the root usner name and password, 
when entered correctly or incorrectly, does not 
login.  It gives me the message of Incorrect password 
or usnername.  Why has this suddenly started 
occurring and how do I fix this?
Thanks
Costomer

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


Downgrading 4.9-stable to 4.9-release-p3

2004-03-18 Thread Dan Rue
I upgraded some servers to 4.9-stable a few weeks ago, not realizing
that I really wanted releng_4_9.  Since I have to apply this openssl
fix anyway, I thought I could go from 4.9-stable to releng_4_9 no
problem.  The alternative, as I see it, is to wait for 4.10 to come and
upgrade to that.  Am I going to run into problems going from 4.9-stable
to releng_4_9?  

If I can sneak in a second question.  With this openssl fix, couldn't I
just apply the patch, cd /usr/src/crypto/openssl  make install ?
Instead of the recommended buildworld fiasco?

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


Re: Downgrading 4.9-stable to 4.9-release-p3

2004-03-18 Thread Chuck Swiger
Dan Rue wrote:
Am I going to run into problems going from 4.9-stable
to releng_4_9?  
Nope-- this shouldn't be any problem.

If I can sneak in a second question.  With this openssl fix, couldn't I
just apply the patch, cd /usr/src/crypto/openssl  make install ?
Instead of the recommended buildworld fiasco?
Certainly you could do so, but the security fix would only apply to programs 
which dynamicly link the OpenSSL library.  In order to fix any staticly linked 
binaries, you'd need to recompile them as well, which is why the buildworld 
procedure is generally recommended.

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


RE: Root password not responding

2004-03-18 Thread Yoo, Gene
Are you having problem when using ssh or from the console?

snip

Alright I have recently installed BSD onto my computer as one of the OS
systems to dual boot.  
However, recently the root usner name and password, when entered
correctly or incorrectly, does not login.  It gives me the message of
Incorrect password or usnername.  Why has this suddenly started
occurring and how do I fix this?
Thanks
Costomer


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


Re: XFree86-4.2.0 ?

2004-03-18 Thread RJ45
I know but it is a pain in the ass.
The source code without FreeBSD/alpha specific patches is pretty
unusable

Rick


On Thu, 18 Mar 2004, Joshua Lokken wrote:

 * RJ45 [EMAIL PROTECTED] [2004-03-18 07:53]:
  Hello,
  where could I find binaries of XFree86-4.2.0 ?
  actually this is the only one XFree version 4 working on my Alpha
  architecture (XP1000)
  
  but on the FreeBSD main site I Cannot find packages other than 4.3.0
  
  or how can I import in the ports a older 4.2.0 version of XFree instead of
  newer 4.3.0 ?
  
  thanks
  
  Rick
 
 
 
 You can download the source code from http://xfree86.org/downloads.html
 
 HTH,
 
 
 -- 
 Joshua
 
 No problem is insoluble.
   -- Dr. Janet Wallace, The Deadly Years, stardate 3479.4
 

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


Re: Root password not responding

2004-03-18 Thread Chuck Swiger
Yoo, Gene wrote:
However, recently the root usner name and password, when entered
correctly or incorrectly, does not login.  It gives me the message of
Incorrect password or usnername.  Why has this suddenly started
occurring and how do I fix this?
Change the line containing PermitRootLogin to yes in /etc/ssh/sshd_config, 
and restart sshd on that machine.

It's better from the standpoint of security to always log in as a normal user 
and su (or run sudo), which is why root login via SSH is disabled by default. 
 However, there are circumstances where logging in as root is convenient...

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


Re: Downgrading 4.9-stable to 4.9-release-p3

2004-03-18 Thread Kent Stewart
On Thursday 18 March 2004 10:09 am, Dan Rue wrote:
 I upgraded some servers to 4.9-stable a few weeks ago, not realizing
 that I really wanted releng_4_9.  Since I have to apply this openssl
 fix anyway, I thought I could go from 4.9-stable to releng_4_9 no
 problem.  The alternative, as I see it, is to wait for 4.10 to come
 and upgrade to that.  Am I going to run into problems going from
 4.9-stable to releng_4_9?

It would appear to me that you are fixing something that isn't broken.


 If I can sneak in a second question.  With this openssl fix, couldn't
 I just apply the patch, cd /usr/src/crypto/openssl  make install ?
 Instead of the recommended buildworld fiasco?


How are you going to include the changed libraries in modules you don't 
rebuild? The advisory was even more specific, i.e., rebuild all ports 
that use OpenSSL.

Kent

-- 
Kent Stewart
Richland, WA

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


Re: John The Ripper?

2004-03-18 Thread Aaron Peterson
 Does anyone know the best way to execute john the ripper against freebsd
 password files?  I'm testing the strength of my own passwords and have
 never
 used this software for.  The way it looks to me, I need to obtain a
 dictionary file, or pound on the keyboard to have john start guessing
 passwords.

you will need a merged (old style) password file to give john, and i
believe there are some easy programs you can run as root to accomplish
this (although i don't know their names off hand).  What i mean is
generally these days most unix like systems have a password file without
actual password hashes in them that are world readable, and a separate
file/db containing the password hashes for each account that is only
readable by root.  they must be merged into one file for john to crack. 
then i think it's a simple as typing 'john passwordfile' if you want brute
force rather than dictionary.

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


Re: Downgrading 4.9-stable to 4.9-release-p3

2004-03-18 Thread Shaun T. Erickson
Kent Stewart wrote:

How are you going to include the changed libraries in modules you don't 
rebuild? The advisory was even more specific, i.e., rebuild all ports 
that use OpenSSL.
That's not exactly what it said. It said to rebuild all statically 
linked ports and 3rd-party apps:

Note that any statically linked applications that are not part of the
base system (i.e. from the Ports Collection or other 3rd-party sources)
must be recompiled.
Dynamically linked programs do not have to be rebuilt.

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


Spam? FreeBSD Install Guide Official Launch News release (fwd)

2004-03-18 Thread Rus Foster
Anyone else recieve this Spam?

Abuse reports filed..


-- 
e: [EMAIL PROTECTED]
t: 1-888-327-6330
www.jvds.com - Root on your own box
www.vpscolo.com - Your next hosting company

-- Forwarded message --
Date: Thu, 18 Mar 2004 13:50:42 -0500
From: Sales [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: FreeBSD Install Guide Official Launch News release


Dear FreeBSD friend

During the pass 3 years I have answered your questions on the
FreeBSD questions mailing list. A pattern emerged with common questions
about post install configuration, Firewalling, and private LAN setup.
To address this reoccurring need,

I am proud to officially announce the launch of the

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


Re: FreeBSD Install Guide Official Launch News release

2004-03-18 Thread Peter Risdon
Sales wrote:

Dear FreeBSD friend  

During the pass 3 years I have answered your questions on the 
FreeBSD questions mailing list. A pattern emerged with common questions 
about post install configuration, Firewalling, and private LAN setup. 
To address this reoccurring need,

I am proud to officially announce the launch of the

   FreeBSD 4.9 Stable Install Guide.

 Web Site

WWW.A1POWERUSER.COM
 

This is an abuse of your list membership.

PWR.

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


passwd problem

2004-03-18 Thread Peter Svec
Hi,

my problem:

passwd
Changing local password for user
Old Password:
passwd: sorry

I type right password. Where is error 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: passwd problem

2004-03-18 Thread Remko Lodder
For what i know is that this error is given when you type the wrong 
password...



Peter Svec wrote:

Hi,

my problem:


passwd
Changing local password for user
Old Password:
passwd: sorry
I type right password. Where is error 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Demande de conseille

2004-03-18 Thread jonathan13
Bonjour
Je voulais savoir quel version de freebsd me conseillez vous pour un pentium 1 233 64 
Mb vive ?

Merci d'avance

-
Internet simplement moins cher avec Tele2 : http://www.tele2.fr
-

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


Re: Tcp patch for 5.1

2004-03-18 Thread Matthew Seaman
On Thu, Mar 18, 2004 at 10:29:48AM +0100, Gerd Schweier wrote:

 Sorry - one question -  is there a tcp patch available for i386 5.1 ?

If you mean to the out-of-sequence TCP packets DOS, then yes.  URLs
for patches and other instructions for securing RELENG_5_1 and
RELENG_4_7 were added to FreeBSD-SA-04:04.tcp.asc yesterday.  See:

ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-04:04.tcp.asc

You're advised to upgrade from 5.1 as soon as may be, since it's
no-longer an officially supported early-adopter release.  There's no
guarrantee that patches for unsupported releases will be forthcoming
in future, or that they will appear in a timely manner.

Cheers,

Matthew

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


pgp0.pgp
Description: PGP signature


Re: Spam? FreeBSD Install Guide Official Launch News release (fwd)

2004-03-18 Thread Jez Hancock
On Thu, Mar 18, 2004 at 07:02:55PM +, Rus Foster wrote:
 Anyone else recieve this Spam?
Yes.

 Abuse reports filed..
Ditto. 

-- 
Jez Hancock
 - System Administrator / PHP Developer

http://munk.nu/
http://jez.hancock-family.com/  - Another FreeBSD Diary
http://ipfwstats.sf.net/- ipfw peruser traffic logging
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: spam scanner install failed

2004-03-18 Thread Matthew Seaman
On Thu, Mar 18, 2004 at 05:42:34PM +0800, [EMAIL PROTECTED] wrote:

 Is there a way to still install these programs??  I tried installing just
 after doing a #cvsup -g -L 2 /etc/ports-supfile

Did you do a 'make index' after cvsup'ing? As p5-Time-HiRes is
currently at version 1.55 in ports.

Cheers,

Matthew

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


pgp0.pgp
Description: PGP signature


Re: XFree86-4.2.0 ?

2004-03-18 Thread Vulpes Velox
On Thu, 18 Mar 2004 11:42:14 -0700 (MST)
RJ45 [EMAIL PROTECTED] wrote:

 I know but it is a pain in the ass.
 The source code without FreeBSD/alpha specific patches is pretty
 unusable

No clue about how to go about using it, what about portdowngrade in
the sysutil dir?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Spam? FreeBSD Install Guide Official Launch News release (fwd)

2004-03-18 Thread Joshua Lokken
* Rus Foster [EMAIL PROTECTED] [2004-03-18 11:02]:
 Anyone else recieve this Spam?
 
 Abuse reports filed..
 
 
 -- 
 e: [EMAIL PROTECTED]
 t: 1-888-327-6330
 www.jvds.com - Root on your own box
 www.vpscolo.com - Your next hosting company
 
 -- Forwarded message --
 Date: Thu, 18 Mar 2004 13:50:42 -0500
 From: Sales [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: FreeBSD Install Guide Official Launch News release
 
 
 Dear FreeBSD friend
 
 During the pass 3 years I have answered your questions on the
 FreeBSD questions mailing list. A pattern emerged with common questions
 about post install configuration, Firewalling, and private LAN setup.
 To address this reoccurring need,
 
 I am proud to officially announce the launch of the
 
 snip


This lame-o (a1poweruser), I don't remember his 'name'...
has spammed the list before, and likely will again.  Certainly
his domain should be listed on an rbl somewhere...  Is it
possible for a list maintainer to give this guy an ulitmatum,
ie. 'stop spamming the list, or lose it...'  not that that 
would make him stop, but would give you reason to get rid of
him if he does not comply.


-- 
Joshua

We fight only when there is no other choice.  We prefer the ways of
peaceful contact.
-- Kirk, Spectre of the Gun, stardate 4385.3
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Demande de conseille

2004-03-18 Thread Remko Lodder
Can you translate that to English please

If you were asking : Does it run on a Pention 1 233Mhz with 64mb ram?
Yes it works , perhaps not the fastest system on the world, but it 
should be fine ;)

cheers

[EMAIL PROTECTED] wrote:

Bonjour
Je voulais savoir quel version de freebsd me conseillez vous pour un pentium 1 233 64 
Mb vive ?
Merci d'avance

-
Internet simplement moins cher avec Tele2 : http://www.tele2.fr
-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


  1   2   >