truss output of ssh Bus error (core dumped)

2006-03-07 Thread Jim Arnold
Thanks to member Lowell Gilbert I was able to run truss and generate 
output from my ssh Bus error (core dumped) problem. This only happens 
when I try to ssh out of the box as a normal user. I can ssh out as 
root. Ive posted the file at http://www.jimarnold.org/truss.ssh.txt 
to see if anyone can decipher if for me.


I am running 4.11-STABLE and openssh-3.6.1_5

The file ends with:

getpid() = 32210 (0x7dd2)
SIGNAL 10
SIGNAL 10
Process stopped because of:  16
process exit, rval = 138

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


cannot ssh as user only as root

2006-03-05 Thread Jim Arnold
I cannot ssh out of my box running 4.11-STABLE with openssh-3.6.1_5 
while logged in as a normal user. I get a Bus Error (core dumped). 
But if I try to ssh out as a root it works perfectly. There are no 
problems ssh'ing into the box.  Sound like a permissions problem?


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


Re: fetchmail core dumping

2006-02-21 Thread Jim Arnold

I'm running fetchmail-6.3.2_1  on 4.10-STABLE

My fetchmailrc file is:

set postmaster postmaster
set bouncemail
set no spambounce
set properties 

poll 10.229.66.116 with proto POP3
   user 'myid' there with password 'mypwd' is 'myid' here

Fetchmail has been running perfectly until just the other day, for 
literally several years,

with upgrades along the way. I haven't upgraded anything recently or crashed.

I've tried to reinstall fetchmail but no luck there. Googling is not 
finding anything yet. I have another

FBSD box running 4.10 stable with the same version of fetchmail and it's fine.

I'm stumped.

Thanks,
Jim


At 5:07 PM -0800 2/21/06, Rob wrote:

Jim wrote:

 spike# fetchmail -v
 fetchmail: WARNING: Running as root is discouraged.
 fetchmail: removing stale lockfile
 fetchmail: 6.3.2 querying 10.229.66.116 (protocol
 POP3) at Tue Feb 21
 16:38:52 2006: poll started
 Segmentation fault (core dumped)

 Not sure what I can do to fix this. Any pointers
 greatly appreciated.


What version of FreeBSD do you use?
I have fetchmail-6.3.2_1 installed on a 6-Stable PC.
No problems.

Does your rc file have the proper syntax?
This is mine:

# fetchmailrc
set invisible
set postmaster postmaster
set no bouncemail
set no spambounce
set properties 
set daemon 30
poll localhost with proto IMAP port 22143
  user 'myid' there with password 'mypasswd' is \
   'myid' here options fetchall
  folder INBOX.MYMAILBOX 




Ah, note that I make use of an ssh-tunnel from
localhost port 22143 to port 143 on the imap server.
You may want to replace 'localhost' and 22143 by
your appropriate settings.
However, remember that pop3 and imap is too
insecure when not using encryption!

Regards,
Rob.


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



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


Re: IP Filter changes in FreeBSD

2005-02-07 Thread Jim Arnold
On Mon, Feb 07, 2005 at 12:24:09AM -0500, Jim Arnold wrote:
 I updated my firewall that is using IPF. I went from FreeBSD 4.7
 stable to 4.11 stable. When using 4.7 stable I only had this is my
 rc.conf file:
 ipfilter_enable=YES
 ipfilter_program=/sbin/ipf
 ipfilter_rules=/etc/ipf.conf
 ipfilter_flags=
 When I went to 4.11 stable I had to uncomment these options in my
 kernel config file:
 options IPFILTER
 options IPFILTER_LOG
 I'm just curious why it worked without the above options in my kernel
 for 4.7 and I had to have them in 4.11?
If you don't have it in your kernel, the module will be loaded at boot
time if it's available.  If you don't have the module either, you
can't use ipfilter.
I must have been using the module with 4.7 stable since I did not 
have that in the kernel I was running with 4.7. After I upgraded to 
4.11 and IPF was not working I edited my kernel config file to 
uncomment the lines for IPF and then compiled the new kernel. I still 
don't have an answer why this happened.

Was the module taken out of 4.11 or an earlier version on FreeBSD? 
I'm just curious as a learning experience what went on in my 
situation.

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


Re: IP Filter changes in FreeBSD

2005-02-07 Thread Jim Arnold
On Mon, Feb 07, 2005 at 11:08:54AM -0500, Jim Arnold wrote:
 If you don't have it in your kernel, the module will be loaded at boot
 time if it's available.  If you don't have the module either, you
 can't use ipfilter.
 I must have been using the module with 4.7 stable since I did not
 have that in the kernel I was running with 4.7. After I upgraded to
 4.11 and IPF was not working I edited my kernel config file to
 uncomment the lines for IPF and then compiled the new kernel. I still
 don't have an answer why this happened.
 Was the module taken out of 4.11 or an earlier version on FreeBSD?
No, it's still there as long as you build modules.  If you have
NO_MODULES in your make.conf, you won't, of course.
Kris
Attachment converted: osx:Untitled 3599 (/) (000B9F03)
I'm using the same /etc/make.conf file when I first put this box 
online in 2002. In that make.conf
file the line is commented out:

