zoneli

2006-11-27 Thread admin
Hi! From time to time our moderately loaded Squid 2.6.3 (~500 
simultaneous clients, ~5000 req/min) stops responding all of a sudden, 
its status being 'zoneli' according to top(1), and nothing short of a 
machine reboot can bring it back to life. I think it's the growing load 
on the box that causes this, because the problem never showed up when 
the load was lower. I upped certain kernel variables through 
/boot/loader.conf, it seemed to help in the sense that zoneli now occurs 
much less frequently (like once in a month). Can you please give any 
suggestions on how to fix the problem? If you should need any further 
info, please let me know.


$ uname -r
6.0-RELEASE-p15
$ grep '^CPU:' /var/run/dmesg.boot
CPU: AMD Athlon(tm) 64 Processor 3000+ (1808.81-MHz 686-class CPU)
$ grep -E '^(real|avail) memory' /var/run/dmesg.boot
real memory  = 2147418112 (2047 MB)
avail memory = 2097672192 (2000 MB)
$ grep -v -e ^# -e '^$' /boot/loader.conf
kern.maxdsiz=1153433600
kern.maxssiz=201326592
kern.ipc.nmbclusters=65536
kern.ipc.msgmnb=8192
kern.ipc.msgssz=64
kern.ipc.msgtql=2048
$ grep -v -e ^# -e '^$' /etc/sysctl.conf
net.inet.tcp.sendspace=131072
net.inet.tcp.recvspace=131072
kern.ipc.somaxconn=1024
kern.ipc.maxsockbuf=524288
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: zoneli

2006-11-27 Thread Andrew Pantyukhin

On 11/27/06, admin [EMAIL PROTECTED] wrote:

Hi! From time to time our moderately loaded Squid 2.6.3 (~500
simultaneous clients, ~5000 req/min) stops responding all of a sudden,
its status being 'zoneli' according to top(1), and nothing short of a
machine reboot can bring it back to life.


It's a known problem and being worked on:
http://www.google.com/search?q=squid+freebsd+zoneli
(also check archive of stable@ mailing list from a few
days back)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sendmail and smtp-auth against passwd

2006-11-27 Thread Vince

