Re: Mysql postfix SASL cyrus imap problem

2005-03-16 Thread Daniel S. Haischt
As a short note - Try adding something like the following to
your imapd.conf if you you want that Cyrus authenticates against
your RDBMS as well ...
#sasl_auxprop_plugin: sql
#sasl_sql_engine: pgsql
#sasl_sql_hostnames: postgresql.abyssworld.de
#sasl_sql_user: haischt
#sasl_sql_passwd: access4odin
#sasl_sql_database: sasl2_auxprop
#sasl_sql_select: SELECT %p FROM user_table WHERE username = '%u' and 
realm = '%r'

... and as a 2nd note - Make sure that the directory where the
lmtp socket etc. should be created exists and is readable by
the cyrus user account.
Jason M aka Talon schrieb:
Sorry if this was a double post my subscribe was not working :(
Im not sure if the original mail went through.
Hi All
I have a problem with my cyrus imap / mysql install
after 3 days on google looking around i am ripping my hair out
I have tried everything i have found in the faq's / howto's
but just cant seem to get it to work.
Postfix works nicely and delivers to maildir etc
when i use the sasldb for cyrus i have no problems users can log in
auxprop has not been nice to me g.
If any one has the time could they have a look at my configuration and
give me a pointer on what I am doing wrong.
Any help would be greatly appreciated
Regards Jason M aka Talon (talonz[at]gmail.com)
###
## version information
OS FreeBSD 5.3-RELEASE-p5
Postfix Version postfix 2.1.5
MySQL server version: 5.0.0-alpha
Cyrus Version cyrus-imapd 2.2.10
SASL Version cyrus-sasl 2.1.20
All installed from ports
###
## /var/log/messages :: Errors when imapd is started
forsaken master[60842]: process started
forsaken ctl_cyrusdb[60843]: recovering cyrus databases
forsaken ctl_cyrusdb[60843]: skiplist: recovered
/var/imap/mailboxes.db (3 records, 584 bytes) in 0 seconds
forsaken ctl_cyrusdb[60843]: skiplist: recovered
/var/imap/annotations.db (0 records, 144 bytes) in 0 seconds
forsaken ctl_cyrusdb[60843]: done recovering cyrus databases
forsaken master[60842]: unable to create lmtpunix listener socket: No
such file or directory
forsaken master[60842]: ready for work
forsaken ctl_cyrusdb[60844]: checkpointing cyrus databases
forsaken ctl_cyrusdb[60844]: DBERROR: error listing log files:
DB_NOTFOUND: No matching key/data pair found
forsaken ctl_cyrusdb[60844]: DBERROR: archive /var/imap/db: cyrusdb error
forsaken ctl_cyrusdb[60844]: DBERROR: error listing log files:
DB_NOTFOUND: No matching key/data pair found
forsaken ctl_cyrusdb[60844]: DBERROR: archive /var/imap/db: cyrusdb error
forsaken ctl_cyrusdb[60844]: done checkpointing cyrus databases
###
## Login errors (after telnet localhost imap // o login test test)
## this is the bit that has me stumped
forsaken imap[60846]: sql_select option missing
forsaken imap[60846]: auxpropfunc error no mechanism available
forsaken imap[60846]: no user in db
forsaken imap[60846]: no user in db
forsaken imap[60846]: badlogin: localhost [127.0.0.1] plaintext test
SASL(-13): user not found: checkpass failed
###
## Start Configuration
###
## postfix main.cf
queue_directory = /var/spool/postfix
command_directory = /usr/local/sbin
daemon_directory = /usr/local/libexec/postfix
mail_owner = postfix
myhostname = forsaken.unix.org.au
mydomain = unix.org.au
inet_interfaces = all
mydestination = $myhostname, localhost.$mydomain, localhost
unknown_local_recipient_reject_code = 550
relay_domains = $mydestination
debug_peer_level = 2
debugger_command =
PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
xxgdb $daemon_directory/$process_name $process_id  sleep 5
sendmail_path = /usr/local/sbin/sendmail
newaliases_path = /usr/local/bin/newaliases
mailq_path = /usr/local/bin/mailq
setgid_group = maildrop
html_directory = no
manpage_directory = /usr/local/man
sample_directory = /usr/local/etc/postfix
readme_directory = no
# header/body checking
header_checks = regexp:/usr/local/etc/postfix/header_checks
body_checks = regexp:/usr/local/etc/postfix/body_checks
# use cyrus or virtual
mailbox_transport = cyrus
virtual_alias_maps = mysql:/usr/local/etc/postfix/mysql_virtual_alias_maps.cf
virtual_gid_maps = static:125
virtual_mailbox_base = /usr/local/virtual
virtual_mailbox_domains =
mysql:/usr/local/etc/postfix/mysql_virtual_domains_maps.cf
virtual_mailbox_limit = 5120
virtual_mailbox_maps =
mysql:/usr/local/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_minimum_uid = 125
# use cyrus or 

Re: subversion on FreeBSD 4.10

2005-03-11 Thread Daniel S. Haischt
did you compile Apache 2.x with WebDAV support (i.e. mod_dav)?
Rene C. Mendoza schrieb:
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. By 
the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just seems 
to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a -n 
dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing wrong?
Thanks in advance,
Rene

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: subversion on FreeBSD 4.10

2005-03-11 Thread Daniel S. Haischt
can you add the following subversion ports option:
 WITH_APACHE2_APR=yes
from the port's Makefile:
 You can enable the mod_dav_svn module for Apache 2.X
 by defining WITH_MOD_DAV_SVN.  This option implies
 the WITH_APACHE2_APR option.
Rene C. Mendoza schrieb:
Daniel S. Haischt wrote:
did you compile Apache 2.x with WebDAV support (i.e. mod_dav)?
Rene C. Mendoza schrieb:
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. By 
the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just 
seems to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a 
-n dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing 
wrong?

Thanks in advance,
Rene


yes i did. i use penv in our server.  here are the environment settings 
on www/apache2.

# penv -c list
WITH_DAV_MODULES=yes
WITH_AUTH_MODULES=yes
WITH_SSL_MODULES=yes
WITH_MISC_MODULES=yes
WITH_BERKELEYDB=db42
WITH_LDAP_MODULES=yes
on devel/subversion, i have these penv settings:
# penv -c list
WITH_MOD_DAV_SVN=yes
WITH_BOOK=yes
did i miss anything?
thanks,
rene

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: subversion on FreeBSD 4.10

2005-03-11 Thread Daniel S. Haischt
OK, I have to admit that this was a stupid suggestion ;-)
WITH_APACHE2_APR will be set to yes if using WITH_MOD_DAV_SVN
(as you did).
Did you try to manually execute the command ...
/usr/local/sbin/apxs -e -S \
LIBEXECDIR=/usr/local/libexec/apache2 \
-a -n dav libexec/apache2/mod_dav.so
... just to ensure APXS is realy the reason for this
issue?
Daniel S. Haischt schrieb:
can you add the following subversion ports option:
 WITH_APACHE2_APR=yes
from the port's Makefile:
 You can enable the mod_dav_svn module for Apache 2.X
 by defining WITH_MOD_DAV_SVN.  This option implies
 the WITH_APACHE2_APR option.
Rene C. Mendoza schrieb:
Daniel S. Haischt wrote:
did you compile Apache 2.x with WebDAV support (i.e. mod_dav)?
Rene C. Mendoza schrieb:
Hi!
I'm trying to install subversion-1.1.3 on FreeBSd 4.10 from ports. 
By the way, my ports tree is updated regularly.
When I install in the subversion port directory, installation just 
seems to stop or sleep.

Here is the relevant line where it sleeps:
/usr/local/sbin/apxs -e -S LIBEXECDIR=/usr/local/libexec/apache2 -a 
-n dav libexec/apache2/mod_dav.so

I may have missed something. Can anybody help show me what I'm doing 
wrong?

Thanks in advance,
Rene


yes i did. i use penv in our server.  here are the environment 
settings on www/apache2.

# penv -c list
WITH_DAV_MODULES=yes
WITH_AUTH_MODULES=yes
WITH_SSL_MODULES=yes
WITH_MISC_MODULES=yes
WITH_BERKELEYDB=db42
WITH_LDAP_MODULES=yes
on devel/subversion, i have these penv settings:
# penv -c list
WITH_MOD_DAV_SVN=yes
WITH_BOOK=yes
did i miss anything?
thanks,
rene


--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: clamd after upgrade to 0.83

2005-02-24 Thread Daniel S. Haischt
The status request simply fails because in /etc/rc.subr ...
status)
  if [ -n $rc_pid ]; then
echo ${name} is running as pid $rc_pid.
  else
echo ${name} is not running.
return 1
  fi
;;
there's only a check whether the pid specified in ...
 /usr/local/etc/clamav-clamd.sh
... exists.
Two things you can test:
 If you are running ClamAV in UNIX domain socket mode,
there must be an appropriate UNIX domain socket file
somewhere, because Amavis tries to connect to the ClamAV
daemon using this socket. Usually this socket is specified
in 'clamd.conf'.
I would say if there's not such a socket file, your
ClamAV daemon is quiete unusable because nobody is able
to connect to the daemon instance.
If you are running ClamAV in TCP/IP mode you can do the
telnet test again. The TCP/IP port ClamAV listens to is
specified in 'clamd.conf' as well.
Finally try running /usr/local/sbin/clamd manually from
the command line to see whether it spits out some error
messages ...
Robert Fitzpatrick schrieb:
Thanks, that explains why postfix is still logging. But clamd is running...
esmtp# ps -ax | grep clam
26441  ??  Ss 0:00.37 /usr/local/sbin/clamd
26467  ??  Is 0:00.00 /usr/local/bin/freshclam --daemon
26494  ??  Is 0:00.00 /usr/local/bin/freshclam --daemon
But still the server thinks it is not and there is no pid file...
esmtp# /usr/local/etc/rc.d/clamav-clamd.sh status
clamav_clamd is not running.
esmtp# ls -la /var/run/clamav/
total 4
drwxr-xr-x  2 clamav  clamav  512 Feb 23 21:51 .
drwxr-xr-x  6 rootwheel   512 Feb 23 21:51 ..
esmtp#
I even uninstalled and re-installed. Any ideas why this is not reporting 
as running?

--
Robert
--On Wednesday, February 23, 2005 9:10 PM +0100 Daniel S. Haischt 
[EMAIL PROTECTED] wrote:

I think the following section in /usr/local/amavisd.conf
should answer your question:
   ### http://www.clamav.net/   - backs up clamd or Mail::ClamAV
   ['ClamAV-clamscan', 'clamscan',
 --stdout --disable-summary -r --tempdir=$TEMPBASE {}, [0], [1],
 qr/^.*?: (?!Infected Archive)(.*) FOUND$/ ],
Basically if clamd is not running Amavis will execute the
commandline scanner version of ClamAV. That's the reason why
you are still getting log entries.
So to sumarize: ClamAV's daemon is not running, thus
there is neither a PID file nor a UNIX domain socket.
So if you want to use the daemonized version of ClamAV,
you need to elaborate why the daemon isn't started.
Robert Fitzpatrick schrieb:
I do not have anything in /var/run/clamav and that is the location in
clamd.conf for placing the PID file. I cannot connect to the localhost
as well:
esmtp# telnet localhost 3310
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
telnet: Unable to connect to remote host
However, according to the clamd.log, clamav is intercepting viruses. Do
you think it is working and why would I not be able to connect via
telnet or view the pid file if it is?
--
Robert
--On Wednesday, February 23, 2005 8:35 PM +0100 Daniel S. Haischt
[EMAIL PROTECTED] wrote:
Usually if you are running ClamAV in UNI domain socket mode,
there should be a UNIX domain socket called 'clamd' in ...
  - /var/run/clamav
Tho - this file can be configured in /usr/local/etc/clamd.conf.
If ClamAv is running in TCP/IP mode it should be possible to
test whether the server is responding by connecting to its
TCP/IP port using a telnet client ...
  - telnet localhost 3310
Robert Fitzpatrick schrieb:
After doing a portupgrade of clamd from 0.81 to 0.83, the service
reports that it is not running using 'clamav-clamd.sh status'.
esmtp# cd /usr/local/etc
esmtp# rc.d/clamav-clamd.sh status
clamav_clamd is not running.
esmtp# ps -ax|grep clam
 781  ??  Ss 0:10.96 /usr/local/sbin/clamd
However, all seems to be fine, postfix 2.1.5, amavisd-new and clamd 
all
seem to be running and Webmin reports them all as running.

Any thoughts or something I should know regarding the upgrading? I
checked /usr/ports/UPDATING, but nothing regarding this. All conf 
files
are reflecting the new settings.

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



--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: rss client

2005-02-24 Thread Daniel S. Haischt
http://www.freebsd.org/cgi/ports.cgi?query=rssstype=all
kalin mintchev schrieb:
is there something like http://www.newsfirerss.com/ for freebsd?
i know thunderbird has rss in it but i just want the rss client not the
mail one...
also does anybody else have this wiered problem - i can't move around in a
html form text area using the arrows in firefox 1.0 on freebsd 5.3...
thanks...

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: rss client

2005-02-24 Thread Daniel S. Haischt
I would thean suggest ...
 - http://www.imendio.com/projects/blam/