#NO_MODULES=true# do not build modules with the kernel
But the question for me is still, how did this work in 4.7 if the 
above was commented out in my /etc/make.conf file and I did not have 
these uncommented in my kernel config file when I built my
custom kernel for 4.7?

options IPFILTER
options IPFILTER_LOG
Thanks,
Jim

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


IP Filter changes in FreeBSD

2005-02-06 Thread Jim Arnold
I updated my firewall that is using IPF. I went from FreeBSD 4.7 
stable to 4.11 stable. When using 4.7 stable I only had this is my 
rc.conf file:

ipfilter_enable=YES
ipfilter_program=/sbin/ipf
ipfilter_rules=/etc/ipf.conf
ipfilter_flags=
When I went to 4.11 stable I had to uncomment these options in my 
kernel config file:

options IPFILTER
options IPFILTER_LOG
I'm just curious why it worked without the above options in my kernel 
for 4.7 and I had to have them in 4.11?

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


Installing Flashblock for Firefox in FreeBSD

2005-01-06 Thread Jim Arnold
Has any gotten this extension to work on their FreeBSD
version of Firefox and tell me how they did it? I
installed in on my OS X box but it won't install on
FreeBSD's Firefox.

Thanks,
Jim




__ 
Do you Yahoo!? 
Yahoo! Mail - You care about security. So do we. 
http://promotions.yahoo.com/new_mail
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: iTunes server SUCCESS (NOT ME)!! Here are my notes

2005-01-04 Thread Jim Arnold
I've hit a wall getting this to work:

spike# /usr/local/etc/rc.d/mDNSResponder.sh start
.: Can't open /etc/rc.subr: No such file or directory 


Any ideas?



__ 
Do you Yahoo!? 
The all-new My Yahoo! - Get yours free! 
http://my.yahoo.com 
 

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


Re: iTunes server SUCCESS (NOT ME)!! Here are my notes

2005-01-04 Thread Jim Arnold
I've hit a wall getting this to work:

?spike# /usr/local/etc/rc.d/mDNSResponder.sh start
.: Can't open /etc/rc.subr: No such file or directory

I created a symlink to /usr/local/etc/rc.subr from
/etc and it now works like a charm!

Thanks for posting this.

Jim



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


signal 4 core dumped

2004-11-10 Thread Jim Arnold
My 4.10-STABLE has started dumping core on these apps:

Nov 10 17:06:42 spike /kernel: pid 195 (jpilot), uid
1001: exited on signal 4 (c
ore dumped)

Nov 10 17:07:14 spike /kernel: pid 252 (firefox-bin),
uid 1001: exited on signal
 4 (core dumped)

Nov 10 17:07:22 spike /kernel: pid 253 (gaim), uid
1001: exited on signal 4 (cor
e dumped)

They were all upgraded recently. Any ideas on how to
fix this?





__ 
Do you Yahoo!? 
Check out the new Yahoo! Front Page. 
www.yahoo.com 
 

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


Problem connecting with Netatalk 2.0

2004-10-20 Thread Jim Arnold
I upgraded netatalk from 1.5 to 2.0 and now cannot
connect to my FreeBSD box.

I've altered the netatalk.sh file to this:

netatalk_enable=${netatalk_enable-YES}
atalkd_enable=${atalkd_enable-YES}
papd_enable=${papd_enable-NO}
cnid_metad_enable=${cnid_metad_enable-NO}
afpd_enable=${afpd_enable-YES}
timelord_enable=${timelord_enable-NO}

When I start netatalk I do get this warning - 

spike# /usr/local/etc/rc.d/netatalk.sh start
dc0: multicast may not work correctly.

- but it then starts up

jim 72165  0.0  0.7  4044 1740  ??  I 9:41AM  
0:00.01 /usr/local/sbin/afpd -s
/usr/local/etc/AppleVolumes.system -f
/usr/local/etc/AppleVolumes.default

root72163  0.0  0.6  4036 1564  ??  I 9:41AM  
0:00.01 /usr/local/sbin/afpd -s
/usr/local/etc/AppleVolumes.system -f
/usr/local/etc/AppleVolumes.default

When I connect from my Mac (10.3.5) I get the dialog
box to enter in my login and password
for the volume on the FreeBSD box, but the box to
select the volumes I want to mount is empty.
I do have a tilde at the end of the
AppleVolumes.default file.

I tried to use NFS and it worked without a hitch,
except transferring files to the FreeBSD box via NFS
is
MUCH slower than using netatalk. I still have another
box running the older netatalk so I could time a file
copying to each system and was surprised to see how
slow NFS is compared to using Netatalk.

Any ideas what I'm missing?

Thanks,
Jim



___
Do you Yahoo!?
Declare Yourself - Register online to vote today!
http://vote.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


missing ports; portsdb problem

2004-06-21 Thread Jim Arnold
I'm missing a few ports collections such as Japanese
and Russian. Now when I try to run portsdb -Uu after
CVSUPing the ports collection I get an error of a
missing japanese port. The strange thing is that my
cvsupfile is set to fetch ports-all. Why is it not
pulling in the missing ports? I don't have a refuse
file set.



__
Do you Yahoo!?
Read only the mail you want - Yahoo! Mail SpamGuard.
http://promotions.yahoo.com/new_mail 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: missing ports; portsdb problem

2004-06-21 Thread Jim Arnold

 Jim,
 
 You mentioned that you didn't have a refuse file.
 
 You might want to double check that
 /usr/local/etc/cvsup/sup/refuse or

