Installing KDE-3.1.3 on 5.1-REL

2003-09-19 Thread Odhiambo Washington

Hello Ladies and Gentlemen,

I am trying to install KDE, but it fails with the message that it requires
a working libXext.
Anyone knows what can fix this? What package is associated with libXext that
I need to install?


-Wash

-- 
Odhiambo Washington   [EMAIL PROTECTED]  The box said 'Requires
Wananchi Online Ltd.  www.wananchi.com  Windows 95, NT, or better,'
Tel: +254 2 313985-9  +254 2 313922 so I installed FreeBSD.   
GSM: +254 72 743223   +254 733 744121   This sig is McQ!  :-)

Man is the best computer we can put aboard a spacecraft ... and the
only one that can be mass produced with unskilled labor.
-- Wernher von Braun
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: [OT] replacing fan with mismatched specs

2003-09-19 Thread Siegbert Baude
Hi Bill,

  I have a switch that has a fan in it that
failed.  It's a 40MM .22Amp 5V.
Look here: http://www.papst.de/pdf_dat_e/S11gb.pdf

The 405 (40x40x20) or 405FH (40x40x20) should be what you need.

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


/usr/libexec/ld-elf.so.1: Shared object libintl.so.4 not found

2003-09-19 Thread Odhiambo Washington
Hi people,

I lost my hard disk (no backups) yesterday and now I am the most miserable
man on earth!
I have installed FreeBSD 5.1-RELEASE. I have installed X, which is running
fine, but I have tried installing mozilla, gaim, evolution, and a few others,
all of which fails with the message:

/usr/libexec/ld-elf.so.1: Shared object libintl.so.4 not found

I would like to know how to get this libintl.so.4 into the system so that
these apps can compile. Howdy?



-Wash

-- 
Odhiambo Washington   [EMAIL PROTECTED]  The box said 'Requires
Wananchi Online Ltd.  www.wananchi.com  Windows 95, NT, or better,'
Tel: +254 2 313985-9  +254 2 313922 so I installed FreeBSD.   
GSM: +254 72 743223   +254 733 744121   This sig is McQ!  :-)

My theology, briefly, is that the universe was dictated but not
signed.
-- Christopher Morley
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


MS Intellimouse and XFree86

2003-09-19 Thread Reid Linnemann

Okay, so here's the skinny:

I have a 3-button mouse with Z axis (wheel) that behaves as a PS/2 intellimouse.

Running moused -f -p /dev/psm0 shows Z axis events reported when I use the wheel.

However, in X using /dev/sysmouse as the mouse device, no Z axis events make it
through. This is confirmed by running xev(8) and spinning the mousewheel in the
window. No events are printed.

This seems to me as an error in either the sysmouse driver or in the XFree86
mouse handling of the sysmouse driver, I really can only make wild guesses.. but
those seem to me to be reasonable. Does anyone have any thoughts?

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


Re: decompressing source

2003-09-19 Thread Andrey Simonenko
On Fri, 19 Sep 2003 04:37:46 + (UTC) in lucky.freebsd.questions, Alain Dazzi wrote:
 Just a basic question, what unix command should I use to decompress
 (expand) the various
 data files after downloading the sources via ftp.  For instance ssys.aa
 - ssys.ak should get expanded
 into sys.
 

You should use a pipe of cat and tar commands.  There are install.sh
scripts, which know how to install files from the distribution.

From the src/install.sh script:

if [ $1 = all ]; then
dists=base bin contrib etc games gnu include lib libexec release sbin share 
sys tools ubin usbin
else
dists=$*
fi

echo Extracting sources into ${DESTDIR}/usr/src...
for i in $dists; do
echo   Extracting source component: $i
cat s${i}.?? | tar --unlink -xpzf - -C ${DESTDIR}/usr/src
done
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ipfw.conf is not read

2003-09-19 Thread Antoine Jacoutot
Hi !

I have a stange problem today.
I just set up a brand new 5.1 box. I added in my rc.conf:
firewall_enables=YES
firewall_script=/etc/ipfw.conf
firewall_logging=YES
IPFW is compiled in the kernel.
If I go: sh /etc/ipfw.conf; the rules get loaded with no problem, but 
when I reboot the computer, it seems to ignore my ruleset and just set 
default firewall to deny (I want this by default, but I want it to read 
my ipfw.conf ruleset).

The permissions on /etc/ipfw.conf are set to 644.

If you have any idea...
Thanks.
Antoine

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


Re: /usr/libexec/ld-elf.so.1: Shared object libintl.so.4 not found

2003-09-19 Thread Joseph Begumisa
On Fri, 19 Sep 2003, Odhiambo Washington wrote:

 Hi people,

 I lost my hard disk (no backups) yesterday and now I am the most miserable
 man on earth!
 I have installed FreeBSD 5.1-RELEASE. I have installed X, which is running
 fine, but I have tried installing mozilla, gaim, evolution, and a few others,
 all of which fails with the message:

 /usr/libexec/ld-elf.so.1: Shared object libintl.so.4 not found

 I would like to know how to get this libintl.so.4 into the system so that
 these apps can compile. Howdy?


hi,

i encountered such a problem a few weeks back and this link below was
helpful. take a look.  the answer lies in upgrading gettext and all of
the ports that depend on it.

http://www.bsdforums.org/forums/showthread.php?threadid=13526

cheers,

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


Re: ipfw.conf is not read

2003-09-19 Thread Michael L. Hostbaek
Antoine Jacoutot (ajacoutot) writes:
 
 firewall_enables=YES
 firewall_script=/etc/ipfw.conf
 firewall_logging=YES
 

try:

firewall_enable=YES
firewall_type=/etc/ipfw.conf

I don't know why, but that works for me.

/mich


-- 
Best Regards,
Michael L. Hostbaek 
FreeBSD Committer - FreeBSD: The power to serve
[EMAIL PROTECTED] - http://www.FreeBSD.org

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


apache startup problem

2003-09-19 Thread H. Bartel
Hi everybody,

after succesfully de- and reinstalling apache13, I get the following error after 
running /usr/local/sbin/apachectl start

Bus error (core dumped)
/usr/local/sbin/apachectl start: httpd could not be started

/kernel: pid 141 (httpd), uid 0: exited on signal 10 (core dumped)

After rebooting the system this error message appeared:

login: date /kernel: pid 141 (httpd), uid 0: exited on signal 10 (core dumped)

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


Re: apache startup problem

2003-09-19 Thread Jens Rehsack
H. Bartel wrote:
Hi everybody,

after succesfully de- and reinstalling apache13, I get the following error after running /usr/local/sbin/apachectl start

Bus error (core dumped)
/usr/local/sbin/apachectl start: httpd could not be started
/kernel: pid 141 (httpd), uid 0: exited on signal 10 (core dumped)

After rebooting the system this error message appeared:

login: date /kernel: pid 141 (httpd), uid 0: exited on signal 10 (core dumped)

Any ideas? Thanks, Ho.
If I were you I'd try gdb apache apache.core to identify the module
which dumps. If it's a standard one, you shouldn't probably rebuild
it using lower optimization level.
Jens

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


Re: apache startup problem

2003-09-19 Thread Laurens Heeren
Hey,

what do you get when you run: apachectl configtest ?

Greets,

Laurens

On Fri, 19 Sep 2003 12:10:13 +0200
H. Bartel [EMAIL PROTECTED] wrote:

 Hi everybody,
 
 after succesfully de- and reinstalling apache13, I get the following error after 
 running /usr/local/sbin/apachectl start
 
 Bus error (core dumped)
 /usr/local/sbin/apachectl start: httpd could not be started
 
 /kernel: pid 141 (httpd), uid 0: exited on signal 10 (core dumped)
 
 After rebooting the system this error message appeared:
 
 login: date /kernel: pid 141 (httpd), uid 0: exited on signal 10 (core dumped)
 
 Any ideas? Thanks, Ho.
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

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


Re: Re: Cat a directory

2003-09-19 Thread Ruben de Groot
On Fri, Sep 19, 2003 at 08:27:00AM +0300, Karlsson Mikael HKI/SOSV typed:
 OK! I admit that it isn't THE BIGGEST problem for me BUT it is A problem. What
 I ment in my last mail was that it is the biggest problem concerning cat. Since
 someone always seems to cat a binary file without having the knowledge of what
 it causes.
 
So why don't you for example alias cat to cat -v in your system profile 
and login scripts? This will display non-printing characters so they are
visible and don't mangle terminal settings.

 I personally think that some of these tests should be added to the real
 distributable version of cat that comes with FreeBSD cause I can't be the only
 one that this bugs. I mean what could a little more code hurt to the program
 since cat isn't supposed to read binary files.

Why not? I regularly use constructs like this:

cat somebackup.tgz | ssh someserver cd /somedir; tar xzf -

 I could add the code myself to cat's source file and compile it so my users
 won't be able to cat binary files and stuff like that but what happens to the
 thousands of other people that is bugged by the same problem, are they supposed
 to do the same re-coding that I did? Or couldn't this simply be added to the
 distribution source file so others won't be bugged.
 
 Other *NIX systems seem to have done this to their cat program so why can't
 FreeBSD? and why is this already done to less and not cat?

Because less != cat. It has a completely different functionality.

Ruben

 Dan Nelson wrote (18.9.2003  17:33):
 In the last episode (Sep 18), Karlsson Mikael HKI/SOSV said:
  What I just wanted to ask was if it's absolutely necessary for cat to
  be able to work on directories. Or if it would be possible to simply
  add a check to cat that tests if the file being opened is a
  directory and then exits with an error message if that is the case.
 
 The source is in /usr/src/bin/cat; add some code to stat the file and
 fail if it's a directory.
 
  The biggest problem for me as a Unix help-person at a company is to
  always explain to newbies and less experienced users not to cat
  directories as it usually scrambles or locks the whole terminal and
  as they then turn to me to undo their mistakes. These small simple
  things give our users bad thoughts about FreeBSD and often drives
  them to use other OSs!
 
 I find that hard to believe.  Do you also want to block catting of
 executables, gzipped files, jpeg files, database files, and audio
 files?  No OS does that by default.  Maybe you should teach them how to
 reset their terminals when they cat binary data; ^Jreset^J should work,
 assuming your TERM variable is set right.
 
 --
  Dan Nelson
  [EMAIL PROTECTED]
 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

-- 
The world is coming to an end.  Please log off.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ipfw.conf is not read