... which is in the ports tree. Tho - It
requires the Mono .NET environment ...
kalin mintchev schrieb:
http://www.freebsd.org/cgi/ports.cgi?query=rssstype=all
thanks...  i've seen these. i was just wondering if any of those has kinda
the same feel like the one i gave as an example...

kalin mintchev schrieb:
is there something like http://www.newsfirerss.com/ for freebsd?
i know thunderbird has rss in it but i just want the rss client not the
mail one...
also does anybody else have this wiered problem - i can't move around in
a
html form text area using the arrows in firefox 1.0 on freebsd 5.3...
thanks...

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
[EMAIL PROTECTED]


--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: clamd after upgrade to 0.83

2005-02-23 Thread Daniel S. Haischt
Usually if you are running ClamAV in UNI domain socket mode,
there should be a UNIX domain socket called 'clamd' in ...
 - /var/run/clamav
Tho - this file can be configured in /usr/local/etc/clamd.conf.
If ClamAv is running in TCP/IP mode it should be possible to
test whether the server is responding by connecting to its
TCP/IP port using a telnet client ...
 - telnet localhost 3310
Robert Fitzpatrick schrieb:
After doing a portupgrade of clamd from 0.81 to 0.83, the service 
reports that it is not running using 'clamav-clamd.sh status'.

esmtp# cd /usr/local/etc
esmtp# rc.d/clamav-clamd.sh status
clamav_clamd is not running.
esmtp# ps -ax|grep clam
 781  ??  Ss 0:10.96 /usr/local/sbin/clamd
However, all seems to be fine, postfix 2.1.5, amavisd-new and clamd all 
seem to be running and Webmin reports them all as running.

Any thoughts or something I should know regarding the upgrading? I 
checked /usr/ports/UPDATING, but nothing regarding this. All conf files 
are reflecting the new settings.

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

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: clamd after upgrade to 0.83

2005-02-23 Thread Daniel S. Haischt
I think the following section in /usr/local/amavisd.conf
should answer your question:
  ### http://www.clamav.net/   - backs up clamd or Mail::ClamAV
  ['ClamAV-clamscan', 'clamscan',
--stdout --disable-summary -r --tempdir=$TEMPBASE {}, [0], [1],
qr/^.*?: (?!Infected Archive)(.*) FOUND$/ ],
Basically if clamd is not running Amavis will execute the
commandline scanner version of ClamAV. That's the reason why
you are still getting log entries.
So to sumarize: ClamAV's daemon is not running, thus
there is neither a PID file nor a UNIX domain socket.
So if you want to use the daemonized version of ClamAV,
you need to elaborate why the daemon isn't started.
Robert Fitzpatrick schrieb:
I do not have anything in /var/run/clamav and that is the location in 
clamd.conf for placing the PID file. I cannot connect to the localhost 
as well:

esmtp# telnet localhost 3310
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
telnet: Unable to connect to remote host
However, according to the clamd.log, clamav is intercepting viruses. Do 
you think it is working and why would I not be able to connect via 
telnet or view the pid file if it is?

--
Robert
--On Wednesday, February 23, 2005 8:35 PM +0100 Daniel S. Haischt 
[EMAIL PROTECTED] wrote:

Usually if you are running ClamAV in UNI domain socket mode,
there should be a UNIX domain socket called 'clamd' in ...
  - /var/run/clamav
Tho - this file can be configured in /usr/local/etc/clamd.conf.
If ClamAv is running in TCP/IP mode it should be possible to
test whether the server is responding by connecting to its
TCP/IP port using a telnet client ...
  - telnet localhost 3310
Robert Fitzpatrick schrieb:
After doing a portupgrade of clamd from 0.81 to 0.83, the service
reports that it is not running using 'clamav-clamd.sh status'.
esmtp# cd /usr/local/etc
esmtp# rc.d/clamav-clamd.sh status
clamav_clamd is not running.
esmtp# ps -ax|grep clam
 781  ??  Ss 0:10.96 /usr/local/sbin/clamd
However, all seems to be fine, postfix 2.1.5, amavisd-new and clamd all
seem to be running and Webmin reports them all as running.
Any thoughts or something I should know regarding the upgrading? I
checked /usr/ports/UPDATING, but nothing regarding this. All conf files
are reflecting the new settings.
--
Robert
___
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]

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: /dev/io after kernel recompiling on a 5.3 stable

2005-02-23 Thread Daniel S. Haischt
Try searching the mailing list archive for an answer!
This question has been answered before.
Solution #1: Recompile your kernel with 'device io'.
Solution #2: Ensure that the io.ko kernel module gets
loaded at boot time.
Petre Bandac schrieb:
after I recompiled the kernel, xorg doesn't start, stating something
about cannot finding /dev/io
booting with kernel.old (GENERIC) works fine
what option I forgot in KERNCONF ?
thanks,
petre
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: dspam-3.2.6

2005-02-22 Thread Daniel S. Haischt
Maybe you did setup a mail delivery loop by accident.
How did you configure the TrustedDeliveryAgent variable
in /usr/local/etc/dspam.conf?
For example did you setup TrustedDeliveryAgent to deliver
to the cyrus deliver agent or to procmail etc.?
Olga Zenkova schrieb:
Trying to configure dspam-3.2.6 with sendmail
8.12.11/8.12.11. Is this portion for sendmail.mc
correct (according to docs):
define(`LOCAL_MAILER_PATH', `/usr/local/bin/dspam')
define(`LOCAL_MAILER_ARGS', `dspam
--deliver=innocent --user $u -d %u') 

because when I send one test letter for some user I
see a lot of letters in queue (as his letter
multiplies), but they can't be delivered.
Thanks, Olga   


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://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]

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: dspam-3.2.6

2005-02-22 Thread Daniel S. Haischt
First of all I have to admit that I am not a Sendmail
expert cause I am now using Postfix for years ...
I had the same effect while using Postfix because I
was re-injecting mails into Postfix. You must guarantee
that you are not re-injecting mails into Sendmail
forever.
I for instance did setup the following mail chain
 - Internet
   |
   `- my Postfix MTA
|   ^
|   |
`- ClamAV -´
|
`- DSPAM
  |
  `- Cyrus
As you can see my ClamAV virus scanner re-injects
a mail message back to Postfix, but DSPAM finally
delivers the message (e.g. to an IMAP daemon).
Do you want to deliver your mail message to an
IMAP or POP server?
Olga Zenkova schrieb:
Yes, it looks like a loop. But in
/usr/local/etc/dspam.conf I have only:
 
TrustedDeliveryAgent   /usr/sbin/sendmail

The other such strings are commented out.
--- Daniel S. Haischt
[EMAIL PROTECTED] wrote:

Maybe you did setup a mail delivery loop by
accident.
How did you configure the TrustedDeliveryAgent
variable
in /usr/local/etc/dspam.conf?
For example did you setup TrustedDeliveryAgent to
deliver
to the cyrus deliver agent or to procmail etc.?

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: dspam-3.2.6

2005-02-22 Thread Daniel S. Haischt

Olga Zenkova schrieb:
I use sendmail with full log and see how sendmail
(configured with dspam with verbose debug) begins to
speak with itself... (sendmail creates replyes - new
processes - new letters with dspam debug data). Can't
understand at all why dspam doesn't write its debug
information to its own (dspam) log files. Did you use
verbose debug?
For debuging purpose I am using verbose debug. Tho -
for productive systems you shouldn't do so!
On my server DSPAM logs to /var/log/dspam/dspam.debug
and /var/log/dspam/bnr.log etc. ...
Yes, I use POP server, but sendmail with dspam doesn't
put letters to mail boxes. They stayed in queue. 
Did you follow the instructions which can be found on the
DSPAM Wiki? For example did you setup:
MAILER(local)dnl
And did you follow this hint:
The order that these directives appear in the config file is important! 
Also, make sure you comment out all references to PROCMAIL_MAIL_PATH, 
local_procmail (inside a FEATURE block), and MAILER(procmail).

I am pretty lost if it comes with Sendmail. So if this does not help
maybe someone else on the list with some mor Sendmail experience
can help ...
--- Daniel S. Haischt
[EMAIL PROTECTED] wrote:

First of all I have to admit that I am not a
Sendmail
expert cause I am now using Postfix for years ...
I had the same effect while using Postfix because I
was re-injecting mails into Postfix. You must
guarantee
that you are not re-injecting mails into Sendmail
forever.
I for instance did setup the following mail chain
 - Internet
   |
   `- my Postfix MTA
|   ^
|   |
`- ClamAV -´
|
`- DSPAM
  |
  `- Cyrus
As you can see my ClamAV virus scanner re-injects
a mail message back to Postfix, but DSPAM finally
delivers the message (e.g. to an IMAP daemon).
Do you want to deliver your mail message to an
IMAP or POP server?


		
__ 
Do you Yahoo!? 
The all-new My Yahoo! - What will yours do?
http://my.yahoo.com 

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: c++

2005-02-20 Thread Daniel S. Haischt
Gert Cuykens,
I would suggest to post such questions to gtk-list@gnome.org,
because IIRC you are trying to code a GTK app ...
Additionally I would suggest to learn C/C++ first to get a better
understanding of the whole language structure. Or at least please
join the c# IRC channel at irc.freenode.net to ask such questions,
it's quite annoying to see them on a list which is dedicated to an
UNIX OS.
Scott Mitchell schrieb:
On Sun, Feb 20, 2005 at 08:41:30AM +0100, Gert Cuykens wrote:
So if data is declared as a gchar *data; for example, then the value
of data is a memory adress right ? So if A=data; and B=data; then A
and B are exactly the same result right ?

No.  A is a 'pointer to gchar' (or gchar*) and B is a 'pointer to pointer
to gchar' (or gchar**).  The 'data' syntax means 'the address of the data
variable', ie. the address of a gchar*, whereas data itself contains the
address of a gchar.

Now why would anybody want a gchar when a integer is needed ? That is
just making it more complicated then it already is?

Because the code in question deals with gchars (whatever they are) not
integers?  They won't necessarily be the same thing on different
architectures, or even different compilers on the same architecture.  Also,
the type is called 'gchar' presumably because it logically holds some kind
of character data, whereas an integer variable holds an integer.  Calling
them different things in the code helps to make it clear what the
programmer's intention is, even if the two types happen to have the same
representation on a given machine/compiler.
In any case, this stuff really has nothing to do with FreeBSD - you should
be asking these questions in a C/C++ programming group.
Cheers,
Scott
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: c++

2005-02-20 Thread Daniel S. Haischt
Gert Cuykens,
Gert Cuykens schrieb:
[SNIP]
PS Freebsd source is c++ right ? So you could also call this the free
c++ question mailing list :)
No wrong! Most Unices are written in C (kernel, device drivers etc.).
Basically, you sould get to an understanding that your questions about
GTK, and the source code snippet that you did post, were not related
to C++. Those code snippets are C code. Or why do you think that there
is a need for a GTK C++ wrapper such as www.gtkmm.org which wrapps the
GTK C API?
Frankly my impression was that your understanding of C is almost
nonexistent, which is the reason why so many people did sugest to
get a basic C knowledge before coding a GTK app.
So you *should* consider the 'Get a C book, to learn some C basics
(like what is a pointer?)' answer to be a real option.
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: dspam-3.2.6

2005-02-14 Thread Daniel S. Haischt
did you select another DB backend (e.g. PostgreSQL
or SQLite)?
Olga Zenkova schrieb:
Hi!
Can't compile dspam-3.2.6 on FreeBSD-4.10. I mark
option MYSQL50 in the options window and then get:
You can use one and only one database back-end at
once. Why?
Thanks,
Olga
		
__ 
Do you Yahoo!? 
All your favorites on one personal page  Try My Yahoo!
http://my.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: 5.3 ata / atapicam issues (update)

2005-02-03 Thread Daniel S. Haischt
Hello,
I think time has come to fill a problem report.
I did started a initial one, which is attached
to this mail.
Can you read through the attached PR and comment
its contents, please?
Rob schrieb:
Hope this helps someone. I'm not at all sure
where/what the problem is but
I'll be happy to run on the embedded controller for
the time being. (while
PIO 4 != DMA 133, reliability/functionality is
king!)   

Neither have I an idea what going on here, but
after having upgraded a few PCs from 4.10 to 5.3,
I empirically deduced following conclusions:
1) The problems is since 5.3, not with any 4.X.
2) Such problems occur when the media (harddisk in my
  case) are capable of doing a higher speed than the
  motherboard. For example, harddisk can do maximum
  UDMA100, but motherboard can maximum handle UDMA66.
  In such cases I need  hw.ata.ata_dma=0  in
  loader.conf, which slows down the speed to PIO4.
Without the hw.ata.ata_dma=0, I get various
results, which can be 'kernel panic at bootup after
installation' on one PC, to 'odd crashing of X for
no good reason' on another PC.
When the maximum speeds of harddisk and motherboard
match, there's no problem, eventhough they may both
operate at a lower than maximum speed.
Something really uggly has entered the code of 5.3,
with respect to disk speed matching, I believe.
Regards,
Rob.
		