[other_default_base_specified_by_your_ports_supfile]/sup/refuse
 does
 indeed not exist.
 
 find / -name refuse -print#also a handy way,
 providing your user has
 the perms to read the dirs where refuse might be
 lurking.
  
  But, I didn't bother to remove my recently
 cvsup'ed ports collection
  (sans other lang). I just edited my refuse file to
 allow alternate
  lang ports back in and re-cvsup'ed. Afterward, my
 portsdb -uU also
  succeeded.
 
 Yeah.  Something changed a couple of weeks ago. 
 This solution worked for
 me too.
 
 Good luck,
 epi


Hm. Well, I did have both
/usr/src/refuse
/usr/sup/refuse
and they both had other languages in them.

I don't remember adding them but that's not saying
much   ;)

I'll try removing those files and do another run at
updating the ports. Thanks for the help.

Jim





__
Do you Yahoo!?
New and Improved Yahoo! Mail - 100MB free storage!
http://promotions.yahoo.com/new_mail 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: DSS for freeBSD

2003-12-29 Thread Jim Arnold
Hi, I received responses from the lister that there is
a port, and also it's possible to use the source code
for DSS 5 and run it on freeBSD 5.1. I found a port in
/usr/ports, but when i run it, it ask me to go to
apple web site to download freebsd version of DSS.
However freeBSD version of DSS is not there. I've
downloaded the source, but I want to learn how I could
make it work with freeBSD 5.1. I rather not mess up my
system, so I would like to know what changes I need to
make to make DSS work.--
--

It looks like the port is out of date. The Apple
website has version 5 of the code but the FreeBSD port
is stil pointing to 4.1. 


__
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: GAIM and Yahoo.

2003-10-08 Thread Jim Arnold
Content-Type: text/plain;
  charset=us-ascii
Content-Description: signed data
Content-Disposition: inline
Although GAIM's website (http://gaim.sourceforge.net) doesn't mention that
their client still doesn't work for Yahoo, I'm still unable to connect with
the error that my username is invalid.
Does anyone else still have this problem?
Try deleting your yahoo account in Gaim and adding it again.

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


openssl fails to build

2003-07-11 Thread Jim Arnold
4.7-STABLE FreeBSD box fails when trying to make 
openssl-0.9.7b

Any ideas what's going on and how to fix?

Thanks,
Jim

hw_cryptodev.c:1103: `CRF_DSA_SIGN' undeclared (first
use in this function)
hw_cryptodev.c:1109: `CRF_DSA_VERIFY' undeclared
(first use in this function)
hw_cryptodev.c:1121: `CRF_DH_COMPUTE_KEY' undeclared
(first use in this function)
hw_cryptodev.c: At top level:
hw_cryptodev.c:297: warning: `get_cryptodev_digests'
defined but not used
*** Error code 1

Stop in
/max/ports/security/openssl/work/openssl-0.9.7b/crypto/engine.
*** Error code 1

Stop in
/max/ports/security/openssl/work/openssl-0.9.7b/crypto.
*** Error code 1

Stop in
/max/ports/security/openssl/work/openssl-0.9.7b.
*** Error code 1

Stop in
/max/ports/security/openssl/work/openssl-0.9.7b.
*** Error code 1

Stop in /max/ports/security/openssl.

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


openssl upgrade problem, now mail broken

2003-07-10 Thread Jim Arnold
While trying to upgrade my OpenSSH and OpenSSL I
really messed things up. I have
openssh-portable-3.6.1p2 installed but when I make
OpenSSL I get the following error:

hw_cryptodev.c:1121: `CRF_DH_COMPUTE_KEY' undeclared
(first use in this function)
hw_cryptodev.c: At top level:
hw_cryptodev.c:297: warning: `get_cryptodev_digests'
defined but not used
*** Error code 1

Stop in
/max/ports/security/openssl/work/openssl-0.9.7b/crypto/engine.
*** Error code 1

Stop in
/max/ports/security/openssl/work/openssl-0.9.7b/crypto.
*** Error code 1

Stop in
/max/ports/security/openssl/work/openssl-0.9.7b.
*** Error code 1

Stop in
/max/ports/security/openssl/work/openssl-0.9.7b.
*** Error code 1

Stop in /max/ports/security/openssl.
=

When I try to retieve my mail I get the error:

/usr/libexex/ld-elf.so.1: Shared object
libcrypto.so.3 not found.

I'm running in circles. Any ideas? Please CC me as I
cannot subscribe to the list.

Thanks,
Jim

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


making expect without X11

2003-03-30 Thread Jim Arnold
How do I compile expect without having X windows installed?

If I use: make WITHOUT_X11=yes  if bombs out with the message below:

ct.o shared/exp_event.o  shared/exp_chan.o shared/Dbg.o 
-Wl,-rpath,/usr/local/lib -L/usr/local/lib -ltcl83   -lm -lc
/usr/libexec/elf/ld: unrecognized option '-Wl,-rpath,/usr/local/lib'
/usr/libexec/elf/ld: use the --help option for usage information
*** Error code 1

Stop in /usr/ports/lang/expect/work/expect-5.38.
*** Error code 1
Stop in /usr/ports/lang/expect.

Please CC any responses to me as I cannot subscribe to the list.

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