Matthias Fechner wrote:
 Hi,
 
 i tried to get smtp-auth against the pass working but it is not
 work. I must add users with saslpasswd2 to the sasldb but I want to
 auth my smtp users with there normal password without the need to
 add them to an additional db.
 
 What I did is:
 Installed sasl2authd from the ports.
 
 /etc/make.conf:
 # Add SMTP AUTH support to Sendmail
 SENDMAIL_CFLAGS+=   -I/usr/local/include -DSASL=2
 SENDMAIL_LDFLAGS+=  -L/usr/local/lib
 SENDMAIL_LDADD+=-lsasl2
 # Enable smtps for sendmail
 SENDMAIL_CFLAGS+= -D_FFR_SMTP_SSL
 SENDMAIL_MILTER_IN_BASE=yes
 And recompiled sendmail in base.
 
 Edit /usr/local/lib/sasl2/Sendmail.conf:
 pwcheck_method: saslauthd
 
 Enabled saslauth in rc.conf and start it:
 saslauthd_enable=yes
 saslauthd_flags=-a getpwent
 
 Edited my .mc file:
 dnl Enable smpt-auth
 FEATURE(authinfo')
 define(confDONT_BLAME_SENDMAIL',GroupReadableSASLDBFile')dnl
 define(confAUTH_MECHANISMS',LOGIN GSSAPI DIGEST-MD5 CRAM-MD5')dnl
 define(confRUN_AS_USER',root:mail')dnl
 
 But it seems to me that sendmail isn't using saslauth instead it uses
 directly the sasldb so all thinks I configured in sasl2authd is useless.
 
 Has someone smtp-auth with sendmail against passwd running?
 
Hmm i used the sendmail from ports, due to lazyness and (at the time
wasnt too familiar with Freebsd's /etc/make.conf) but your config looks
ok. Also I use 6.x and at one point was using nss_ldap so i use PAM
which has the same effect as you are intending, it might be worth your
while trying that too.

.mc file
define(`confAUTH_MECHANISMS', `LOGIN PLAIN DIGEST-MD5 CRAM-MD5')
TRUST_AUTH_MECH(`LOGIN PLAIN DIGEST-MD5 CRAM-MD5')

Because of this (the plain bit) i also enabled ssl (self signed but who
cares here. its just so the passwords dont go in cleartext)

dnl ### do STARTTLS
define(`confCACERT_PATH', `/usr/local/certs')dnl
define(`confCACERT', `/usr/local/certs/cacert.pem')dnl
define(`confSERVER_CERT', `/usr/local/certs/sendmail.pem')dnl
define(`confSERVER_KEY', `/usr/local/certs/sendmail.pem')dnl
define(`confCLIENT_CERT', `/usr/local/certs/sendmail.pem')dnl
define(`confCLIENT_KEY', `/usr/local/certs/sendmail.pem')dnl
DAEMON_OPTIONS(`Family=inet, Port=465, Name=MTA-SSL, M=s')dnl

The sasl side:
[EMAIL PROTECTED]
(10:50:35 ~) 0 # cat /usr/local/lib/sasl2/Sendmail.conf
pwcheck_method: saslauthd

/etc/rc.conf
#sasl auth for sendmail etc
saslauthd_enable=YES

This allows sasl2authd to use the default flags of
-a pam

I also have the following file in /etc/pam.d/

[EMAIL PROTECTED]
(10:54:55 ~) 0 # more /etc/pam.d/sendmail

# auth
#auth   requiredpam_nologin.so  no_warn
#auth   sufficient  pam_krb5.so no_warn
try_first_pass
#auth   sufficient  pam_ssh.so  no_warn
try_first_pass
#auth   sufficient  /usr/local/lib/pam_ldap.so  no_warn
try_first_pass
authrequiredpam_unix.so no_warn
try_first_pass
authrequiredpam_unix.so no_warn
try_first_pass
account requiredpam_unix.so
session requiredpam_unix.so

(excuse linewrap)
This works fine for me.
Good luck
Vince

 Best regards,
 Matthias
 

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


FreeBSD 6.1 setup doesn't see my HDD

2006-11-27 Thread Dima
Hi all.
 I have Red Hat Linux 9 running on my server with HDD Western Digital
WD2500JB (250 GB IDE). I'd like to move to FreeBSD 6.1.
 During install from CD setup doesn't recognize geometry of my HDD (it
says 484521/16/63 is wrong geometry and switches it to 30401/255/63, but
after that still can't write anything). Red Hat works with geometry
30401/255/63. Also I've tried to enter data from BIOS - it doesn't help
too.
 On HDD's manufacturer site I've read, that recommended geometry is cyls
16383, secs 63; total sector count - 488 397 168.

 Can someone help me to solve this problem?

 Thank you.

 Dmitriy.

__
Отправлено http://webmail.meta.ua/

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


newfs hangs while installing 6.1

2006-11-27 Thread Klim
Hi all,

I'm trying to install freebsd 6.1 and the installation hangs while
creating the root filesystem.
I have a Silicon Image 3512 RAID controller configured as a RAID 1 with
two 250GB maxtor drives. I'm using the amd64 distribution on a Pentium D
machine (with a asus P5B motherboard).
The last issued command appares to be:
newfs -O2 /dev/ar0s1a

Am I doing something wrong?
Has anybody observed such a behavior?

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


Re: Latest Broadcom NDIS driver requires 4 additional functions

2006-11-27 Thread Nathan Vidican

Rainer Alves wrote:

Rainer Alves wrote:

Scot Hetzel wrote:

I'm trying to upgrade my ndis driver from version 3.100.64.0 to
4.40.19.0, but when I try to load the driver I get a Fatal trap 12
error.
[...]
However under FreeBSD + NDIS, the led is always red and the chip is 
never properly activated.


Replying to myself, the new driver works... I get a no match for 
MmGetPhysicalAddress when kldload'ing, a fpudna in kernel mode when 
doing a ifconfig, but overrall it works fine.

Thanks for the hint.

--
Rainer Alves

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



May be a dumb question... but I have the same laptop (HP Pavilion 
dv8000, 6.2-RC1/amd64) and have been unable to get it working nor debug 
myself... how/where did you upgrade the freebsd/ndis driver from; 
where/which windows driver files did you use? Are the ndis driver 
patches mentioned in this thread committed to CVS, or must it (the 
patch) be manually applied to the tree and the kernel re-compiled?



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


Regarding multiple RAID contoller support with FreeBSD 4.11

2006-11-27 Thread V.SriSaiGanesh Venkataramani

Hello,

I have enabled the support for LSI SAS1068 controller with 4.11
Release, and i compiled the kernel with chnages, it compiles with some
work arounds. When booting it successfully detects the LSI controller.
I will tell my system config

My system is HP Proliant DL380G4, and i have one internal SCSI
embedded 6i card, to which i have connected my FreeBSD boot harddisk,
and all of my freebsd slices lies there. I have connected two more
controllers. One is Smart Array 642 controller, with no drives
connected, and LSI SAS 1068 controller with two physical drive
connected. Now i didnt create any LUNs with this controller,

LSI SAS 1068, Smart Array 6i,Smart Array 642 controllers are connected
in PCI slot 1, 3, and 6. I have selected 6i card as the boot
Controller in BIOS stage, so initially when the system is powered on,
it starts booting from my 6i controller. Without the LSI SAS driver,
6i controller's LUN's slices  are mapped with
/dev/da0s1a-/dev/da0s1f(with /dev/da0s1a as root partition).

When i installed the system the root partition's slice was da0s1a. Now
when i compiled the kernel with the support of LSI SAS driver, and i
booted it, the LSI card first gets detected and the raw drives
connected to LSI controller becomes da0, da1. Then my boot 6i gets
detected and the LUN present in this conroller gets da2. When my new
kernel tries to mount the root, it always sees the root in da0s1a. So
it tells mount failed, and it gives me mountroot prompt. I dont know
how to give the root partition option as boot arguments in freebsd
boot line, Or is there anything in config file, while we are
compiling. How to allocate these device strings dynamically, or how to
make our kernel takes the root parition dynamically. I need help
regarding this issue. Help me out in figuring out the problem.

I have tries disabling the SCSI BIOS in LSI's firrmware config
utility, the firmware what am using does not have that support.


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


Re: newfs hangs while installing 6.1

2006-11-27 Thread Andrew Pantyukhin

On 11/27/06, Klim [EMAIL PROTECTED] wrote:

Hi all,

I'm trying to install freebsd 6.1 and the installation hangs while
creating the root filesystem.
I have a Silicon Image 3512 RAID controller configured as a RAID 1 with
two 250GB maxtor drives. I'm using the amd64 distribution on a Pentium D
machine (with a asus P5B motherboard).
The last issued command appares to be:
newfs -O2 /dev/ar0s1a

Am I doing something wrong?
Has anybody observed such a behavior?


Try using dd on /dev/ar0 in both reading and writing
directions, see what happens.

Personally, I don't understand why people choose
anything else than gmirror/gstripe when they need
raid 0/1.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Netgear WG511T (108Mbps PCMCIA Card) on FreeBSD 6.0

2006-11-27 Thread Frozen

Hello list,

Well i got a Netgear WG511T  (108Mbps PCMCIA Card), on an IBM laptop
(Thinkpad 600X) running FreeBSD-6.0..
it was supposed that since the card has an Atheros chipset it would be
supported from scratch
but even though, i can't even make drivers with ndisgen, getting an error
like:

ndiscvt: line 234: D:ARAI(A;;GA;;;BA)(A;;GA;;;SY)(A;CI;GA;;;IU): syntax
error.
CONVERSION FAILED
#


furthermore, while doing a dmesg i get this:


# dmesg |grep ath
ath_hal: 0.9.14.9 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413)
npx0: math processor on motherboard
ath0: Atheros 5212 mem 0x8800-0x8800 irq 9 at device 0.0 on
cardbus0
ath0: unable to attach hardware; HAL status 3
device_attach: ath0 attach returned 6
#





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


Getting SHTML to work

2006-11-27 Thread Gerard Seibert
I am truing to get SSI working on a site I am building. I thought I had
the 'httpd.conf' file properly configured.

Following some directions I got off of a web site, I created a basic
'index.shtml' file and placed this in it:

!--#echo var=DATE_LOCAL --

It doesn't seem to be working. Either the conf file is wrong, or the
variable in the index file is entered incorrectly.

The file is located here:

http://seibercom.net

and the httpd.conf file can be view here:

http://seibercom.net/httpd.conf


-- 
Gerard
[EMAIL PROTECTED]

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


Re: FreeBSD 6.1 setup doesn't see my HDD

2006-11-27 Thread Jerry McAllister
On Mon, Nov 27, 2006 at 01:10:16PM +0200, Dima wrote:

 Hi all.
  I have Red Hat Linux 9 running on my server with HDD Western Digital
 WD2500JB (250 GB IDE). I'd like to move to FreeBSD 6.1.
  During install from CD setup doesn't recognize geometry of my HDD (it
 says 484521/16/63 is wrong geometry and switches it to 30401/255/63, but
 after that still can't write anything). Red Hat works with geometry
 30401/255/63. Also I've tried to enter data from BIOS - it doesn't help
 too.
  On HDD's manufacturer site I've read, that recommended geometry is cyls
 16383, secs 63; total sector count - 488 397 168.
 
  Can someone help me to solve this problem?

Usually, with FreeBSD, you just ignore those geometry messages.
This should be especially true if you plan to use the whole disk
for FreeBSD.The geometry that is reported is virtual and does
not really mean anything for you.Don't try to do anything to the 
BIOS settings for it either.Just take the [fdisk] option that says 
to create one large slice comprising the whole disk for FreeBSD and it 
should overwrite everything nicely.

If this doesn't work then it will be necessary to know more about
just what kind of disk you are trying to use.

jerry

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


Richiesta consenso per i grandi Vini Italiani

2006-11-27 Thread Le Vinali

   Informativa ai s= ensi dell'articolo 13 del codice privacy per
   richiesta consenso.
   


   Gentili Signore  Signori,
   


   Le Vinali di Fiume Veneto (Friuli) propone = la fornitura diretta di
   Grandi Vini Italiani.
   Le chiediamo quindi il= suo consenso preventivo ad informarla su
   questo specifico argomento,
   = se vuole conoscere la nostra proposta [1]entri quì= /A
   In calce potrà prendere visione dell'inform= ativa relativa alla
   raccolta ed al trattamento dei dati chenbsp;la rig   uardano.


   [2]Grazie dell'attenzione dall'= Azienda Agricola Le Vinali
   


   E' un'informazione curata da
   Le Vinali
   Fiume Vene= to
   Friuli
   ---   
---
   Informativa per il trattame= nto dei dati personali legge 196/2003
   (cod. privacy)
   Per consultare l'informativa [3]cl= icchi qui

References

   1. file://localhost/tmp/3D   2. 
3Dhttp://news.Wifiitalia.it/frontend/optin.aspx?idUser   3. 
3Dhttp://news.Wifiitali=/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Getting SHTML to work

2006-11-27 Thread Jerry McAllister
On Mon, Nov 27, 2006 at 10:52:10AM -0500, Gerard Seibert wrote:

 I am truing to get SSI working on a site I am building. I thought I had
 the 'httpd.conf' file properly configured.
 
 Following some directions I got off of a web site, I created a basic
 'index.shtml' file and placed this in it:
 
 !--#echo var=DATE_LOCAL --
 
 It doesn't seem to be working. Either the conf file is wrong, or the
 variable in the index file is entered incorrectly.
 
 The file is located here:
 
   http://seibercom.net
 
 and the httpd.conf file can be view here:
 
   http://seibercom.net/httpd.conf

Which version of Apache are you using?
I am having a somewhat similar issue in Apache 2.2 - on pages I
had working in Apache 1.3.xxx and haven't had time to try and solve
it yet.So, I would be interested in hearing any info on this.

You might actually want to post on an appropriate Apache list, though.

jerry 

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


freebsd doesm't see my script on boot

2006-11-27 Thread Gregory Edigarov

Hello, Everybody

Well, here is what I am doing:
ls -l /usr/local/etc/rc.d
total 30
-r-xr-xr-x  1 root  wheel  4744 Nov 13 11:38 apache22
-r-xr-xr-x  1 root  wheel   673 Nov 13 14:27 clamav-clamd
-r-xr-xr-x  1 root  wheel   722 Nov 13 14:27 clamav-freshclam
-r-xr-xr-x  1 root  wheel  1057 Nov 13 14:27 clamav-milter
-r-xr-xr-x  1 root  wheel  1254 Nov 13 13:01 gnugk
-r-xr-xr-x  1 root  wheel   198 Nov 15 01:17 l2tpd
-r-xr-xr-x  1 root  wheel   196 Nov 14 12:35 popa3d
-r-xr-xr-x  1 root  wheel  1642 Nov 13 11:19 quagga
-r-xr-xr-x  1 root  wheel  4371 Nov 13 14:00 samba
-r-xr-xr-x  1 root  wheel  1324 Nov 14 15:20 squid
-r-xr-xr-x  1 root  wheel   564 Nov 13 11:19 watchquagga

cat /usr/local/etc/rc.d/l2tpd
#!/bin/sh

#PROVIDE l2tpd
#REQUIRE NETWORKING

. /etc/rc.subr

name=l2tpd
rcvar=`set_rcvar`
command=/usr/local/sbin/${name}
flags=
echo l2tp debug

load_rc_config $name
run_rc_command $1

in rc.conf:
l2tpd_enable=YES

Then after  reboot:
ps ax | grep l2tpd
667  v1  RL+0:00.00 grep l2tpd

i.e no l2tpd has been started.
no messages on console, either. My script just got silently skipped, all 
other services are starting up fine.


What's  wrong?

--
With best  regards,
   Gregory Edigarov



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


Richiesta consenso per i grandi Vini Italiani

2006-11-27 Thread Le Vinali

   Informativa ai s= ensi dell'articolo 13 del codice privacy per
   richiesta consenso.
   


   Gentili Signore  Signori,
   


   Le Vinali di Fiume Veneto (Friuli) propone = la fornitura diretta di
   Grandi Vini Italiani.
   Le chiediamo quindi il= suo consenso preventivo ad informarla su
   questo specifico argomento,
   = se vuole conoscere la nostra proposta [1]entri quì
   = BRIn calce potrà prendere visione dell'informativa re= lativa
   alla raccolta ed al trattamento dei dati chenbsp;la riguardano.   


   [2]Grazie dell'attenzione dall'Azienda Agricola Le= Vinali
   


   E' un= 'informazione curata da
   = Le Vinali
   Fiume Veneto
   Friuli
   --   

   Informativa per il trattamento dei dati person= ali legge 196/2003
   (cod. privacy)
   Per c= onsultare l'informativa [3]clicchi qui
References

   1. file://localhost/tmp/3D   2. file://localhost/tmp/3D   3. 
3Dhttp://news.Wifiitalia.it/frontend/trac___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Acpi and boot

2006-11-27 Thread leo fante

Hi
I've installed freebsd 6.1 on an old pc on which I've configured several
services. Everything worked fine since last week when the motherboard died.
I've replaced the mobo and found that now the acpi could work (with the old 
motherboard
the installation disabled the acpi at boot since the mainboard was blacklisted).

Since the old mobo was blacklisted the options on the menu were
1 default
2 boot with acpi

Now I would like to have the acpi enabled by default at boot time on the 
beastie menu.
1 default
2 boot without acpi

reading the man of loader.conf I've added hint.acpi.0.disabled=0
and now the pc boots with with acpi enabled but without having
the correct options in the boot menu.

How I could fix the menu?








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


Re: FreeBSD 6.1 setup doesn't see my HDD

2006-11-27 Thread Dima
 On Mon, Nov 27, 2006 at 01:10:16PM +0200, Dima wrote:
 Usually, with FreeBSD, you just ignore those geometry messages.
 This should be especially true if you plan to use the whole disk
 for FreeBSD.The geometry that is reported is virtual and does
 not really mean anything for you.Don't try to do anything to the
 BIOS settings for it either.Just take the [fdisk] option that says
 to create one large slice comprising the whole disk for FreeBSD and it
 should overwrite everything nicely.

 If this doesn't work then it will be necessary to know more about
 just what kind of disk you are trying to use.

I've tried to create one large slice too. All goes fine until Commit. When
install tries to write on disk it shows:
ERROR: Unable to write data to disk ad0!

By the way there are some error messages regarding this on Ctrl+Alt+F2
(during install), but they say nothing to me:
ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
ad0: FAILURE - READ_DMA status=51READY,DSC,ERROR error=84ICRC,ABORTED
LBA=0
They're repeated 4 times.

My HDD is Master on first IDE-channel, CD-ROM - Secondary on the same
channel.


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


Re: freebsd doesm't see my script on boot

2006-11-27 Thread Jerry McAllister
On Mon, Nov 27, 2006 at 06:30:43PM +0200, Gregory Edigarov wrote:

 Hello, Everybody
 
 Well, here is what I am doing:
 ls -l /usr/local/etc/rc.d
 total 30
 -r-xr-xr-x  1 root  wheel  4744 Nov 13 11:38 apache22
 -r-xr-xr-x  1 root  wheel   673 Nov 13 14:27 clamav-clamd
 -r-xr-xr-x  1 root  wheel   722 Nov 13 14:27 clamav-freshclam
 -r-xr-xr-x  1 root  wheel  1057 Nov 13 14:27 clamav-milter
 -r-xr-xr-x  1 root  wheel  1254 Nov 13 13:01 gnugk
 -r-xr-xr-x  1 root  wheel   198 Nov 15 01:17 l2tpd
 -r-xr-xr-x  1 root  wheel   196 Nov 14 12:35 popa3d
 -r-xr-xr-x  1 root  wheel  1642 Nov 13 11:19 quagga
 -r-xr-xr-x  1 root  wheel  4371 Nov 13 14:00 samba
 -r-xr-xr-x  1 root  wheel  1324 Nov 14 15:20 squid
 -r-xr-xr-x  1 root  wheel   564 Nov 13 11:19 watchquagga


Doesn't the name need to end in '.sh' to be recognized and run from rc.d?

It used to be that way anyway and I haven't noticed that it
has changed.

Try changing the name to l2tpd.sh -- and leave it executable, of course.

jerry


 cat /usr/local/etc/rc.d/l2tpd
 #!/bin/sh
 
 #PROVIDE l2tpd
 #REQUIRE NETWORKING
 
 . /etc/rc.subr
 
 name=l2tpd
 rcvar=`set_rcvar`
 command=/usr/local/sbin/${name}
 flags=
 echo l2tp debug
 
 load_rc_config $name
 run_rc_command $1
 
 in rc.conf:
 l2tpd_enable=YES
 
 Then after  reboot:
 ps ax | grep l2tpd
 667  v1  RL+0:00.00 grep l2tpd
 
 i.e no l2tpd has been started.
 no messages on console, either. My script just got silently skipped, all 
 other services are starting up fine.
 
 What's  wrong?
 
 -- 
 With best  regards,
Gregory Edigarov
 
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD 6.1 setup doesn't see my HDD

2006-11-27 Thread Jerry McAllister
On Mon, Nov 27, 2006 at 06:58:32PM +0200, Dima wrote:

  On Mon, Nov 27, 2006 at 01:10:16PM +0200, Dima wrote:
  Usually, with FreeBSD, you just ignore those geometry messages.
  This should be especially true if you plan to use the whole disk
  for FreeBSD.The geometry that is reported is virtual and does
  not really mean anything for you.Don't try to do anything to the
  BIOS settings for it either.Just take the [fdisk] option that says
  to create one large slice comprising the whole disk for FreeBSD and it
  should overwrite everything nicely.
 
  If this doesn't work then it will be necessary to know more about
  just what kind of disk you are trying to use.
 
 I've tried to create one large slice too. All goes fine until Commit. When
 install tries to write on disk it shows:
 ERROR: Unable to write data to disk ad0!

Hmmm.   I am presuming you are booted from an install CD.
The times I have seen this message are when I tried to fdisk a
drive that had stuff currently mounted and/or was the disk I
was booted to.

 By the way there are some error messages regarding this on Ctrl+Alt+F2
 (during install), but they say nothing to me:
 ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
 ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
 ad0: FAILURE - READ_DMA status=51READY,DSC,ERROR error=84ICRC,ABORTED
 LBA=0
 They're repeated 4 times.

Hmmm.   
I don't remember seeing anything like those when I had the afore-mentioned 
problem.  That looks like something is connected wrong or being addressed 
wrong.  It isn't a geometry issue, I don't think. 

 My HDD is Master on first IDE-channel, CD-ROM - Secondary on the same
 channel.

Can you find the dmesg information for both the disk and the CD reader
during the boot?   Are they producing device identifiers and specs that 
look correct?
Those lines will start with 'adnn:' and 'acdnn:' where nn is a number,
probably '0' (you hope).

jerry

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


Re: freebsd doesm't see my script on boot

2006-11-27 Thread Vince Hoffman
Gregory Edigarov wrote:
 Hello, Everybody
 
 Well, here is what I am doing:
 ls -l /usr/local/etc/rc.d
 total 30
 -r-xr-xr-x  1 root  wheel  4744 Nov 13 11:38 apache22
 -r-xr-xr-x  1 root  wheel   673 Nov 13 14:27 clamav-clamd
 -r-xr-xr-x  1 root  wheel   722 Nov 13 14:27 clamav-freshclam
 -r-xr-xr-x  1 root  wheel  1057 Nov 13 14:27 clamav-milter
 -r-xr-xr-x  1 root  wheel  1254 Nov 13 13:01 gnugk
 -r-xr-xr-x  1 root  wheel   198 Nov 15 01:17 l2tpd
 -r-xr-xr-x  1 root  wheel   196 Nov 14 12:35 popa3d
 -r-xr-xr-x  1 root  wheel  1642 Nov 13 11:19 quagga
 -r-xr-xr-x  1 root  wheel  4371 Nov 13 14:00 samba
 -r-xr-xr-x  1 root  wheel  1324 Nov 14 15:20 squid
 -r-xr-xr-x  1 root  wheel   564 Nov 13 11:19 watchquagga
 
 cat /usr/local/etc/rc.d/l2tpd
 #!/bin/sh
 
 #PROVIDE l2tpd
 #REQUIRE NETWORKING
 
 . /etc/rc.subr
 
 name=l2tpd
 rcvar=`set_rcvar`
 command=/usr/local/sbin/${name}
 flags=
 echo l2tp debug
 
 load_rc_config $name
 run_rc_command $1
 
 in rc.conf:
 l2tpd_enable=YES
 
 Then after  reboot:
 ps ax | grep l2tpd
 667  v1  RL+0:00.00 grep l2tpd
 
 i.e no l2tpd has been started.
 no messages on console, either. My script just got silently skipped, all
 other services are starting up fine.
 
 What's  wrong?
 

Does it work if you run it manually?
does it start if you run
/etc/rc.d/localpkg start
not certain this will help but try adding
verbose_loading=YES
to /boot/loader.conf
to see if that give more info on startup.
Also try adding  set -x to your script to enable more debugging output
is you think you need it


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


Re: Getting SHTML to work

2006-11-27 Thread Gerard Seibert
On Monday November 27, 2006 at 11:03:01 (AM) Jerry McAllister wrote:


 Which version of Apache are you using?
 I am having a somewhat similar issue in Apache 2.2 - on pages I
 had working in Apache 1.3.xxx and haven't had time to try and solve
 it yet.So, I would be interested in hearing any info on this.

I just got it working.  There were to glaring errors.

1) I had to change the syntax to:

!---#exec cmd=date +'TIME:'' '%H%M --

Secondly,  I needed to either expressly place the file on the command
line or else the SSI would not display, or chmod the file to 0755. I
choose to do the later obviously since it is an index file.

HTH
-- 
Gerard

 Mail from '@gmail' is rejected and/or discarded here. Don't waste
 your time!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Problem with https in konqueror

2006-11-27 Thread Mario Lobo
 Hi there;

Everything was working fine. Then I did a portupgrade -Rrv on KDE.   

At first, everything seemed fine but everytime I tried to start an https 
conecction I get this:

An error occurred while loading https://www.whatever.com.br:
The process for the https://www.whatever.com.br protocol died unexpectedly.


This happens with ANY https connection. I went through the settings and 
experimented including/taking away options on the ssl settings to no effect.

Opera and firefox have no problem with ssl. Only Konqueror. As a side effect
of this (i believe), Kopette stopped working too.

I prefer using konqueror because of the integration to kde printing system.

Anybody has a clue?

I am beginning to believe that portupgrade is only for small stuff. I never 
had any glitches (and never had to wait for 2 days) when I upgraded by simply 
saving all my settings on a CD, downloaded the new ISO, install everything, 
and get the settings back in.

Thanks,

-- 
   //| //|
  // |// |
 //  //  |
//  //   
--
[EMAIL PROTECTED]
http://www.ipad.com.br
(FreeBSD since 2.2.8 - 100% Rwindows-free)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: freebsd doesm't see my script on boot

2006-11-27 Thread Lane
On Monday 27 November 2006 10:30, Gregory Edigarov wrote:
 Hello, Everybody

 Well, here is what I am doing:
 ls -l /usr/local/etc/rc.d
 total 30
 -r-xr-xr-x  1 root  wheel  4744 Nov 13 11:38 apache22
 -r-xr-xr-x  1 root  wheel   673 Nov 13 14:27 clamav-clamd
 -r-xr-xr-x  1 root  wheel   722 Nov 13 14:27 clamav-freshclam
 -r-xr-xr-x  1 root  wheel  1057 Nov 13 14:27 clamav-milter
 -r-xr-xr-x  1 root  wheel  1254 Nov 13 13:01 gnugk
 -r-xr-xr-x  1 root  wheel   198 Nov 15 01:17 l2tpd
 -r-xr-xr-x  1 root  wheel   196 Nov 14 12:35 popa3d
 -r-xr-xr-x  1 root  wheel  1642 Nov 13 11:19 quagga
 -r-xr-xr-x  1 root  wheel  4371 Nov 13 14:00 samba
 -r-xr-xr-x  1 root  wheel  1324 Nov 14 15:20 squid
 -r-xr-xr-x  1 root  wheel   564 Nov 13 11:19 watchquagga

 cat /usr/local/etc/rc.d/l2tpd
 #!/bin/sh

 #PROVIDE l2tpd
 #REQUIRE NETWORKING

 . /etc/rc.subr

 name=l2tpd
 rcvar=`set_rcvar`
 command=/usr/local/sbin/${name}
 flags=
 echo l2tp debug

 load_rc_config $name
 run_rc_command $1

 in rc.conf:
 l2tpd_enable=YES

 Then after  reboot:
 ps ax | grep l2tpd
  667  v1  RL+0:00.00 grep l2tpd

 i.e no l2tpd has been started.
 no messages on console, either. My script just got silently skipped, all
 other services are starting up fine.

 What's  wrong?

Maybe l2tpd is failing after initialization?  Do you see l2tp debug 
during local package initialization section of boot?

Try this:

/etc/rc.d/localpkg restart

does it show up?  Does anything show up?

Can you run it manually?  If not then it might be that l2tp is silently 
failing during initialization. 

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


Re: freebsd doesm't see my script on boot

2006-11-27 Thread Lane
On Monday 27 November 2006 11:02, Jerry McAllister wrote:
 On Mon, Nov 27, 2006 at 06:30:43PM +0200, Gregory Edigarov wrote:
  Hello, Everybody
 
  Well, here is what I am doing:
  ls -l /usr/local/etc/rc.d
  total 30
  -r-xr-xr-x  1 root  wheel  4744 Nov 13 11:38 apache22
  -r-xr-xr-x  1 root  wheel   673 Nov 13 14:27 clamav-clamd
  -r-xr-xr-x  1 root  wheel   722 Nov 13 14:27 clamav-freshclam
  -r-xr-xr-x  1 root  wheel  1057 Nov 13 14:27 clamav-milter
  -r-xr-xr-x  1 root  wheel  1254 Nov 13 13:01 gnugk
  -r-xr-xr-x  1 root  wheel   198 Nov 15 01:17 l2tpd
  -r-xr-xr-x  1 root  wheel   196 Nov 14 12:35 popa3d
  -r-xr-xr-x  1 root  wheel  1642 Nov 13 11:19 quagga
  -r-xr-xr-x  1 root  wheel  4371 Nov 13 14:00 samba
  -r-xr-xr-x  1 root  wheel  1324 Nov 14 15:20 squid
  -r-xr-xr-x  1 root  wheel   564 Nov 13 11:19 watchquagga

 Doesn't the name need to end in '.sh' to be recognized and run from rc.d?

 It used to be that way anyway and I haven't noticed that it
 has changed.

 Try changing the name to l2tpd.sh -- and leave it executable, of course.

 jerry

  cat /usr/local/etc/rc.d/l2tpd
  #!/bin/sh
 
  #PROVIDE l2tpd
  #REQUIRE NETWORKING
 
  . /etc/rc.subr
 
  name=l2tpd
  rcvar=`set_rcvar`
  command=/usr/local/sbin/${name}
  flags=
  echo l2tp debug
 
  load_rc_config $name
  run_rc_command $1
 
  in rc.conf:
  l2tpd_enable=YES
 
  Then after  reboot:
  ps ax | grep l2tpd
  667  v1  RL+0:00.00 grep l2tpd
 
  i.e no l2tpd has been started.
  no messages on console, either. My script just got silently skipped, all
  other services are starting up fine.
 
  What's  wrong?
 
  --
  With best  regards,
 Gregory Edigarov
 
 
 
I think it changed in 6.X.  6.1 still recognizes the .sh extension, but it 
will also execute scripts in /usr/local/etc/rc.d that DON'T have the 
extension.

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


Re: Empty directory 60M in size; used to contain 1.7 million files

2006-11-27 Thread Peter Schuller
 Directories are only shrunk when a file is created and the slack
 directory space can be trivially truncated.  This is to avoid useless
 compaction during rm -rf-style activities of a directory that will
 just be deleted anyway.  Just create a dummy file with touch and the
 directory will shrink down to 1 block.  You can then remove the file.

Thanks, that explaints it. And it did work.

-- 
/ Peter Schuller, InfiDyne Technologies HB

PGP userID: 0xE9758B7D or 'Peter Schuller [EMAIL PROTECTED]'
Key retrieval: Send an E-Mail to [EMAIL PROTECTED]
E-Mail: [EMAIL PROTECTED] Web: http://www.scode.org

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


Re: FreeBSD 6.1 setup doesn't see my HDD

2006-11-27 Thread Dima
 On Mon, Nov 27, 2006 at 06:58:32PM +0200, Dima wrote:

 Hmmm.   I am presuming you are booted from an install CD.
Yes, I'm booting from install CD.

 By the way there are some error messages regarding this on Ctrl+Alt+F2
 (during install), but they say nothing to me:
 ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
 ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
 ad0: FAILURE - READ_DMA status=51READY,DSC,ERROR
 error=84ICRC,ABORTED
 LBA=0
 They're repeated 4 times.

 Hmmm.
 I don't remember seeing anything like those when I had the afore-mentioned
 problem.  That looks like something is connected wrong or being addressed
 wrong.  It isn't a geometry issue, I don't think.

But Red Hat 9 still works fine on that hardware. What can be wrong?

 My HDD is Master on first IDE-channel, CD-ROM - Secondary on the same
 channel.

 Can you find the dmesg information for both the disk and the CD reader
 during the boot?   Are they producing device identifiers and specs that
 look correct?
 Those lines will start with 'adnn:' and 'acdnn:' where nn is a number,
 probably '0' (you hope).

Yes, I can:
ad0: 238457 MB WDC WD2500JB-00GVC0 08.02D08 at ata0-master UDMA
acd0 . at ata0-slave looks fine too (I'm too lazy to copy it :)
Also I have ad2 and it seems fine on dmesg too.
After that goes

ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
ad0: FAILURE - READ_DMA status=51READY,DSC,ERROR

and repeats 3 times.


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


Re: Problem with https in konqueror

2006-11-27 Thread Lane
On Monday 27 November 2006 11:41, Mario Lobo wrote:
  Hi there;

 Everything was working fine. Then I did a portupgrade -Rrv on KDE.

 At first, everything seemed fine but everytime I tried to start an https
 conecction I get this:

 An error occurred while loading https://www.whatever.com.br:
 The process for the https://www.whatever.com.br protocol died unexpectedly.


 This happens with ANY https connection. I went through the settings and
 experimented including/taking away options on the ssl settings to no
 effect.

 Opera and firefox have no problem with ssl. Only Konqueror. As a side
 effect of this (i believe), Kopette stopped working too.

 I prefer using konqueror because of the integration to kde printing system.

 Anybody has a clue?

 I am beginning to believe that portupgrade is only for small stuff. I never
 had any glitches (and never had to wait for 2 days) when I upgraded by
 simply saving all my settings on a CD, downloaded the new ISO, install
 everything, and get the settings back in.

 Thanks,
UGH!  Just went through it yesterday!

rebuild and reinstall /usr/ports/x11/kdelibs3 and it should work.

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


Re: Sendmail and smtp-auth against passwd

2006-11-27 Thread Derek Ragona
That is an issue with the sasl configuration.  sasl can be configured to 
read passwords from different locations, including a database.  You may 
need to reconfigure sasl or even rebuild it.


-Derek


At 09:20 PM 11/26/2006, Matthias Fechner wrote:

Hi,

i tried to get smtp-auth against the pass working but it is not
work. I must add users with saslpasswd2 to the sasldb but I want to
auth my smtp users with there normal password without the need to
add them to an additional db.

What I did is:
Installed sasl2authd from the ports.

/etc/make.conf:
# Add SMTP AUTH support to Sendmail
SENDMAIL_CFLAGS+=   -I/usr/local/include -DSASL=2
SENDMAIL_LDFLAGS+=  -L/usr/local/lib
SENDMAIL_LDADD+=-lsasl2
# Enable smtps for sendmail
SENDMAIL_CFLAGS+= -D_FFR_SMTP_SSL
SENDMAIL_MILTER_IN_BASE=yes
And recompiled sendmail in base.

Edit /usr/local/lib/sasl2/Sendmail.conf:
pwcheck_method: saslauthd

Enabled saslauth in rc.conf and start it:
saslauthd_enable=yes
saslauthd_flags=-a getpwent

Edited my .mc file:
dnl Enable smpt-auth
FEATURE(authinfo')
define(confDONT_BLAME_SENDMAIL',GroupReadableSASLDBFile')dnl
define(confAUTH_MECHANISMS',LOGIN GSSAPI DIGEST-MD5 CRAM-MD5')dnl
define(confRUN_AS_USER',root:mail')dnl

But it seems to me that sendmail isn't using saslauth instead it uses
directly the sasldb so all thinks I configured in sasl2authd is useless.

Has someone smtp-auth with sendmail against passwd running?

Best regards,
Matthias

--

Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs, and the universe trying to
produce bigger and better idiots. So far, the universe is winning. --
Rich Cook
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


Problem with https in konqueror

2006-11-27 Thread Mario Lobo
 Hi there;

Everything was working fine. Then I did a portupgrade -Rrv on KDE.   

At first, everything seemed fine but everytime I tried to start an https 
conecction I get this:

An error occurred while loading https://www.whatever.com.br:
The process for the https://www.whatever.com.br protocol died unexpectedly.


This happens with ANY https connection. I went through the settings and 
experimented including/taking away options on the ssl settings to no effect.

Opera and firefox have no problem with ssl. Only Konqueror. As a side effect
of this (i believe), Kopette stopped working too.

I prefer using konqueror because of the integration to kde printing system.

Anybody has a clue?

I am beginning to believe that portupgrade is only for small stuff. I never 
had any glitches (and never had to wait for 2 days) when I upgraded by simply 
saving all my settings on a CD, downloaded the new ISO, install everything, 
and get the settings back in.

Thanks,

-- 
   //| //|
  // |// |
 //  //  |
//  //   
--
[EMAIL PROTECTED]
http://www.ipad.com.br
(FreeBSD since 2.2.8 - 100% Rwindows-free)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


wpa_supplicant ipw problem

2006-11-27 Thread trolle

Hi,

A few weeks ago i installed FreeBSD on my IBM T40 laptop. After running
it on my server for about a year with great success.
And everything seems to work great, except i cant join my wireless network
when i encrypt it. When I set my NorthQ routers wireless security settings
to none, I get an IP and everything is working, but when i change it to
WPA or WEP I cant get an IP. I have tried all I could find on the net and
in the hand book but i cant get it to work. Here is my setup:


trolle-ibm# uname -a
FreeBSD trolle-ibm.trolle.lan 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May 7
04:42:56 UTC 2006 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/SMP i386


trolle-ibm# cat /boot/loader.conf
snd_ich_load=YES
if_ipw_load=YES
wlan_load=YES
wlan_ccmp_load=YES
wlan_tkip_load=YES
wlan_wep_load=YES
wlan_acl_load=YES


trolle-ibm# cat /etc/rc.conf
hostname=trolle-ibm.trolle.lan
ifconfig_em0=DHCP
/usr/sbin/ipwcontrol -i ipw0 -f /boot/firmware/ipw.fw
ifconfig_ipw0=WPA DHCP
inetd_enable=NO
keymap=danish.iso
linux_enable=YES
moused_enable=YES
moused_type=auto
usbd_enable=YES
gnome_enable=YES
dbus_enable=YES
polkitd_enable=YES


trolle-ibm# cat /etc/wpa_supplicant.conf
network={
 ssid=trolle
 psk=1234567890
}


trolle-ibm# ifconfig ipw0 scan
SSIDBSSID  CHAN RATE  S:N   INT CAPS
trolle  00:50:fc:d4:bd:e0   11   11M 48:0   100 EP   WPA


trolle-ibm# wpa_supplicant -i ipw0 -c /etc/wpa_supplicant.conf
Trying to associate with 00:50:fc:d4:bd:e0 (SSID='trolle' freq=2462 MHz)
Trying to associate with 00:50:fc:d4:bd:e0 (SSID='trolle' freq=2462 MHz)
- and it just keeps repeeting that line. so i did a


trolle-ibm# wpa_supplicant -i ipw0 -c /etc/wpa_supplicant.conf -dd  /wpa


trolle-ibm# cat /wpa
Initializing interface 'ipw0' conf '/etc/wpa_supplicant.conf' driver
'default' ctrl_interface 'N/A'
Configuration file '/etc/wpa_supplicant.conf' - '/etc/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant.conf'
Line: 1 - start of a new network block
ssid - hexdump_ascii(len=6):
  74 72 6f 6c 6c 65 trolle
PSK (ASCII passphrase) - hexdump_ascii(len=10): [REMOVED]
PSK (from passphrase) - hexdump(len=32): [REMOVED]
Priority group 0
id=0 ssid='trolle'
Initializing interface (2) 'ipw0'
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
Own MAC address: 00:04:23:92:24:12
wpa_driver_bsd_set_wpa: enabled=1
wpa_driver_bsd_set_wpa_internal: wpa=3 privacy=1
wpa_driver_bsd_del_key: keyidx=0
wpa_driver_bsd_del_key: keyidx=1
wpa_driver_bsd_del_key: keyidx=2
wpa_driver_bsd_del_key: keyidx=3
wpa_driver_bsd_set_countermeasures: enabled=0
wpa_driver_bsd_set_drop_unencrypted: enabled=1
Setting scan request: 0 sec 10 usec
Added interface ipw0
State: DISCONNECTED - SCANNING
Starting AP scan (broadcast SSID)
Received 0 bytes of scan results (3 BSSes)
Scan results: 3
Selecting BSS from priority group 0
0: 00:50:fc:d4:bd:e0 ssid='trolle' wpa_ie_len=26 rsn_ie_len=0 caps=0x11
selected based on WPA IE
Trying to associate with 00:50:fc:d4:bd:e0 (SSID='trolle' freq=2462 MHz)
Cancelling scan request
WPA: clearing own WPA/RSN IE
Automatic auth_alg selection: 0x1
WPA: using IEEE 802.11i/D3.0
WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2
WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2
02 01 00 00 50 f2 02 01 00 00 50 f2 02 00 00
WPA: clearing AP RSN IE
WPA: using GTK TKIP
WPA: using PTK TKIP
WPA: using KEY_MGMT WPA-PSK
WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00
00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02
No keys have been configured - skip key clearing
wpa_driver_bsd_set_drop_unencrypted: enabled=1
State: SCANNING - ASSOCIATING
wpa_driver_bsd_associate: ssid 'trolle' wpa ie len 24 pairwise 2 group
2 key mgmt 1
wpa_driver_bsd_associate: set PRIVACY 1
Setting authentication timeout: 10 sec 0 usec
EAPOL: External notification - EAP success=0
EAPOL: External notification - EAP fail=0
EAPOL: External notification - portControl=Auto
Received 0 bytes of scan results (3 BSSes)
Scan results: 3
Selecting BSS from priority group 0
0: 00:50:fc:d4:bd:e0 ssid='trolle' wpa_ie_len=26 rsn_ie_len=0 caps=0x11
selected based on WPA IE
Trying to associate with 00:50:fc:d4:bd:e0 (SSID='trolle' freq=2462 MHz)
Cancelling scan request


And that just keeps going and going, so i cut it short here.

I have tried changeing everything i could think of on my router.
passphrase, hex key, TKIP/AES, Authentication Type Open, Shared, Auto.
And the same with the wpa_supplicant settings.

Anyone got any ideas? Thanks for reading.

Kind Regards
Mads Trolle


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail 

Re: Empty directory 60M in size; used to contain 1.7 million files

2006-11-27 Thread Andrew Pantyukhin

On 11/27/06, Dan Nelson [EMAIL PROTECTED] wrote:

In the last episode (Nov 27), Peter Schuller said:
 Observe:

 hyperion# ls -la
 total 61634
 drwxr-xr-x  2 xxx yyy  63047168 Nov 18 21:33 .
 drwxr-xr-x  6 xxx yyy 512 Oct  8 16:39 ..
 hyperion# find .
 .
 hyperion#

 The one special circumstance is that the directory previously
 contained 1.7 million small files, that are now deleted. This is on
 FreeBSD 6.1 with UFS2 + softupdates. No snapshots exist of the
 filesystem.

 1.7 million files may be extreme, but I don't see why an empty
 directory would ever consume more than one inode?

Directories are only shrunk when a file is created and the slack
directory space can be trivially truncated.  This is to avoid useless
compaction during rm -rf-style activities of a directory that will
just be deleted anyway.


Shouldn't it be done after a timeout? I can imagine scenarios
when millions of small files are created and deleted in different
dirs. Should it result in no disk space (and a clueless user)?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Problem with https in konqueror

2006-11-27 Thread Mario Lobo
On Monday 27 November 2006 18:15, Lane wrote:

 UGH!  Just went through it yesterday!

 rebuild and reinstall /usr/ports/x11/kdelibs3 and it should work.

 lane

Yeah !! 

Thanks Lane, I'm doing it right now !
-- 
   //| //|
  // |// |
 //  //  |
//  //   
--
[EMAIL PROTECTED]
http://www.ipad.com.br
(FreeBSD since 2.2.8 - 100% Rwindows-free)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD + Asus V2-AH2 + SamSung SyncMaster 204bw

2006-11-27 Thread Rudy Rucker


*** HOW-TO: FreeBSD + Asus V2-AH2 + SamSung SyncMaster 204bw ***
Short answer: FreeBSD 6.2 i386

Phew, I spent a better part of the Thanksgiving weekend getting my new 
machine up and running.  Hopefully, these notes will help out other 
people with Axux V2-AH2 barebones systems.


Motherboard seems similar to the Asus: M2NPV-VM
Graphics chip: Nvidia C51PV
High Definition Audio chip: MCP51
Ethernet driver: nve

I started with 6.1-amd64-release and found all kinds of problems:
 x  ethernet was not working
 x  nv driver in X windows would not do the
native monitor resolution 1680x1050
 x  the nVidia X drivers don't work at all on amd64
 x  the audio would not work at all

*** ETHERNET ***
OK, so step one was putting in an old RealTek ethernet card so I could 
update the ethernet driver.  Sure enough, 6.2-RC1 has the nve driver in it.


*** VIDEO ***
Next was the video driver.  I tried updating X from 6.9 to 7.2 following 
these directions:

 http://wikitest.freebsd.org/ModularXorg
Still, the 'nv' driver did not work as desired --- I couldn't get it to 
run 1680x1050 pixels on my SyncMaster monitor.  I tried downloading the 
nVidia drivers:

 http://www.nvidia.com/object/freebsd_1.0-8776.html
but they only work on i386.  I had to start over and reinstall i386 and 
forgo amd64.  :(  As far as I can tell, there is no way to run Mixed 
Mode kernel objects.  You can run i386 binaries on an amd64 system, 
however, you can't load a i386 ko into a running amd64 kernel.


The nvidia site states:
 If you are using FreeBSD 6.x, you will need to make sure
 that the 'compat5x' package is installed.

Well, I have found you need more than that!  You need the 5x /lib stuff 
as well.  You have to copy the FreeBSD 5.x libraries from somewhere to 
run the nvidia-xconfig script.  Here is what I did:

  rsync -av host-running-5.5:/lib/ /lib55
  cd /lib
  ln -s /lib55/libm.so.3 .
  ln -s /lib55/libc.so.5 .

After running nvidia-xconfig, X windows launches with the proper resolution.

*** AUDIO ***
The last step was getting the audio to work.  The snd_hda driver is needed.

The easiest way to do this, is to download the binary snd_hda module. 
get sndkld_releng6_i386_lowlatency.tar.gz from here:

 http://people.freebsd.org/~ariff/lowlatency/
You need to unpack that tarball and copy sound.ko and snd_hda.ko into 
/boot/kernel.  Then run:

 kld_load snd_hda
Oh, if you already have the old sound.ko loaded, unload it first.

Here is more info on the snd_hda driver:
http://people.freebsd.org/~ariff/
http://lists.freebsd.org/pipermail/freebsd-multimedia/2006-September/004864.html


More references:
Asus site
http://www.asus.com/products4.aspx?l1=1l2=1l3=0model=1159modelmenu=1

This page (and any updates)
http://www.monkeybrains.net/~rudy/example/asus_V2-AH2.html



- Rudy
monkeybrains.net





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


Associated but doesn't connect

2006-11-27 Thread Frozen

Hey list..

status: associated
ssid netgear15 channel 11 bssid mac:address


but it doesnt activate..
it keeps the association thing on...

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


Maia Mailguard

2006-11-27 Thread Gerard Seibert
I was wondering if anyone knows if Maia Mailguard is in the 'ports' 
system? I cannot seem to locate it. Perhaps it is under a slightly 
different name or something.


--
Gerard
[EMAIL PROTECTED]

I have a terrible headache,  I was putting on toilet water and the lid fell.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


now it's openoffice.org-2

2006-11-27 Thread probsd org
I know some of you have labeled me a troll. I don't think I am a troll in 
pointing out to others who may be interested in FreeBSD not to look to it. I 
believe just liking freebsd despite it's issues isn't advantageous to the 
community.
   
  I've documented the problems with mozilla.
   
  Now, with the latest STABLE branch of sourse and ports, openodffice.org-2 
after 10 hrs of comiling fails:
   
  Error while making build_instsetoo_native.
   
  Now, if you cant have the best wordprocessing app and one of the most popular 
web browsers in FreeBSD can you really expect people to embrace it.

 
-
Everyone is raving about the all-new Yahoo! Mail beta.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Checking processes without PIDs

2006-11-27 Thread jhall
I have written a script to determine if processes are running.  I am
using, as an example,

ps -ax | grep -c postgrey

Ocassionally, I am receiving a notification a process is not running (and
it varies which process I receive notifications for).  And, when checking,
the process actually is running.

Is there a better way to determine if a process is running than using ps
and grep?

Thanks,



Jay

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


Re: now it's openoffice.org-2

2006-11-27 Thread Kris Kennaway
On Mon, Nov 27, 2006 at 12:36:04PM -0800, probsd org wrote:
 I know some of you have labeled me a troll. I don't think I am a troll in 
 pointing out to others who may be interested in FreeBSD not to look to it. I 
 believe just liking freebsd despite it's issues isn't advantageous to the 
 community.

   I've documented the problems with mozilla.

   Now, with the latest STABLE branch of sourse and ports, openodffice.org-2 
 after 10 hrs of comiling fails:

   Error while making build_instsetoo_native.

   Now, if you cant have the best wordprocessing app and one of the most 
 popular web browsers in FreeBSD can you really expect people to embrace it.

a) You forgot to include any context to enable someone to figure out
your problem

b) You forgot to CC the maintainer

c) If you're really having problems you can just use the precompiled
package

Kris


pgpsEnCAVSNKs.pgp
Description: PGP signature


Re: now it's openoffice.org-2

2006-11-27 Thread Vince
probsd org wrote:
 I know some of you have labeled me a troll. I don't think I am a troll in 
 pointing out to others who may be interested in FreeBSD not to look to it. I 
 believe just liking freebsd despite it's issues isn't advantageous to the 
 community.

   I've documented the problems with mozilla.

   Now, with the latest STABLE branch of sourse and ports, openodffice.org-2 
 after 10 hrs of comiling fails:

   Error while making build_instsetoo_native.

   Now, if you cant have the best wordprocessing app and one of the most 
 popular web browsers in FreeBSD can you really expect people to embrace it.
 
Not sure why it fails, but no one will be if you dont give the full
error message.

Any particular reason why you dont just use the package?

Vince
  
 -
 Everyone is raving about the all-new Yahoo! Mail beta.
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

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


Re: Checking processes without PIDs

2006-11-27 Thread Dan Nelson
In the last episode (Nov 27), [EMAIL PROTECTED] said:
 I have written a script to determine if processes are running.  I am
 using, as an example,
 
 ps -ax | grep -c postgrey
 
 Ocassionally, I am receiving a notification a process is not running
 (and it varies which process I receive notifications for).  And, when
 checking, the process actually is running.
 
 Is there a better way to determine if a process is running than using ps
 and grep?

Reading the program's pidfile and checking to see if that pid still
exists is the best way.  That only works if your program generates a
pidfile, though.  Most of the time they're in /var/run or a
subdirectory.  If it doesn't generate a pidfile, you can try the pgrep
command, which is better than a ps|grep combo because it won't ever
accidentally match itself.

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


How can I make sure traffic that comes in on one ethernet port/ip goes out that port/IP?

2006-11-27 Thread N. Harrington

 Hello
 I have a server I am using as a load balancer that
has multiple ports. I have set sysctl
net.link.ether.inet.log_arp_movements=0 so I could
have the multiple ports on the same lan. However, I
need to make sure that what comes in via one port/IP
also goes out the same port/IP address. 

I have, lets say: 
 192.168.1.1 as gateway 
 192.168.1.2:255.255.255.0 as a managment 10/100 port
 192.168.1.3:255.255.255.0 as a 100/1K
 192.168.1.4:255.255.255.0 as 2nd 100/1K port

 When I use this, traffic that comes in on .3 and .4
will still go back out via the .2 default port. Is
there a way stop this?  Perhaps via IPFW? Drawing a
blank.

 Thanks for any help.

 Nicole




The Large Print Giveth And The Small Print Taketh Away
 -- Anon


 

Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Checking processes without PIDs

2006-11-27 Thread N.J. Mann
On Mon 27 Nov 20:46, [EMAIL PROTECTED] wrote:
 I have written a script to determine if processes are running.  I am
 using, as an example,
 
 ps -ax | grep -c postgrey

Are you aware of pgrep(1) ?


Cheers,
   Nick.
-- 

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


Re: now it's openoffice.org-2

2006-11-27 Thread John Nielsen
Both of the applications you've mentioned problems with use GTK and other 
GNOME-related libraries. About a month ago the default location for gnome 
libraries was switched from /usr/X11R6 to /usr/local in conjunction with a 
GNOME update and presumably in an effort to modernize/standardize the file 
layout hierarchy. At the time there was an entry made in /usr/ports/UPDATING 
advising users of the change and providing instructions on how to make sure 
that everything was properly updated to use the new location.

The kind of sporadic build and run-time problems you are seeing could very 
well be caused by libraries not being installed in the same location that 
programs trying to link to them are looking for them in.

Please see the 20061014 entry in ports/UPDATING and follow the instructions 
found there. If using portupgrade, I would also advise adding the -v flag and 
saving the output so in case not everything builds cleanly on the first try 
you only need to update the ones that failed (or were skipped) instead of 
restarting the whole process.

Get into the habit of reading the relevant UPDATING file any time you update 
your src or ports trees.

Additional comments below not intended to be inflammatory:

On Monday 27 November 2006 15:36, probsd org wrote:
 I know some of you have labeled me a troll. I don't think I am a troll in
 pointing out to others who may be interested in FreeBSD not to look to it.
 I believe just liking freebsd despite it's issues isn't advantageous to
 the community.

I disagree. Telling others not to use a solid product because you had issues 
as a result of your own setup / problem-solving procedure / etc. is 
irresponsible and needless. Furthermore, the fact that you are still trying 
to get things working and posting to this list indicates that you are not 
taking your own (bad) advice, which would seem to imply that your initial 
post was just to vent your (understandable) frustration and not really to 
express your true opinion.

   I've documented the problems with mozilla.

s/documented/hinted at. I'm going from memory here, but I don't think you 
indicated if or when you updated your ports tree or your mozilla port. You 
certainly didn't include any error messages, or even give examples of sites 
that exhibited the javascript problems you were seeing.

   Now, with the latest STABLE branch of sourse and ports, openodffice.org-2
 after 10 hrs of comiling fails:

Openoffice.org always takes that long to compile. If you don't like it, there 
are precompiled packages available.

   Error while making build_instsetoo_native.

That's about half a page short of a useful error report. You should have 
included all of the text leading up to the error, which presumably would have 
indicated which source files the error occurred in, and/or which libraries it 
was having trouble with.

   Now, if you cant have the best wordprocessing app and one of the most
 popular web browsers in FreeBSD can you really expect people to embrace it.

Again, your experiences are not those of the majority of users. FreeBSD is 
what it is because people volunteer their time and skill to make sure that 
most things will work for most people most of the time. If the people things 
don't work for don't submit detailed problem reports and are not willing to 
work with the proper developer/community in the latter's own timeframe, then 
those people should not be surprised when the world doesn't stop on its heels 
to pry the relevant information out of an impatient complainer.

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


Re: External USB drive kernel problems

2006-11-27 Thread up
On Wed, 22 Nov 2006, Christopher Sean Hilton wrote:

 In all likelyhood FreeBSD needs some quirk to work with the IDE bridge
 chipset in your enclosure. I have noticed that the plain jane enclosures
 seem to work fine but the ones with special features fail. In particular
 I have an enclosure with both a disk and an SD media slot purchased from
 and branded by Compusa that does not work with FreeBSD. I have also
 noticed that the enclosures with a one touch backup button aren't
 supported. I unfortunately do not know how to debug these enclosures.

Well, it looks like we have a winner (loser, actually).  This has the 1
button instant backup feature.  I didn't expect that to work, I just
presumed that this sort of application was sufficiently generic that
existing drivers would at least function with it.

 They tend to be so cheap that I just home in on the ones that are
 supported. I've noticed that the local Best Buy is carrying an Adaptec
 enclosure. I have two of the 2.5 ones and they seem to work fine.
 Here's a link to the 3.5 version which I assume uses that same chipset
 as the 2.5 one:

Would you or anyone happen to have a link to a more comprehensive list to
those that are supported, or which of the required drivers I should look
at for that info?

Thanks again!

James Smallacombe PlantageNet, Inc. CEO and Janitor
[EMAIL PROTECTED]   
http://3.am
=

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


Re: Checking processes without PIDs

2006-11-27 Thread jhall
 In the last episode (Nov 27), [EMAIL PROTECTED] said:
 I have written a script to determine if processes are running.  I am
 using, as an example,

 ps -ax | grep -c postgrey

 Ocassionally, I am receiving a notification a process is not running
 (and it varies which process I receive notifications for).  And, when
 checking, the process actually is running.

 Is there a better way to determine if a process is running than using ps
 and grep?

 Reading the program's pidfile and checking to see if that pid still
 exists is the best way.  That only works if your program generates a
 pidfile, though.  Most of the time they're in /var/run or a
 subdirectory.  If it doesn't generate a pidfile, you can try the pgrep
 command, which is better than a ps|grep combo because it won't ever
 accidentally match itself.


Yes, that works much better for most of the processes I am testing
against!  Two are still giving me problems since their command line has
(perl) listed at the end. Any suggestions on how to better deal with these
two?

They display as follows

  422  ??  Ss 8:04.49 /home/postgrey/postgrey --inet=10023
--greylist-text=Greylisted, see http://www.mnea.org/greylisted.html -d
(perl)

Thanks,



Jay
 --
   Dan Nelson
   [EMAIL PROTECTED]



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


portsdb -Uu hung

2006-11-27 Thread David Abrahams

I seem to be having the same problem described in
http://www.freebsdforums.org/forums/showthread.php?t=22211, with no
system calls shown by truss.

Unfortunately, the fix of upgrading perl from 5.6 to 5.8 doesn't apply
to me: my version of Perl is already at 5.8.8, and probably was from
the moment FreeBSD was installed. I'm relatively new
at all this.  Can someone help me set things right again?

TIA,

-- 
Dave Abrahams
Boost Consulting
www.boost-consulting.com

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


trouble compiling a port - expect on 6.2RC1

2006-11-27 Thread Jim Pazarena

I have problems compiling the stock expect, well actually it is
with the dependencies for expect tcl84 and tk84, on 6.2-RC1.

How do I go about determining outstanding issues for any given port?

Thanks.

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


Re: Checking processes without PIDs

2006-11-27 Thread Dan Nelson
In the last episode (Nov 27), [EMAIL PROTECTED] said:
  In the last episode (Nov 27), [EMAIL PROTECTED] said:
  I have written a script to determine if processes are running.  I am
  using, as an example,
 
  ps -ax | grep -c postgrey
 
  Ocassionally, I am receiving a notification a process is not running
  (and it varies which process I receive notifications for).  And, when
  checking, the process actually is running.
 
  Is there a better way to determine if a process is running than using ps
  and grep?
 
  Reading the program's pidfile and checking to see if that pid still
  exists is the best way.  That only works if your program generates a
  pidfile, though.  Most of the time they're in /var/run or a
  subdirectory.  If it doesn't generate a pidfile, you can try the pgrep
  command, which is better than a ps|grep combo because it won't ever
  accidentally match itself.
 
 
 Yes, that works much better for most of the processes I am testing
 against!  Two are still giving me problems since their command line
 has (perl) listed at the end. Any suggestions on how to better deal
 with these two?
 
 They display as follows
 
   422  ??  Ss 8:04.49 /home/postgrey/postgrey --inet=10023 
 --greylist-text=Greylisted, see http://www.mnea.org/greylisted.html -d (perl)

You'll probably need to use the -f option to pgrep to match against the
full commandline instead of just the process name:

  pgrep -f /home/postgrey/postgrey --inet=10023

I added the first argument to the search string, because if you just
use /home/postgrey/postgrey, then commands like less
/home/postgrey/postgrey would match.

A quick web search indicates that postgrey supports a --pidfile option,
so you might want to use that.  In fact, the startup script installed
by the FreeBSD port seems to include it, so I'm not sure why it's not
in your ps output there.

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


Re: Getting SHTML to work

2006-11-27 Thread Olivier Nicole
 Secondly,  I needed to either expressly place the file on the command
 line or else the SSI would not display, 

I don't understand what you mean.

 or chmod the file to 0755. I
 choose to do the later obviously since it is an index file.

I run a site full of SSI, files are mode 644 and it is working
fine. Do you have suexec configured?Then you may have to consider the
configuration of suexec.

Bests

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


Re: Checking processes without PIDs

2006-11-27 Thread Brian

[EMAIL PROTECTED] wrote:

I have written a script to determine if processes are running.  I am
using, as an example,

ps -ax | grep -c postgrey

Ocassionally, I am receiving a notification a process is not running (and
it varies which process I receive notifications for).  And, when checking,
the process actually is running.

Is there a better way to determine if a process is running than using ps
and grep?

Thanks,



Jay

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

Does ps auxwww work ?

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


Re: Best laptop for Freebsd

2006-11-27 Thread hackmiester (Hunter Fuller)


On 16 November 2006, at 01:34, George Allan wrote:


On Thu, Nov 16, 2006 at 08:58:53AM +0300, g wrote:

Is there any one model or product that would be better for Freebsd 6
(as this is my day in day out operating system).


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


Any experiences and or advise would be much appreciated.


My vote is for Thinkpads


Mine too. I have an R51. Man, that computer is awesome. No issues  
with it, etc.



A quick search of the archives will bear out
the popularity of that opinion.

Be prepared first to investigate the hardware on any prospective  
model,
second, evaluate the support with respect to each and every device,  
and

finally, spend time and effort configuring things so things work just
right, for increasingly large values of right.

I believe the investment in time and effort pays off in all sorts of
ways, but chances are you'll end up with a system that you'll consider
indispensible and one that you'll know better than your girlfriend,
wife, or whatever.   I'll leave it to you decide whether that's a good
thing.  ;-)


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




--
hackmiester (Hunter Fuller)

badaboom who can help me ? i'm french and i don't know irc
Paladine can't help you with the being french part, you are screwed  
their mate





Phone
Voice: +1 251 589 6348
Fax: Call the voice number and ask.

Email
General chat: [EMAIL PROTECTED]
Large attachments: [EMAIL PROTECTED]
SPS-related stuff: [EMAIL PROTECTED]

IM
AIM: hackmiester1337
Skype: hackmiester31337
YIM: hackm1ester
Gtalk: hackmiester
MSN: [EMAIL PROTECTED]
Xfire: hackmiester






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


secondary ide drive setup

2006-11-27 Thread David Banning
I am attempting to setup a secondary ide drive. I have configured the 
entire 305MB drive for storage. I used /stand/sysinstall and -it-
issued the command ;

/bin/sh -c newfs -b 16384 -f 2048 /dev/ad2s1e

which seems very disk intensive and is taking a long time. I am wondering
if this is right. I just want to use the second drive as a storage folder
for backing up the main drive.

The disklabel editor shows it as 

Disk: ad2   Partition name: ad2s1   Free: 0 blocks (0MB)

Part  Mount  Size Newfs   Part  Mount  Size Newfs
  -   -     -   -
ad2s1e/uusr   305242MBUFS+S Y

This configuration issued the command as above;

/bin/sh -c newfs -b 16384 -f 2048 /dev/ad2s1e

How long should newfs take for a 305 MB drive?


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


Re: Native Seamonkey Javascript error

2006-11-27 Thread Warren Block

On Mon, 27 Nov 2006, Robert Huff wrote:


Warren Block writes:


 Could someone running a native Seamonkey


Yo!


verify that this isn't just my system:

 With Javascript enabled (Edit/Preferences/Advanced/Scripts And
 Plugins/Enable JavaScript for Navigator checked) go to

 http://finance.yahoo.com


Done.


 Type GOOG in the Get Quotes box, and click Go.  I get a core dump
 from Seamonkey as it loads the new page.


Works OK here.  Sending page by separate e-mail.


Could you post your /var/db/ports/seamonkey/options file?

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


ssh over http

2006-11-27 Thread Ansar Mohammed
Hello All,
Is there any ssh over http implementation available for freebsd?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: trouble compiling a port - expect on 6.2RC1

2006-11-27 Thread Josh Carroll

How do I go about determining outstanding issues for any given port?


You can search existing PRs here:
http://www.freebsd.org/cgi/query-pr-summary.cgi?query

If the port itself is broken, it will be marked as such, but those
ports compile fine on my 6.2-RC1 system, so it's unlikely they are
broken.

Perhaps you can paste the last 15-20 lines of the output when you try
to compile the tcl port? It might be more appropriate to troubleshoot
on the ports mailing list if it's a ports issue.

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


Compiz/Beryl Port

2006-11-27 Thread Ansar Mohammed
Is anyone working on a Beryl or Compiz port for freebsd?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Native Seamonkey Javascript error

2006-11-27 Thread Robert Huff
Warren Block writes:

  Works OK here.  Sending page by separate e-mail.
  
  Could you post your /var/db/ports/seamonkey/options file?

# Options for seamonkey-1.0.b
_OPTIONS_READ=seamonkey-1.0.b
WITH_MAILNEWS=true
WITH_COMPOSER=true
WITH_LDAP=true
WITH_CHATZILLA=true
WITHOUT_JAVASCRIPT_DEBUGGER=true
WITHOUT_SMB=true
WITHOUT_DEBUG=true
WITH_LOGGING=true
WITH_OPTIMIZED_CFLAGS=true



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


Help: need to find out the information about the harddisk data distribution status

2006-11-27 Thread Jackie Tai

Hi All



I'm a master student and I'm currently working on a project, in order to
complete the report, I need to find out the information about the harddisk
data distribution status, such as the number of files on each cylinder
group, the occupied status on each cylinder, the files layout on each
cylinder block etc…..

I wonder is there any command or way that can show the low level information
about the harddisk that similar to what I describe above, I have been
searching on the Internet for a week but I only found something like: di
diskusage diskinfo …. Etc they only report the data usage or free space
which not I want, I also found a command call fstyp it look that it can
report the harddisk number of cylinder blocks availability, although I can't
found that command on FreeBSD.



Any help or guidance will be greatest appreciate.



Thanks

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


Re: FreeBSD 6.1 setup doesn't see my HDD

2006-11-27 Thread Amit Joshi
On Monday 27 November 2006 23:18, Dima wrote:
  On Mon, Nov 27, 2006 at 06:58:32PM +0200, Dima wrote:
 
trimmed

  By the way there are some error messages regarding this on Ctrl+Alt+F2
  (during install), but they say nothing to me:
  ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
  ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
  ad0: FAILURE - READ_DMA status=51READY,DSC,ERROR
  error=84ICRC,ABORTED
  LBA=0
  They're repeated 4 times.
 
trimmed

 Yes, I can:
 ad0: 238457 MB WDC WD2500JB-00GVC0 08.02D08 at ata0-master UDMA
 acd0 . at ata0-slave looks fine too (I'm too lazy to copy it :)
 Also I have ad2 and it seems fine on dmesg too.
 After that goes

 ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
 ad0: WARNING - READ_DMA UDMA ICRC error (retrying request) LBA=0
 ad0: FAILURE - READ_DMA status=51READY,DSC,ERROR

 and repeats 3 times.

Well..I installed the FreeBSD 6.1-STABLE release lately, and everything went 
fine as far as the install was concerned. Yeah, I had some problems getting 
KDE to work properly, cuz of some issues with the Xserver, but they could be 
dealt with. So for a couple of days, I must say that FreeBSD was working 
fine. 

Then I was looking for some way of mounting the FreeBSD partition on Linux 
and/or vice-versa. But I couldn't do it. 

The next time I tried booting to FreeBSD, I am getting the same errors that 
you are!!! This time, I have no clue to what went wrong! 
Is this a known bug or something?
-- 
Regards, 
Amit.
http://copperskullcprogramming.blogspot.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


DGE-530T nic not found on 5.5

2006-11-27 Thread Derrick Ryalls

Greetings, I have a fileserver I installed this nic on but the device
fails to show in ifconfig

uname:
5.5-STABLE FreeBSD 5.5-STABLE #2: Sun Oct 29 14:12:46 PST 2006
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/FRODO

Except from FRODO kernel file (generic plus some):

# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
device  miibus  # MII bus support
device  bfe # Broadcom BCM440x 10/100 Ethernet
device  bge # Broadcom BCM570xx Gigabit Ethernet
device  dc  # DEC/Intel 21143 and various workalikes
device  fxp # Intel EtherExpress PRO/100B (82557, 82558)
device  lge # Level 1 LXT1001 gigabit ethernet
device  nge # NatSemi DP83820 gigabit ethernet
device  pcn # AMD Am79C97x PCI 10/100 (precedence
over 'lnc')
device  re  # RealTek 8139C+/8169/8169S/8110S
device  rl  # RealTek 8129/8139
device  sf  # Adaptec AIC-6915 (``Starfire'')
device  sis # Silicon Integrated Systems SiS 900/SiS 7016
device  sk  # SysKonnect SK-984x  SK-982x gigabit Ethernet
device  ste # Sundance ST201 (D-Link DFE-550TX)
device  ti  # Alteon Networks Tigon I/II gigabit Ethernet
device  tl  # Texas Instruments ThunderLAN
device  tx  # SMC EtherPower II (83c170 ``EPIC'')
device  vge # VIA VT612x gigabit ethernet
device  vr  # VIA Rhine, Rhine II
device  wb  # Winbond W89C840F
device  xl  # 3Com 3c90x (``Boomerang'', ``Cyclone'')


dmesg except:

pci0: network, ethernet at device 6.0 (no driver attached)
vr0: VIA VT6102 Rhine II 10/100BaseTX port 0xdc00-0xdcff mem
0xdfffbe00-0xdfffbeff
irq 23 at device 18.0 on pci0
miibus0: MII bus on vr0
ukphy0: Generic IEEE 802.3u media interface on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
vr0: Ethernet address: xx:xx:xx:xx:xx:xx

The reference to vr0 are for the onboard nic that it is currently
running off of.

ifconfig lists vr0, plip0, lo0

Doing some searching, someone posted this part of dmesg on a 5.4
PRERELEASE system:

skc0: D-Link DGE-530T Gigabit Ethernet port 0x7400-0x74ff mem
0xfb80-0xfb803fff irq 18 at device 10.0 on pci2
skc0: (null) rev. (0x1)
sk0: Marvell Semiconductor, Inc. Yukon on skc0
sk0: Ethernet address: 00:0f:3d:f2:45:0c
miibus0: MII bus on sk0
e1000phy0: Marvell 88E1000 Gigabit PHY on miibus0
e1000phy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX,
auto

I did check the hardware notes before buying this nic, and according
to http://www.freebsd.org/releases/5.5R/hardware-i386.html it is
supported.  Have I missed a switch somewhere?

Thanks in advance.

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


Latest Apache13 with PHP5 crashes when PostgreSQL support is added

2006-11-27 Thread James Long
I have been running Apache (apache+mod_ssl-1.3.34+2.8.25_1) for some
time with php5 and extensions to support PostgreSQL 8.0.9.  After 
upgrading to PostgreSQL 8.1.15 I find that Apache crashes if the
php5 PostgreSQL extension is installed.  I have updated Apache to
apache+mod_ssl-1.3.37+2.8.28 with no improvement.  I have 
pkg_deleted and re-installed the php5 port with no improvement.

Starting Apache via the package's rc.d script results in a short-
lived httpd process that doesn't live long enough to log anything 
before it exits.  I have to run it as httpd -DSSL -X to see
any debugging info at all, which is simply Segmentation fault: 11 
(core dumped) and an httpd.core file.

I am compiling php5-extensions with only pgsql support.  With this
php5-extensions meta-port installed, Apache will not start with PHP
support.  If I either comment out Apache's PHP support, or de-install
the php5-pgsql-5.2.0 package, Apache will start.  That suggests to
me that I have narrowed down my list of suspects.

How can I get the latest Apache 1.3.X and PHP5 to support the latest 
PostgreSQL?

Thank you for your time.

Jim




ns : 21:05:31 /usr/ports/lang/php5-extensions# make showconfig | grep -vw off
=== The following configuration options are available for php5-extensions-1.0:
 PGSQL=on PostgreSQL database support
=== Use 'make config' to modify these settings

If I install php5-pgsql-5.2.0 and run /usr/local/etc/rc.d/apache start
I get no error message on the console, and a single httpd process lives
briefly then exits.   Manually running httpd -DSSL -X shows a segmentation
fault 11.  Below, findps is a shell shortcut that is basically 
ps -axl | grep $@ which is a quick and dirty way to see whether a process
is running.

ns : 21:26:27 /usr/local/etc/apache# findps http
ns : 21:26:30 /usr/local/etc/apache# pkg_info | grep php
php5-5.2.0  PHP Scripting Language (Apache Module and CLI)
php5-extensions-1.0 A meta-port to install PHP extensions
php5-pgsql-5.2.0The pgsql shared extension for php
ns : 21:26:36 /usr/local/etc/apache# pkg_info | grep ^apache
apache+mod_ssl-1.3.37+2.8.28 The Apache 1.3 webserver with SSL/TLS functionality
ns : 21:26:44 /usr/local/etc/apache# httpd -DSSL -X
Processing config directory: /usr/local/etc/apache/virtual-hosts/*.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example1.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example2.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example3.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example4.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example5.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example6.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example7.conf
(... etc.)
 Processing config file: /usr/local/etc/apache/virtual-hosts/org.exampleN.conf
Segmentation fault: 11 (core dumped)
ns : 21:26:59 /usr/local/etc/apache# ls -l *core
-rw---  1 root  wheel  27332608 Nov 27 21:26 httpd.core
ns : 21:27:08 /usr/local/etc/apache#

If I de-install the PHP support for Postgres, apache will start:

ns : 21:30:07 /usr/local/etc/apache# pkg_delete php5-pgsql-5.2.0
pkg_delete: package 'php5-pgsql-5.2.0' is required by these other packages
and may not be deinstalled:
php5-extensions-1.0
ns : 21:30:12 /usr/local/etc/apache# pkg_delete php5-extensions-1.0
ns : 21:30:26 /usr/local/etc/apache# pkg_delete php5-pgsql-5.2.0
ns : 21:30:28 /usr/local/etc/apache# /usr/local/etc/rc.d/apache.sh start
Starting apache.
Processing config directory: /usr/local/etc/apache/virtual-hosts/*.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example1.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example2.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example3.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example4.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example5.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example6.conf
 Processing config file: /usr/local/etc/apache/virtual-hosts/com.example7.conf
(... etc.)
 Processing config file: /usr/local/etc/apache/virtual-hosts/org.exampleN.conf
ns : 21:30:58 /usr/local/etc/apache# findps http
root  56898 41.4  3.1 37024 32404  ??  Ss9:30PM   0:02.72 
/usr/local/sbin/httpd -DSSL
www   57036  0.0  3.1 37024 32420  ??  S 9:31PM   0:00.01 
/usr/local/sbin/httpd -DSSL
www   57037  0.0  3.1 37024 32420  ??  S 9:31PM   0:00.00 
/usr/local/sbin/httpd -DSSL
www   57038  0.0  3.1 37024 32420  ??  S 9:31PM   0:00.01 
/usr/local/sbin/httpd -DSSL
www   57039  0.0  3.1 37024 32420  ??  S 9:31PM   0:00.01 
/usr/local/sbin/httpd -DSSL
www   57040  0.0  3.1 37024 32420  ??  S 9:31PM   0:00.00 
/usr/local/sbin/httpd -DSSL
ns : 21:31:03 /usr/local/etc/apache#




mpd 4.0b5 does not want to work

2006-11-27 Thread a
I have compiled and installed mpd 4.0b5
on my PC with FreeBSD 6.1-RELEASE.

Then I created the next files:

# mpd.conf

default:
new ukrtelecom dsl
set auth authname [EMAIL PROTECTED]
set iface route default
open iface


# mpd.links

dsl:
set link type pppoe
set pppoe iface rl0
set pppoe enable originate


# mpd.secret

[EMAIL PROTECTED]   password


in /usr/local/etc/mpd4.
This files I use successfully with MPD 4.0b2.


Then I typed mpd4 in the console and get the following:

Multi-link PPP for FreeBSD, by Archie L. Cobbs.
Based on iij-ppp, by Toshiharu OHNO.
mpd: pid 1006, version 4.0b5 ([EMAIL PROTECTED] 22:32  1-Nov-2006)
Label 'startup' not found
[ukrtelecom] ppp node is mpd1006-ukrtelecom
tcpmss node is mpd1006-mss
[ukrtelecom] using interface ng0
[ukrtelecom] IFACE: Open event

MPD does not respond any command (keys are echoed on console).

It loads many kernel modules:

$ kldstat 
Id Refs AddressSize Name
 1   12 0xc040 38b600   kernel
 21 0xc078c000 58554acpi.ko
 31 0xc4609000 4000 ng_socket.ko
 48 0xc460d000 a000 netgraph.ko
 51 0xc461f000 3000 ng_iface.ko
 61 0xc4622000 6000 ng_ppp.ko
 71 0xc4632000 4000 ng_bpf.ko
 81 0xc4636000 2000 ng_tcpmss.ko
 91 0xc4639000 4000 ng_vjc.ko
101 0xc4641000 3000 ng_ether.ko
111 0xc4644000 5000 ng_pppoe.ko

But no link is up:

$ ifconfig 
rl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
options=8VLAN_MTU
inet6 fe80::202:44ff:fe92:1875%rl0 prefixlen 64 scopeid 0x1 
inet 192.168.1.2 netmask 0xff00 broadcast 192.168.1.255
ether 00:02:44:92:18:75
media: Ethernet autoselect (100baseTX full-duplex)
status: active
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet6 ::1 prefixlen 128 
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x2 
inet 127.0.0.1 netmask 0xff00 
ng0: flags=8890POINTOPOINT,NOARP,SIMPLEX,MULTICAST mtu 1500


MPD respondes only to ^C and reads:

^Cmpd: caught fatal signal int
[ukrtelecom] IPCP: Down event
[ukrtelecom] IPV6CP: Down event
[ukrtelecom] IFACE: Close event
[ukrtelecom] bundle: CLOSE event in state CLOSED
[ukrtelecom] IPCP: Down event
[ukrtelecom] IPV6CP: Down event
[ukrtelecom] IFACE: Close event
mpd: process 1006 terminated


What is a problem?

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


Re: Latest Apache13 with PHP5 crashes when PostgreSQL support is added

2006-11-27 Thread James Long
On Mon, Nov 27, 2006 at 09:48:46PM -0800, James Long wrote:
 I have been running Apache (apache+mod_ssl-1.3.34+2.8.25_1) for some
 time with php5 and extensions to support PostgreSQL 8.0.9.  After 
 upgrading to PostgreSQL 8.1.15 I find that Apache crashes if the
 php5 PostgreSQL extension is installed.  I have updated Apache to
 apache+mod_ssl-1.3.37+2.8.28 with no improvement.  I have 
 pkg_deleted and re-installed the php5 port with no improvement.

Please forgive the typo, I am running PostgreSQL 8.1.5:

postgresql-client-8.1.5 PostgreSQL database (client)
postgresql-server-8.1.5 The most advanced open-source database available 
anywhere

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


Re: freebsd desktop | mozilla

2006-11-27 Thread Simon Phoenix
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

probsd org said the following on 26.11.2006 22:20:
 
 Simon Phoenix [EMAIL PROTECTED] wrote:
 
 On Fri, Nov 24, 2006 at 03:41:11PM -0800, probsd org wrote:
 I'm a long time proponent of FreeBSD as a server. For a long time I've 
 really wanted a FreeBSD system as a desktop. So, I decided to install the 
 FreeBSD 6.2 and compile xorg, gnome, mozilla, etc... to give it a whirl.

 For anyone reading this, who wants the same thing.

 DO NOT DO IT. Nothing works. java is borked, mozilla and firefox are 
 borked, gnome is ify ugh.

 Just dont do it. As a server, I highly recommend it... but it isn't ready 
 for the desktop.
 
 I`m using FreeBSD as desktop since 5.0. It works fine.

   This is another issue I have... it seems to works just fine for some 
 people (although I don't know why) and not for others.  How come when I 'make 
 install clean' in www/firefox (yes my ports are updated correctly) (and just 
 for one example) javascript dosen't work on certain websites but for you it 
 does. This shouln't be  ahardware issue.  I also see no Makefile declarations 
 to make javascript work for the individual that said I should look at the 
 Makefile closer.

   Actually, in looking at the current port version of www/firefox there are 
 no -D options.

   I am using FBSD 6.2-prerelease, my 'world' is compiled correctly, my ports 
 are updated. Firefox should work on my box just like it works on everyone 
 elses box

   Unless we want to admit that having the latest version of a port installed 
 or using the STABLE version of FreeBSD isn't a good idea.

JavaScript is a part of a Gecko engine in firefox and enabled by default
during build/install.
If you really want solve your problem - show more detailed information
about it (where js not work?, user.js from your profile, are all depends
for firefox installed, etc?...)

- --
Best regards,
Simon Phoenix (Phoenix Lab.)
- ---
KeyID: 0x2569D30B
Fingerprint: 78FC 5C40 07CC D331 148E CC79 84B8 D514 2569 D30B
- ---
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFa9tyhLjVFCVp0wsRCjIJAKCCnwE92NFu+8P/cCJndvbg3w2jQgCg2ofs
Vj8IMKO71WmM+f3diudHiTg=
=apeZ
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Maia Mailguard

2006-11-27 Thread Abdullah Al-Marrie

On 11/27/06, Gerard Seibert [EMAIL PROTECTED] wrote:

I was wondering if anyone knows if Maia Mailguard is in the 'ports'
system? I cannot seem to locate it. Perhaps it is under a slightly
different name or something.



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


Re: Associated but doesn't connect

2006-11-27 Thread Abdullah Al-Marrie

On 11/27/06, Frozen [EMAIL PROTECTED] wrote:

Hey list..

status: associated
ssid netgear15 channel 11 bssid mac:address


but it doesnt activate..
it keeps the association thing on...

any solutions?


check 
http://blog.wearab.net/arab/2006/11/26/howto-linksys-wpc54g-with-pc-bsd-13-based-freebsd-61/

Good luck,

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


Re: Best laptop for Freebsd

2006-11-27 Thread Abdullah Al-Marrie

On 11/28/06, hackmiester (Hunter Fuller) [EMAIL PROTECTED] wrote:


On 16 November 2006, at 01:34, George Allan wrote:

 On Thu, Nov 16, 2006 at 08:58:53AM +0300, g wrote:
 Is there any one model or product that would be better for Freebsd 6
 (as this is my day in day out operating system).

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

 Any experiences and or advise would be much appreciated.

 My vote is for Thinkpads

Mine too. I have an R51. Man, that computer is awesome. No issues
with it, etc.


Toshiba is good too, when you compare it's price with ibm, you'll find
Toshiba with it's features is better choice.

Thank you,

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


How to choose an UPS?

2006-11-27 Thread a
I am going to buy an UPS.
What should I know and take into account to choose a proper one?

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


re driver in 5.3?

2006-11-27 Thread Scott Gasch

Hi,

I'm trying to get a linksys eg1032 gigabit ethernet card (version 3) working
under freebsd 5.3.  This appears to be an RTL8169S based card.

When I build a kernel with the re device (and miibus) enabled, the card is
not detected.  I also tried building a GENERIC kernel to sanity check my
config -- the card is not detected with the GENERIC kernel either.  I
verified that the if_re.c file is being compiled / included in the kernel.

The LINT config for 5.3 _does_not_ include device re which I find
strange.  The man page for re says it was introduced in 5.2 so I think it
should be here?

I tried disabling ACPI support in the loader menu but this did not result in
the detection of the card.

I tried booting a 6.1 kernel on the machine and it _does_ detect the
device.  Is this likely due to driver code differences or something else in
the 6.x kernels?  I'd rather not upgrade this box to 6.x yet but I could
certainly bring it up to 5.5.

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