__ 
Do you Yahoo!? 
Yahoo! Mail - 250MB free storage. Do more. Manage less. 
http://info.mail.yahoo.com/mail_250
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
SEND-PR: -*- send-pr -*-
SEND-PR: Lines starting with `SEND-PR' will be removed automatically, as
SEND-PR: will all comments (text enclosed in `' and `').
SEND-PR:
SEND-PR: Please consult the following URL if you are not sure how to
SEND-PR: fill out a problem report:
SEND-PR: http://www.freebsd.org/doc/en/articles/problem-reports/
SEND-PR:
SEND-PR: Note that the Synopsis field is mandatory.
SEND-PR:
SEND-PR: Please note that (unless you state otherwise) if your report 
SEND-PR: includes a patch then it will be taken under the same license as 
SEND-PR: the one on the file(s) you want to change.
SEND-PR:
SEND-PR: BE ADVISED THAT FREEBSD PROBLEM REPORTS ARE PUBLIC INFORMATION AND
SEND-PR: WILL BE PUBLISHED AS-IS ON THE PROJECT'S MAILING LISTS AND WEB SITES.
SEND-PR: DO NOT SUBMIT ANY INFORMATION YOU DO NOT WANT MADE PUBLIC.
SEND-PR:
SEND-PR: If you wish to submit a problem report confidentially, then contact
SEND-PR: the FreeBSD bugmaster ([EMAIL PROTECTED]) to arrange for a
SEND-PR: relevant developer to be contacted.
SEND-PR:
SEND-PR: For sensitive security issues, consider contacting the FreeBSD
SEND-PR: security officer team ([EMAIL PROTECTED]) directly.
SEND-PR:
SEND-PR: Choose from the following categories:
SEND-PR:
SEND-PR: advocacy  alpha amd64 bin   conf  docs  
SEND-PR: gnu   i386  ia64  java  kern  misc  
SEND-PR: ports powerpc   sparc64   standards threads   usb   
SEND-PR: www   
SEND-PR:
To: [EMAIL PROTECTED]
From: Daniel S. Haischt [EMAIL PROTECTED]
Reply-To: Daniel S. Haischt [EMAIL PROTECTED]
Cc: 
X-send-pr-version: 3.113
X-GNATS-Notify: 


Submitter-Id:  current-users
Originator:Daniel S. Haischt
Organization:  Daniel S. Haischt IT Consulting
Confidential:  no
Synopsis:  FreeBSD 5.3 ATA unreliability if using ATAPICAM
Severity:  serious
Priority:  high
Category:  kern
Class: sw-bug
Release:   FreeBSD 5.3-STABLE i386
Environment:
System: FreeBSD abyssone.abyssworld.de 5.3-STABLE FreeBSD 5.3-STABLE #0: Thu 
Jan 20 13:07:40 CET 2005 root@:/usr/obj/usr/src/sys/ABYSSONE i386

* PI 233 MMX with an additional Promise PDC20269 UDMA133 controller
* ATA 100/133 IDE cable
* IBM disk: 78533MB IC35L080AVVA07-0/VA4OA52A [170197/15/63] at ata2-master 
UDMA100
* Plextor CDROM drives
  + CDRW PLEXTOR CD-R PREMIUM/1.05 at ata3-master UDMA33
  + DVDROM PLEXTOR DVD-ROM PX-116A2 0100/1.00 at ata3-slave UDMA66

Description:
This problem report is a synthesis of several issues posted to the
FreeBSD questions mailing list!

The ATA issues were reported numeros times by people using a Promise
PDC20269 UDMA133 controler, so I will stick with that controller.

If using the just mentioned controller, especially the 2nd IDE channel,
it was observed that during boot time this particular hardware configuration
may cause the following issues:

* Interrupt Storms
* READ_DMA timed out
* Kernel Panics

To trace the issue, the following hardware configurations has been tested:

Configuration #1 (success):
 * harddrive attached to IDE channel #1
 * no device attached to IDE channel #2
Configuration #2 (failure):
 * harddrive attached to IDE channel #1
 * CDROM drive(s) attached to IDE channel #2
Configuration #3 (failure):
 * no device attached to IDE channel #1
 * harddrive

Re: (no subject)

2005-01-31 Thread Daniel S. Haischt
 man xvidtune 
[EMAIL PROTECTED] schrieb:
My display is to big for the monitor, I only see half of the desk top.  How 
do I fix this?  thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: 5.3 interrupt storm (atapicam) and I/O error

2005-01-30 Thread Daniel S. Haischt
Hello,
attached you will find a copy of my custom kernel
config which did work without any issue under FreeBSD
5.2.1. As outlined earlier if using this config on
FreeBSD 5.3-RELEASE I am getting an interrupt
storm while booting the system.
The following hardware configuration *won't* cause
an interrupt storm on FreeBSD 5.3 if using the
Promise PDC20269 controller:
 * harddrive attached to IDE channel #1
 * no device attached to channel #2
The following hardware configuration *will* cause
an interrupt storm on FreeBSD 5.3 if using the
Promise PDC20269 controller:
Config #1:
 * harddrive attached to IDE channel #1
 * CDROM or CDRW attached to channel #2
Config #2:
 * CDROM or CDRW attached to channel #1
 * harddrive attached to IDE channel #2
Jason Henson schrieb:
On 01/28/05 08:38:14, Daniel S. Haischt wrote:
oops, did forget the tixt file ...
Daniel S. Haischt schrieb:
I don't know whether this is related to your issue,
but on one of my boxes I am also getting an interrupt
storm with atapicam enabled.
On FreeBSD 5.2.1 I did not experience any interrupt
storm issues, even if using the same hardware configuration.
Have a look at the attached text file for a detailed
description ...
Olivier Certner schrieb:
 Hi,
 Could you give a look at my post dated 04/01/2005 entitled Freeze  
with CAM (using KsCD)? Maybe we have fallen on the same kind of  
bug concerning atapicam.

 If you have KDE, maybe you should try to reproduce the problem I  
had. I've no time to test your scenario (the one with the EIDE  
drive, I don't have SCSI) now, but I'll try to reproduce it at the  
beginning of next week, in order to see if the freeze happens also  
on my computer.

 Hope this will help us to progress on our issues.
 Regards,
  Olivier
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions- 
[EMAIL PROTECTED]


--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]

Hello,
recently I updated one of my FreeBSD boxes to
v 5.3. This box got a builtin Promise PDC20269
UDMA133 controller. Actually it's a controller
with two IDE channels.
So far if using the GENERIC kernel that comes
with FreeBSD, I do not experience any problems.
If using my own customized kernel I am getting
the following error message while booting the
system:
888---8-8-
Interrupt storm detected on irq10: atapci1;
throtteling interrupt source:
888---8-8-
After some trail-and-error based investigations,
I did figure out that if I don't plugin any device
into IDE channel two, the just described error
does not occur.
So it has something to do with IDE channel two.
As an additional note - The controller works
under Linux, FreeBSD 5.3 (GENERIC) and FreeBSD
5.2.1 (custom kernel).
Any hints on how to solve this issue would be
greatly appreciated.

How about a copy of your custom changes to the kernel?  Also did you  
get a response from Søren Schmidt [EMAIL PROTECTED], he wrote and  
maintains the ata stuff iirc.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
#
# GENERIC -- Generic kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ../../conf/NOTES and NOTES files. 
# If you are in doubt as to the purpose or necessity of a line, check first 
# in NOTES.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.369.2.2 2002/12/31 05:35:45 scottl 
Exp $

machine i386
#cpuI486_CPU
cpu I586_CPU
#cpuI686_CPU
ident   ABYSSONE
maxusers512

#To statically compile in device wiring instead of /boot/device.hints
#hints  GENERIC.hints #Default places to look for devices.

#makeoptionsDEBUG=-g#Build kernel with gdb(1) debug symbols

options INET#InterNETworking
options INET6   #IPv6 communications protocols
options FFS #Berkeley Fast Filesystem
options NETATALK#AppleTalk

Re: httpd.conf apcahe2 how to make php5 module work ?

2005-01-30 Thread Daniel S. Haischt
Can you clearly state your question before posting an
apache configuration file?
Basically PHP5 can be enable adding the line ...
 LoadModule php5_modulelibexec/apache2/libphp5.so