Re: [JArnold@knightridder.com: OpenSSL problem]

2003-02-27 Thread Jim Arnold
  - Forwarded message from James A. Arnold 
[EMAIL PROTECTED] -
 Date: Wed, 26 Feb 2003 15:56:17 -0500
 To: [EMAIL PROTECTED]
 From: James A. Arnold [EMAIL PROTECTED]
 Subject: OpenSSL problem
 I now get this error when trying to run a shell program using wget

 /usr/libexec/ld-elf.so.1: /usr/local/bin/wget: Undefined symbol
 OpenSSL_add_all_algorithms
 any idea how to fix this? must have started when I update OpenSSL or
 some such nonsense.
 Please also reply to me email address as I can no longer subscribe to the
 list.
Here's what is happening: wget was compiled with OpenSSL 0.9.6.  But
now that you run it, it is finding OpenSSL 0.9.7 (which is not binary
compatibile).  To determine why that is, the output from the following
will be helpful:
   % ldd /usr/local/bin/wget
   % objdump -x /usr/local/bin/wget | grep NEEDED
   % ls -l /usr/lib/libcrypto.so*
   % ls -l /usr/local/lib/libcrypto.so*
spike# ldd /usr/local/bin/wget
/usr/local/bin/wget:
libintl.so.4 = /usr/local/lib/libintl.so.4 (0x10089000)
libssl.so.3 = /usr/local/lib/libssl.so.3 (0x10091000)
libcrypto.so.3 = /usr/local/lib/libcrypto.so.3 (0x100bf000)
libc.so.4 = /usr/lib/libc.so.4 (0x101aa000)
libiconv.so.3 = /usr/local/lib/libiconv.so.3 (0x10243000)
spike# objdump -x /usr/local/bin/wget | grep NEEDED
/usr/libexec/elf/objdump: /usr/local/bin/wget: no symbols
  NEEDED  libintl.so.4
  NEEDED  libssl.so.3
  NEEDED  libcrypto.so.3
  NEEDED  libc.so.4
spike# ls -l /usr/lib/libcrypto.so*
lrwxr-xr-x  1 root  wheel  14 Nov 18 22:43 /usr/lib/libcrypto.so 
- libcrypto.so.2
-r--r--r--  1 root  wheel  779964 Nov 18 22:43 /usr/lib/libcrypto.so.2
spike# ls -l /usr/local/lib/libcrypto.so*
lrwxr-xr-x  1 root  wheel   14 Feb  1 09:52 
/usr/local/lib/libcrypto.so - libcrypto.so.3
-r--r--r--  1 root  wheel  1137150 Feb  1 09:52 /usr/local/lib/libcrypto.so.3

This is what I guess:  At some time in the past, you installed the
OpenSSL port, and then you built the wget port.  Now, perhaps you've
removed the OpenSSL port.  This leaves a very confused wget:  It wants
OpenSSL 0.9.6 to be called libcrypto.so.3.
To get around this I re-installed wget and it worked. But I'm 
wondering if anything else is broken or how to really fix this.

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


Re: Netatalk - Mac OS X connection problem

2003-01-12 Thread Jim Arnold

This is baffling.  I have a OS X 10.2.3 machine that can connect just
fine (as do you).  The sniffer traces are more or less identical.  Since
it looks like the OS X client is initiating the disconnect, can you
bring up the OS X console under Applications-Utilities-Console, and
see if any messages show up there?

Joe



Rebooting my Mac solved the problem.


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



Netatalk - Mac OS X connection problem

2003-01-11 Thread Jim Arnold
I am running netatalk-1.6.0_1,1 from the FreeBSD ports systems on two 
boxes and connecting from Mac OS X 10.2.3.

Now when I connect from one box I get the following error on the mac:

Connection failed

An AppleShare system error occurred.

I can connect to the other box without any problems. Netatalk is 
configured the same on both boxes. This problem came on suddenly.

Below is the log file showing netatalk starting up.

This is a stumper.

Please also cc me on any email as I can no longer subscribe to the list.

Thanks,
Jim


Jan 11 17:37:32 atalkd[88690][logger.c:409]: I:Logger: doing 
syslog_setup, type 0, level 50
Jan 11 17:37:32 atalkd[88690][logger.c:434]: D7:Logger: 
log_file_arr[0] now contains: {log_filename:, log_file:0x0, 
log_level: 50}
Jan 11 17:37:32 atalkd[88690][logger.c:437]: D5:Logger: syslog_setup[0] done
Jan 11 17:37:32 atalkd[88690][main.c:1090]: I:ATalkDaemon: restart (1.6.0)
Jan 11 17:37:34 atalkd[88690][zip.c:910]: I:ATalkDaemon: zip_getnetinfo for dc0
Jan 11 17:37:44 atalkd[88690][zip.c:910]: I:ATalkDaemon: zip_getnetinfo for dc0
Jan 11 17:37:54 atalkd[88690][zip.c:910]: I:ATalkDaemon: zip_getnetinfo for dc0
Jan 11 17:38:04 atalkd[88690][main.c:278]: I:ATalkDaemon: config for no router
Jan 11 17:38:06 atalkd[88690][main.c:659]: I:ATalkDaemon: ready 0/0/0
Jan 11 17:38:06 afpd[88691][logger.c:409]: I:Logger: doing 
syslog_setup, type 0, level 50
Jan 11 17:38:06 afpd[88691][logger.c:434]: D7:Logger: log_file_arr[0] 
now contains: {log_filename:, log_file:0x0, log_level: 50}
Jan 11 17:38:06 afpd[88691][logger.c:437]: D5:Logger: syslog_setup[0] done