2003-09-19 Thread Antoine Jacoutot
try:

firewall_enable=YES
firewall_type=/etc/ipfw.conf
I already tried that, but it does not work :(

Antoine

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


cannot alias non-local names

2003-09-19 Thread Antoine Jacoutot
Hi,

Since last sendmail update, whenever I change an alias in 
/etc/mail/aliases and run make I get:

# make
/usr/sbin/sendmail -bi -OAliasFile=/etc/mail/aliases
/etc/mail/aliases: line 19: root... cannot alias non-local names
/etc/mail/aliases: line 22: MAILER-DAEMON... cannot alias non-local names
/etc/mail/aliases: line 23: postmaster... cannot alias non-local names
/etc/mail/aliases: line 26: bin... cannot alias non-local names
/etc/mail/aliases: line 27: bind... cannot alias non-local names
/etc/mail/aliases: line 28: daemon... cannot alias non-local names
/etc/mail/aliases: line 29: games... cannot alias non-local names
/etc/mail/aliases: line 30: kmem... cannot alias non-local names
/etc/mail/aliases: line 31: mailnull... cannot alias non-local names
/etc/mail/aliases: line 32: man... cannot alias non-local names
/etc/mail/aliases: line 33: news... cannot alias non-local names
/etc/mail/aliases: line 34: nobody... cannot alias non-local names
/etc/mail/aliases: line 35: operator... cannot alias non-local names
/etc/mail/aliases: line 36: pop... cannot alias non-local names
/etc/mail/aliases: line 37: smmsp... cannot alias non-local names
/etc/mail/aliases: line 38: sshd... cannot alias non-local names
/etc/mail/aliases: line 39: system... cannot alias non-local names
/etc/mail/aliases: line 40: toor... cannot alias non-local names
/etc/mail/aliases: line 41: tty... cannot alias non-local names
/etc/mail/aliases: line 42: usenet... cannot alias non-local names
/etc/mail/aliases: line 43: uucp... cannot alias non-local names
/etc/mail/aliases: line 46: manager... cannot alias non-local names
/etc/mail/aliases: line 47: dumper... cannot alias non-local names
/etc/mail/aliases: line 56: abuse... cannot alias non-local names
/etc/mail/aliases: line 58: security... cannot alias non-local names
/etc/mail/aliases: line 61: ftp... cannot alias non-local names
/etc/mail/aliases: line 62: ftp-bugs... cannot alias non-local names
/etc/mail/aliases: line 63: hostmaster... cannot alias non-local names
/etc/mail/aliases: line 64: webmaster... cannot alias non-local names
/etc/mail/aliases: line 65: www... cannot alias non-local names
/etc/mail/aliases: 0 aliases, longest 0 bytes, 0 bytes total
*** Error code 70
Stop in /etc/mail.

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


Re: apache startup problem

2003-09-19 Thread H. Bartel
On 09/19/2003 12:17 PM [EMAIL PROTECTED] (Laurens Heeren) wrote:


what do you get when you run: apachectl configtest ?

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


Re: ipfw.conf is not read

2003-09-19 Thread Armand Passelac
[ On Fri, 19 Sep, 2003 at 11:52, Michael L. Hostbaek wrote: ]
 Antoine Jacoutot (ajacoutot) writes:
  
  firewall_enables=YES
  firewall_script=/etc/ipfw.conf
  firewall_logging=YES
  
 
 try:
 
 firewall_enable=YES
 firewall_type=/etc/ipfw.conf
 
 I don't know why, but that works for me.
 
 /mich


YES your problem is the *s* at the and of the firewall_enable line ;-)
So the correct syntax is :
firewall_enable=YES
firewall_script=/etc/ipfw.conf
# To avoid the display of rules during loading :
firewall_quiet=YES
# To display the log (for log rules) in /var/log/security
firewall_logging=YES

In your case, the *firewall_type* seems to not be necessary unless you use the default 
rc.firewall syntax.