to /usr/local/etc/apache2/http.conf. Or if the line
is already there but commented out, please remove the
hash sign (#) to uncomment this particular linhe.
Gert Cuykens schrieb:
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See URL:http://httpd.apache.org/docs-2.0/ for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
# whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
# which responds to requests that aren't handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with / (or drive:/ for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with /, the value of ServerRoot is prepended -- so /var/log/foo.log
# with ServerRoot set to /usr/local will be interpreted by the
# server as /usr/local//var/log/foo.log.
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation (available
# at URL:http://httpd.apache.org/docs-2.0/mod/mpm_common.html#lockfile);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot /usr/local
#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
IfModule !mpm_winnt.c
IfModule !mpm_netware.c
#LockFile /var/log/accept.lock
/IfModule
/IfModule
#
# ScoreBoardFile: File used to store internal server process information.
# If unspecified (the default), the scoreboard will be stored in an
# anonymous shared memory segment, and will be unavailable to third-party
# applications.
# If specified, ensure that no two invocations of Apache share the same
# scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK.
#
IfModule !mpm_netware.c
IfModule !perchild.c
#ScoreBoardFile /var/run/apache_runtime_status
/IfModule
/IfModule
#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
IfModule !mpm_netware.c
PidFile /var/run/httpd.pid
/IfModule
#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300
#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to Off to deactivate.
#
KeepAlive On
#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100
#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15
##
## Server-Pool Size Regulation (MPM specific)
## 

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
IfModule prefork.c
StartServers 5
MinSpareServers  5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild  0
/IfModule
# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
IfModule 

Re: 5.3 interrupt storm (atapicam) and I/O error

2005-01-28 Thread Daniel S. Haischt
I don't know whether this is related to your issue,
but on one of my boxes I am also getting an interrupt
storm with atapicam enabled.
On FreeBSD 5.2.1 I did not experience any interrupt
storm issues, even if using the same hardware configuration.
Have a look at the attached text file for a detailed
description ...
Olivier Certner schrieb:
 Hi,
 Could you give a look at my post dated 04/01/2005 entitled Freeze with CAM 
(using KsCD)? Maybe we have fallen on the same kind of bug concerning 
atapicam.

 If you have KDE, maybe you should try to reproduce the problem I had. I've no 
time to test your scenario (the one with the EIDE drive, I don't have SCSI) 
now, but I'll try to reproduce it at the beginning of next week, in order to 
see if the freeze happens also on my computer.

 Hope this will help us to progress on our issues.
 Regards,
  Olivier
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: 5.3 interrupt storm (atapicam) and I/O error

2005-01-28 Thread Daniel S. Haischt
oops, did forget the tixt file ...
Daniel S. Haischt schrieb:
I don't know whether this is related to your issue,
but on one of my boxes I am also getting an interrupt
storm with atapicam enabled.
On FreeBSD 5.2.1 I did not experience any interrupt
storm issues, even if using the same hardware configuration.
Have a look at the attached text file for a detailed
description ...
Olivier Certner schrieb:
 Hi,
 Could you give a look at my post dated 04/01/2005 entitled Freeze 
with CAM (using KsCD)? Maybe we have fallen on the same kind of bug 
concerning atapicam.

 If you have KDE, maybe you should try to reproduce the problem I had. 
I've no time to test your scenario (the one with the EIDE drive, I 
don't have SCSI) now, but I'll try to reproduce it at the beginning of 
next week, in order to see if the freeze happens also on my computer.

 Hope this will help us to progress on our issues.
 Regards,
  Olivier
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
Hello,

recently I updated one of my FreeBSD boxes to
v 5.3. This box got a builtin Promise PDC20269
UDMA133 controller. Actually it's a controller
with two IDE channels.

So far if using the GENERIC kernel that comes
with FreeBSD, I do not experience any problems.

If using my own customized kernel I am getting
the following error message while booting the
system:

888---8-8-
Interrupt storm detected on irq10: atapci1;
throtteling interrupt source:
888---8-8-

After some trail-and-error based investigations,
I did figure out that if I don't plugin any device
into IDE channel two, the just described error
does not occur.

So it has something to do with IDE channel two.

As an additional note - The controller works
under Linux, FreeBSD 5.3 (GENERIC) and FreeBSD
5.2.1 (custom kernel).

Any hints on how to solve this issue would be
greatly appreciated. ___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Firefox about:plugins

2005-01-28 Thread Daniel S. Haischt
you have to type about:plugins into the URL text field, this
is the text field where you normaly type URLs such as http://
org ftp://
Steven Friedrich schrieb:
I'm running FreeBSD 4.11 (tracking STABLE).  I recently installed jdk1,4,2 and 
firefox.  My firefox doesn't have an about:plugins menu item.  Did I miss 
something?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: burning 5.3-RELEASE CDs

2005-01-27 Thread Daniel S. Haischt
download burnatonce @ ...
 - http://www.burnatonce.com/
install it, click on 'load new image' and
after you did load the image (*.iso)
click on 'write' ...
Ray Marshall schrieb:
Did you figure out how to get an install cd from the ISO image file?  I have a 
new dell with RecordNow and I can't figure it out, but, I need to do the same 
thing.  Thanks.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: strange log files ..

2005-01-24 Thread Daniel S. Haischt
log.10.0.0.x files are samba log. Each smb clients
that connects to your samba instance gets its own
log file.
Are you running DHCP?
Are you restricting access to your sambe server?
For example are you denying access from the internet
to samba?
faisal gillani schrieb:
there are so many my private ip name log files present
on my system ...
my network ip scheme is 10.0.0.
why is that ?

log.0.0.0.0 log.10.0.0.225 
log.smbd.old
log.10.0.0.1log.10.0.0.23  
lpd-errs
log.10.0.0.108  log.10.0.0.23.old  
maillog
log.10.0.0.109  log.10.0.0.234 
maillog.0.bz2
log.10.0.0.11   log.10.0.0.236 
maillog.1.bz2
log.10.0.0.110  log.10.0.0.237 
maillog.2.bz2
log.10.0.0.111  log.10.0.0.240 
maillog.3.bz2
log.10.0.0.118  log.10.0.0.240.old 
maillog.4.bz2
log.10.0.0.125  log.10.0.0.242 
maillog.5.bz2
log.10.0.0.127  log.10.0.0.248 
messages
log.10.0.0.134  log.10.0.0.249 
messages.0.bz2
log.10.0.0.138  log.10.0.0.25  
messages.1.bz2
log.10.0.0.146  log.10.0.0.254 
messages.2.bz2
log.10.0.0.150  log.10.0.0.26  
mount.today
log.10.0.0.153  log.10.0.0.28  
ppp.log
log.10.0.0.157  log.10.0.0.3samba
log.10.0.0.157.old  log.10.0.0.30  
scrollkeeper.log
log.10.0.0.16   log.10.0.0.31  
security
log.10.0.0.162  log.10.0.0.43  
sendmail.st
log.10.0.0.168  log.10.0.0.46  
sendmail.st.0
log.10.0.0.181  log.10.0.0.47  
sendmail.st.1
log.10.0.0.181.old  log.10.0.0.5   
setuid.today
log.10.0.0.183  log.10.0.0.51  
slip.log
log.10.0.0.186  log.10.0.0.52  
userlog
log.10.0.0.187  log.10.0.0.53   wtmp
log.10.0.0.189  log.10.0.0.56  
xferlog
log.10.0.0.19   log.10.0.0.67

=
*º¤., ¸¸,.¤º*¨¨¨*¤ Allah-hu-Akber*º¤., ¸¸,.¤º*¨¨*¤
__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://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]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: strange log files ..

2005-01-24 Thread Daniel S. Haischt
those logs are containing traces from the smbd and nmbd
process.
Do you ahve a line this in your smb.conf?
 hosts allow = 192.168.0., 192.168.120.
Additionally you should should change the directory
which holds your samba log files:
 log file = /var/log/samba/log.%m
because you do have a samba directory in /var/log.
--
Do all of you three systems receive their IP etc. via
DHCP? Do you run a DHCP daemon or some kinda router
with a builtin DHCP server?
faisal gillani schrieb:
yes exactly .. i am only allowing 2-3 systems on my
network to access samba others are all denied acess ..
so these are some kind of security log files ?\
is there a way to disable them ? i mean stop making
these files ..

--- Daniel S. Haischt
[EMAIL PROTECTED] wrote:

log.10.0.0.x files are samba log. Each smb clients
that connects to your samba instance gets its own
log file.
Are you running DHCP?
Are you restricting access to your sambe server?
For example are you denying access from the internet
to samba?
faisal gillani schrieb:
there are so many my private ip name log files
present
on my system ...
my network ip scheme is 10.0.0.
why is that ?

log.0.0.0.0 log.10.0.0.225 
log.smbd.old
log.10.0.0.1log.10.0.0.23  
lpd-errs
log.10.0.0.108  log.10.0.0.23.old  
maillog
log.10.0.0.109  log.10.0.0.234 
maillog.0.bz2
log.10.0.0.11   log.10.0.0.236 
maillog.1.bz2
log.10.0.0.110  log.10.0.0.237 
maillog.2.bz2
log.10.0.0.111  log.10.0.0.240 
maillog.3.bz2
log.10.0.0.118  log.10.0.0.240.old 
maillog.4.bz2
log.10.0.0.125  log.10.0.0.242 
maillog.5.bz2
log.10.0.0.127  log.10.0.0.248 
messages
log.10.0.0.134  log.10.0.0.249 
messages.0.bz2
log.10.0.0.138  log.10.0.0.25  
messages.1.bz2
log.10.0.0.146  log.10.0.0.254 
messages.2.bz2
log.10.0.0.150  log.10.0.0.26  
mount.today
log.10.0.0.153  log.10.0.0.28  
ppp.log
log.10.0.0.157  log.10.0.0.3   
samba
log.10.0.0.157.old  log.10.0.0.30  
scrollkeeper.log
log.10.0.0.16   log.10.0.0.31  
security
log.10.0.0.162  log.10.0.0.43  
sendmail.st
log.10.0.0.168  log.10.0.0.46  
sendmail.st.0
log.10.0.0.181  log.10.0.0.47  
sendmail.st.1
log.10.0.0.181.old  log.10.0.0.5   
setuid.today
log.10.0.0.183  log.10.0.0.51  
slip.log
log.10.0.0.186  log.10.0.0.52  
userlog
log.10.0.0.187  log.10.0.0.53  
wtmp
log.10.0.0.189  log.10.0.0.56  
xferlog
log.10.0.0.19   log.10.0.0.67

=
*., ,.** Allah-hu-Akber*., ,.**
__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam
protection around 

http://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]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]

=
*., ,.** Allah-hu-Akber*., ,.**
		
__ 
Do you Yahoo!? 
All your favorites on one personal page  Try My Yahoo!
http://my.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: console messages after dmesg ?

2005-01-23 Thread Daniel S. Haischt
BTW - During boot time you can press PAUSE
and after that PAGE UP || PAGE DOWN to
review the console messages.
faisal gillani schrieb:
How can i view the messages that comes after the
demesg output messages ?

=
*º¤., ¸¸,.¤º*¨¨¨*¤ Allah-hu-Akber*º¤., ¸¸,.¤º*¨¨*¤
		
__ 
Do you Yahoo!? 
Yahoo! Mail - Helps protect you from nasty viruses. 
http://promotions.yahoo.com/new_mail
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: port 445 ?

2005-01-23 Thread Daniel S. Haischt
Hummm - A similar question about port 445
was raised recently on this list. I would
at least do not allow incomming connections
*from* the internet and outgoing connections
*to* the internet on port 445.
You can accomplish that using a firewall-router
or one of the firewall software packages that
are distributed together with FreeBSD.
faisal gillani schrieb:
i use samba on my freebsd server to share files , i
dont use any active directory connectivity still the
port 445/tcpopenmicrosoft-ds is open , i
read is some where that this port should be close as
it is dangerous to the server , is this true ?
thanks
 

=
*., ,.** Allah-hu-Akber*., ,.**
		
__ 
Do you Yahoo!? 
All your favorites on one personal page  Try My Yahoo!
http://my.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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 5.3 CD2 ?

2005-01-23 Thread Daniel S. Haischt
AFAIK - The 2nd CD only contains additional software
packages ...
faisal gillani schrieb:
i installed freebsd 5.3  the first cd installed
everything i needed , but i got 2 cds with freebsd , i
browsed it but couldent understand wat is it for 
?


=
*º¤., ¸¸,.¤º*¨¨¨*¤ Allah-hu-Akber*º¤., ¸¸,.¤º*¨¨*¤
		
__ 
Do you Yahoo!? 
Meet the all-new My Yahoo! - Try it today! 
http://my.yahoo.com 
 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: gnome desktop ?

2005-01-23 Thread Daniel S. Haischt
Another option would be to start the GNOME display
manager (GDM) at boot time using /usr/X11R6/etc/rc.d/gdm.sh
Miguel Mendez schrieb:
On Sun, 23 Jan 2005 06:44:25 -0800 (PST)
faisal gillani [EMAIL PROTECTED] wrote:

Well i installed all the packages needed for gnome
desktop , but when i startx a plain dull desktop
manager comes , what can be wrong ?
how to start gnome ?

In the absence of a .xinitrc the default wm is executed (twm). Just
create a .xinitrc file in your home dir that contains the following:
exec gnome-session
If you're using xdm/gdm then you should put that in .xsession
Cheers,
--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: port 445 ?

2005-01-23 Thread Daniel S. Haischt
You can control which port Samba would use by adding
something like the following to your smb.conf:
smb ports = 139 445
This would cause the following result:
[EMAIL PROTECTED] $ sockstat | grep smb
haischt  smbd   3501  5  tcp4   192.168.120.1:445 
192.168.120.239:3046
haischt  smbd   3501  21 udp4   127.0.0.1:63184   *:*
haischt  smbd   3501  26 tcp4   192.168.120.25:51330  192.168.120.25:389
root smbd   1112  18 tcp4   127.0.0.1:139 *:*
root smbd   1112  19 tcp4   127.0.0.1:445 *:*
root smbd   1112  20 tcp4   192.168.120.1:139 *:*
root smbd   1112  21 tcp4   192.168.120.1:445 *:*

Marty Landman schrieb:
At 10:01 AM 1/23/2005, faisal gillani wrote:
i use samba on my freebsd server to share files , i dont use any 
active directory connectivity still the port 445/tcpopen
microsoft-ds is open , i read is some where that this port should be 
close as it is dangerous to the server , is this true ?

Hi Faisal,
Are you running the newest Samba? I think this is relatively new because 
I run fbsd 4.8 and rh 9, both have samba but fbsd is running the new 
3.0.10 and rh is running an older 2.x version. Here are my (persistent) 
connections on my win xp gateway:

System:4TCP delliver:3033   penguin:netbios-ssn ESTABLISHED
System:4TCP delliver:3034   swamisalami:microsoft-ds 
ESTABLISHED

Notice that the connection is to netbios-ssn on the rh box running samba 
2.x, but to microsoft-ds which afaik is port 445 for the fbsd box 
running samba 3.0.10. TBH I don't know which port is being kept open for 
rh, so maybe this is of no help at all.

Well it helps me a little to repeat the bit that I do know. :)
Marty
Marty Landman, Face 2 Interface Inc. 845-679-9387
Search  Sort Easily: http://face2interface.com/Products/FormATable.shtml
Web Installed Formmail: http://face2interface.com/formINSTal
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: SIR

2005-01-20 Thread Daniel S. Haischt
Could it be, that you *do* have a serious *CAPS LOCK*
obsession?
Ali Farhan schrieb:
  SORRY SIR, I DONOT MADE THIS TYPE OF MISTAKE AGAIN . I'LL TAKE CARE OF
  IT NEXT TIME.SORRY AGAIN TO DISTURB YOU.
  BUT SIR...KINDLY TELL ME HOW CA I INSTALL MODEM IN FREEBSD 5.1 ...MY
  MODEM IS LUCENT (LT WIN MODEM).PLZ SIR
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

!DSPAM:41efb2e521413598313366!

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: ALTQ support?

2005-01-20 Thread Daniel S. Haischt
try to add these lines to your kernel config,
and recompile after having made that particular
addition ...
# ALTQ
options ALTQ
options ALTQ_CBQ# Class Bases Queueing
options ALTQ_RED# Random Early Drop
options ALTQ_RIO# RED In/Out
options ALTQ_HFSC   # Hierarchical Packet Scheduler
options ALTQ_CDNR   # Traffic conditioner
options ALTQ_PRIQ   # Prioirity Queueing
options ALTQ_NOPCC
Brian John schrieb:
Hello,
I am trying to get pf to work on my 5.3 machine.  I thought that I had 
it setup but it says that I don't have ALTQ support?  What is that?  Can 
someone help me set it up?

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

!DSPAM:41f03f23486501343982021!

--
Mit freundlichen Gruessen / With kind regards
DAn.I.El S. Haischt
Want a complete signature??? Type at a shell prompt:
$  finger -l [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: [INFO] buildworld problems

2005-01-19 Thread Daniel S. Haischt
Hello,
attached you will find the redirect of stderr and stdout
of /etc/rc.d/ldconfig start.
I studied the file several times, but I am not able to
find any error.
The symptom is still that /etc/rc.d/ldconfig gets executed
during boot time. Tho - The execution of the script has
no effect because I am getting lots of 'library foo.so
not found' messages during boot time.
This requires, as soon as I get a login prompt, to execute
/etc/rc.d/ldconfig manually to get a stable system. After
that I am able to execute servers that I have installed from
the ports collection (e.g. Postfix etc.).
Kris Kennaway schrieb:
On Tue, Jan 18, 2005 at 07:57:14PM +0100, Daniel S. Haischt wrote:
Hello,
now I did remove the custom ldconfig_paths from /etc/rc.conf.
The system still refuses to execute ldconfig at boot time.
I can see the output of /etc/rc.d/ldconfig while the system
is booting, but finally ldconfig isn't properly setup.
Because of this issue I still have to run /etc/rc.d/ldconfig
after the system got booted.
Should I cvsup again? How can I trace this issue?

Change the script to execute with /bin/sh -x and see what's happening.
Kris

!DSPAM:41edb17d223013748191099!
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
+ . /etc/rc.subr
+ [ -z  ]
+ _rc_subr_loaded=YES
+ SYSCTL=/sbin/sysctl
+ SYSCTL_N=/sbin/sysctl -n
+ CMD_OSTYPE=/sbin/sysctl -n kern.ostype
+ /sbin/sysctl -n kern.ostype
+ OSTYPE=FreeBSD
+ ID=/usr/bin/id
+ IDCMD=if [ -x /usr/bin/id ]; then /usr/bin/id -un; fi
+ SYSCTL_W=/sbin/sysctl
+ name=ldconfig
+ ldconfig_command=/sbin/ldconfig
+ start_cmd=ldconfig_start
+ stop_cmd=:
+ load_rc_config ldconfig
+ _command=ldconfig
+ [ -z ldconfig ]
+ false
+ [ -r /etc/defaults/rc.conf ]
+ debug Sourcing /etc/defaults/rc.conf
+ . /etc/defaults/rc.conf
+ rc_debug=NO
+ rc_info=NO
+ rcshutdown_timeout=30
+ swapfile=NO
+ apm_enable=NO
+ apmd_enable=NO
+ apmd_flags=
+ devd_enable=YES
+ kldxref_enable=NO
+ kldxref_clobber=NO
+ kldxref_module_path=
+ pccard_enable=NO
+ pccard_mem=DEFAULT
+ pccard_beep=2
+ pccard_ifconfig=NO
+ pccardd_flags=-z
+ pccard_conf=/etc/defaults/pccard.conf
+ pccard_ether_delay=5
+ removable_interfaces=
+ tmpmfs=AUTO
+ tmpsize=20m
+ varmfs=AUTO
+ varsize=32m
+ populate_var=AUTO
+ local_startup=/usr/local/etc/rc.d /usr/X11R6/etc/rc.d
+ script_name_sep= 
+ rc_conf_files=/etc/rc.conf /etc/rc.conf.local
+ gbde_autoattach_all=NO
+ gbde_devices=NO
+ gbde_attach_attempts=3
+ gbde_lockdir=/etc
+ gbde_swap_enable=NO
+ root_rw_mount=YES
+ fsck_y_enable=NO
+ background_fsck=YES
+ background_fsck_delay=60
+ netfs_types=nfs:NFS smbfs:SMB portalfs:PORTAL nwfs:NWFS
+ extra_netfs_types=NO
+ hostname=
+ nisdomainname=NO
+ dhclient_program=/sbin/dhclient
+ dhclient_flags=
+ background_dhclient=NO
+ firewall_enable=NO
+ firewall_script=/etc/rc.firewall
+ firewall_type=UNKNOWN
+ firewall_quiet=NO
+ firewall_logging=NO
+ firewall_flags=
+ ip_portrange_first=NO
+ ip_portrange_last=NO
+ ike_enable=NO
+ ike_program=/usr/local/sbin/isakmpd
+ ike_flags=
+ ipsec_enable=NO
+ ipsec_file=/etc/ipsec.conf
+ natd_program=/sbin/natd
+ natd_enable=NO
+ natd_interface=
+ natd_flags=
+ ipfilter_enable=NO
+ ipfilter_program=/sbin/ipf
+ ipfilter_rules=/etc/ipf.rules
+ ipfilter_flags=
+ ipnat_enable=NO
+ ipnat_program=/sbin/ipnat
+ ipnat_rules=/etc/ipnat.rules
+ ipnat_flags=
+ ipmon_enable=NO
+ ipmon_program=/sbin/ipmon
+ ipmon_flags=-Ds
+ ipfs_enable=NO
+ ipfs_program=/sbin/ipfs
+ ipfs_flags=
+ pf_enable=NO
+ pf_rules=/etc/pf.conf
+ pf_program=/sbin/pfctl
+ pf_flags=
+ pflog_enable=NO
+ pflog_logfile=/var/log/pflog
+ pflog_program=/sbin/pflogd
+ pflog_flags=
+ tcp_extensions=YES
+ log_in_vain=0
+ tcp_keepalive=YES
+ tcp_drop_synfin=NO
+ icmp_drop_redirect=NO
+ icmp_log_redirect=NO
+ network_interfaces=auto
+ cloned_interfaces=
+ ifconfig_lo0=inet 127.0.0.1
+ sppp_interfaces=
+ gif_interfaces=NO
+ ppp_enable=NO
+ ppp_mode=auto
+ ppp_nat=YES
+ ppp_profile=papchap
+ ppp_user=root
+ syslogd_enable=YES
+ syslogd_program=/usr/sbin/syslogd
+ syslogd_flags=-s
+ inetd_enable=NO
+ inetd_program=/usr/sbin/inetd
+ inetd_flags=-wW -C 60
+ named_enable=NO
+ named_program=/usr/sbin/named
+ named_flags=-u bind
+ named_pidfile=/var/run/named/pid
+ named_chrootdir=/var/named
+ named_chroot_autoupdate=YES
+ named_symlink_enable=YES
+ kerberos5_server_enable=NO
+ kerberos5_server=/usr/libexec/kdc
+ kadmind5_server_enable=NO
+ kadmind5_server=/usr/libexec/kadmind
+ kpasswdd_server_enable=NO
+ kpasswdd_server=/usr/libexec/kpasswdd
+ rwhod_enable=NO
+ rwhod_flags=
+ rarpd_enable=NO
+ rarpd_flags=
+ bootparamd_enable=NO
+ bootparamd_flags=
+ pppoed_enable=NO
+ pppoed_provider=*
+ pppoed_flags=-P /var/run/pppoed.pid
+ pppoed_interface=fxp0
+ sshd_enable=NO
+ sshd_program=/usr/sbin/sshd
+ sshd_flags=
+ amd_enable=NO
+ amd_flags=-a /.amd_mnt -l syslog /host /etc/amd.map /net /etc/amd.map

Re: Browsing ports from console

2005-01-19 Thread Daniel S. Haischt

Are there any console ports browsers?

Try links if you need frames and javascript support ...
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: [INFO] buildworld problems

2005-01-18 Thread Daniel S. Haischt
Hello,
now I did remove the custom ldconfig_paths from /etc/rc.conf.
The system still refuses to execute ldconfig at boot time.
I can see the output of /etc/rc.d/ldconfig while the system
is booting, but finally ldconfig isn't properly setup.
Because of this issue I still have to run /etc/rc.d/ldconfig
after the system got booted.
Should I cvsup again? How can I trace this issue?
Kris Kennaway schrieb:
On Mon, Jan 17, 2005 at 10:52:56PM +0100, Daniel S. Haischt wrote:
Hello,
yesterday I did install compat3x  compat4x. Each of
this port istalls a script to /usr/local/etc/rc.d
wich executes ldconfig -m /usr/local/lib/compat.
Could this be the reason for my ldconfig problem?

I doubt it.  The default ldconfig_paths is:
ldconfig_paths=/usr/lib/compat /usr/X11R6/lib /usr/local/lib
so if your system is not seeing libraries in /usr/local/lib then this
may have been changed.  One other possibility is that you made this
directory world-writable, and ldconfig will refuse to read it.
Kris

!DSPAM:41ec463b98961663214988!
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: [INFO] buildworld problems

2005-01-17 Thread Daniel S. Haischt
Hello,
yesterday I did install compat3x  compat4x. Each of
this port istalls a script to /usr/local/etc/rc.d
wich executes ldconfig -m /usr/local/lib/compat.
Could this be the reason for my ldconfig problem?
I'll try to add /usr/local/lib/compat to ldconfig_paths
in /etc/rc.conf. Additionally I'll remove the executable
bits from the just mentioned shell scripts. Maybe that'll
help ...
Kris Kennaway schrieb:
On Sun, Jan 16, 2005 at 08:01:06PM +0100, Daniel S. Haischt wrote:

Anyway, the problem here was that the following
line was missing in the bktr_core.c source file:
#include sys/fcntl.h
Because of the missing line, FNDELAY was undefined.

At least this one, and possibly the other, were already resolved.
cvsup and retry.
Kris

!DSPAM:41ead270103581740810059!
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


[INFO] buildworld problems

2005-01-16 Thread Daniel S. Haischt
Hello,
today I had two problems while/after building world.
I did upgrade my FreeBSD system using CVSup against
the following brachn tag ...
 *default release=cvs tag=RELENG_5
Issue #1:
-
while compiling the kernel sources, the build
process did stop after trying to build the
Brooktree TV Tuner drivers. I have to mention
that I did try to update a server system which
does not have any builtin TV card.
Anyway, the problem here was that the following
line was missing in the bktr_core.c source file:
 #include sys/fcntl.h
Because of the missing line, FNDELAY was undefined.
Issue #2:
-
After successfully building/installing both world
and my new custom kernel I had to realize, that
/etc/rc.d/ldconfig wasn't executed during the
boot process. As a result I was not able to start
most of the programs that I did install to /usr/local.
After executing /etc/rc.d/ldconfig, anything seems
to work as expected.
Can you help me with issue #2? Why does the system
refuse to execute /etc/rc.d/ldconfig while booting
the system?
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: [INFO] buildworld problems

2005-01-16 Thread Daniel S. Haischt
the bktr error message is gone, but I still
have to execute /etc/rc.d/ldconfig start manually
to be able to start all the programs/servers that
I have installed to /usr/local.
Kris Kennaway schrieb:
On Sun, Jan 16, 2005 at 08:01:06PM +0100, Daniel S. Haischt wrote:

Anyway, the problem here was that the following
line was missing in the bktr_core.c source file:
#include sys/fcntl.h
Because of the missing line, FNDELAY was undefined.

At least this one, and possibly the other, were already resolved.
cvsup and retry.
Kris

!DSPAM:41ead270103581740810059!
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


[CLARIFICATION] portupgrade -a

2005-01-15 Thread Daniel S. Haischt
Hello,
recently I did update my package tree using the
portupgrade command. I was allways in doubt whether
my ports will be build with the same WITH_FOO=yes
options during an update, as I did built them
manually before.
After a successfull update of the Gimp, I did
notice that the Gimp wasn't built with the ...
 WITH_PYTHON=yes
... option. How can I ensure that each of the
WITH_XYZ knobs that I did specify during a manual
installation of a port, will be recognized during
an update as well?
Should I, for example, specify those knobs in
/etc/make.conf?
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: [CLARIFICATION] portupgrade -a

2005-01-15 Thread Daniel S. Haischt
The downside of the whole thing is, that I did
not make notes about all the WITH_FOO_BAR knobs
that I did used while installing a port.
So adding options to /etc/make.conf or
/usr/local/etc/pkgtools.conf at the time is a
bit late.
There are some ports, like Samba, which will
remember the options that you did specify after
executing 'make config'. I would appreciate
if any port would have such a facility.
Mark Magiera schrieb:
On Sat, 15 Jan 2005 15:07:36 +0100
Daniel S. Haischt [EMAIL PROTECTED] wrote:

Hello,
recently I did update my package tree using the
portupgrade command. I was allways in doubt whether
my ports will be build with the same WITH_FOO=yes
options during an update, as I did built them
manually before.
After a successfull update of the Gimp, I did
notice that the Gimp wasn't built with the ...
 WITH_PYTHON=yes
... option. How can I ensure that each of the
WITH_XYZ knobs that I did specify during a manual
installation of a port, will be recognized during
an update as well?

Have a look at the MAKE_ARGS section of /usr/local/etc/pkgtools.conf
For instance:
:  MAKE_ARGS = {
:'graphics/gimp' = 'WITH_PYTHON=1',
:  }
Downside to this is it only works with portupgrade so if you ever have
to upgrade a port without portupgrade (it happens), then you might just
forget to specify the make args manually. Not a good thing to realise
half way through a upgrade of kde :(

Should I, for example, specify those knobs in
/etc/make.conf?

You could do I guess.
The (possible) downside to this approach is that since a lot of ports
share the same make args. All ports that have optional python support,
not just gimp, would be built with the python bits which may be
undesired. Python's just an example of course, some ports do have unique
make args but a lot of them are generally shared by a bunch of ports.
For instance I usally have WITHOUT_X11=yes in my make.conf on servers to
stop anything X related being built.

freundlichen Gruessen / With kind regards
Daniel S. Haischt
-- Mark Magiera
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41e92a7447187929512783!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: [CLARIFICATION] portupgrade -a

2005-01-15 Thread Daniel S. Haischt
Yea, I know what you mean. Basically there are some
ports supporting the 'make config' commands.
My current situation is that I did install dozens
of ports which are not supporting the 'make config'
command and unfortunatly I do not remember all the
WITH_BLAH_BLUBBER knobs that I specify while
installing a port.
So there is a great chance that a portupgrade will
install a port with missing knobs :(
Erik Norgaard schrieb:
Daniel S. Haischt wrote:
Hello,
recently I did update my package tree using the
portupgrade command. I was allways in doubt whether
my ports will be build with the same WITH_FOO=yes
options during an update, as I did built them
manually before.
After a successfull update of the Gimp, I did
notice that the Gimp wasn't built with the ...
 WITH_PYTHON=yes
... option. How can I ensure that each of the
WITH_XYZ knobs that I did specify during a manual
installation of a port, will be recognized during
an update as well?
Should I, for example, specify those knobs in
/etc/make.conf?
Unfortunately this is not supported by all ports, but some ports opens 
an interactive menu for enabling/disabling build options and the 
configuration is then stored in /var/db/ports for future builds. This 
should replace setting options on the command line.

AFAIK the idea is that all ports should/will support this in future++. 
Till then, the above problem will remain :-(

It's not documented in the porters handbook, but it doesn't seem too 
difficult to add, but I'm not into the magic. If you have time, create 
an update of the Makefile and submit to the maintainer. You may take a 
look at eg. the mplayer-skins port to see how it works.

Cheers, Erik
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: how to install samba with outdated port

2005-01-15 Thread Daniel S. Haischt
Did you update your ports collection? For example did
you update them using CVSup? Take a look at ...
 - http://tinyurl.com/2t4vg
... for more infos.
Marty Landman schrieb:
I'm running a fresh install of 4.8 from the mini-iso and would like to 
install samba. Have d/l'd samba-3.0.10
which is the uncompressed samba-latest.tar.gz and copied this into my 
/usr/ports/distfiles.

When I go to /usr/ports/net/samba and make build I get:
# make build
  samba-2.2.8.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/.
  Attempting to fetch from http://us3.samba.org/samba/ftp/./.
fetch: http://us3.samba.org/samba/ftp/./samba-2.2.8.tar.bz2: Operation 
timed out
  Attempting to fetch from http://us3.samba.org/samba/ftp/old-versions/.
fetch: http://us3.samba.org/samba/ftp/old-versions/samba-2.2.8.tar.bz2: 
Operation timed out

I gather that my samba port is too old. How can I do the make build  
make install using the latest version.

Marty
Marty Landman, Face 2 Interface Inc. 845-679-9387
Search  Sort Easily: http://face2interface.com/Products/FormATable.shtml
Web Installed Formmail: http://face2interface.com/formINSTal
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

!DSPAM:41e96e1a134362258173384!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: mod_ph4

2005-01-15 Thread Daniel S. Haischt
did you type 'make config' just within the
/ports/lang/php4-extensions directory?
You should get a menu where you can
select/deselect various compile options ...
Mark schrieb:
-Original Message-
From: Mark [mailto:[EMAIL PROTECTED] 
Sent: zaterdag 15 januari 2005 22:12
To: freebsd-questions@freebsd.org
Subject: mod_ph4

I just recompiled mod_php4 (4.3.10) for Apache 1.3.x on
FreeBSD 4.10R. But all options are gone from the Makefile!
It used to be I got this nice menu, giving me every option
to compile extra stuff in; but that is completely gone now!
How do I get it back??

Ok, I found /ports/lang/php4-extensions. Great! Except,
it will not compile anything! How do I get this meta thingy
to compile at all? Sigh. The old php4 install was working just fine;
now it is all messed up. :(
- Mark
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41e995ae41286937921216!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: mod_ph4

2005-01-15 Thread Daniel S. Haischt
This is the complete sequence:
make config  make install (dist)clean
Did you type make install etc. after make config?
I did install php5 the same way and it should work.
Mark schrieb:
-Original Message-
From: Daniel S. Haischt [mailto:[EMAIL PROTECTED] 
Sent: zaterdag 15 januari 2005 23:27
To: Mark
Cc: freebsd-questions@freebsd.org
Subject: Re: mod_ph4

did you type 'make config' just within the
/ports/lang/php4-extensions directory?
You should get a menu where you can
select/deselect various compile options ...

Yes, I did that. After I selected the options,
the make just exits, but does not start a compile. :(
- Mark
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41e99d22196103295897930!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: mod_ph4

2005-01-15 Thread Daniel S. Haischt
First of all check whether automake/autoconf
are in your PATH. e.g.
 #  which automake
 #  which automake
If you are getting no results check whether
autoconf/automake are installed:
 #  pkg_info | grep autoconf
 #  pkg_info | grep automake
Also check your PATH variable ...
 #  env | grep PATH
/usr/local/bin should contained in your PATH
variable.
Mark schrieb:
-Original Message-
From: Daniel S. Haischt [mailto:[EMAIL PROTECTED] 
Sent: zaterdag 15 januari 2005 23:48
To: Mark
Cc: freebsd-questions@freebsd.org
Subject: Re: mod_ph4

This is the complete sequence:
make config  make install (dist)clean
Did you type make install etc. after make config?

Yes, I did all those things; but I get errors all over the place:
-
% make install
===  Installing for php4-extensions-1.0
===   php4-extensions-1.0 depends on file:
/usr/local/include/php/main/php.h - found
===   php4-extensions-1.0 depends on file:
/usr/local/lib/php/20020429/bz2.so - not found
===Verifying install for /usr/local/lib/php/20020429/bz2.so in
/usr/ports/archivers/php4-bz2
===  Vulnerability check disabled
===  Extracting for php4-bz2-4.3.10_1
Checksum OK for php-4.3.10.tar.bz2.
===  Patching for php4-bz2-4.3.10_1
===   php4-bz2-4.3.10_1 depends on executable: phpize - found
===   php4-bz2-4.3.10_1 depends on file: /usr/local/bin/automake - not
found
===Verifying install for /usr/local/bin/automake in
/usr/ports/devel/automake
  No directory for /usr/local/bin/automake.  Skipping..
===   php4-bz2-4.3.10_1 depends on file: /usr/local/bin/autoconf - not
found
===Verifying install for /usr/local/bin/autoconf in
/usr/ports/devel/autoconf
  No directory for /usr/local/bin/autoconf.  Skipping..
===   php4-bz2-4.3.10_1 depends on file:
/usr/local/libexec/libtool13/libtool - found
===  PHPizing for php4-bz2-4.3.10_1
aclocal15: not found
*** Error code 1
Stop in /usr/ports/archivers/php4-bz2.
*** Error code 1
-
Thanks,
- Mark
!DSPAM:41e9a042259954368969750!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: mod_ph4

2005-01-15 Thread Daniel S. Haischt
btw, try to install the autoconf/automake
ports first before php4.
Is this your first port that you are installing
on your system? I am wondering because the auto
tools are missing ...
Daniel S. Haischt schrieb:
First of all check whether automake/autoconf
are in your PATH. e.g.
 #  which automake
 #  which automake
If you are getting no results check whether
autoconf/automake are installed:
 #  pkg_info | grep autoconf
 #  pkg_info | grep automake
Also check your PATH variable ...
 #  env | grep PATH
/usr/local/bin should contained in your PATH
variable.
Mark schrieb:
-Original Message-
From: Daniel S. Haischt [mailto:[EMAIL PROTECTED] Sent: 
zaterdag 15 januari 2005 23:48
To: Mark
Cc: freebsd-questions@freebsd.org
Subject: Re: mod_ph4

This is the complete sequence:
make config  make install (dist)clean
Did you type make install etc. after make config?

Yes, I did all those things; but I get errors all over the place:
-
% make install
===  Installing for php4-extensions-1.0
===   php4-extensions-1.0 depends on file:
/usr/local/include/php/main/php.h - found
===   php4-extensions-1.0 depends on file:
/usr/local/lib/php/20020429/bz2.so - not found
===Verifying install for /usr/local/lib/php/20020429/bz2.so in
/usr/ports/archivers/php4-bz2
===  Vulnerability check disabled
===  Extracting for php4-bz2-4.3.10_1
Checksum OK for php-4.3.10.tar.bz2.

===  Patching for php4-bz2-4.3.10_1
===   php4-bz2-4.3.10_1 depends on executable: phpize - found
===   php4-bz2-4.3.10_1 depends on file: /usr/local/bin/automake - not
found
===Verifying install for /usr/local/bin/automake in
/usr/ports/devel/automake
  No directory for /usr/local/bin/automake.  Skipping..
===   php4-bz2-4.3.10_1 depends on file: /usr/local/bin/autoconf - not
found
===Verifying install for /usr/local/bin/autoconf in
/usr/ports/devel/autoconf
  No directory for /usr/local/bin/autoconf.  Skipping..
===   php4-bz2-4.3.10_1 depends on file:
/usr/local/libexec/libtool13/libtool - found
===  PHPizing for php4-bz2-4.3.10_1
aclocal15: not found
*** Error code 1
Stop in /usr/ports/archivers/php4-bz2.
*** Error code 1
-
Thanks,
- Mark



--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: Production Release 5.3 Installation Won't Boot

2005-01-13 Thread Daniel S. Haischt
I had the same problem (continous boot cycle if booting
from the CDROM media).
In my case FreeBSD 5.3 did not like my Promise IDE
controller ...
babaloo munchies schrieb:
One difference between 4.8  5.3 is that the 5.3 loads
ACPI , but is the ACPI module loaded in the
installation kernel? Is it an interrupt problem?  I
don't know.  But I do have 5.3 running happily on it
now thanks to teh floppies.
AFAIK - FreeBSD, per defualt, does not boot with ACPI
enabled.
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: anyone using Putty and ssh-agent?

2005-01-13 Thread Daniel S. Haischt
If you are using PuTTY on Windows why don't you use
pageant.exe on Windows as well?
Dan Langille schrieb:
I'm trying to get putty and ssh-agent working under 5.3-stable.  
Anyone succeeded?

I have plain ssh working with ssh-agent, but not putty. The issue is  
just putty, not ssh-agent.
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: dspam

2005-01-13 Thread Daniel S. Haischt
Hello,
I am using DSPAM 3.3-DEVEL but i guess DSPAM 2.10
works the same way regarding your question.
If you compiled DSPAM with the opt-out option
the user needs to place a .nodspam file in his
home directory if he wants to *not* use DSPAM.
Try some googeling to get some more details.
Olga Zenkova schrieb:
Hi!
I use dspam-2.10.3. Is it possible to use it not for
all users of FreeBSD system?
Thanks,
Olga   

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://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]

!DSPAM:41e6956b734681234717571!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: How to use X without installing X?

2005-01-13 Thread Daniel S. Haischt
simply try to export/set the DISPLAY variable before
installing any additional software.
setenv DISPLAY foo.bar.com:0.0
   
  |
Your actual X-Server -´
If you are using a bourn shell you need to use export
instead of setenv.
Richard Morse schrieb:
Hi!  I have a FreeBSD 5 STABLE computer which is acting as a server.  
Because it doesn't need it, I don't want to install all of X -- my goal 
is that there shouldn't be anything that I can't do over ssh from a 
command-line.

Unfortunately, Oracle doesn't agree with me.
I need to install the Oracle client software on this computer -- it 
won't actually be an Oracle server, but does need to be able to connect 
to various other servers (mostly from PHP and DBD::Oracle).

Apparently, in order to run the installer for 9i, it needs X.  But, I 
figure it shouldn't need all of X, because I intend to connect via `ssh 
-X` from a different computer which is running X to actualy do the 
display.  However, even once I've installed 'x11/xorg-libraries', when I 
`ssh -X` to the box $DISPLAY is not set.

What is the minimum that I need to install to make this work?
Thanks,
Ricky Morse
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]

!DSPAM:41e6c6cb120362022840548!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: Opengroupware

2005-01-09 Thread Daniel S. Haischt
First of all this is a port which requires the Linux/ELF
binary emulation to be installed.
Second - You shouldn't search in /usr/lib for required
libraries. Instead you should search in ...
 - /compat/linux/usr/lib
Because Opengroupware is searching for the Linux version
of OpenSSL!
I bet you'll find something like this ...
[EMAIL PROTECTED] ls -la /compat/linux/lib/libssl.so.*
-rwxr-xr-x1 root wheel  194416 Sep 24  2003 
/compat/linux/lib/libssl.so.0.9.6b
lrwxr-xr-x1 root wheel  16 Dec  6 19:46 
/compat/linux/lib/libssl.so.2 - libssl.so.0.9.6b

Do you see the problem? It is  libssl.so.0.9.6b 
but Opengroupware is searching for  libssl.so.0.9.6 
So this should solve the problem:
ln -s /compat/linux/lib/libssl.so.0.9.6b \
/compat/linux/lib/libssl.so.0.9.6
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
Marcel de Reuver schrieb:
Hi,
On FreeBSD 5.3 you can install Opengroupware from the ports without any
warning or error. When you start Opengroupware it is complaining about a
missing /usr/lib/libssl.so.0.9.6
OpenSSL 0.9.7d is installed and working. Has anyone Opengroupware running on
FreeBSD 5.3?
Best regards,
Marcel de Reuver
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41e19cac918321543481209!


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


Re: Lost my X11 config - what was the old tool to build it?

2005-01-09 Thread Daniel S. Haischt
Did you read:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html
John schrieb:
Before Win98 destroyed my nice FreeBSD 4.9-STABLE installation on
my Compaq Armada M700 laptop, I had a really good X configuration
which, if I remember correctly, was generated almost entirely
automatically somehow.  (No, I didn't have a backup of that config
file, and I've already kick myself many times.) Anyway, I am trying
to get this back up and running with XFree86 4.3.0 and FreeBSD
5.2.1.
I sure can't get anything that's useful now from the X86Config
script - all it does is ask me questions that I don't really know
the answer to - partly because it is a Laptop, and I can't just
easily see what the built-in adapter is.  Whatever configuration
utility that I ran before, I sure can't find it now - it seemed
to make VERY good recommendations, and I could sure use some!
I've checked the XFree86 web site, and didn't find much useful there.
I've done global web searches for XFree86 and this laptop, but
they must be for versions that are too old, because they don't
work for me, complaining of Drivers that don't exist, and so forth.
I'd be tempted to just reload 4.9-RELEASE and re-do it from there,
but I'm afraid I may run into a similar problem - where the config
file there, even if I get it, won't work with the new stuff.
Any pointers will be appreciated.
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: Opengroupware

2005-01-09 Thread Daniel S. Haischt

Also required:
ln -s  /compat/linux/lib/libcrypto.so.0.9.6b 
/compat/linux/lib/libcrypto.so.0.9.6
Yea I did forget that one ...
Opengroupware is now complaining about:
 /lib/libc.so.6: version `GLIBC_2.3' not found
Which  linux_base port did you install (8 or 7)?
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: Opengroupware

2005-01-09 Thread Daniel S. Haischt
btw, read one of my past email posts:
 - http://tinyurl.com/6xk3c
Marcel de Reuver schrieb:
First of all this is a port which requires the Linux/ELF
binary emulation to be installed.
Second - You shouldn't search in /usr/lib for required
libraries. Instead you should search in ...
 - /compat/linux/usr/lib
Because Opengroupware is searching for the Linux version
of OpenSSL!
I bet you'll find something like this ...
[EMAIL PROTECTED] ls -la /compat/linux/lib/libssl.so.*
-rwxr-xr-x1 root wheel  194416 Sep 24  2003 
/compat/linux/lib/libssl.so.0.9.6b
lrwxr-xr-x1 root wheel  16 Dec  6 19:46 
/compat/linux/lib/libssl.so.2 - libssl.so.0.9.6b

Do you see the problem? It is  libssl.so.0.9.6b 
but Opengroupware is searching for  libssl.so.0.9.6 
So this should solve the problem:
ln -s /compat/linux/lib/libssl.so.0.9.6b \
/compat/linux/lib/libssl.so.0.9.6

Also required:
ln -s  /compat/linux/lib/libcrypto.so.0.9.6b 
/compat/linux/lib/libcrypto.so.0.9.6

Opengroupware is now complaining about:
 /lib/libc.so.6: version `GLIBC_2.3' not found
Best regards,
Marcel de Reuver
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41e1b268365836148510072!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: Opengroupware

2005-01-09 Thread Daniel S. Haischt
I additionally had some kerberos issues, because
I did compile PostgreSQL with Kerberos support.
If you did the same, you'll need to install the
*Linux* Kerberos libraries as well.
I would also suggest to start Opengroupware manually
during your test period, not using the rcNG script.
And finally use the exact steps from ...
 - http://tinyurl.com/5coq6 (Section 4)
... to initialize the Ogo system and use their
apache setup.
Marcel de Reuver schrieb:
Also required:
ln -s  /compat/linux/lib/libcrypto.so.0.9.6b
/compat/linux/lib/libcrypto.so.0.9.6
Yea I did forget that one ...

Opengroupware is now complaining about:
/lib/libc.so.6: version `GLIBC_2.3' not found
Which  linux_base port did you install (8 or 7)?

After deinstalling linux_base version 7x and installing linux_base-8 it is
starting. Now there is something with the version of Postgres.
I will look into that later. Thanks for the hints!
Best regards,
Marcel de Reuver
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41e1c12e730671228015368!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: Device Perms in 5.3

2005-01-08 Thread Daniel S. Haischt
I don't know whether this has been brought to the table before,
but why don't you set your perms in /etc/devfs.conf.
You know if you are using devfs you should also use the
appropriate configuration file ...
Tabor Kelly schrieb:
Kris Kennaway wrote:
On Fri, Jan 07, 2005 at 02:54:28PM -0800, Karl Agee wrote:
I want to use 5.3 as a desktop system, but I am having some problems 
with device permissions.  Since devfs re-creates devices on boot I 
have to redo the perms everytime I want to use these devices.  
Listening to audio cd's, watching dvd's or burning cd's/dvd's.  Gets 
a little annoying.

How can I peg device permissions the way I want them...other than 
using it on a daily basis as root?

man devfs
Kris

Or you could write a script to do it every time you boot. But 'man 
devfs' will probably tell you the correct way to do it.

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: startx problem

2005-01-08 Thread Daniel S. Haischt
you should add this to your kernel configuration
file if you are required to build a custom kernel:
device  io  # I/O device
#^^
Matteo Santori schrieb:
It's strange cause it should be in the kernel GENERIC on 5.3
Anyway, just add:
dev   io
in you kernelconfig and it will work.
If you don't know how to compile the kernel, check the handbook.
Greets,
matteo, italy

Emon wrote:
Hello everyone
I am a newbie. I have just Installed FreeBSD 5.3  and I am
trying to get X started. But after typing Xorg -configure (I
learned this from the Hand-Book) I got the following error
**
Fatal server error:
xf86EnableIO: Failed to open /dev/io for extended I/O
***
I have no clue as to what that means
I am also pasting the Xorg.0.log file.
Thanks in advance
Jadukor
***
Release Date: 18 December 2003
X Protocol Version 11, Revision 0, Release 6.7
Build Operating System: FreeBSD 5.3 i386 [ELF]
Current Operating System: FreeBSD  5.3-RELEASE FreeBSD
5.3-RELEASE #0: Fri Nov  5 04:19:18 UTC 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
i386
Build Date: 16 October 2004
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default
setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Sat Jan  8 21:03:22
2005
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on freebsd
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=X.Org Foundation
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=X.Org Foundation
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 9

Fatal server error:
xf86EnableIO: Failed to open /dev/io for extended I/O
Please consult the The X.Org Foundation support
 at http://wiki.X.Org
for help.
Please also check the log file at /var/log/Xorg.0.log for
additional information.
***8
-
Free POP3 Email from www.Gawab.com Sign up NOW and get your account 
@gawab.com!!
___
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]

!DSPAM:41e004a8282374745749934!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Can't find rootvp if booting with a plugged-in firewire HD

2005-01-05 Thread Daniel S. Haischt
Hello,
I have a problem after adding a firewire hard
disk to my system. I did format and label the
drive and the drive works without any problem.
After a reboot I am getting the following message
after the firewire was detected:
ffs_mountroot: can't find rootvp
The firewire disk is /dev/da1 and my root (/)
partition is /dev/da0s1a. After getting the above
error message I am getting a boot prompt which
allows me to manually specify an appropriate
device. If typing ? to get a list of available
devices, /dev/da0s1a is missing.
I guess the solution to is problem is pretty
trivial, but at the time I am to blind to see
the solution.
Any hints on how to solve this issue would be
appreciated.
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: Can't find rootvp if booting with a plugged-in firewire HD

2005-01-05 Thread Daniel S. Haischt
OK - I did find the answer ...
After plugging-in the firewire device, /dev/da0
changes to /dev/da1 while botting and /dev/da1
(aka firewire) changes to /dev/da0.
How can it be accomplished that /dev/da0
(my non-removable SCSI disk) remains /dev/da0,
no matter how many removable drives are added
to the system?
I already did set the ATA_STATIC_ID option in
my kernel configuration file.
I am running FreeBSD 5.3-STABLE.
Regards
Daniel S. Haischt
Daniel S. Haischt schrieb:
Hello,
I have a problem after adding a firewire hard
disk to my system. I did format and label the
drive and the drive works without any problem.
After a reboot I am getting the following message
after the firewire was detected:
ffs_mountroot: can't find rootvp
The firewire disk is /dev/da1 and my root (/)
partition is /dev/da0s1a. After getting the above
error message I am getting a boot prompt which
allows me to manually specify an appropriate
device. If typing ? to get a list of available
devices, /dev/da0s1a is missing.
I guess the solution to is problem is pretty
trivial, but at the time I am to blind to see
the solution.
Any hints on how to solve this issue would be
appreciated.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Privoxy at boot.

2005-01-05 Thread Daniel S. Haischt
Hello,
try the attached rcNG file I just did create it a couples
of days ago. It is not perfect but the file does its job.
You'll need to add the following lines to /etc/rc.conf
privoxy_enable=YES
privoxy_flags=/usr/local/etc/privoxy/config
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [EMAIL PROTECTED]
Lowell Gilbert schrieb:
Adam [EMAIL PROTECTED] writes:

able to find out how to make it start up at boot. I tried /etc/rc.conf
but no luck.

Well, no.  rc.conf is for *configuration* information, not for
executing commands.  It gets sourced *many* times at startup.
There are several different ways to start something at boot; 
the documentation is available by typing man rc.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

!DSPAM:41dbe931162192725988344!

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


Re: CUPS server

2004-12-24 Thread Daniel S. Haischt

Leon schrieb:
Hi,
How can I check if SUPS server is running?
[EMAIL PROTECTED] ps ax | grep cups
  696  ??  Ss 0:03.87 /usr/local/sbin/cupsd
  ^
If it is not running , how can I Install it, and configure?
cd /usr/ports/print/cups  make install clean
Thanks,
Leon.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41cc9a1d244924116313389!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: tarball

2004-12-24 Thread Daniel S. Haischt

Leon schrieb:
Hi,
What is the tarball?
for example that's a tarball:
/usr/ports/distfiles/samba-3.0.9.tar.gz
actually it is 'gzipped' to shrink its size.
How can I extract it?
a standard tarball:
  tar xpvf my-tarball.tar
a gzipped tarball:
  tar xpvfz my-tarball.tar.gz
a bzipped tarball:
  tar xpvfj my-tarball.tar.bz2
Where I can extract it from?
Thanks,
Leon.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41cc9dca320125380216915!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: what can i delete from /usr

2004-12-22 Thread Daniel S. Haischt
Btw - why don't you type ...
 $  make install clean
  ^
... if compiling work? That way there woudn't be
left over work directories. You don't need them
anyway after a successfull port install.
goose bla schrieb:
hello,,
please. i have not big hdd,, and i need to make free place. what can i
remove from /usr  and system will be OK ? 

example:
/usr/ports/distfiles/   - i can remove all files.
in /usr/ports i can do 
rm -rf \*/work/

i can remove 
/usr/src/sys/i386/compile/*after reboot with new kernel.

can i remove /usr/src/sys/amd64 or /alpha  if a have i386 platform ?
--- reklama -
Nerozumiete niektorm slovkam?
http://slovnik.zoznam.sk
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41c993a1248794181411352!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt
Wan't a complete signature??? Type at a shell prompt:
$  finger -l [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: courier imap keys and self-signed ca signing

2004-12-19 Thread Daniel S. Haischt
Why don't you read the OpenSSL manual that comes with
your SSL-enabled Apache?
Anyway here's a basic command line example:
generate the pop certificate request:
-
openssl req -config path/to/ur/openssl.cnf \
-newkey rsa:2048 -keyout pop-server-key.pem \
-out pop-server-req.pem
issue the certificate using a existing CA certificate:
--
openssl ca -config path/to/ur/openssl.cnf \
-name name-of-ur-ca \
-in pop-server-req.pem -out pop-server-cert.pem
Read your OpenSSL manual as well.
dave schrieb:
Hello,
I've got a 5.3 box that i'm using as a self-signing ca. I want to get
keys going for all the various protocols i use, http, which i've done, pop
and imap, and smtp. It's these last three i'm having the headache. I'm using
postfix as my MTA and courier imap for pop/imap, i know that the latter has
a program to generate keys but not csr's, i'm not sure how to get keys from
courier and/or postfix to the ca for signing. I'm probably missing somehing
very basic, and would appreciate any help.
Thanks.
Dave.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41c5be83339755710121396!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt   | phone:+49 -7032-992909
Grabenstrasse 11|   +49 -700-DHAISCHT
| fax:  +49 -7032-992910
D-71083 Herrenberg  | fax2mail: +49 -7032-7999738
GERMANY | cell: +49 -172-7668936
SIP:   sip:[EMAIL PROTECTED]:5060
email: [EMAIL PROTECTED]
web:   http://www.daniel.stefan.haischt.name/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: courier imap keys and self-signed ca signing

2004-12-19 Thread Daniel S. Haischt
That's true if each of his servers will have the
same common name (CN). But if one server resides
for example on imap.foobar.com and the other
at smtp.foobar.com, he has to use different
certificate.
Mozilla/Netscape browsers are quite picky if it
comes to wrong CN attributes.
BTW Dave - If you did install Apache together with
mod_ssl the mod_ssl manual could be found at:
 - http://localhost/manual/ssl/
Louis LeBlanc schrieb:
On 12/19/04 12:45 PM, dave sat at the `puter and typed:
Hello,
   I've got a 5.3 box that i'm using as a self-signing ca. I want to get
keys going for all the various protocols i use, http, which i've done, pop
and imap, and smtp. It's these last three i'm having the headache. I'm using
postfix as my MTA and courier imap for pop/imap, i know that the latter has
a program to generate keys but not csr's, i'm not sure how to get keys from
courier and/or postfix to the ca for signing. I'm probably missing somehing
very basic, and would appreciate any help.
Thanks.
Dave.

Why would you want to use multiple methods?  Just create a single self
signed CA from OpenSSL and use it to sign a single cert for all your
servers.  You could also just use a self signed cert for all of them.
Check out this info:
http://www.openssl.org/docs/apps/x509v3_config.html#Subject_Alternative_Name_
That will tell you about using a single cert for multiple domains if
that is what you need.
Hope this helps.
Lou
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt   | phone:+49 -7032-992909
Grabenstrasse 11|   +49 -700-DHAISCHT
| fax:  +49 -7032-992910
D-71083 Herrenberg  | fax2mail: +49 -7032-7999738
GERMANY | cell: +49 -172-7668936
SIP:   sip:[EMAIL PROTECTED]:5060
email: [EMAIL PROTECTED]
web:   http://www.daniel.stefan.haischt.name/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Interrupt storm on FreeBSD 5.3

2004-12-18 Thread Daniel S. Haischt
Hello,
I tried the following at the boot prompt:
# unload
# load /boot/kernel/kernel (- my custom kernel)
# set hint.ohci.0.irq=15
The command 'show' at the boot loader prompt
shows that the above device hint was set
appropriatly.
I did this because I set the OHCI device in the
computer's bios to IRQ 15. I additionally included
the above device hint in the file /boot/device.hints.
Tho - During the boot process I am still getting:
ohci0: SiS 5571 USB controller mem 0xe400-0xe4000fff irq 11 at 
device 1.2 on pci0

Which finally leads to the same interrupt storm on
irq11: ohci+
Why is the device hint not recognized during the
boot process? Is it because I did enable DEVICE_POLLING
in my kernel configuration file? But I thought
this option only belongs to network cards ...
Daniel S. Haischt schrieb:
Hello,
Lowell Gilbert schrieb:
Daniel S. Haischt [EMAIL PROTECTED] writes:

I am getting the following error message during
the boot process after having compiled a custom
kernel for FreeBSD 5.3-RELEASE-p1.
888---8-8-
Interrupt storm detected on irq11: ohci+;
throtteling interrupt source
888---8-8-

Are you using OHCI?  Disable it if you're not.

The problem here is, if disabling USB (OHCI) in the
bios, the interrupt storm appears in conjuction
with the device atkbd ...
... so the interrupt storm remains - no matter what
I am doing.

Mounting root from ufs:/dev/ad4s2a
warning: KLD '/boot/kernel.save/ipfw.ko' is newer than the 
linker.hints file
ipfw2 initialized, divert disabled, rule-based forwarding disabled, 
default to deny, logging disabled
Accounting enabled
warning: KLD '/boot/kernel.save/linux.ko' is newer than the 
linker.hints file

Looks like you haven't really updated everything...
___

That message is a result of booting using the old
GENERIC kernel (actually it is called kernel.save/kernel).
If I am using the new kernel I am not getting these
error messages. But then, unfortunatly, I am getting
the interrupt storm message :(
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt   | phone:+49 -7032-992909
Grabenstrasse 11|   +49 -700-DHAISCHT
| fax:  +49 -7032-992910
D-71083 Herrenberg  | fax2mail: +49 -7032-7999738
GERMANY | cell: +49 -172-7668936
SIP:   sip:[EMAIL PROTECTED]:5060
email: [EMAIL PROTECTED]
web:   http://www.daniel.stefan.haischt.name/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: postfix mysql 4.0.22

2004-12-17 Thread Daniel S. Haischt
did you also try WITH_MYSQL_VER=4 ?
It's pretty uncommon that one has to include
the minor version if building a port ...
Cristi Tauber schrieb:
   Hello people,
  I have a little problem setting up postfix with mysql. My ports.cvs
looks like this :
madalina# cat /root/ports.cvs
*default host=cvsup7.freebsd.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=.
*default compress
*default delete use-rel-suffix
ports-all
-
  I cvsup'ed to get the latest ports. I installed mysql server
4.0.22. Now i try to install postfix with mysql backend. So :
cd /usr/ports/mail/postfix
  make install
and i get this error :
===  Installing for mysql-client-3.23.58_3
===  mysql-client-3.23.58_3 conflicts with installed package(s):
  mysql-client-4.0.22
  They install files into the same place.
  Please remove them first with pkg_delete(1).
*** Error code 1
  but i got mysql 4.0.22 not 3.xx so i try with this :
make install WITH_MYSQL_VER=4.0.22
but i get ...
===  postfix-2.1.5_1,1 is marked as broken: unknown MySQL version:
4.0.22.
the same happens with postfix-current .  What's wrong with my
installation ?
 Thank you,
  Cristi
---
This message and its contents have been scanned and certified for
transmission as being free from malicious code by eTrust Antivirus. This
message may contain confidential, privileged or other legally protected
information. It is intended for the addressee(s) only. If you are not the
addressee, or someone the addressee authorized to receive this message, you
are prohibited from copying, distributing or otherwise using it. Please
notify the sender and return it.Thank you.
  
 

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

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt   | phone:+49 -7032-992909
Grabenstrasse 11|   +49 -700-DHAISCHT
| fax:  +49 -7032-992910
D-71083 Herrenberg  | fax2mail: +49 -7032-7999738
GERMANY | cell: +49 -172-7668936
email: [EMAIL PROTECTED]
web:   http://www.daniel.stefan.haischt.name/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: strange security message regarding sshd

2004-12-17 Thread Daniel S. Haischt
How do you start your SSH Daemon? Via /etc/sshd?
If yes, did you set the sshd_program variable in
/etc/rc.conf to point to /usr/local/sbin/sshd?
dave schrieb:
Hello,
Just checked the security report on one of my machines and i saw this
strange output:
Dec 16 07:36:38 zeus sshd[84399]: error: rexec of /usr/sbin/sshd failed: No
such file or directory
Dec 16 07:53:43 zeus sshd[84484]: error: rexec of /usr/sbin/sshd failed: No
such file or directory
Dec 16 07:55:56 zeus sshd[84484]: fatal: Write failed: Operation not
permitted
Dec 16 07:56:52 zeus sshd[84510]: error: rexec of /usr/sbin/sshd failed: No
such file or directory
Dec 16 21:54:43 zeus sshd[57065]: error: rexec of /usr/sbin/sshd failed: No
such file or directory
This is on a 5.3 box and sshd is in /usr/local/sbin i am not sure why i'd be
seeing this. Any suggestions?
Thanks.
Dave.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
!DSPAM:41c33109592579959311482!

--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt   | phone:+49 -7032-992909
Grabenstrasse 11|   +49 -700-DHAISCHT
| fax:  +49 -7032-992910
D-71083 Herrenberg  | fax2mail: +49 -7032-7999738
GERMANY | cell: +49 -172-7668936
SIP:   sip:[EMAIL PROTECTED]:5060
email: [EMAIL PROTECTED]
web:   http://www.daniel.stefan.haischt.name/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Interrupt storm on FreeBSD 5.3

2004-12-17 Thread Daniel S. Haischt
Hello,
Lowell Gilbert schrieb:
Daniel S. Haischt [EMAIL PROTECTED] writes:

I am getting the following error message during
the boot process after having compiled a custom
kernel for FreeBSD 5.3-RELEASE-p1.
888---8-8-
Interrupt storm detected on irq11: ohci+;
throtteling interrupt source
888---8-8-

Are you using OHCI?  Disable it if you're not.
The problem here is, if disabling USB (OHCI) in the
bios, the interrupt storm appears in conjuction
with the device atkbd ...
... so the interrupt storm remains - no matter what
I am doing.

Mounting root from ufs:/dev/ad4s2a
warning: KLD '/boot/kernel.save/ipfw.ko' is newer than the linker.hints file
ipfw2 initialized, divert disabled, rule-based forwarding disabled, default to 
deny, logging disabled
Accounting enabled
warning: KLD '/boot/kernel.save/linux.ko' is newer than the linker.hints file

Looks like you haven't really updated everything...
___
That message is a result of booting using the old
GENERIC kernel (actually it is called kernel.save/kernel).
If I am using the new kernel I am not getting these
error messages. But then, unfortunatly, I am getting
the interrupt storm message :(
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt   | phone:+49 -7032-992909
Grabenstrasse 11|   +49 -700-DHAISCHT
| fax:  +49 -7032-992910
D-71083 Herrenberg  | fax2mail: +49 -7032-7999738
GERMANY | cell: +49 -172-7668936
SIP:   sip:[EMAIL PROTECTED]:5060
email: [EMAIL PROTECTED]
web:   http://www.daniel.stefan.haischt.name/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Interrupt storm on FreeBSD 5.3

2004-12-16 Thread Daniel S. Haischt
Hello,
I am getting the following error message during
the boot process after having compiled a custom
kernel for FreeBSD 5.3-RELEASE-p1.
888---8-8-
Interrupt storm detected on irq11: ohci+;
throtteling interrupt source
888---8-8-
In the past I did use the same kernel configuration
file on FreeBSD 5.2.1 which did work perfectly.
Tho - If using the GENERIC kernel that comes
with FreeBSD 5.3 I do not run into any problems.
Can you give any hints how to solve the problem?
Attached you will find the output of dmesg. Tell
me if you need any additional information.
--
Mit freundlichen Gruessen / With kind regards
Daniel S. Haischt   | phone:+49 -7032-992909
Grabenstrasse 11|   +49 -700-DHAISCHT
| fax:  +49 -7032-992910
D-71083 Herrenberg  | fax2mail: +49 -7032-7999738
GERMANY | cell: +49 -172-7668936
email: [EMAIL PROTECTED]
web:   http://www.daniel.stefan.haischt.name/
Copyright (c) 1992-2004 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 5.3-RELEASE #0: Fri Nov  5 04:19:18 UTC 2004
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Pentium/P55C (233.03-MHz 586-class CPU)
  Origin = GenuineIntel  Id = 0x543  Stepping = 3
  Features=0x8001bfFPU,VME,DE,PSE,TSC,MSR,MCE,CX8,MMX
real memory  = 268435456 (256 MB)
avail memory = 253014016 (241 MB)
Intel Pentium detected, installing workaround for F00F bug
npx0: [FAST]
npx0: math processor on motherboard
npx0: INT 16 interface
pcib0: Host to PCI bridge pcibus 0 on motherboard
pir0: PCI Interrupt Routing Table: 6 Entries on motherboard
pci0: PCI bus on pcib0
isab0: PCI-ISA bridge at device 1.0 on pci0
isa0: ISA bus on isab0
atapci0: SiS 5513 UDMA33 controller port 
0xd000-0xd00f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 irq 11 at device 1.1 on pci0
ata0: channel #0 on atapci0
ata1: channel #1 on atapci0
ohci0: SiS 5571 USB controller mem 0xe400-0xe4000fff irq 11 at device 1.2 
on pci0
ohci0: [GIANT-LOCKED]
usb0: OHCI version 1.0, legacy support
usb0: SiS 5571 USB controller on ohci0
usb0: USB revision 1.0
uhub0: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhub1: Atmel Standard USB Hub, class 9/0, rev 1.10/3.00, addr 2
uhub1: 4 ports with 4 removable, self powered
ugen0: Cambridge Silicon Radio Ltd. Bluetooth USB dongle, rev 1.10/5.25, addr 3
xl0: 3Com 3c905C-TX Fast Etherlink XL port 0xb800-0xb87f mem 
0xe380-0xe380007f irq 4 at device 9.0 on pci0
miibus0: MII bus on xl0
xlphy0: 3c905C 10/100 internal PHY on miibus0
xlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
xl0: Ethernet address: 00:10:22:fd:f2:7d
sis0: NatSemi DP8381[56] 10/100BaseTX port 0xb400-0xb4ff mem 
0xe300-0xe3000fff irq 9 at device 10.0 on pci0
sis0: Silicon Revision: DP83815D
miibus1: MII bus on sis0
ukphy0: Generic IEEE 802.3u media interface on miibus1
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
sis0: Ethernet address: 00:40:f4:5f:91:ed
pci0: display, VGA at device 11.0 (no driver attached)
atapci1: Promise PDC20269 UDMA133 controller port 
0x9800-0x980f,0xa000-0xa003,0xa400-0xa407,0xa800-0xa803,0xb000-0xb007 mem 
0xe280-0xe2803fff irq 11 at device 12.0 on pci0
ata2: channel #0 on atapci1
ata3: channel #1 on atapci1
cpu0 on motherboard
orm0: ISA Option ROMs at iomem 
0xcc000-0xce7ff,0xc8000-0xc87ff,0xc-0xc7fff on isa0
pmtimer0 on isa0
atkbdc0: Keyboard controller (i8042) at port 0x64,0x60 on isa0
atkbd0: AT Keyboard irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model Generic PS/2 mouse, device ID 0
fdc0: Enhanced floppy controller at port 0x3f0-0x3f5 irq 6 drq 2 on isa0
fdc0: [FAST]
fd0: 1440-KB 3.5 drive on fdc0 drive 0
ppc0: parallel port not found.
sc0: System console at flags 0x100 on isa0
sc0: VGA 16 virtual consoles, flags=0x300
sio0: configured irq 4 not in bitmap of probed irqs 0
sio0: port may not be enabled
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 8250 or not responding
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
ppc1: parallel port not found.
unknown: PNP0700 can't assign resources (port)
unknown: PNP0f13 can't assign resources (irq)
unknown: PNP0303 can't assign resources (port)
Timecounter TSC frequency 233030328 Hz quality 800
Timecounters tick every 10.000 msec
ad0: 1919MB NEC Corporation DSE2010A/VVK0333 [3900/16/63] at ata0-master WDMA2
ad4: 78533MB IC35L080AVVA07-0/VA4OA52A [170197/15/63] at ata2-master UDMA100
acd0: CDRW PLEXTOR CD-R PREMIUM/1.05 at ata3-master UDMA33
acd1: DVDROM PLEXTOR DVD-ROM PX-116A2 0100/1.00 at ata3-slave UDMA66
Mounting root from ufs:/dev/ad4s2a
warning: KLD