--

Jim Arnold -  Ohio.com - [EMAIL PROTECTED]
Cell: 330.730.0797	Voice: 330.572.2822
AOL IM: instantjim/Yahoo: jim0266



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


Re: Netatalk - Mac OS X connection problem

2003-01-11 Thread Jim Arnold

Do you have a custom volume icon on this server?  If so, try deleting
it, then reconnection.



Nope. Nothing fancy. Just a straight install of Netatalk and I didn't 
change any of the icons.



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


Re: Netatalk - Mac OS X connection problem

2003-01-11 Thread Jim Arnold
When exactly do you see the message?  Right after you login?


As soon as I hit the connect button after typing in the IP address of 
the FreeBSD box or using
the afp address.

Can you
send your AppleVolumes.default


This just has the ~ (tilde) at the end so the home directory will get mounted


as well as your afpd.conf files?


Everything in this file is commented out. In the file this is noted:
The simplest case is to not have an afpd.conf
I've always run Netatalk without anything in this file without any problems.


Does
the user you're logging in as have a valid shell?


Yes.



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



Re: Netatalk - Mac OS X connection problem

2003-01-11 Thread Jim Arnold

This is baffling.  I have a OS X 10.2.3 machine that can connect just
fine (as do you).  The sniffer traces are more or less identical.  Since
it looks like the OS X client is initiating the disconnect, can you
bring up the OS X console under Applications-Utilities-Console, and
see if any messages show up there?



No messages are appearing under the console when I try to mount the 
volume in question.

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


Re: once last try

2003-01-02 Thread Jim Arnold

Why is Postfix getting the messages from localhost? An antivirus or
something?

Where is the line telling the message was delivered? This is a
complete log for a message going through our gateway
(Postfix-1.1.11):


At home I don't run the mail server on my firewall. It's running on a 
box behind the firewall.

Below is a message coming back from [EMAIL PROTECTED] that states 
another request must be
sent in with an authorization key, which has been sent to: 
[EMAIL PROTECTED] Except that second email never arrives.

Dec 28 22:02:18 spike postfix/smtpd[14897]: connect from 
localhost.spike[127.0.0.1]
Dec 28 22:02:18 spike postfix/smtpd[14897]: 3EC35369C: 
client=localhost.spike[127.0.0.1]
Dec 28 22:02:18 spike postfix/cleanup[14898]: 3EC35369C: 
message-id=[EMAIL PROTECTED]
Dec 28 22:02:18 spike postfix/qmgr[90891]: 3EC35369C: 
from=[EMAIL PROTECTED], size=4095, nrcpt=1 (queue active)
Dec 28 22:02:18 spike spamd[248]: connection from localhost.spike 
[127.0.0.1] at port 3727
Dec 28 22:02:18 spike spamd[14904]: processing message 
[EMAIL PROTECTED] for jim:1001, expecting 
4131 bytes.
Dec 28 22:02:18 spike postfix/smtpd[14897]: disconnect from 
localhost.spike[127.0.0.1]
Dec 28 22:02:21 spike spamd[14904]: clean message (1.1/5.0) for 
jim:1001 in 3.1 seconds, 4131 bytes.
Dec 28 22:02:21 spike postfix/local[14900]: 3EC35369C: 
to=[EMAIL PROTECTED], relay=local, delay=3, status=sent 
(|/usr/local/bin/procmail)

Now when I try to subscribe I don't even get the first email back. 
Perhaps I've angered Majordomo and it's blackballed me. :)

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


Re: once last try

2002-12-30 Thread Jim Arnold
  I put a11d015.neo.rr.com as my hostname in Postfix and everything
  seems to work well, except I tried to subscribe to the questions list
  with this new setup but it doesn't seem to work. I get a response
  from majordomo saying that it is sending another email to my address
  as an authorization key but that email never arrives.
 
  Any ideas?

 Hmm... What's in a11d015.neo.rr.com:/var/log/maillog ?


When I send an email to majordomo this is in the log:

Dec 30 09:33:57 spike postfix/smtp[63074]: AEE193690:
to=[EMAIL PROTECTED], relay=smtp-server.neo.rr.com[65.24.7.36],
delay=2, status=sent (250 2.0.0 gBUEXsTp003928 Message accepted for
delivery)


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



Re: once last try

2002-12-30 Thread Jim Arnold
I thought your goal was to fix your Postfix so that mx1.freebsd.org
talks to it. You *can't* test this if you relay throu RR's MTA.
   
1) Comment out the relayhost parameter in $config_directory/main.cf
   and postfix reload.

Done. As a test I sent an email to my yahoo account and saw the following:
Received: from 204.210.211.15  (EHLO a11d015.neo.rr.com) (204.210.211.15)



2) Send a subscription request to [EMAIL PROTECTED]


Done. Actually three times. Each time I get back the first email but 
not the second one to verify the account