Moreover, according to me, a chmod 600 /etc/ipfw.conf seems to be better ;-)

 
 
 -- 
 Best Regards,
   Michael L. Hostbaek 
   FreeBSD Committer - FreeBSD: The power to serve
   [EMAIL PROTECTED] - http://www.FreeBSD.org
 
   */ PGP-key available upon request /*
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
[ End of original mail from Michael L. Hostbaek ]

-- 
No guts No glory

=] PASSELAC Armand [=
 (  @ @ )   
Ingenieur Systemes-Reseaux  Securite
ORBYTES INGENIERIE
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache startup problem

2003-09-19 Thread H. Bartel
On 09/19/2003 10:17 AM [EMAIL PROTECTED] (Jens Rehsack) wrote:

If I were you I'd try gdb apache apache.core to identify the module
which dumps. If it's a standard one, you shouldn't probably rebuild
it using lower optimization level.

I read the man pages for gdb but 'gdb apache apache.core' doesn't do anything besides 
no such file...

Do have to go to a specific dir to execute gdb? I can't find a file called apache.core 
as well. Only httpd.core. I have never used it before and am failry new to the unix 
world.

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


Re: apache startup problem

2003-09-19 Thread Jens Rehsack
H. Bartel wrote:
On 09/19/2003 10:17 AM [EMAIL PROTECTED] (Jens Rehsack) wrote:


If I were you I'd try gdb apache apache.core to identify the module
which dumps. If it's a standard one, you shouldn't probably rebuild
it using lower optimization level.


I read the man pages for gdb but 'gdb apache apache.core' doesn't do anything besides no such file...

Do have to go to a specific dir to execute gdb? I can't find a file called apache.core as well. Only httpd.core. I have never used it before and am failry new to the unix world.
You should either search the file or start the apache
from within the gdb.
Jens

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


Re: ipfw.conf is not read

2003-09-19 Thread Antoine Jacoutot
Armand Passelac wrote:
YES your problem is the *s* at the and of the firewall_enable line ;-)
I can NOT believe how stupid I am...
I'm really sorry about this ;)
Moreover, according to me, a chmod 600 /etc/ipfw.conf seems to be better ;-)
Yes, of course, I just set it to 644 for my testings...

Thanks a lot.

Antoine

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


Re: apache startup problem

2003-09-19 Thread H. Bartel
On 09/19/2003 11:21 AM [EMAIL PROTECTED] (Jens Rehsack) wrote:

You should either search the file or start the apache
from within the gdb.

If I start the apache from within the gdb I get the following:
Undefined command: . Try help.

What I typed is:
(gdb) /usr/local/sbin/apachectl start
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Patch SSH Not Work?

2003-09-19 Thread Ben Dover
I patched my SSHD on FreeBSD ver 5.1 (base system, not ports) and after 
stopping the SSHD server and restarting I checked the version and received 
the following:

schizoid# /usr/sbin/sshd -\?
sshd version OpenSSH_3.6.1p1 FreeBSD-20030423
Why did I not receive the September date?  Did the patch fail?

_
Express yourself with MSN Messenger 6.0 -- download now! 
http://www.msnmessenger-download.com/tracking/reach_general

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


NATD, interface with two IPs.

2003-09-19 Thread William Fletcher
Hi,

I have a slight problem with natd. I have the following interface. 

ed2: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
inet 196.14.166.30 netmask 0xffe0 broadcast 196.14.166.31
inet6 fe80::200:21ff:fe20:f11%ed2 prefixlen 64 scopeid 0x2
inet 192.168.2.30 netmask 0xff00 broadcast 192.168.2.255
ether 00:00:21:20:0f:11

Take note of the network masks.
I can only talk to computer 192.168.2.1-30 when natd is running.

I'm using natd to do the translation... With the following ipfw rule.

ipfw -q -f add divert natd all from any to any via ed2

I can ping across to 192.168.2.30+ but I cannot send tcp\udp, etc.

Anyone got any ideas, or, should I just go for ipnat? 

-- 
William Fletcher (ultraviolet)Powered by http://www.FreeBSD.org/
IT Administrator, EPWeb networks. irc at irc.epweb.co.za
http://www.epweb.co.za/http://vision.za.net/irc/
Tel: +27 (041) 395 6800   
Fax: +27 (041) 395 6818 
Support: [EMAIL PROTECTED]

 To see what is in front of one's nose needs a constant struggle.. 
  - George Orwell

I'm not vain; It's hard being modest when you're so perfect! 

This email and the content are subject to a disclaimer at the following link:
http://www.epweb.co.za/corp/disclaimer.htm



pgp0.pgp
Description: PGP signature


antiviruos for FreeBSD mail server ?

2003-09-19 Thread RJ45

Hello,
I Tryed to search an economic antivirus for freebsd mailserver.
Anyone has comments on Vexira antivirus ?
anyone tryed it ?
It looks quit economic

thanks

Rick


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


Re: A Problem configuring X-server...(version 4.0)

2003-09-19 Thread Lowell Gilbert
Nour-Al-Din [EMAIL PROTECTED] writes:

 Bonjour, Hello,
 
 
 I currently experience problems configuring X-server on freeBSD (last 
 version I think (ie 5.smthing)).
 I comes out with :
 No screen found.
 or  Abort fatal error Abort 6 (or smthg close to that)
 messages.
 
 The machine i use is reasonnably old (i586 PII, 350 mhz), and the 
 graphic card is a Rendition Verite 2200 (pci).)
 
 My floppy doesn't work anymore (unconfigured or smthg like that).
 
 Would you please help me ?

What method did you use to try to configure X?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: antiviruos for FreeBSD mail server ?

2003-09-19 Thread Andrew L. Gould
On Friday 19 September 2003 07:45 am, RJ45 wrote:
 Hello,
 I Tryed to search an economic antivirus for freebsd mailserver.
 Anyone has comments on Vexira antivirus ?
 anyone tryed it ?
 It looks quit economic

 thanks

 Rick

I'd like to add on to this question:

Has anyone run the Linux Desktop version ($34.95) on FreeBSD using Linux 
emulation? (I will also send this question to [EMAIL PROTECTED])

Thanks,

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


Re: make: permission denied error when doing make installworld

2003-09-19 Thread Lowell Gilbert
Mike Tibor [EMAIL PROTECTED] writes:

 (if this question is more appropriate for freebsd-stable, let me know)

Not really.

 I'm trying update one of my servers, and can't get past a make:
 permission denied error when doing a make instalworld as root in single
 user mode.  My sequence was this:
 
 cvsup
 make buildworld
 make buildkernel
 make installkernel
 shutdown now   (go to single user mode)

That should be shutdown -r now.  You want to reboot into the new
kernel.  [This explains the problem, I think, because you're probably
still running at a raised security level, even though you're in
single-user mode.]

 make installworld
 
 I'm I missing something?  I've run into this once before on another
 server, and just did a binary upgrade to get around it.  The thing is,
 I've successfully upgraded along the -STABLE tree via this method
 countless times.
 
 / is mounted rw, and /usr/bin/make is executable.

I suspect the permission denied errors are caused by
system-immutable flags, not by file permissions.

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


Re: antiviruos for FreeBSD mail server ?

2003-09-19 Thread Gary
Hello RJ45,

Friday, September 19, 2003, 7:45:25 AM, you wrote:

R I Tryed to search an economic antivirus for freebsd mailserver. Anyone
R has comments on Vexira antivirus ? anyone tryed it ? It looks quit
R economic

I know several mail admins who use it and love it, although personally I
have not tried it. It is supposed to be a very fine product.

-- 
Best regards,
 Gary 

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


Re: questions regarding sound driver

2003-09-19 Thread Lowell Gilbert
ALIAS [EMAIL PROTECTED] writes:

 i can't seem to get my sound to work, i've installed freebsd and got it 
 working before but don't remember how and everytime i try to open up a mpeg 
 file it says 
 
 Sound server informational message:
 
 Error while initializing the sound driver:
 device /dev/dsp can't be opened  (Device not configured)
 
 The sound server will continue, using the null output device.
 
 i've added the device pcm to my kernel and i've configured the 
 /boot/loader.conf and added snd_pcm_load=YES and used kldload snd_pcm.ko 
 and the error message is still coming up can someone help me? i have a sound 
 blaster sound card.

Have you built the sound devices?
[Or on 5.x, are they creating themselves?]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


How to set VPN over firewalls.

2003-09-19 Thread Ajit @ FreeBSD
Hi All,

How to set VPN over firewalls.

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


Re: problem with afd0: reading primary partition table: error reading fsbn 0

2003-09-19 Thread Lowell Gilbert
yew chin [EMAIL PROTECTED] writes:

 after a clean installation, i keep getting this error
 message and i just search a lot of web site but still
 couldn't figure out the problem.
 does anyone has any idea?

On FreeBSD 4.8, I assume.

The afd device is an ATAPI floppy disk, which is slightly unusual.  Do
you actually have one? 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: MS Intellimouse and XFree86

2003-09-19 Thread Malcolm Kay
On Fri, 19 Sep 2003 07:06, Reid Linnemann wrote:
 Okay, so here's the skinny:

 I have a 3-button mouse with Z axis (wheel) that behaves as a PS/2
 intellimouse.

 Running moused -f -p /dev/psm0 shows Z axis events reported when I use the
 wheel.

 However, in X using /dev/sysmouse as the mouse device, no Z axis events
 make it through. This is confirmed by running xev(8) and spinning the
 mousewheel in the window. No events are printed.

 This seems to me as an error in either the sysmouse driver or in the
 XFree86 mouse handling of the sysmouse driver, I really can only make wild
 guesses.. but those seem to me to be reasonable. Does anyone have any
 thoughts?


Pointer section in XF86config:-
===
Section InputDevice
Identifier  Mouse1
Driver  mouse
Option Protocolauto
Option Device  /dev/sysmouse
Option Buttons 5
Option ZAxisMapping 4 5
EndSection

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


Re: BIND fix for VeriSign's unregistered domain redirections?

2003-09-19 Thread Lowell Gilbert
liquid [EMAIL PROTECTED] writes:

 Any fix for BIND 8 in the near future?

Maybe.

 Also, anyone know of a workaround for BIND 8 at this time?  If I were to
 simply install bind9 on my system from the ports, does it in fact simply
 overwrite the default installation included with FreeBSD?

No.  It installs it under /usr/local.

 Right now, I've blocked off verisign's IP.  I don't know how effective
 that is though.

Not very to moderately, depending on your goals.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


sendmail being the default MTA in FreeBSD

2003-09-19 Thread ftyczka
Hello,

I was just wondering - are there any (perhaps historical) reasons, why
sendmail is the default MTA that comes with the system on FreeBSD ?
I know I can use others like postfix, but I was just curious.

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


Good article on using ports at O'Reilly's BSD DevCenter

2003-09-19 Thread Barry C . Hawkins
All,
	For those relatively new to FreeBSD (like me) and who use ports 
regularly (who doesn't?), there is a great article by Dru Lavigne at 
http://www.onlamp.com/pub/a/bsd/2003/09/18/FreeBSD_Basics.html that 
is a wonderful walkthrough on getting to the next level of proficiency 
in using ports effectively.  I always come away with several new 
pointers when I read one of these articles.  If you're new to BSD, the 
BSD DevCenter is sure to become a frequented spot.

Happy Friday,
--
Barry C. Hawkins
All Things Computed
site: www.allthingscomputed.com/
weblog: www.allthingscomputed.com/blog/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re:Re: Cat a directory

2003-09-19 Thread Warren Block
On Thu, 19 Sep 2003, Karlsson Mikael HKI/SOSV wrote:

 I personally think that some of these tests should be added to the
 real distributable version of cat that comes with FreeBSD cause I
 can't be the only one that this bugs. I mean what could a little more
 code hurt to the program since cat isn't supposed to read binary
 files.

Says who?  cat works fine on binary files.  The problem you are having
is that people are using cat to *display* files.  Fixing that problem
could break cat for its more standard use: cat binaryfile | filter |
etc.

 Other *NIX systems seem to have done this to their cat program so why
 can't FreeBSD?

See above.

 and why is this already done to less and not cat?

less is made to display files.  It's the correct tool for the job.

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


What's the meaning of these arp messages...

2003-09-19 Thread RA Cohen
Hi,

I have a FBSD 4.8 box running Samba in my network. Lately I am
noticing some strange messages at the console concerning my
firewall. The messages basically say the MAC address of my linux
firewall's internal ip address has changed...and 15 minutes
later changed again (to the original MAC address)...and so on.

The linux firewall is a bastion host with three NICs...are my
NICs bad or what? This is coinciding with some not-understood
behavior of the firewall.

The firewall is Ipcop which worked just fine for us for the past
year and a half. Then we upgraded our ISDN connection to
business-class cable (2 Mbps down and 512 Up) and I'm losing
sleep and hair and we still are enjoying spotty connectivity
at the windows clients, but not at the public interface of the
firewall itself...I cannot figure out what is going on, and I've
posted an ipcop-centric message on their mailing list. But, can
anyone figure out what the arp messages are telling me?

Thanks,
Roy
 

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


g++ -pedantic errors on include files

2003-09-19 Thread Guy Middleton
On my 5.1-RELEASE system, if I compile a C++ program thus:

c++ -O -pipe -march=pentium3 -Wall -W -Wno-long-long -pedantic  wchar.cc -o wchar


The compiler prints many warnings like this:

/usr/include/g++/bits/stl_alloc.h:979: warning: ISO C++ forbids the use of `
   extern' on explicit instantiations


Is there  some way to turn this off?  I don't mind getting complaints about my
own code, but it's kind of pointless to get warnings about system include
files.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


CUPS vs. apsfilter--newbie setup problems

2003-09-19 Thread Jesse Sheidlower

I'm trying to get my 4.8-running laptop hooked up to
some printers, and I'm having trouble getting it configured
with either CUPS or apsfilter (as someone here had recommended).
I've tried to look over the docs, and search through here, but
am still stumped for what I'm supposed to be doing.

I'm also not clear on why these systems don't interoperate, or,
rather, why an entry in /etc/printcap generated from apsfilter
doesn't show up in CUPS. It would be nice if you could use 
these together.

First, I was able to configure printing on a local USB printer
with each system, though apsfilter has a vastly greater number
of drivers available. Is there a way to get CUPS to read these
drivers, or to separately install ones that it can handle?

I'm not able to get either one to work with a networked printer.
With CUPS, I can get it to the point where I can print a test
page, by choosing the device AppSocket/HP Jet Direct (though
it's not a Jet Direct printer, just a regular TCP/IP interface) and
using a device URI of socket://1.2.3.4:9100/ , but I
can't get anything else to print on this printer. I wasn't able
to get it to print even a test page by using any lpd combination
I could come up with.

With apsfilter, I can't get it set up at all; anything I try
gives lpr: unable to print file: client-error-not-found
when I try to do a test page.

Assuming I ever do manage to get this configured, is there a
way to choose printers from within apps? In Mozilla, even with
several (dummy) printers entered, the only option for Printer
is PostScript/Default, and from, say, Emacs, there's just the
various print options. Do I have to choose this from the 
command line outside of the apps?

Thanks very much.

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


Re: make: permission denied error when doing make installworld

2003-09-19 Thread Mike Tibor
On 19 Sep 2003, Lowell Gilbert wrote:

 Mike Tibor [EMAIL PROTECTED] writes:

  I'm trying update one of my servers, and can't get past a make:
  permission denied error when doing a make instalworld as root in single
  user mode.  My sequence was this:
 
  cvsup
  make buildworld
  make buildkernel
  make installkernel
  shutdown now   (go to single user mode)

 That should be shutdown -r now.  You want to reboot into the new
 kernel.  [This explains the problem, I think, because you're probably
 still running at a raised security level, even though you're in
 single-user mode.]

  make installworld
 
  I'm I missing something?  I've run into this once before on another
  server, and just did a binary upgrade to get around it.  The thing is,
  I've successfully upgraded along the -STABLE tree via this method
  countless times.
 
  / is mounted rw, and /usr/bin/make is executable.

 I suspect the permission denied errors are caused by
 system-immutable flags, not by file permissions.

Thanks for the reply Lowell.  I actually just found the problem that was
causing this just yesterday--when I built this box I'd set up a separate
filesystem for /tmp and had mounted it with various options including
noexec.  After I rebooted into the new kernel, I did a make installworld
without /tmp being mounted, and it worked just fine.  The trick is going
to be to remember this the next time.  ;-)


Thanks again,
Mike

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


Re: CUPS vs. apsfilter--newbie setup problems

2003-09-19 Thread Andrew L. Gould
On Friday 19 September 2003 10:39 am, Jesse Sheidlower wrote:
 I'm trying to get my 4.8-running laptop hooked up to
 some printers, and I'm having trouble getting it configured
 with either CUPS or apsfilter (as someone here had recommended).
 I've tried to look over the docs, and search through here, but
 am still stumped for what I'm supposed to be doing.

 I'm also not clear on why these systems don't interoperate, or,
 rather, why an entry in /etc/printcap generated from apsfilter
 doesn't show up in CUPS. It would be nice if you could use
 these together.

 First, I was able to configure printing on a local USB printer
 with each system, though apsfilter has a vastly greater number
 of drivers available. Is there a way to get CUPS to read these
 drivers, or to separately install ones that it can handle?

 I'm not able to get either one to work with a networked printer.
 With CUPS, I can get it to the point where I can print a test
 page, by choosing the device AppSocket/HP Jet Direct (though
 it's not a Jet Direct printer, just a regular TCP/IP interface) and
 using a device URI of socket://1.2.3.4:9100/ , but I
 can't get anything else to print on this printer. I wasn't able
 to get it to print even a test page by using any lpd combination
 I could come up with.

 With apsfilter, I can't get it set up at all; anything I try
 gives lpr: unable to print file: client-error-not-found
 when I try to do a test page.

 Assuming I ever do manage to get this configured, is there a
 way to choose printers from within apps? In Mozilla, even with
 several (dummy) printers entered, the only option for Printer
 is PostScript/Default, and from, say, Emacs, there's just the
 various print options. Do I have to choose this from the
 command line outside of the apps?

 Thanks very much.

 Jesse Sheidlower

This may sound like a dumb question, but did you start the printing service 
'lpd'?  The default installation of FreeBSD does not start this service.

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


Re: CUPS vs. apsfilter--newbie setup problems

2003-09-19 Thread Jesse Sheidlower
On Fri, Sep 19, 2003 at 11:05:50AM -0500, Andrew L. Gould wrote:
 On Friday 19 September 2003 10:39 am, Jesse Sheidlower wrote:
  I'm trying to get my 4.8-running laptop hooked up to
  some printers, and I'm having trouble getting it configured
  with either CUPS or apsfilter (as someone here had recommended).
  I've tried to look over the docs, and search through here, but
  am still stumped for what I'm supposed to be doing.

[...]

 This may sound like a dumb question, but did you start the printing service 
 'lpd'?  The default installation of FreeBSD does not start this service.

It is not a dumb question, as I normally do forget such things, but
in this case, yes, lpd is running.

Jesse Sheidlower

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


Re: CUPS vs. apsfilter--newbie setup problems

2003-09-19 Thread Andrew L. Gould
On Friday 19 September 2003 11:05 am, Andrew L. Gould wrote:
 On Friday 19 September 2003 10:39 am, Jesse Sheidlower wrote:
  I'm trying to get my 4.8-running laptop hooked up to
  some printers, and I'm having trouble getting it configured
  with either CUPS or apsfilter (as someone here had recommended).
  I've tried to look over the docs, and search through here, but
  am still stumped for what I'm supposed to be doing.
 
  I'm also not clear on why these systems don't interoperate, or,
  rather, why an entry in /etc/printcap generated from apsfilter
  doesn't show up in CUPS. It would be nice if you could use
  these together.
 
  First, I was able to configure printing on a local USB printer
  with each system, though apsfilter has a vastly greater number
  of drivers available. Is there a way to get CUPS to read these
  drivers, or to separately install ones that it can handle?
 
  I'm not able to get either one to work with a networked printer.
  With CUPS, I can get it to the point where I can print a test
  page, by choosing the device AppSocket/HP Jet Direct (though
  it's not a Jet Direct printer, just a regular TCP/IP interface) and
  using a device URI of socket://1.2.3.4:9100/ , but I
  can't get anything else to print on this printer. I wasn't able
  to get it to print even a test page by using any lpd combination
  I could come up with.
 
  With apsfilter, I can't get it set up at all; anything I try
  gives lpr: unable to print file: client-error-not-found
  when I try to do a test page.
 
  Assuming I ever do manage to get this configured, is there a
  way to choose printers from within apps? In Mozilla, even with
  several (dummy) printers entered, the only option for Printer
  is PostScript/Default, and from, say, Emacs, there's just the
  various print options. Do I have to choose this from the
  command line outside of the apps?
 
  Thanks very much.
 
  Jesse Sheidlower

 This may sound like a dumb question, but did you start the printing service
 'lpd'?  The default installation of FreeBSD does not start this service.

Please disregard my previous post.  I didn't read the first message clearly 
enough.

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


Re: What's the meaning of these arp messages...

2003-09-19 Thread Alexander Haderer
At 08:23 19.09.2003 -0700, RA Cohen wrote:
Hi,

I have a FBSD 4.8 box running Samba in my network. Lately I am
noticing some strange messages at the console concerning my
firewall. The messages basically say the MAC address of my linux
firewall's internal ip address has changed...and 15 minutes
later changed again (to the original MAC address)...and so on.
Sounds like the IP address of your firewall is used by another machine.

Alexander



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


php postgresql error - howto?

2003-09-19 Thread Alex Zivenko
Hi people!
Can I get some help from you? 
At once I want to tell sorry for this question.
So, I have got the error when I'm trying to insert data from php variable into db 
table. It gives me error like:
You have not permission to increase the index key of db (tablename.fieldname). But I 
have permission for user www.
It was like this GRANT ALL on News to www;
Help me please.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Unrecognized Broadcom 570x Chip on Dell1750

2003-09-19 Thread william paul
Of all the gin joints in all the towns in all the world, Olaf Hoyer
had to walk into mine and say:
 
 HI!
 
 Got @work a new Dell 1750 machine, serverworks Chipset w/Xeon CPU, also
 dual gigE Broadcom chipsets.
 FreeBSD 4.8-R failed to recognize the chip, but Knoppix 3.2 (Linux
 Distro, based on debian iirc, recognized the broadcom chips, iirc as
 5704 ones)

Yeah yeah yeah. Try a FreeBSD 4.9 snapshot. Support for the 5704 was
added after FreeBSD 4.8-RELEASE came out. 4.9 should also support
the 5705 chips.

-Bill
 
-- 
=
-Bill Paul(510) 749-2329 | Senior Engineer, Master of Unix-Fu
 [EMAIL PROTECTED] | Wind River Systems
=
  If stupidity were a handicap, you'd have the best parking spot.
=
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Wireless Network Card

2003-09-19 Thread Jakub Witek
First I must say than my english is on very pimary level... so be patient,
please
---
I have a huge problem with my netwok card (Planet wl 8305, chip acx100)
because it not compability with any vesion of FreeBSD. I'd like to use this
os because it is very stable and better than Linux and of corse... Windows.
If you can send to me email with instuction what i must to do or make next
vesion your system with diver to this card I will be your borrower.

faithfully

Jacub Witek

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


Re: BIND fix for VeriSign's unregistered domain redirections?

2003-09-19 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-09-19 09:58:25 -0400:
 liquid [EMAIL PROTECTED] writes:
  Right now, I've blocked off verisign's IP.  I don't know how effective
  that is though.
 
 Not very to moderately, depending on your goals.

hurts *you*

mail sent to nonexistent domains under .com and .net will clog
your MTA's queue.

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


USB-console?

2003-09-19 Thread Daniel Johansson
Hello dear FreeBSD users ;)

I've got a small question. Scince more and more companies take away the
old serialport on all new computers that the sell today we won't be able
to admin our servers with serialconsole, when one don't have network
etc. and don't want to have a screen + keybord next to the computer. 

So what I was thinking about was if there exists or is plans on
developing USB-console or anything similar. Consoleaccess over USB. Sure
would be very handy and cool but maby that is not possible/wantable to
do?

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


fdisk

2003-09-19 Thread Florin Betivoiu
 Hi, I'm a newbie that's been doing stuff and now needs help. I have
two harddrives, on the master drive there's FreeBSD 5.0 and on the slave
drive you could find Slackware 9. I used lilo from the slackware drive as a
boot loader and installed it in the master boot record of the first drive, the
one with FreeBSD. Now, I erased Slackware and my system won't boot.
I need help to install the FreeBSD bootloader. Please help! Thanks.


-
Want to chat instantly with your online friends? Get the FREE Yahoo!Messenger
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


modem on serial port?

2003-09-19 Thread Sean Hafeez
i am using a freebsd box as a router. it has a serial port. i would 
like to hook up a modem and use it to manage the router if the lines go 
down. now i know you can use the serial port as a console but how about 
when i stick a modem on it. does anything change. anything i need to 
install?

thanks!

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


Re: Is FreeBSD up to this job?

2003-09-19 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2003-09-17 12:33:30 -0600:
 My plan is to build a custom jukebox looking enclosure like everyone 
 is used to seeing in bars, poolhalls, etc. In place of the CD changer 
 I'd like to have a full PC (Thinking XP2800, 1GB RAM, 500Gb SATA RAID) 
 built inside, connected to a CD changer that I can control. This way I 
 can offer more then just CDs, but mp3s and videos as well. I'd like to 
 pick up a nice vid card (Say an ATI Radeon 9xxx Pro series with S-Video 
 out) and setup the S-Video side to stream videos/xmms mp3/cd 
 visualizations to 6 TVs spread throughout the place. 
 In place of the normal song selection screen you normally see, I'd like 
 to place a 17 or 19 LCD that only display 4-8 CD covers  song lists 
 at a time. 

that whole thing is terribly overspec'd! do you know an mp3 player
with such a spec? I don't.  Well, you mention playing video, so that
might change things a bit, still.

Anyway, if you want to present the user with CD covers, you'll
either need X or something capable of displaying graphics on the
console (Linux framebuffer, or svgalib, comes to mind). I'd go for
a console solution: less overhead, both computational and
administrative.

You'll need searchable storage for the CD/song titles and whatnot.

 *Tell FBSD to listen to a bill validator 
 (http://www.videocan.com/bill_validator.html - currently waiting for 
 info from them about interface) for credit inputs, and display it as an 
 overlay on the screen (Let's say $1 buys 3 songs or 2 videos - display 
 would show that)

Looks like you can plug that into an LPT port.

 *Once it's determined that there's credits in the machine have FBSD 
 listen to a keypad (telephone pad style) for input in the style of 
 , first 2 being album number, second 2 track number.

 *Queue up and keep track of songs to play. mp3s/CDs will launch a 
 visualization studio to display the music vis to the TVs, or launch 
 videos to play on TVs. 
 *When there's no activity, it will enter a screensaver mode where it 
 changes screens on monitor.

All in all, I think that you need is a daemon that will collect data
from the bill slot (parallel port?) and a keypad (serial port?),
mysqld (the librarized version of the server might be nice), and
something to play the music, mp3 / ogg (I'd go for Ogg Vorbis).

Something along a 300MHz Celeron/Duron w/ 128 MB RAM would IMO be
more than enough.

BTW, I was thinking about doing something similar, with one of those
micro-ATX boards, an LCD display (one of those found on CD players,
you know :), a programmable remote controller, and NetBSD. Would
make a nice cd player. :) (I don't have the knowledge to do the
electricity stuff, but a friend of mine has done this kind of
things...)

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.see http://www.eyrie.org./~eagle/faqs/questions.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Imap configuration question.

2003-09-19 Thread Voith Consulting
Hello,

I recently started up a FreeBSD system (4.8 Stable) and as part of the
post install selected the imap-uw-2002 server. So the install is from
packages rather than ports. I looked at some of the archived imap
questions but they all assume one is building it. Is there a way to
figure out how it has been compiled? It seems to magically run (telnet
to localhost 143 gets a response although I don't know any low level
commands to verify more) but my login always fails. Isn't there some
user configuration I have to do? Its as if the logins are disabled or
something but I cannot find any information on imapd configuration files
or the like. The imapd man page is devoid of any configuration info.

I am trying to access the server from a win XP box by configuring an
email account to reference an imap server on the local net using my
Freebsd  login name as the user name and my Freebsd password as the
password. I also try the same thing on the FreeBSD system itself using
netscape +mail. In both cases it asks me for a password but always fails
the login.

Where can I get some information on this?

Any help is appreciated.

-- Paul Voith




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


Problem installing/upgrading QT3.2

2003-09-19 Thread Steve Lake
When trying to upgrade/install QT3.1 to 3.2 I get an install error.  This is 
what it gives me.  Sorry for the length of this but I'm not sure what's useful and 
what's not.  Can someone look at this and maybe give me an idea of what I need to do 
to fix this?  Thanks.

I did manage to reinstall the older versoin via the pkg available from the 
freebsd website so that's at least up and running, but I can't upgrade it because of 
some error and I'm unsure exactly what it is.  All help is apreciated.  Thanks.

===  Installing for qt-3.2.1
===   qt-3.2.1 depends on shared library: mng.1 - found
===   qt-3.2.1 depends on shared library: png.5 - found
===   qt-3.2.1 depends on shared library: jpeg.9 - found
===   qt-3.2.1 depends on shared library: Xft.2 - found
===   qt-3.2.1 depends on shared library: cups.2 - found
===   qt-3.2.1 depends on shared library: glut.3 - found
===   qt-3.2.1 depends on shared library: X11.6 - found
install -c -o root -g wheel -m 555 
/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/bin/findtr /usr/X11R6/bin
install -c -s -o root -g wheel -m 555 
/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/tools/makeqpf/makeqpf 
/usr/X11R6/bin
install -c -s -o root -g wheel -m 555 
/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/tools/mergetr/mergetr 
/usr/X11R6/bin
install -c -s -o root -g wheel -m 555 
/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/tools/msg2qm/msg2qm /usr/X11R6/bin
install -c -s -o root -g wheel -m 555 
/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/tools/qembed/qembed /usr/X11R6/bin
install -c -s -o root -g wheel -m 555 
/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/tools/qvfb/qvfb /usr/X11R6/bin
===   Generating temporary packing list
===  Checking if x11-toolkits/qt32 already installed
gmake[1]: Entering directory `/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1'
cd qmake  gmake
gmake[2]: Entering directory 
`/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/qmake'
gmake[2]: `qmake' is up to date.
gmake[2]: Leaving directory `/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/qmake'
cd qmake  gmake install
gmake[2]: Entering directory 
`/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/qmake'
[ -d /usr/X11R6/bin ] || mkdir -p /usr/X11R6/bin
cp -f /usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/bin/qmake /usr/X11R6/bin
[ -d /usr/X11R6/share/qt ] || mkdir -p /usr/X11R6/share/qt
cp -r -f /usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/mkspecs 
/usr/X11R6/share/qt
gmake[2]: Leaving directory `/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/qmake'
cd src/moc  gmake
gmake[2]: Entering directory 
`/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/src/moc'
gmake[2]: Nothing to be done for `first'.
gmake[2]: Leaving directory 
`/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/src/moc'
cd src/moc  gmake install
gmake[2]: Entering directory 
`/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/src/moc'
cp -f ../../bin/moc /usr/X11R6/bin/moc
gmake[2]: Leaving directory 
`/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/src/moc'
cd src  gmake
gmake[2]: Entering directory `/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/src'
gmake[2]: *** No rule to make target `/usr/X11R6/include/qwindowsxpstyle.h', needed by 
`.obj/release-shared-mt/qstylefactory.o'.  Stop.
gmake[2]: Leaving directory `/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1/src'
gmake[1]: *** [sub-src] Error 2
gmake[1]: Leaving directory `/usr/ports/x11-toolkits/qt32/work/qt-x11-free-3.2.1'
gmake: *** [install] Error 2
*** Error code 2

Stop in /usr/ports/x11-toolkits/qt32.
*** Error code 1

Stop in /usr/ports/x11-toolkits/qt32.

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


Re: Is FreeBSD up to this job?

2003-09-19 Thread Jeremy D. Pavleck
I'm beginning to agree it is now overspec'ed. But only because I'm
thinking now (thanks to input from you folks) about making a marketable
version instead of one for my own pool hall. 
When I say jukebox, I mean ones like these:
http://www.gameroomantiques.com/CDjukebox.htm
http://www.wurlitzer-jukebox.com/showroom-omt.html

Big showy pieces of eyecandy. A gorgeous hunk fof aluminum, with lights
and bubblers, etc etc. My original thoughts where definately overkill, but
it was for my own amusement, so it didn't really matter, ya know? Know I'm
thinking of making something I can mass produce down the line.

I had some time to reflect on the design, and my main problem I was facing
was the visualizations of music. Initially I thought I'd need a fairly
high output video card to be able to properly display the vis. in close to
real time. My current rig @ 1024x768 with a Radeon 8000 can only run the
Winamp vis full screen at 40fps with a noticeable delay in the music beats
and the vis interpretation on the screen. Drop the window to a size where
it hits 70fps or so and the music and vis stay in tune, so I figured a
more powerful vid card was the answer.
But I forgot that a standard TV resolution is only 640x480, so I should be
able to get away with a lot less then top of the line. 
I'm going to try to test all this by using the 1Ghz Nehemiah Mini-ITX
board ( http://www.mini-itx.com/store/default.asp?c=2#p243 ) with 256mb
ram. 
Install a RAID card and setup 1 20Gb drive RAID 1 array and 1 100Gb RAID 1
array. 20Gb raid for FBSD and the 100GB RAID for media files.
Then pick up the bill validator, buttons and what not and see if I can't
make it work sans enclosure, which will save me a ton of cash. 
Someone suggested trying Freevo, so I'll see if I can't hack the interface
of it to see if I can achieve what I want. If I was more of an artist I
could mockup the overall look of the display I'm going for, but I'm not
(I'll see if a friend of mine can tackle this part). 
Instead of worrying about making it idiot proof by using a lot of diffrent
hardware like CFlash and such, I'll just use a small UPS that you can pick
up for 30-40$ these days and just have it tell the system to do a clean
shutdown when power is interupted.


**
Jeremy D. Pavleck
[EMAIL PROTECTED]

Tired of PayPal? Me too.
Check out StormPay, it works the same way, with 110% less
anal-retentiveness!
http://www.stormpay.com/?193662 (Just my referral link, please 
help me earn a few cents :))

On Fri, 19 Sep 2003, Roman Neuhauser wrote:

 # [EMAIL PROTECTED] / 2003-09-17 12:33:30 -0600:
  My plan is to build a custom jukebox looking enclosure like everyone 
  is used to seeing in bars, poolhalls, etc. In place of the CD changer 
  I'd like to have a full PC (Thinking XP2800, 1GB RAM, 500Gb SATA RAID) 
  built inside, connected to a CD changer that I can control. This way I 
  can offer more then just CDs, but mp3s and videos as well. I'd like to 
  pick up a nice vid card (Say an ATI Radeon 9xxx Pro series with S-Video 
  out) and setup the S-Video side to stream videos/xmms mp3/cd 
  visualizations to 6 TVs spread throughout the place. 
  In place of the normal song selection screen you normally see, I'd like 
  to place a 17 or 19 LCD that only display 4-8 CD covers  song lists 
  at a time. 
 
 that whole thing is terribly overspec'd! do you know an mp3 player
 with such a spec? I don't.  Well, you mention playing video, so that
 might change things a bit, still.
 
 Anyway, if you want to present the user with CD covers, you'll
 either need X or something capable of displaying graphics on the
 console (Linux framebuffer, or svgalib, comes to mind). I'd go for
 a console solution: less overhead, both computational and
 administrative.
 
 You'll need searchable storage for the CD/song titles and whatnot.
 
  *Tell FBSD to listen to a bill validator 
  (http://www.videocan.com/bill_validator.html - currently waiting for 
  info from them about interface) for credit inputs, and display it as an 
  overlay on the screen (Let's say $1 buys 3 songs or 2 videos - display 
  would show that)
 
 Looks like you can plug that into an LPT port.
 
  *Once it's determined that there's credits in the machine have FBSD 
  listen to a keypad (telephone pad style) for input in the style of 
  , first 2 being album number, second 2 track number.
 
  *Queue up and keep track of songs to play. mp3s/CDs will launch a 
  visualization studio to display the music vis to the TVs, or launch 
  videos to play on TVs. 
  *When there's no activity, it will enter a screensaver mode where it 
  changes screens on monitor.
 
 All in all, I think that you need is a daemon that will collect data
 from the bill slot (parallel port?) and a keypad (serial port?),
 mysqld (the librarized version of the server might be nice), and
 something to play the music, mp3 / ogg (I'd go for Ogg Vorbis).
 
 

logrotate courier

2003-09-19 Thread dick hoogendijk
I installed courier and since then my /var/log/maillog does not get
'rotated'
How do I set this up myself?

-- 
dick -- http://www.nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 4.8 ++ Debian GNU/Linux (Woody)
+ Nai tiruvantel ar vayuvantel i Valar tielyanna nu vilja
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


logrotate mail.log

2003-09-19 Thread dick hoogendijk
I installed courier and since then my /var/log/maillog is nog rotated.
Can someone explain to me how to set this up myself on fbsd-4.8?

-- 
dick -- http://www.nagual.st/ -- PGP/GnuPG key: F86289CE
++ Running FreeBSD 4.8 ++ Debian GNU/Linux (Woody)
+ Nai tiruvantel ar vayuvantel i Valar tielyanna nu vilja
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: modem on serial port?

2003-09-19 Thread Andrew L. Gould
On Friday 19 September 2003 12:35 pm, Sean Hafeez wrote:
 i am using a freebsd box as a router. it has a serial port. i would
 like to hook up a modem and use it to manage the router if the lines go
 down. now i know you can use the serial port as a console but how about
 when i stick a modem on it. does anything change. anything i need to
 install?

 thanks!


If the serial port is sio0 (COM1) or sio1 (COM2), you won't need to do 
anything.

If it's sio2 or sio3, you'll need to enable those serial ports in the kernel.  
In FreeBSD 4.*, it's an easy adjustment to the kernel configuration file -- 
just find the sio lines and delete the word disable.  In FreeBSD 5.*, it's 
different; and we'll both have to wait for someone else to chime in!

Best of luck,

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


Re: Imap configuration question.

2003-09-19 Thread Lucas Holt
There is no config file for imapd, and there are several authentication 
options when you compile it.  It would be easier for you to just 
compile it yourself.  imapd is the easiest program i've found to 
compile.

I've also found the development versions to be much more friendly 
(although don't count on SSL imap connections unless you have an old 
openssl library hanging around)

Lucas Holt
[EMAIL PROTECTED]

FoolishGames.com  (Jewel Fan Site)
JustJournal.com (Free blogging)
Only two things are infinite, the universe and human stupidity, and 
I'm not sure about the former.
- Albert Einstein (1879-1955)

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


RE: Imap configuration question.

2003-09-19 Thread Voith Consulting
You may be correct. Here is some more info.

It appears I do have a pam server running and the configuration file
contains a line for imap server (it also does not have two additional
lines recommended by the pkg-description of /usr/ports/mail/imap-uw. 

My login attempts are logged to the console by imapd as Login disabled
user=... (A clue!). So is it telling me that imapd has logins disabled
or pam or what do you suppose?

Thanks again!


-Original Message-
From: Danny Pansters [mailto:[EMAIL PROTECTED] 
Sent: Friday, September 19, 2003 1:53 PM
To: Voith Consulting
Subject: Re: Imap configuration question.

On Friday 19 September 2003 19:55, Voith Consulting wrote:
 Hello,

 I recently started up a FreeBSD system (4.8 Stable) and as part of
 the post install selected the imap-uw-2002 server. So the install is
 from packages rather than ports. I looked at some of the archived
 imap questions but they all assume one is building it. Is there a way
 to figure out how it has been compiled? It seems to magically run
 (telnet to localhost 143 gets a response although I don't know any
 low level commands to verify more) but my login always fails. Isn't
 there some user configuration I have to do? Its as if the logins are
 disabled or something but I cannot find any information on imapd
 configuration files or the like. The imapd man page is devoid of any
 configuration info.

 I am trying to access the server from a win XP box by configuring an
 email account to reference an imap server on the local net using my
 Freebsd  login name as the user name and my Freebsd password as the
 password. I also try the same thing on the FreeBSD system itself
 using netscape +mail. In both cases it asks me for a password but
 always fails the login.

Never used UW's imapd, but sounds like its using the wrong 
authentication module. Try using PAM. BSD doeasn't use shadow passords 
like Linux does, perhaps that's the default setting though.

HTH

Dan



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


kernel compile error: unknown option USER_LDT

2003-09-19 Thread Barry C . Hawkins
List,
	I am trying to build a kernel using a copy of GENERIC for RELENG_5_1.  
I have CVSuped by source tree prior to copying /usr/src/conf/GENERIC.  
I initially disabled the all RAID devices, so I started with a fresh 
copy of GENERIC.  That was recommended once in the list archives for 
what seemed a similar scenario.  However the error message persists.  
Here are my extra lines at the bottom of my kernel config file, in all 
other ways it is an unmodified copy of GENERIC:

# Added for sound and Java
device  pcm # enable SoundBlaster PCI support
options USER_LDT# used by Java and nVidia
options CPU_ENABLE_SSE  # used by DVD
	When I run the following as root:

/usr/sbin/config GENERIC_SND

I receive the following message:

GENERIC_SND: unknown option USER_LDT

	The kernel config file resides in ~/kernels/, and I have a symlink in 
/usr/src/conf bearing the name GENERIC_SND.  This is a Dell OptiPlex 
200 with a PIII 733 MHz and 256MB RAM.  Any ideas?  The pupil sits, 
awaiting enlightenment...

Regards,
--
Barry C. Hawkins
All Things Computed
site: www.allthingscomputed.com/
weblog: www.allthingscomputed.com/blog/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Mouse problems

2003-09-19 Thread Dave Wiebe
Hi,
 
Thanks for reading my email. I recently installed Free BSD and when I run X windows, 
whenever I move my mouse, the cursor moves to the top left of the screen. I set it up 
as best as possible(making sure it is setup as a ps2 mouse in the config file). I even 
tried a serial mouse but the same thing happened(Yes I did change the config file to 
accomodate this). Other than that, everything works fine.
 
I'd appreciate any help.
 
Sincerly
 
David


-
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Uninstalling GNOME by /stand/sysinstall ?

2003-09-19 Thread Bill Schoolcraft
Hello,

I've installed 4.8 on my laptop and realized I needed to reclaim
back some space from /usr so removing all of GNOME was my first 
choice, keeping KDE.

When using /stand/sysinstall and chosing the post-installation
of packages I can remove certain GNOME packages but the other
GNOME ones claim dependencies.

[question]

I want all GNOME related packages removed, how is the easiest way
to do that?

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


Re: Basic printer setup (repost)

2003-09-19 Thread Lee Harr
So I gave apsfilter a try, and having problems here too--
I managed to nuke my CUPS setup, and printing a test page
died with nbp_lookup: Protocol not supported, even though
netatalk is installed on the system.
I think the only thing apsfilter changes is the /etc/printcap and
it saves a copy at /etc/printcap.old before it makes the changes.
So you may be able to at least get back to where you were  :o)

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

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


soft updates enabled?

2003-09-19 Thread Sergei Vyshenski
Is there a way to find out 
which filesystems actually use soft updates?

I am asking because after 

tunefs -n enable /usr
reboot

in single-user mode there is no sign of soft updates
in the output of mount.

System id 4.9-PRERELEASE

Thank you for any comment ahead of time.
Sergei

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


Re: soft updates enabled?

2003-09-19 Thread Danny Horne
On Sat, 20 Sep 2003 02:26:22 +0400
Sergei Vyshenski [EMAIL PROTECTED] wrote:

 Is there a way to find out 
 which filesystems actually use soft updates?
 
 I am asking because after 
 
 tunefs -n enable /usr
 reboot
 
 in single-user mode there is no sign of soft updates
 in the output of mount.
 
tunefs -p /usr should tell you
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Is pst(4) bootable?

2003-09-19 Thread Harold Paulson
Hello,

I have a Promise SuperTrak sx6000.  It's on the supported hardware 
list and I can fdisk, label, mount and use it.  However, I'm not able 
to boot from it.  It gets through BOOT0 ok, but then I get:

Disk Error 0x80 (lba=0x0)
Disk Error 0x80 (lba=0x0)
No /boot/loader
Isn't pst bootable?  Or have I just messed something up?

	- H

--

Harold Paulson  Sierra Web Design
[EMAIL PROTECTED]   http://www.sierraweb.com
VOICE: 775.833.9500 FAX:   775-201-4458
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


vmware?

2003-09-19 Thread Ralph
I was wondering someone had written to the list about vmware 3 and how
yto get it to work. i tried from ports and it alway's comes up that it
cant find the file when it goes out on the web to download the tgz file.
Has anyone installed vmware 4 on free bsd 5.1 and gotten it to work and
if so how and what do i need to do?? 

Thank you,

byte-runner

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


Re: CUPS vs. apsfilter--newbie setup problems

2003-09-19 Thread David Banning
On Fri, Sep 19, 2003 at 11:39:58AM -0400, Jesse Sheidlower wrote:
 
 I'm trying to get my 4.8-running laptop hooked up to
 some printers, and I'm having trouble getting it configured
 with either CUPS or apsfilter (as someone here had recommended).
 I've tried to look over the docs, and search through here, but
 am still stumped for what I'm supposed to be doing.
 
 I'm also not clear on why these systems don't interoperate, or,
 rather, why an entry in /etc/printcap generated from apsfilter
 doesn't show up in CUPS. It would be nice if you could use 
 these together.

As I recall there is an option like WITHOUT_CUPS=yes or something
similar. If you havn't look into whether that is set or not it might
be worth looking into. As I recollect, apsfilter installs -with-
CUPS, but that caused me much headache at one point. I am not sure
if it is still the default.

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


Re: Mouse problems

2003-09-19 Thread Daniela
On Friday 19 September 2003 21:10, Dave Wiebe wrote:
 Hi,

 Thanks for reading my email. I recently installed Free BSD and when I run X
 windows, whenever I move my mouse, the cursor moves to the top left of the
 screen. I set it up as best as possible(making sure it is setup as a ps2
 mouse in the config file). I even tried a serial mouse but the same thing
 happened(Yes I did change the config file to accomodate this). Other than
 that, everything works fine.

I'd say, enter auto for the protocol and /dev/sysmouse as the mouse device.

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


How to get best results from FreeBSD-questions

2003-09-19 Thread Greg Lehey
How to get the best results from FreeBSD questions.
===

Last update $Date: 2003/03/09 22:09:31 $

This is a regular posting to the FreeBSD questions mailing list.  If
you got it in answer to a message you sent, it means that the sender
thinks that at least one of the following things was wrong with your
message:

- You left out a subject line, or the subject line was not appropriate.
- You formatted it in such a way that it was difficult to read.
- You asked more than one unrelated question in one message.
- You sent out a message with an incorrect date, time or time zone.
- You sent out the same message more than once.
- You sent an 'unsubscribe' message to FreeBSD-questions.

If you have done any of these things, there is a good chance that you
will get more than one copy of this message from different people.
Read on, and your next message will be more successful.

This document is also available on the web at
http://www.lemis.com/questions.html.

=

Contents:

I:Introduction
II:   How to unsubscribe from FreeBSD-questions
III:  Should I ask -questions, -newbies or -hackers?
IV:   How to submit a question to FreeBSD-questions
V:How to answer a question to FreeBSD-questions

I: Introduction
===

This is a regular posting aimed to help both those seeking advice from
FreeBSD-questions (the newcomers), and also those who answer the
questions (the hackers).

   Note that the term hacker has nothing to do with breaking
   into other people's computers.  The correct term for the latter
   activity is cracker, but the popular press hasn't found out
   yet.  The FreeBSD hackers disapprove strongly of cracking
   security, and have nothing to do with it.

In the past, there has been some friction which stems from the
different viewpoints of the two groups.  The newcomers accused the
hackers of being arrogant, stuck-up, and unhelpful, while the hackers
accused the newcomers of being stupid, unable to read plain English,
and expecting everything to be handed to them on a silver platter.  Of
course, there's an element of truth in both these claims, but for the
most part these viewpoints come from a sense of frustration.

In this document, I'd like to do something to relieve this frustration
and help everybody get better results from FreeBSD-questions.  In the
following section, I recommend how to submit a question; after that,
we'll look at how to answer one.

II:  How to unsubscribe from FreeBSD-questions
==

When you subscribed to FreeBSD-questions, you got a welcome message
from [EMAIL PROTECTED]  In this message, amongst other things, it
told you how to unsubscribe.  Here's a typical message:

  Welcome to the freebsd-questions mailing list!

  If you ever want to remove yourself from this mailing list,
  you can send mail to [EMAIL PROTECTED] with the following command
  in the body of your email message:

  unsubscribe freebsd-questions Greg Lehey [EMAIL PROTECTED]

  Here's the general information for the list you've
  subscribed to, in case you don't already have it:

  FREEBSD-QUESTIONS   User questions
  This is the mailing list for questions about FreeBSD.  You should not
  send how to questions to the technical lists unless you consider the
  question to be pretty technical.

Normally, unsubscribing is even simpler than the message suggests: you
don't need to specify your mail ID unless it is different from the one
which you specified when you subscribed.

If Majordomo replies and tells you (incorrectly) that you're not on
the list, this may mean one of two things:

  1.  You have changed your mail ID since you subscribed.  That's where
  keeping the original message from majordomo comes in handy.  For
  example, the sample message above shows my mail ID as
  [EMAIL PROTECTED]  Since then, I have changed it to
  [EMAIL PROTECTED]  If I were to try to remove [EMAIL PROTECTED] from
  the list, it would fail: I would have to specify the name with
  which I joined.

  2.  You're subscribed to a mailing list which is subscribed to
  FreeBSD-questions.  If that's the case, you'll have to figure out
  which one it is and get your name taken off that one.  If you're
  not sure which one it might be, check the headers of the
  messages you receive from freebsd-questions: maybe there's a
  clue there.

If you've done all this, and you still can't figure out what's going
on, send a message to [EMAIL PROTECTED], and he will sort things
out for you.  Don't send a message to FreeBSD-questions: they can't
help you.

III: Should I ask -questions, -newbies or -hackers?
===

Two mailing lists handle general questions about FreeBSD,
FreeBSD-questions and FreeBSD-hackers.  In addition, the
FreeBSD-newbies list caters 

The Complete FreeBSD: errata and addenda

2003-09-19 Thread Greg Lehey
The trouble with books is that you can't update them the way you can a web page
or any other online documentation.  The result is that most leading edge
computer books are out of date almost before they are printed.  Unfortunately,
The Complete FreeBSD, published by O'Reilly, is no exception.  Inevitably, a
number of bugs and changes have surfaced.

The Complete FreeBSD has been through a total of five editions, including its
predecessor Installing and Running FreeBSD.  Two of these have been reprinted
with corrections.  I maintain a series of errata pages.  Start at
http://www.lemis.com/errata-4.html to find out how to get the errata
information.

Have you found a problem with the book, or maybe something confusing?  Please
let me know: I'm constantly updating it.

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


Postfix against spam

2003-09-19 Thread Gerard Samuel
A bit off topic, but with a rash of crap coming down my pipe,
Im looking for solutions to fight spam using Postfix running on FreeBSD 4.8.
I've come across a few links that suggest using Postfix with RBL.
If anyone has any experiences with this or any other techniques with 
FBSD/Postfix, email
me offlist with any links on the internet, that would help me out.

Thanks

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


File deletion problem

2003-09-19 Thread Doug Hardie
I have a situation that I have not been able to track down where on one 
of my servers some process is writing a log file (I presume) and it is 
getting rotated out from under it.  The net result is that the log 
continues to be written to the original file which eventually is 
deleted thus leaving no trace of who or what.  It takes several months 
before its size becomes noticable, but eventually get grows to consume 
remaining disk space.  Given that the file has an inode but no 
directory entry, how do you find it?  All I have been able to come up 
with is to use fstat to find all the open files inodes and then to 
search with ls for each by hand and removing those I can find.  
Unfortunately this is a large web server with lots of files.

Today I moved some of the log files onto a different disk to see if the 
problem moves.  That would narrow down the search considerably.  But I 
suspect I will have to wait a couple months before I can see the 
effects of the hidden file.

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


Re: File deletion problem

2003-09-19 Thread Dan Nelson
In the last episode (Sep 19), Doug Hardie said:
 I have a situation that I have not been able to track down where on
 one of my servers some process is writing a log file (I presume) and
 it is getting rotated out from under it.  The net result is that the
 log continues to be written to the original file which eventually is
 deleted thus leaving no trace of who or what.  It takes several
 months before its size becomes noticable, but eventually get grows to
 consume remaining disk space.  Given that the file has an inode but
 no directory entry, how do you find it?  All I have been able to come
 up with is to use fstat to find all the open files inodes and then to
 search with ls for each by hand and removing those I can find. 
 Unfortunately this is a large web server with lots of files.

lsof +L 1 will display all the open filedescriptors with a zero link
count, along with info on the process holding the fd.

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


Re: making 4.8-RELEASE-p7

2003-09-19 Thread Alexander Portnoy
On Fri, 19 Sep 2003 20:17:12 +0400
Nickolay Krylov [EMAIL PROTECTED] wrote:

 Hello, freebsd-security.
 
 I'm trying to build 4.8-RELEASE-p7 to distribute it trought my
 clients. What am I doing:
 
 #cd /usr/share/examples/cvsup
 #cvsup standard-supfile   (after I've done necessary changes)
 #cd /usr/src
 #make buildworld
 
 Thus, I have /usr/obj populated with the output of ``make
 buildworld'' as it described in man 7 release.
 
 Then, I have read FreeBSD Release Engineering by Murray Stokely, but
 can't understand for what
 
 #make release
 
 use env variable CVSROOT???
 
 All what I want to do - make 4.8p7 release (FTP version) from sources what I've 
 cvsuped
 from RELENG_4_8 i.e. ONLY 4.8-RELEASE with security updates.
 
 
 Help me please, my english not perfect, may be therefore I don't
 understand anything.
 
 Thanks in advance, NK.
 
 -- 
 Best reqards,
  Nickolay  mailto:[EMAIL PROTECTED]
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-security
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

You must to have a local copy of the FreeBSD CVS repository.
During the 'make release' cvs is called several times to fetch
an appropriate versions of the system sources, documentation sources
and the ports tree to the ${CHROOTDIR}/usr/src, ${CHROOTDIR}/usr/doc
and ${CHROOTDIR}/usr/ports accordingly from the repository.
I am sure You don't want to fetch the whole repository for
the FreeBSD-4.8-RELEASE-p7 only ;-)

The solution is to comment out all lines in the /usr/src/release/Makefile
that contains the calls to 'cvs' and populate the directories manually.
(mount_null -o ro /usr/[src|doc|ports] ${CHROOTDIR}/usr/[src|doc|ports]
is the simplest way to do that). Be careful not to erase your ports and
source trees because the Makefile contains the commands that removes
the contents of the ${CHROOTDIR} directory before any other actions.

P.S. Why 'freebsd-security' and not 'questions' or 'stable' ?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: May be forged?

2003-09-19 Thread Greg 'groggy' Lehey
On Friday, 19 September 2003 at  3:20:21 +, Mark wrote:
 On  Friday, September 19, 2003 2:44 AM, Mark wrote:

 Thanks to Kris I found the new sendmail. :) But a slight anomaly occurs
 in 8.12.10:

 AUTH=server, relay=my-xp-machine.net [192.168.1.3] (may be forged),
 authid=admin

 That is odd; why would it suddenly say may be forged?

 Hmm, this wouldn't, by any chance, have anything to do with Verisign's
 latest DNS crap, would it? Kinda like a preemptive caution that a net
 domain might be fake?

 No, this is the result of a failed reverse DNS lookup or a failed
 consistency check between forward and reverse DNS. Given that the
 address is in the non-routable RFC 1918 range, this is to be expected.

 Then why does it not occur in 8.12.9? If I start my 8.12.9 sendmail, it does
 NOT say may be forged. Did something change in-between versions?

It would seem so.

 Here is why I think it seems related to Verisign somehow:

 asarian-host: {root} % nslookup my-xp-machine.net
 Name:my-xp-machine.net
 Address:  64.94.110.11

Ah.  But this is an invalid domain.

 Maybe 8.12.10 picks up on the IP-mismatch?

But we're looking at the reverse lookup first.  There's no global
reverse lookup for that network, but that doesn't mean that there
aren't local name servers which handle it.

 But that still does not explain why my 8.12.9 sendmail does not say
 may be forged. And if I change /etc/hosts to have 192.168.1.3
 called my-xp-machine.ORG, then the error goes away, in 8.12.10
 too!

Yes, that's a feature, not a bug.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers


pgp0.pgp
Description: PGP signature


Re: how

2003-09-19 Thread Adam McLaurin
On Thu, 2003-09-18 at 07:15, ëéòäùë ÁÎÄÒÅÅ×ÉÞ wrote:
 How to boot FreeBSD by Windows XP loader?

I'd recommend checking out GAG. It's an excellent and easy boot manager.

-- 
Adam McLaurin [EMAIL PROTECTED]


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


Re: Canon s200x, how to setup?

2003-09-19 Thread Adam McLaurin
On Thu, 2003-09-18 at 14:03, Alex Zivenko wrote:
 How to setup yhis printer on FreeBSD?
 Canon S200x, new model...

Did you check linuxprinting.org ?

-- 
Adam McLaurin [EMAIL PROTECTED]


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


Re: Witch database do you recommend?

2003-09-19 Thread Adam McLaurin
On Thu, 2003-09-18 at 14:54, Paredes Sánchez Martín A. wrote:
 Hi:
 
 I want to begin to explore the SQL world in FreeBSD.
 
 I read somewhere that PostgreSQL has more in the enterprise than MySQL,
 so my first choice is PostgreSQL. But I like to hear some advise an
 reasons on why should I use -SQL?.
 
 If I going to spend some time in learning a SQL, I like that this be a
 good one.

I'd recommend reading this (and the referenced pages):
http://freebsdforums.com/forums/showthread.php?threadid=6714

Note that PostgreSQL now supports replication (it didn't at the time of
this post).

-- 
Adam McLaurin [EMAIL PROTECTED]


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


Question about freebsd.org

2003-09-19 Thread Dan
I emailed you some time ago regarding our site and am wondering if you had
time to get to it.  I saw that you mention alldomains.com on your page
http://www.freebsd.org/gallery/cgallery.html and am wondering if you would
like to do a link exhange with my site, www.Cheap-DomainRegistration.com .
 We are building a free link directory and think that your site would be a
great contribution.  You may submit your site at
http://www.cheap-domainregistration.com/cgi-bin/links/add.cgi .

Please email me if you have any questions.

Thanks,
Dan










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


Question about icz.com.pl

2003-09-19 Thread Dan
I emailed you some time ago regarding our site and am wondering if you had
time to get to it.  I saw that you mention alldomains.com on your page
http://freebsd.icz.com.pl/cgallery.html and am wondering if you would like
to do a link exhange with my site, www.Cheap-DomainRegistration.com .  We
are building a free link directory and think that your site would be a
great contribution.  You may submit your site at
http://www.cheap-domainregistration.com/cgi-bin/links/add.cgi .

Please email me if you have any questions.

Thanks,
Dan










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


Re: Question about freebsd.org

2003-09-19 Thread Greg 'groggy' Lehey
On Friday, 19 September 2003 at 20:13:15 -0700, Dan wrote:
 I emailed you some time ago regarding our site and am wondering if you had
 time to get to it. 

This is a mailing list, not an individual.  See
http://www.lemis.com/questions.html for more details.

 I saw that you mention alldomains.com on your page
 http://www.freebsd.org/gallery/cgallery.html and am wondering if you
 would like to do a link exhange with my site,
 www.Cheap-DomainRegistration.com .  We are building a free link
 directory and think that your site would be a great contribution.
 You may submit your site at
 http://www.cheap-domainregistration.com/cgi-bin/links/add.cgi .

Sorry, the FreeBSD project doesn't advertise.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers


pgp0.pgp
Description: PGP signature


Toshiba 490XCDT

2003-09-19 Thread Kan Cai

hi, all:

  I have a TOSHIBA 490XCDT and try to install freebsd 5.0 on it.
Everything goes smoothly but the vga card. The X server cannot use the
full screen and totally useless when I start KDE or Gnome.

  I use dmesg and see the following:

vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
unknown: PNP0303 can't assign resources (port)
unknown: PNP0f13 can't assign resources (irq)
unknown: PNP0b00 can't assign resources (port)
unknown: PNP0c02 can't assign resources (port)
unknown: PNP0700 can't assign resources (port)
unknown: PNP0501 can't assign resources (port)
unknown: PNP0401 can't assign resources (port)


  Is there anybody can help me with this? Thanks a lot,

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


FreeBSD Installation on AlphaStation 200 4/233

2003-09-19 Thread Danny
I am still floundering with regard to installing FreeBSD on my AlphaStation
200 4/233 box.  I am at a complete loss of what to try next.  I have
attempted installations from both floppy and CDROM.  Have have attempted
multiple set command on different variables on the alpha bios but nothing
works.
 
The system boots the CDROM, gets past the switching to the OSF PAL succeeded

FreeBSD/alpha SRM CD9660 boot, Revision 1.2
Loading /boot/defaults/loader.conf
/boot/kernel/kernel data=0x4cd740+0x63ca0 syms=[0x0+0x65550+0x8+0x4d8a3]
-
Hit [Enter] to boot immediately, or any other key for command prompt
Booting [/boot/kernel/kernel]...
Entering kernel @ 0xfc33f0e0
 
screen flickers and shifts one character left and wraps the left characters
onto the right side of the screen, then 
 
halted CPU 0
 
halt code = 5
Halt instruction executed
PC=fc650e20
 
CPU 0 booting
 
Then the system goes through this same displeasing cycle again and again and
again.  It's driving me nuts.Does anyone have any kind of a suggestion
to help me determine the problem?  

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


FreeBSD Installation on AlphaStation 200 4/233

2003-09-19 Thread Danny
I am still floundering with regard to installing FreeBSD on my AlphaStation
200 4/233 box.  I am at a complete loss of what to try next.  I have
attempted installations from both floppy and CDROM.  Have have attempted
multiple set command on different variables on the alpha bios but nothing
works.
 
The system boots the CDROM, gets past the switching to the OSF PAL succeeded

FreeBSD/alpha SRM CD9660 boot, Revision 1.2
Loading /boot/defaults/loader.conf
/boot/kernel/kernel data=0x4cd740+0x63ca0 syms=[0x0+0x65550+0x8+0x4d8a3]
-
Hit [Enter] to boot immediately, or any other key for command prompt
Booting [/boot/kernel/kernel]...
Entering kernel @ 0xfc33f0e0
 
screen flickers and shifts one character left and wraps the left characters
onto the right side of the screen, then 
 
halted CPU 0
 
halt code = 5
Halt instruction executed
PC=fc650e20
 
CPU 0 booting
 
Then the system goes through this same displeasing cycle again and again and
again.  It's driving me nuts.Does anyone have any kind of a suggestion
to help me determine the problem?  
 
Danny
 
 
 
 ___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: May be forged?

2003-09-19 Thread Mark
 On Friday, 19 September 2003 at 3:20:21 +, Mark wrote:

  On Friday, September 19, 2003 2:44 AM, Mark wrote:
 
  Thanks to Kris I found the new sendmail. :) But a slight anomaly
  occurs in 8.12.10:
 
  AUTH=server, relay=my-xp-machine.net [192.168.1.3] (may be forged),
  authid=admin
 
  That is odd; why would it suddenly say may be forged?
 
  Hmm, this wouldn't, by any chance, have anything to do with Verisign's
  latest DNS crap, would it? Kinda like a preemptive caution that a
  net domain might be fake?
 
  No, this is the result of a failed reverse DNS lookup or a failed
  consistency check between forward and reverse DNS. Given that the
  address is in the non-routable RFC 1918 range, this is to be expected.
 
  Then why does it not occur in 8.12.9? If I start my 8.12.9 sendmail, it
  does NOT say may be forged. Did something change in-between versions?

 It would seem so.

  Here is why I think it seems related to Verisign somehow:
 
  asarian-host: {root} % nslookup my-xp-machine.net
  Name:my-xp-machine.net
  Address:  64.94.110.11

 Ah. But this is an invalid domain.

Yes, it is the name of my XP machine within the network. :)

  But that still does not explain why my 8.12.9 sendmail does not say
  may be forged. And if I change /etc/hosts to have 192.168.1.3
  called my-xp-machine.ORG, then the error goes away, in 8.12.10
  too!

 Yes, that's a feature, not a bug.

I do not quite understand this. Why would it not say may be forged when de
domain name ends in .org?

At any rate, I installed 8.12.10 now, changed the name of my XP machine to
end in .org; and, for the rest, everything seems to work wonderfully. So,
whatever that small change between versions may have been, it must be a
minor thing. I just wanted to make sure I had not compiled the new sendmail
horribly wrong. Everything is ok now. :)

Thanks for your help,

- Mark

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


RE: Postfix against spam

2003-09-19 Thread Mark
I just posted a short tutorial on Postfix on my website that deals with
today's MS virus outbreak, take a look here:
http://samba.netfirms.com/postfix/postfixrules.pdf




A bit off topic, but with a rash of crap coming down my pipe, Im looking
for solutions to fight spam using Postfix running on FreeBSD 4.8. I've
come across a few links that suggest using Postfix with RBL. If anyone
has any experiences with this or any other techniques with 
FBSD/Postfix, email
me offlist with any links on the internet, that would help me out.

Thanks

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

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


Unable to access ssh after patching openssh

2003-09-19 Thread Edy Lie
[EMAIL PROTECTED]:~] $ ssh -v -a -x [EMAIL PROTECTED]
OpenSSH_3.5p1 FreeBSD-20030201, SSH protocols 1.5/2.0, OpenSSL
0x0090701f
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Rhosts Authentication disabled, originating port will not be
trusted.
debug1: ssh_connect: needpriv 0
debug1: Connecting to 10.10.10.10 [10.10.10.10] port 22.
debug1: Connection established.
debug1: identity file /home/edylie/.ssh/identity type -1
debug1: identity file /home/edylie/.ssh/id_rsa type -1
debug1: identity file /home/edylie/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version
OpenSSH_3.5p1 AUTHORISED USER ONLY
debug1: match: OpenSSH_3.5p1 AUTHORISED USER ONLY pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_3.5p1 FreeBSD-20030201
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server-client aes128-cbc hmac-md5 none
debug1: kex: client-server aes128-cbc hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: dh_gen_key: priv key bits set: 120/256
debug1: bits set: 1611/3191
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host '10.10.10.10' is known and matches the DSA host key.
debug1: Found key in /home/edylie/.ssh/known_hosts:1
debug1: bits set: 1579/3191
debug1: ssh_dss_verify: signature correct
debug1: kex_derive_keys
debug1: newkeys: mode 1
debug1: SSH2_MSG_NEWKEYS sent
debug1: waiting for SSH2_MSG_NEWKEYS
debug1: newkeys: mode 0
debug1: SSH2_MSG_NEWKEYS received
debug1: done: ssh_kex2.
debug1: send SSH2_MSG_SERVICE_REQUEST
debug1: service_accept: ssh-userauth
debug1: got SSH2_MSG_SERVICE_ACCEPT

(it does not respond for about 10 minutes and then follow by the
following message)

Connection closed by 10.10.10.10
debug1: Calling cleanup 0x804c158(0x0)


Any idea ?
Thanks!

Best Regards,
Edy Lie
-- 

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