3) Watch your /var/log/maillog for mail coming in from freebsd.org.
   If majordomo sends you one of the two messages, it most probably
   sends the other one, too. Or at least I can't think of a
   situation when it wouldn't do so.



Here is one of the majordomo emails coming back:

Dec 30 12:16:01 spike postfix/cleanup[78326]: 6743D2013: 
message-id=[EMAIL PROTECTED]
Dec 30 12:16:01 spike postfix/qmgr[193]: 6743D2013: 
from=[EMAIL PROTECTED], size=2615, nrcpt=1 (queue active)
Dec 30 12:16:01 spike postfix/smtpd[78325]: CFA4E205F: 
client=localhost[127.0.0.1]
Dec 30 12:16:01 spike postfix/cleanup[78326]: CFA4E205F: 
message-id=[EMAIL PROTECTED]
Dec 30 12:16:01 spike postfix/qmgr[193]: CFA4E205F: 
from=[EMAIL PROTECTED], size=2665, nrcpt=1 (queue active)








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


Re: once last try

2002-12-24 Thread Jim Arnold
is your outside IP static, or DHCP?

static:
   
a) 1. put hostname=a11d015.neo.rr.com in /etc/rc.conf
   2. let postfix get it from gethotname()
b) 1. leave /etc/rc.conf as it is
   2. put myhostname = a11d015.neo.rr.com in
  $config_directory/main.cf

DHCP:

can't really help, but ISTR the DHCP client can update it's hostname
from the server. if this is true:

1. configure DHCP to update the hostname from the server
2. put myhostname = a11d015.neo.rr.com in $config_directory/main.cf

but I might be on crack.


Roman,

I put a11d015.neo.rr.com as my hostname in Postfix and everything 
seems to work well, except I tried to subscribe to the questions list 
with this new setup but it doesn't seem to work. I get a response 
from majordomo saying that it is sending another email to my address 
as an authorization key but that email never arrives.

Any ideas?

Thanks,
Jim



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


Re: once last try

2002-12-23 Thread Jim Arnold
# [EMAIL PROTECTED] / 2002-12-23 03:23:36 -0800:

 OK. I have tried unsuscribing to this mailing list and
 re-subscribing to it and then sending e-mails to it to
 test but my e-mails never make it. I know this e-mail
 will make it to the list but this account is not the
 one im having problems with. I'm having problems with
 my POP account. if someone could help me figure out
 what the problem is i would appreciate it. I dont get
 any error messages back either when i try to send

  e-mails to this list from my POP account.



I have the same problem as you. I am no longer able to send questions 
in via my regular POP account. It suddenly stopped working a few 
months back as far as I can tell. Once I unsubscribed from the list I 
could THEN post a question.

I use RoadRunner cable modem but use my work email address as the 
return email address.  Roman, are you saying that's why I cannot post 
to the list?

I don't see how this helps fight spam if I can post to the list from 
an account that is no longer subscribed to the list. Plus, I have to 
believe there are many, many people like me who use their work email 
addresses as their return email address from other ISP's

Now I have to jump through flaming hoops of fire so I can both 
subscribe to the list and post to it.

Guess I'm not buying into this theory...

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


Re: Hubs and switches (was: uninformed qstn...)

2002-12-15 Thread Jim Arnold
At 10:07 PM -0800 12/12/02, Gary D Kline wrote:

	Hi People,
	Before I (potentially) throw aay some bills, I thought I'd
	ask the hardware-savvy if there is any appreciable difference
	between makes of hubs.

	After 5 years I am getting ready to move up to a 10/100 RJ-45
	hub.  I've got  a 5-port Linksys (always had good luckwith
	Linksys); thinking of buying an 8-port 10/100 Linksys for
	around $50.   Would buying a non-name-brand clone do the same
	job?


I finally got a few hundred bucks to switch our small office over 
from hubs to switches. We only have about 12 computers on our 
network. I wound up buy D-Link switches from NewEgg, a 16 port, 
several 5's and several 8-port switches. All told it was around $350.

As a test I created a 100 MB file. With the hubs in place it took 119 
seconds to transfer that file from one BSD box to another on the 
network. After replacing the hubs with the switches it took 9 seconds 
to transfer the same file! With each test I transferred the file 
three times to check for variances, which there were none.

--Jim

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


Re: audiophiles - mp3 question

2002-11-29 Thread Jim Arnold
At 11:37 AM -0800 11/28/02, chip wiegand wrote:

I know how to rip cd tracks to mp3 format, but what do I do to go the
other way - .mp3 to cd format so they can be played in my car stereo
which doesn't play .mp3's? Is this possible?


You can also use XMMS to do this. As per the handbook at
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/sound-mp3.html:

16.3.4 Decoding MP3s

In order to burn an audio CD from MP3s, they must be converted to a
non-compressed WAV format. Both XMMS and mpg123 support the output of MP3 to an
uncompressed file format.

Writing to Disk in XMMS:

1.

Launch XMMS.

2.

Right-click on the window to bring up the XMMS menu.

3.

Select Preference under Options.

4.

Change the Output Plugin to ``Disk Writer Plugin''.

5.

Press Configure.

6.

Enter (or choose browse) a directory to write the uncompressed files to.

7.

Load the MP3 file into XMMS as usual, with volume at 100% and EQ 
settings turned
off.

8.

Press Play -- XMMS will appear as if it is playing the MP3, but no 
music will be
heard. It is actually playing the MP3 to a file.

9.

Be sure to set the default Output Plugin back to what it was before in order to
listen to MP3s again.


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


Re: yahoo IM crashing for anyone else?

2002-11-21 Thread Jim Arnold
On Wed, Nov 20, 2002 at 09:18:50PM -0800, Jim Arnold wrote:


 About three days again Gaim started crashing on me
 with  a vengeance with a signal 6. It appears to be
 related to Yahoo. As a test I installed ymessanger and
 it too is crashing just as often.


Gaim had a bug that was causing a segfault with yahoo. It was fixed in
the latest version, so upgrade to 0.59.6. I can't explain why ymessenger
was crashing.


I am already running 0.59.6. Sorry, I should have posted that.

Jim



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



yahoo IM crashing for anyone else?

2002-11-20 Thread Jim Arnold
About three days again Gaim started crashing on me
with  a vengeance with a signal 6. It appears to be
related to Yahoo. As a test I installed ymessanger and
it too is crashing just as often.

Anyone else experiencing this?

Backtrace below.


GNU gdb 4.18 (FreeBSD)
Copyright 1998 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General
Public License, and you are
welcome to change it and/or distribute copies of it
under certain conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show
warranty for details.
This GDB was configured as
i386-unknown-freebsd...(no debugging symbols
found)...
Core was generated by `gaim'.
Program terminated with signal 6, Abort trap.
Reading symbols from
/usr/X11R6/lib/libgtk12.so.2...(no debugging symbols
found)...done.
Reading symbols from
/usr/X11R6/lib/libgdk12.so.2...(no debugging symbols
found)...done.
Reading symbols from
/usr/local/lib/libgmodule12.so.3...(no debugging
symbols found)...done.
Reading symbols from
/usr/local/lib/libglib12.so.3...(no debugging symbols
found)...done.
Reading symbols from /usr/local/lib/libintl.so.4...(no
debugging symbols found)...done.
Reading symbols from /usr/X11R6/lib/libXi.so.6...(no
debugging symbols found)...done.
Reading symbols from /usr/X11R6/lib/libXext.so.6...(no
debugging symbols found)...done.
Reading symbols from /usr/X11R6/lib/libX11.so.6...(no
debugging symbols found)...done.
Reading symbols from /usr/lib/libm.so.2...(no
debugging symbols found)...done.
Reading symbols from
/usr/X11R6/lib/libgdk_pixbuf.so.2...(no debugging
symbols found)...done.
Reading symbols from
/usr/local/lib/libartsc.so.0...(no debugging symbols
found)...done.
Reading symbols from /usr/lib/libcrypt.so.2...(no
debugging symbols found)...done.
Reading symbols from /usr/lib/libutil.so.3...(no
debugging symbols found)...done.
Reading symbols from
/usr/local/lib/libiconv.so.3...(no debugging symbols
found)...done.
Reading symbols from /usr/lib/libc_r.so.4...(no
debugging symbols found)...done.
Reading symbols from
/usr/X11R6/lib/libXThrStub.so.6...(no debugging
symbols found)...done.
Reading symbols from /usr/local/lib/libjpeg.so.9...(no
debugging symbols found)...done.
Reading symbols from
/usr/X11R6/lib/X11/locale/common/xlcDef.so.2...(no
debugging symbols found)...done.
Reading symbols from /usr/lib/libc.so.4...(no
debugging symbols found)...done.
Reading symbols from
/usr/X11R6/lib/X11/locale/common/ximcp.so.2...(no
debugging symbols found)...done.
Reading symbols from
/usr/X11R6/lib/gtk/themes/engines/libraleigh.so...(no
debugging symbols found)...done.
Reading symbols from
/usr/local/lib/compat/pkg/libintl.so.2...(no debugging
symbols found)...done.
Reading symbols from
/usr/X11R6/lib/gaim/libjabber.so...(no debugging
symbols found)...done.
---Type return to continue, or q return to quit---

Reading symbols from
/usr/X11R6/lib/gaim/libyahoo.so...(no debugging
symbols found)...done.
Reading symbols from /usr/libexec/ld-elf.so.1...(no
debugging symbols found)...done.
#0  0x105a7598 in kill () from /usr/lib/libc_r.so.4
(gdb) backtrace
#0  0x105a7598 in kill () from /usr/lib/libc_r.so.4
#1  0x105f55ea in abort () from /usr/lib/libc_r.so.4
#2  0x806ad58 in sighandler ()
#3  0x105b933f in _thread_sig_handler () from
/usr/lib/libc_r.so.4
#4  0x105b91aa in _thread_sig_handler () from
/usr/lib/libc_r.so.4
#5  0xbfbfffac in ?? ()
#6  0x10738d76 in yahoo_pending () from
/usr/X11R6/lib/gaim/libyahoo.so
#7  0x80b701a in set_sound_option ()
#8  0x1034864c in g_io_unix_dispatch () from
/usr/local/lib/libglib12.so.3
#9  0x10349cf3 in g_main_dispatch () from
/usr/local/lib/libglib12.so.3
#10 0x1034a31c in g_main_iterate () from
/usr/local/lib/libglib12.so.3
#11 0x1034a4b4 in g_main_run () from
/usr/local/lib/libglib12.so.3
#12 0x1026882b in gtk_main () from
/usr/X11R6/lib/libgtk12.so.2
#13 0x806b791 in main ()
#14 0x8069799 in _start ()

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

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



sound vchans and gaim sound conflict

2002-11-18 Thread Jim Arnold
Sometimes when I use Gaim and I get too many sounds
going at once my sound card gets confused and starts a
loud buzzing that can only be stopped by a reboot.
This seems to happen when two people IM me at the same
time.

I turned off the sound in Gaim for all but incoming
messages but I still have that problem on occasion.
Having to reboot for this is pretty lame.

My sysctl.conf is set to: hw.snd.pcm0.vchans=4
Xmms uses  dev/dsp0.3 and Gaim uses /drv/dsp0.1

Here's my audio card:
pcm0: AudioPCI ES1373-B port 0xe800-0xe83f irq 9 at
device 11.0 on pci0

The above did eliminate those annoying messages that
another app had grabbed the sound card. Any ideas on
how to get this to stop? Is it just a byproduct of a
cheap sound card?

Thanks,
Jim


__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

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



Re: sound vchans and gaim sound conflict:

2002-11-18 Thread Jim Arnold

Jim,

I had this problem for a bit, but just recently
cvsup'd source and saw a sound.c
change.
I rebuilt world and I haven't had that annoying
buzzing since

Not sure if it will help you but its probably worth a
try...


Well, that didn't work... :(

 I just did a build/make kernel/world and now have the
following sound.c file:
-rw-r--r--  1 root  wheel  19990 Nov 18 21:55
/usr/src/sys/dev/sound/pcm/sound.c
I hope this solves the problem. My previous build was
about a month ago.

I've had to reboot my three BSD boxes about 12 times
in total due to this buzzing.

After the rebuild I enabled a few more sounds in Gaim,
such as notification as to when someone logs off. I
had one person logged onto Yahoo and Gaim at the same
time. When they logged off the sounds overlapped each
other and my sound card wigged out and started buzzing
loudly again. Another reboot needed.

Any more ideas?






later
Michael Mercer

Jim Arnold wrote:

 Sometimes when I use Gaim and I get too many sounds
 going at once my sound card gets confused and starts
a
 loud buzzing that can only be stopped by a reboot.
 This seems to happen when two people IM me at the
same
 time.

 I turned off the sound in Gaim for all but incoming
 messages but I still have that problem on occasion.
 Having to reboot for this is pretty lame.

 My sysctl.conf is set to: hw.snd.pcm0.vchans=4
 Xmms uses  dev/dsp0.3 and Gaim uses /drv/dsp0.1

 Here's my audio card:
 pcm0: AudioPCI ES1373-B port 0xe800-0xe83f irq 9
at
 device 11.0 on pci0

 The above did eliminate those annoying messages that
 another app had grabbed the sound card. Any ideas on
 how to get this to stop? Is it just a byproduct of a
 cheap sound card?

 Thanks,
 Jim




__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com

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



Re: Replacing/Mirror root drive?

2002-10-10 Thread Jim Arnold

At 11:39 PM -0500 10/10/02, Maildrop wrote:
I currently have a 4.3 gig drive as my root/var and swap partitions.  This
drive is going bad fast and need to replace it.

I have a clean, working 10 gig drive that has been tested and verified
working correctly.

The question is, how do I mirror the 4.3 gig drive over to the 10 gig
drive?  Is there anything like Norton's Ghost for FreeBSD?

/dev/ad0s2b noneswapsw  0   0
/dev/ad0s1a /   ufs rw  1   1
/dev/ad0s3e /varufs rw  2   2

See 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#NEW-HUGE-DISK,
which would apply to you.



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



Re: Question on order and targets of kernel and world builds

2002-07-17 Thread Jim Arnold
Title: Re: Question on order and targets of kernel and
world


I would appreciate a bit more information
on the 'world' and 'kernel'
building process. Please point me at the right section of the Handbook
or
Greg's book if there is a succinct description.

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



I have been doing 'CVSUP' followed
by:

# make buildworld
# make installworld
# make buildkernel
# make installkernel

without really knowing if this was a useful order or exactly what I
was
accomplishing with each target. My question is:

1) Can I 'make buildworld' to create my tools and supporting
files, then
2) Use the newly made world to 'make buildkernel',
and then
3) 'make installworld; make installkernel' to install these new
filesets
 for general use?

I would like to know if this is an acceptable and conservative way to
do a
rebuild, and to better understand what I
get at each step.

Here are the steps I follow. Note that I previously built a
custom kernel
and I am using that below. Replace CUSTOM with
whatever you named your kernel.

Please *read the handbook* as things can get confusing. Not
something you
want to fubar at 2 am. Mergemaster especially can be tricky until
you figure out
what's going on. Good luck.

1.
# cd /usr/obj
# chflags -R noschg *
# rm -rf *

2. #make buildworld

3. #make buildkernel KERNCONF=CUSTOM

4. #make installkernel KERNCONF=CUSTOM

5. boot into single user mode

6. #make installworld

7. # cp -Rp /etc
/etc.old

8. # mergemaster
-cv

9. reboot
-- 


Jim Arnold - Ohio.com - [EMAIL PROTECTED]
Cell: 330.730.0797 Voice:
330.572.2822
AOL IM: instantjim / Yahoo:
jim0266