Re: build options config dialog interrupts build

2004-11-20 Thread Kent Stewart
On Friday 19 November 2004 11:37 pm, Kevin Michael Smith wrote:
 I just installed 5.3-released.  How do I stop the popup dialogs from
 appearing while building from the ports tree. The dialogs usually ask
 for configuration information related to the build and I am willing to
 take the defaults.  The dialogs interrupt the build until I answer OK.


Add

BATCH=YES

to /etc/make.conf

Kent

-- 
Kent Stewart
Richland, WA

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


RE: Dual NICs in BSD

2004-11-20 Thread Ted Mittelstaedt
You can't.  If the whole idea of this is failover in case a NIC
fails, you setup a script that runs from cron and monitors the
active NIC, if it goes down the script reassigns the IP to the
other NIC.

Ted

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Trevor B.
 Sullivan
 Sent: Friday, November 19, 2004 5:09 AM
 To: [EMAIL PROTECTED]
 Subject: Dual NICs in BSD
 
 
 Hi, I have a Compaq Proliant 3000 server with a fresh install of FreeBSD
 5.2.1 on it. It has an Intel Dual-port NIC (of which I'm using one
 port), and a Netgear GA620 Gigabit fiber card. The copper port is
 referred to as fxp0 and the fiber, ti0. I'm having a problem getting the
 two network connections to work together with the same network address.
 My private subnet is 10.100.100/24, though if I try to set two adapters
 each with their own IP but on the same network, I get File already
 exists or something to that effect. The default route to my m0n0wall
 box is set through fxp0, and I can get ti0 to work if I set the network
 addr to 255.255.255.255, but then if my copper interface goes down
 (using ifconfig fxp0 down as test), the fiber interface will not then
 connect. My basic question is...how do I get two independent cards to
 have their own IP address on the same network address? Thanks in advance
 for assistance. 
  
 Trevor B. Sullivan
 Information Technology
 Baxter  Woodman, Inc.
 Phone: (815) 459-1260 x1337
  
 ___
 [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: Lost am I (FreeBSD4.10)

2004-11-20 Thread Matthew Seaman
On Fri, Nov 19, 2004 at 11:19:05PM -0500, gazwacker the kazmaster wrote:
 Annoyed am I. For mine computer hath been tampered upon by a fool
 which hath deleted mine /usr/share folder. I have the
 installation CD, now how would I re-install my purloined portfolio?
 (If no one knows how to do that, a copy of the /usr/share/misc/termcap file 
 would suffice)

Grab the system sources via cvsup, and do a 'make world' cycle as
described here:

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

and here

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

That will reinstall the contents of /usr/share along with all of the
rest of the system -- sure, it's a sledge hammer, but it will crack
this nut very effectively.  Nb. you should always compile a new kernel
to go with the new system -- having kernel and world out of synch
tends to cause a number of oddities of behaviour in the system.

Cheers,

Matthew

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


pgpBVDFlfy7vk.pgp
Description: PGP signature


Re: newsyslog and chrooted bind on 5.3

2004-11-20 Thread Ruben de Groot
On Sat, Nov 20, 2004 at 07:45:56AM +0100, Kees Plonsz typed:
 Vince Hoffman wrote:
 
  Hi all,
   since i updated my server to 5.3 and went with the default option
  of chrooting bind, anytime named recives a HUP signal it dies. Is this
  expected ? its a bit of a bugger as i will have to use cron and a short
  shell script instead of an entry in newsyslog.conf.

You can let bind log through the syslog facility. I think that's even the
default. That way there's no need to HUP named. 

  Vince
 
 There was a discussion about that a few hours ago.
 Use /etc/rc.d/named restart instead.

That won't work with newsyslog. newsyslog needs a pidfile to send a HUP
to the logging proces after the logs are rotated.

Ruben

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


User CD Mount

2004-11-20 Thread Graham Bentley

Hi All,

I am trying to get permission to mount CD's when logged in non root
Following the handbook advice I have :-

As root set the sysctl variable vfs.usermount to 1.
# sysctl -w vfs.usermount=1
Added the line vfs.usermount=1 to the file /etc/sysctl.conf

Changed group perms on devs
# chgrp operator /dev/acd0
# chgrp operator /dev/acd1

Changed access perms
# chmod 640 /dev/acd0
# chmod 640 /dev/acd1

Changed group perms on the mount points
# chgrp operator /cdrom
# chgrp operator /cdrom1

Added myself to the operator group in /etc/group
operator:*:5:root,graham

However non of this worked - I could still not mount as non root
even though I was in the operator group.

Next I installed the sudo package and added my name to the list 
of adminsitrators. Whilst this had the desired outcome I still wasnt 
happy that I couldnt get this working without using sudo :(

Finally I change the owner on the mount point to my username
and that worked fine (without sudo)

However I still do not think I have done the right thing (being 
a bit of a noob :) as I have noticed that when I have mounted
the cd, an ls reveals the ownership as root:wheel - when I unmount
it is back to graham:operator ?

(gkrellm also always reports the devices as being busy even though 
I specified exactly the same mount command that works from cl )

This probably highlights my lack of understanding of permissions
etc so I was wondering if anyone could guide me in the path
to enlightenment ?

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


GUI CD Burning

2004-11-20 Thread Graham Bentley

Hi Again!

Just wondering what to use for CD burning in X
on FreebSD 5.3 ?

I notice XCDRoast says for SCSI only and seem
remember in Linux you had to enable SCSI Emu
for IDE Writers.

Last time I used 'burncd' it was pretty easy but
would like a front end so I can click about whilst
eating my toast (yes, sometimes Im lazy :)

Thanks in advance for replies :)

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


Re: Gnome Ethernet Very Slow

2004-11-20 Thread Danny Browne
what sholud reslov.conf  hosts have for gnome to acces the router/internet 
properly?

resolv.conf just has:

nameserver 192.168.1.254

hosts has: 

::1 localhost localhost.my.domain
127.0.0.1 localhost localhost.my.domain
192.168.1.3 VaioBSD VaioBSD.eircom.net


Tim [EMAIL PROTECTED] wrote:

 
 Danny Browne wrote:
 
 Basically my internet connection is very very slow whe using gnome browsers 
 (or any app).  but its a DSL line, and its as fast as it should be when 
 downlaoding something from teminal???
 
 Free BSD 4.10 i386
 Gnome 2.8
 Realtek ethernet card
 
 ??
 
 Any ideas?
 
 Danny Browne
 
 
 
 _
 Sign up for eircom broadband now and get a free two month trial.*
 Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer
 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 
   
 
 Check your DNS settings, make sure resolv.conf points to a valid DNS 
 server that you can access. I had the same problem, turned out I 
 mistyped my DNS server. Console stuff (ftp, ping, telnet, etc) worked 
 fine, but couldn't get a browser to do a darn thing.
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 


Danny Browne



_
Sign up for eircom broadband now and get a free two month trial.*
Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer


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


Re: GUI CD Burning

2004-11-20 Thread Laurence Sanford
Graham Bentley wrote:
Hi Again!
Just wondering what to use for CD burning in X
on FreebSD 5.3 ?
I notice XCDRoast says for SCSI only and seem
remember in Linux you had to enable SCSI Emu
for IDE Writers.
Last time I used 'burncd' it was pretty easy but
would like a front end so I can click about whilst
eating my toast (yes, sometimes Im lazy :)
 

k3b will do it nicely. If you're using an IDE drive, just make sure 
you've got CAM set up. With CAM, I fired up k3b and it was almost too 
painless.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: cpu choice

2004-11-20 Thread Chuck Swiger
Dude Dude wrote:
i've a Athlon XP 1.8 and i want to rebuild my system.
I was thinking in a AMD athlon barton 3.1 and a good socket A mobo like
Asus A7N8X E-Deluxe, howvere barton is not anymore avaiable at the market,
so what you think i shuld do ?
www.newegg.com has the Athlon XP 3200+ Barton, 400MHz FSB, 512K Cache for 
$170, as well the other FSB speeds of 333 and 266 MHz.  You undoubtedly could 
find other vendors which have them as well.

Buy a socket 939 board and a Athlon64 3.2
or
Buy a socket A board and sempron 2.8
or
Buy a socket 752 board and a sempron 3.1 ??
If you are willing to replace your MB and get new RAM as well as getting a new 
CPU, then going to AMD-64 is reasonable.  If you want to continue to use your 
existing MB and memory, then simply get a faster socket A CPU.

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


amr0: bad slot x completed and fsck_ufs hanging

2004-11-20 Thread Marco Beishuizen
Hi,
I'm having some problems with my new dual xeon with an Intel scsi raid 
controller (SRCU42X). I installed FreeBSD 5.3-RELEASE on it.

First I get a message in my dmesg saying: amr0: bad slot completed. After 
that fsck_ufs tries to run but it keeps hanging. In top it's state is 
getblk. When I then try to reboot, the computer even hangs during 
shutting down because it can't kill some processes (fsck_ufs I guess).

After resetting the computer I get of course messages that some filesystems 
are not properly dismounted, FreeBSD boots, fsck_ufs tries to run and 
hangs again, I get the message amr0: bad slot x completed again, and 
everything starts from the beginning.

I think it has something to do with my SCSI controller. Has someone an idea 
what is happening here?

Thanks,
Marco
--
Bubble Memory, n.:
A derogatory term, usually referring to a person's
intelligence.  See also vacuum tube.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Which Sata-controller card?

2004-11-20 Thread Sebastian Holmqvist
Had some bad experience with my previous one: Promise SATA150 TX2Plus,
so I would like some tips.
Two harddrives will be attached for now, maybe more later.
Alot of data transfer.

I have an 5.3-can running.
-- 

Sebastian Holmqvist
Webprogrammer / HL2 modder
http://cae.hl2files.com
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: system wide ports upgrade

2004-11-20 Thread Huw Wynn-Jones
On Saturday 20 November 2004 04:51, Steel City Phantom wrote:
 i remember there being a program out there that will go through all
 my installed apps and upgrade them with the latest versions in the
 ports collection, what was it called again?

 thanks

portupgrade is the program. it is found in /usr/ports/sysutils/

portupgrade -varR will upgrade everything including all dependencies.

check the man page cos you can get it to upgrade using binaries 
instead of compiling, if they are available.

also the below article is very useful.

http://www.onlamp.com/pub/a/bsd/2003/08/28/FreeBSD_Basics.html

cheers

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


FluxBox??

2004-11-20 Thread Danny Browne

Just came across fluxbox window manager. Installed it, and followed the 
instructions (replacing exec gnome-session  .xinitrc)

but how does fluxbox work??

is it suppossed to work with gnome or what?

saw some fluxbox themes that i really liked so i wanted to give it a try.

Danny Browne



_
Sign up for eircom broadband now and get a free two month trial.*
Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer


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


Re: CANNOT SSH to my computer

2004-11-20 Thread Lowell Gilbert
Ivan Georgiev [EMAIL PROTECTED] writes:

 On Thursday 18 November 2004 07:08 pm, Lowell Gilbert wrote:
  Ivan Georgiev [EMAIL PROTECTED] writes:
   On Thursday 18 November 2004 06:00 pm, Sebastian Holmqvist wrote:
On Thu, 18 Nov 2004 17:44:05 -0500, Ivan Georgiev [EMAIL PROTECTED] 
 wrote:
 On Thursday 18 November 2004 08:42 am, Sebastian Holmqvist wrote:
  On Thu, 18 Nov 2004 13:26:05 +, Daniel Bye
 
  [EMAIL PROTECTED] wrote:
   On Thu, Nov 18, 2004 at 07:49:03AM -0500, Ivan Georgiev wrote:
I changed PasswordAuthentication to 'yes' and this time it asks
me 6 times for my password (3 times beginning with Password:
  
   You can disable these first three by changing
   ChallengeResponseAuthentication to no.
  
and another 3 times with Password for [EMAIL PROTECTED])
and rejects me again with the same message from sshd.
  
   Sounds like a silly question, I know, but are you typing your
   password correctly?  For example, is your local keymap sending
   the right characters to the server?
  
Adding more verbosity didn't help me to understand the problem.
I also noticed that my ida_dsa.pub key ends with ivan@ .
Usualy I have seen it ending with [EMAIL PROTECTED].
Is this a problem?
  
   No, I don't think so.  It is just a convenient identifier for
   human consumption - it's somewhat easier to use the last little
   bit of the key than to try and remember the whole keyblock!
  
   Have you copied ida_dsa.pub from the client machine to your
   ~/.ssh/authorized_keys file on the server?
  
  
  
   Dan
  
   --
   Daniel Bye
  
   PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
   PGP Key fingerprint: 3B9D 8BBB EB03 BA83 5DB4 3B88 86FC F03A 90A1
   BE8F _ ASCII ribbon campaign ( ) - against HTML, vCards and  X -
   proprietary attachments in e-mail / \
 
  Sure you have changed your keymap?
 
  And sorry if I misunderstood, are you trying to ssh to the computer
  you're sitting on?

 I do not think I have done any changes to the keymap. And, yes, I am
 trying to connect to the computer I am sitting on plus have tried to
 connect from my office computer. In both cases no luck.

 I will appreciate if you can help me to resolve the issue.

 Thanks,


 Ivan
   
When you connect from the office-computer, what happends?
  
   As I said - rejects with Permission denied and a message the log:
   sshd[25413]: Failed password for ivan from MY_OFFICE_COMPUTER_ADDRESS
   port 44517 ssh2
 
  Try ssh -v (and if that doesn't tell you enough, ssh -vv) and look
  at the debug output when it asks for and rejects the password.  If that
  doesn't give you more of a clue, try doing the equivalent with sshd.
 
 I have tried that already but cannot understand where the problem is. Here is 
 small part of the sshd log:
 
 debug1: userauth-request for user ivan service ssh-connection method password
 debug1: attempt 5 failures 4
 debug2: input_userauth_request: try method password
 debug3: mm_auth_password entering
 debug3: mm_request_send entering: type 10
 debug3: monitor_read: checking request 10
 debug3: mm_answer_authpassword: sending result 1
 debug3: mm_request_send entering: type 11
 debug3: mm_request_receive_expect entering: type 46
 debug3: mm_request_receive entering
 debug3: mm_auth_password: waiting for MONITOR_ANS_AUTHPASSWORD
 debug3: mm_request_receive_expect entering: type 11
 debug3: mm_request_receive entering
 debug3: mm_auth_password: user authenticated
 debug3: mm_do_pam_account entering
 debug3: mm_request_send entering: type 46
 debug3: mm_request_send entering: type 47
 Failed password for ivan from XXX.XXX.XXX.XXX port 55958 ssh2
 debug3: mm_request_receive entering
 debug3: mm_request_receive_expect entering: type 47
 debug3: mm_request_receive entering
 debug3: mm_do_pam_account returning 0
 Failed password for ivan from XXX.XXX.XXX.XXX port 55958 ssh2
 Connection closed by XXX.XXX.XXX.XXX
 debug1: do_cleanup
 debug1: PAM: cleanup
 debug3: PAM: sshpam_thread_cleanup entering
 debug1: do_cleanup
 debug1: PAM: cleanup
 debug3: PAM: sshpam_thread_cleanup entering
 
 
 and from ssh -vvv 
 
 [EMAIL PROTECTED]'s password:
 debug3: packet_send2: adding 64 (len 59 padlen 5 extra_pad 64)
 debug2: we sent a password packet, wait for reply
 debug1: Authentications that can continue: publickey,password
 debug2: we did not send a packet, disable method
 debug1: No more authentication methods to try.
 Permission denied (publickey,password).
 

Looks like you've either changed your PAM configuration from the
defaults or disabled keyboard-interactive.  What changes have you
made?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To 

Re: upgrading apache 1.3.21 to apache+mod_ssl-1.3.33+2.8.22

2004-11-20 Thread Steel City Phantom
noone know how to do this?
Steel City Phantom wrote:
i have a production server hosting several sites and need to do this 
upgrade.  is there a way i can do it without uninstalling everything 
and reinstalling it all
___
[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: User CD Mount

2004-11-20 Thread Dick Davies
* Graham Bentley [EMAIL PROTECTED] [1103 15:03]:
 
 Hi All,
 
 I am trying to get permission to mount CD's when logged in non root
 Following the handbook advice I have :-
 
 As root set the sysctl variable vfs.usermount to 1.
 # sysctl -w vfs.usermount=1
 Added the line vfs.usermount=1 to the file /etc/sysctl.conf
 
 Changed group perms on devs
 # chgrp operator /dev/acd0
 # chgrp operator /dev/acd1
 
 Changed access perms
 # chmod 640 /dev/acd0
 # chmod 640 /dev/acd1
 
 Changed group perms on the mount points
 # chgrp operator /cdrom
 # chgrp operator /cdrom1
 
 Added myself to the operator group in /etc/group
 operator:*:5:root,graham
 
 However non of this worked - I could still not mount as non root
 even though I was in the operator group.

You need to own the mount point, I think - group writablity is'nt
enough.
 

-- 
common sense is what tells you that the world is flat. - Principia Discordia
Rasputin :: Jack of All Trades - Master of Nuns
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: upgrading apache 1.3.21 to apache+mod_ssl-1.3.33+2.8.22

2004-11-20 Thread Lowell Gilbert
Steel City Phantom [EMAIL PROTECTED] writes:

 noone know how to do this?

portupgrade will help you manage it, but you're still going to need to
re-install Apache in order to upgrade Apache.  

 Steel City Phantom wrote:
 
  i have a production server hosting several sites and need to do this
  upgrade.  is there a way i can do it without uninstalling everything
  and reinstalling it all
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: upgrading apache 1.3.21 to apache+mod_ssl-1.3.33+2.8.22

2004-11-20 Thread Steel City Phantom

   (sigh) oh well.  thanks
   Lowell Gilbert wrote:

Steel City Phantom [1][EMAIL PROTECTED] writes:



noone know how to do this?


portupgrade will help you manage it, but you're still going to need to
re-install Apache in order to upgrade Apache.



Steel City Phantom wrote:



i have a production server hosting several sites and need to do this
upgrade.  is there a way i can do it without uninstalling everything
and reinstalling it all

References

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


Re: CANNOT SSH to my computer

2004-11-20 Thread Ivan Georgiev
On Saturday 20 November 2004 09:42 am, Lowell Gilbert wrote:
 Ivan Georgiev [EMAIL PROTECTED] writes:
  On Thursday 18 November 2004 07:08 pm, Lowell Gilbert wrote:
   Ivan Georgiev [EMAIL PROTECTED] writes:
On Thursday 18 November 2004 06:00 pm, Sebastian Holmqvist wrote:
 On Thu, 18 Nov 2004 17:44:05 -0500, Ivan Georgiev [EMAIL PROTECTED]
 
  wrote:
  On Thursday 18 November 2004 08:42 am, Sebastian Holmqvist wrote:
   On Thu, 18 Nov 2004 13:26:05 +, Daniel Bye
  
   [EMAIL PROTECTED] wrote:
On Thu, Nov 18, 2004 at 07:49:03AM -0500, Ivan Georgiev wrote:
 I changed PasswordAuthentication to 'yes' and this time it
 asks me 6 times for my password (3 times beginning with
 Password:
   
You can disable these first three by changing
ChallengeResponseAuthentication to no.
   
 and another 3 times with Password for
 [EMAIL PROTECTED]) and rejects me again with the same
 message from sshd.
   
Sounds like a silly question, I know, but are you typing your
password correctly?  For example, is your local keymap
sending the right characters to the server?
   
 Adding more verbosity didn't help me to understand the
 problem. I also noticed that my ida_dsa.pub key ends with
 ivan@ . Usualy I have seen it ending with
 [EMAIL PROTECTED]. Is this a problem?
   
No, I don't think so.  It is just a convenient identifier for
human consumption - it's somewhat easier to use the last
little bit of the key than to try and remember the whole
keyblock!
   
Have you copied ida_dsa.pub from the client machine to your
~/.ssh/authorized_keys file on the server?
   
   
   
Dan
   
--
Daniel Bye
   
PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
PGP Key fingerprint: 3B9D 8BBB EB03 BA83 5DB4 3B88 86FC F03A
90A1 BE8F _ ASCII ribbon campaign ( ) - against HTML, vCards
and  X - proprietary attachments in e-mail / \
  
   Sure you have changed your keymap?
  
   And sorry if I misunderstood, are you trying to ssh to the
   computer you're sitting on?
 
  I do not think I have done any changes to the keymap. And, yes, I
  am trying to connect to the computer I am sitting on plus have
  tried to connect from my office computer. In both cases no luck.
 
  I will appreciate if you can help me to resolve the issue.
 
  Thanks,
 
 
  Ivan

 When you connect from the office-computer, what happends?
   
As I said - rejects with Permission denied and a message the log:
sshd[25413]: Failed password for ivan from MY_OFFICE_COMPUTER_ADDRESS
port 44517 ssh2
  
   Try ssh -v (and if that doesn't tell you enough, ssh -vv) and look
   at the debug output when it asks for and rejects the password.  If that
   doesn't give you more of a clue, try doing the equivalent with sshd.
 
  I have tried that already but cannot understand where the problem is.
  Here is small part of the sshd log:
  
  debug1: userauth-request for user ivan service ssh-connection method
  password debug1: attempt 5 failures 4
  debug2: input_userauth_request: try method password
  debug3: mm_auth_password entering
  debug3: mm_request_send entering: type 10
  debug3: monitor_read: checking request 10
  debug3: mm_answer_authpassword: sending result 1
  debug3: mm_request_send entering: type 11
  debug3: mm_request_receive_expect entering: type 46
  debug3: mm_request_receive entering
  debug3: mm_auth_password: waiting for MONITOR_ANS_AUTHPASSWORD
  debug3: mm_request_receive_expect entering: type 11
  debug3: mm_request_receive entering
  debug3: mm_auth_password: user authenticated
  debug3: mm_do_pam_account entering
  debug3: mm_request_send entering: type 46
  debug3: mm_request_send entering: type 47
  Failed password for ivan from XXX.XXX.XXX.XXX port 55958 ssh2
  debug3: mm_request_receive entering
  debug3: mm_request_receive_expect entering: type 47
  debug3: mm_request_receive entering
  debug3: mm_do_pam_account returning 0
  Failed password for ivan from XXX.XXX.XXX.XXX port 55958 ssh2
  Connection closed by XXX.XXX.XXX.XXX
  debug1: do_cleanup
  debug1: PAM: cleanup
  debug3: PAM: sshpam_thread_cleanup entering
  debug1: do_cleanup
  debug1: PAM: cleanup
  debug3: PAM: sshpam_thread_cleanup entering
  
 
  and from ssh -vvv
  
  [EMAIL PROTECTED]'s password:
  debug3: packet_send2: adding 64 (len 59 padlen 5 extra_pad 64)
  debug2: we sent a password packet, wait for reply
  debug1: Authentications that can continue: publickey,password
  debug2: we did not send a packet, disable method
  debug1: No more authentication methods to try.
  Permission denied (publickey,password).
  

 Looks like you've either changed your PAM configuration from the
 defaults or disabled 

what should i have in resolv.conf hosts

2004-11-20 Thread Danny Browne

Browsers in fluxbox (and gnome when i treid that switching to that) take 
forever to fetch webpages (2 mins on a DSL line). but the speed is normal when 
using ping or ftp or whatever from terminal/console.
are my reslov.conf and hosts file entrys correct?

resolv.conf just has:

nameserver 192.168.1.254

hosts has:

::1 localhost localhost.my.domain
127.0.0.1 localhost localhost.my.domain
192.168.1.3 VaioBSD VaioBSD.eircom.net


Danny Browne



_
Sign up for eircom broadband now and get a free two month trial.*
Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer


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


Re: Problem

2004-11-20 Thread Shantanoo Mahajan
+++ [EMAIL PROTECTED] [freebsd] [15-11-04 23:03 -0500]:
| Instead of a normal dial-up connection, I have to get complicated with a 
| Point to Point Protocol Over Ethernet Digital Subscriber Line, unfortunately, 
the 
| computer doesn't want to cooprate, I'm using FreeBSD version 4.10, and am 
| assuming that the kernel doesn't need to be reconfigured to support PPPoE. 
I'm 
| using the instructions and configuration file from 
| http://www.daemonnews.org/200101/pppoe.html.
|The network card is a Realtek RTL8139/810x 10/100 auto switching fast 
| ethernet NIC, and shows up as rl0, the bootup device list is at the bottom of 
this 
| page. Also, I would like the aforementioned NIC to automatically bring itself 
| UP on bootup.
| 
| This is what happened while following the instructions from 
| http://www.daemonnews.org/200101/pppoe.html:
| # ls -l /dev/tun?
| crw---  1 root  wheel   52,   0 Sep  3 02:14 /dev/tun0
| crw---  1 root  wheel   52,   1 Sep  3 02:14 /dev/tun1
| crw---  1 root  wheel   52,   2 Sep  3 02:14 /dev/tun2
| crw---  1 root  wheel   52,   3 Sep  3 02:14 /dev/tun3
| # edit /etc/ppp/ppp.conf
| 
| 
| (Beginning of configuration file)
| #
| # ppp.conf: PPPoE configuration
| #
| 
| default:
| # PPP over Ethernet
| set device PPPoE:rl0
| set speed sync
| set mru 1492
| set mtu 1492
| set ctsrts off
| 
| # monitor line quality
| enable lqr
| 
| # log just a bit
| set log phase tun
| 
| # insert default route upon connection
| add default HISADDR
| 
| # download /etc/resolv.conf
| enable dns
| 
| papchap:
|  set authname rxp110
|  set authkey (My Password)
|  (End of configuration file)

try putting following:
set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0
before:
add default HISADDR


Regards,
Shantanoo

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


Re: what should i have in resolv.conf hosts

2004-11-20 Thread Ash
Danny Browne wrote:
Browsers in fluxbox (and gnome when i treid that switching to that) take 
forever to fetch webpages (2 mins on a DSL line). but the speed is normal when 
using ping or ftp or whatever from terminal/console.
are my reslov.conf and hosts file entrys correct?
resolv.conf just has:
nameserver 192.168.1.254
hosts has:
::1 localhost localhost.my.domain
127.0.0.1 localhost localhost.my.domain
192.168.1.3 VaioBSD VaioBSD.eircom.net
[SNIP]
Danny,
I assume that by browsers you mean a Mozilla derived browser compiled 
as a native FreeBSD binary (vs a Linux binary running under emulation). 
There seems to be a known issue the way Mozilla resolves under FreeBSD. 
There were some good threads in the news groups and mailing lists on 
this; You should be able to find them via groups.google.com by searching 
for something along the lines of mozilla DNS slow.

There are few couple of reported ways to get around the resolvers issue. 
I've read that disabling IPv6 in your kernel will help. Installing the 
Linux native ports (e.g. www/linux-mozillafirebird or www/linux-mozilla) 
is also reported to work. I haven't tried either of the fore mentioned 
workarounds, so I don't know if they work or are still applicable.

I route my web traffic through the Squid proxy (available as a FreeBSD 
port www/squid). As a result, I'm not affected by the resolvers issue 
since Squid is handling DNS resolution for browsers on my network.

I'm not saying my work around is the best fix; I just happened to need a 
proxy on my network so it was a convenient fix way for me to deal with 
this issue.

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


turning off IPv6 support in BSD

2004-11-20 Thread Danny Browne

How do i turn off IPv6 support in FreeBSD 4.10?

Regards,

Danny Browne



_
Sign up for eircom broadband now and get a free two month trial.*
Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer


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


Re: turning off IPv6 support in BSD

2004-11-20 Thread andrew clarke
On Sat, Nov 20, 2004 at 04:50:58PM +, Danny Browne wrote:

 How do i turn off IPv6 support in FreeBSD 4.10?

Remove options INET6 from your kernel config file
(/sys/i386/conf/XXX), rebuild your kernel and reboot your machine.

There may be a way to turn it off at runtime using sysctl, but I don't
know what it is, and in hindsight it probably wouldn't make much sense
to do that at runtime, although I'm willing to be convinced otherwise. :)

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


Re: Call for help: -lkse (libkse trouble)

2004-11-20 Thread Kris Kennaway
On Fri, Nov 19, 2004 at 01:07:52PM -0600, [EMAIL PROTECTED] wrote:

 I did a cd /usr/src/lib/libpthread  make all install -- This should have
 installed libkse too. When I changed THREAD_LIBS=-lkse (from -pthread), I
 got an error from ld while compiling the driver.. Was something like:
 /usr/bin/ld: Cannot find -lkse (error code 1 , blah blah)..

There is no such thing as libkse any more; libpthread is the default
thread library and uses kernel-supported threads (KSEs)

It sounds like you didn't completely update your system, or you're
still trying to use things compiled for the old version.

Kris

pgp9H2X9DqFNQ.pgp
Description: PGP signature


Re: /bin/rm: Argument list too long.

2004-11-20 Thread Francisco Reyes
On Fri, 19 Nov 2004, Dennis Koegel wrote:
find /foo/bar -type f -maxdepth 1 | xargs rm -n100
Although xargs is the most versatile solution for when having too many 
items listed, for just deleting find itself can do it..
find /foo/bar -n mask -delete
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: what should i have in resolv.conf hosts

2004-11-20 Thread Tim
Ash wrote:

 Danny Browne wrote:

 Browsers in fluxbox (and gnome when i treid that switching to that) 
 take forever to fetch webpages (2 mins on a DSL line). but the speed 
 is normal when using ping or ftp or whatever from terminal/console.
 are my reslov.conf and hosts file entrys correct?

 resolv.conf just has:

 nameserver 192.168.1.254

 hosts has:

 ::1 localhost localhost.my.domain
 127.0.0.1 localhost localhost.my.domain
 192.168.1.3 VaioBSD VaioBSD.eircom.net


 [SNIP]

 Danny,

 I assume that by browsers you mean a Mozilla derived browser 
 compiled as a native FreeBSD binary (vs a Linux binary running under 
 emulation). There seems to be a known issue the way Mozilla resolves 
 under FreeBSD. There were some good threads in the news groups and 
 mailing lists on this; You should be able to find them via 
 groups.google.com by searching for something along the lines of 
 mozilla DNS slow.

 There are few couple of reported ways to get around the resolvers 
 issue. I've read that disabling IPv6 in your kernel will help. 
 Installing the Linux native ports (e.g. www/linux-mozillafirebird or 
 www/linux-mozilla) is also reported to work. I haven't tried either of 
 the fore mentioned workarounds, so I don't know if they work or are 
 still applicable.

 I route my web traffic through the Squid proxy (available as a FreeBSD 
 port www/squid). As a result, I'm not affected by the resolvers issue 
 since Squid is handling DNS resolution for browsers on my network.

 I'm not saying my work around is the best fix; I just happened to need 
 a proxy on my network so it was a convenient fix way for me to deal 
 with this issue.

 -Ash

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



I'm running 5.3 and have IPv6 in my kernel, and I resolv just fine, as 
long as my DNS server isn't inside my local network. In resolv.conf 
should be:

nameserver a.b.c.d

where a.b.c.d is the ip address for the DNS server provided by your ISP. 
If the IP address being provided by is a 192 address, you're bound to 
have problems. In other words, if your ISP has given you DNS servers to 
use, use them. If not, find one.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Hauppauge WinTV bt878 card

2004-11-20 Thread Aaron Peterson
I'm running 5.3, loaded the bktr module, and installed fxtv.  I get
video, but no audio.  I was able to get audio without patching the audio
out from the tv card to the line in on the soundcard with linux by
compiling a driver into the kernel for the built in audio device on the
tv card.  I don't know exactly how this works on freebsd though and
would like to get some sound going with the tv picture :)

Additionally, i would like to use mplayer/mencoder and can't seem to get
that working either.  I can't even get video there it seems...

I tried:

mplayer tv://4 -tv driver=bsdbt848:channel=4 

but just got a big blue screen

If anyone has done all this and could offer me some hints I would be
most grateful!

-- 
The zen of unix involves typeey typeey not clicky clicky.  --Rich Bowen


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


segmentation fault

2004-11-20 Thread Steel City Phantom
i am trying to run a portupgrade and have a problem.  portupgrade says i 
have a stale dependency and need to fix it with pkgdb, when i run that, 
i get this

guinness# pkgdb -F
---  Checking the package registry database
Stale dependency: php4-4.3.5_7 - apache-1.3.29_3 (www/apache13):
[Failed `Inappropriate file type or format'] [Updating the portsdb 
format:bdb1_btree in /usr/ports ... - 11973 port entries found 
.1000.2000.3000.4000.5000/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:587: 
[BUG] Segmentation fault
ruby 1.8.2 (2004-07-29) [i386-freebsd4]

Abort (core dumped)
i rebuilt the ports index by going to /usr/ports and doing make index, 
but i still get this same deal.

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


Re: FluxBox??

2004-11-20 Thread Lowell Gilbert
Danny Browne [EMAIL PROTECTED] writes:

 Just came across fluxbox window manager. Installed it, and followed the 
 instructions (replacing exec gnome-session  .xinitrc)
 
 but how does fluxbox work??

According to the port description, the fluxbox home page is at:
   http://fluxbox.sourceforge.net/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: online disk image software

2004-11-20 Thread Shantanoo Mahajan
+++ Omer Faruk Sen [freebsd] [15-11-04 22:25 +0200]:
| Hi, 
| 
| I want to ask if there is an online image software for FreeBSD. Just like 
| Norton ghost or g4u but system should be up. There is one for Linux which 
| Dan Langille has written an artcile 
| (http://www.freebsddiary.org/disk-cloning.php) about this software but for 
| Windows version. 

You can also use dump/restore. If you have 20 GB HDD, and you want to
shift to 40 GB, you just create the partitions on new HDD and restore
the data.

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


Re: Gnome Ethernet Very Slow

2004-11-20 Thread Kevin D. Kinsey, DaleCo, S.P.

Danny Browne wrote:
   

Basically my internet connection is very very slow whe using gnome browsers (or 
any app).  but its a DSL line, and its as fast as it should be when downlaoding 
something from teminal???
Free BSD 4.10 i386
Gnome 2.8
Realtek ethernet card
??
Any ideas?
 

Tim [EMAIL PROTECTED] wrote:
Check your DNS settings, make sure resolv.conf points to a valid DNS 
server that you can access. I had the same problem, turned out I 
mistyped my DNS server. Console stuff (ftp, ping, telnet, etc) worked 
fine, but couldn't get a browser to do a darn thing.
   

Danny Browne wrote:
what sholud reslov.conf  hosts have for gnome to acces the router/internet 
properly?
resolv.conf just has:
nameserver 192.168.1.254
hosts has: 

::1 localhost localhost.my.domain
127.0.0.1 localhost localhost.my.domain
192.168.1.3 VaioBSD VaioBSD.eircom.net

Can you do a lookup against that nameserver?
Something like:
% nslookup - 192.168.1.254
Default Server:  foobar.yournetwork.com
Address:  192.168.1.254
 yahoo.com
Server:  foobar.yournetwork.com
Address:  192.168.1.254
Non-authoritative answer:
Name:yahoo.com
Addresses:  66.94.234.13, 216.109.112.135
 exit
I'd be interested in know whether or not that work
before hazarding any other guesses.
Kevin Kinsey
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: nvidia driver install-unable to read seeprom

2004-11-20 Thread Stephen L. Martin
On Thu, Nov 18, 2004 at 11:33:10PM -0500, Louis LeBlanc wrote:
 On 11/18/04 10:42 PM, Stephen L. Martin sat at the `puter and typed:
  Hello,
  
  I am trying to install the nvidia-driver (1.0.6113_2) on
  5.3-RELEASE. The installation fails and locks the computer, what
  looks like, right at the end. This is what happens:
  
  Install -o root -g wheel -m 555 nvidia.ko /boot/modules
  kldxref /boot/modules
  === lib
  === lib/GL
  === lib/libnvidia-tls
  === lib/libGLcore
  === lib/libXvMCNVIDIA
  === lib/compat
  === lib/compat/libGL
  === lib/compat/libnvidia-tls
  === lib/compat/libGLcore
  === x11
  === x11/driver
  === x11/extension
  === etc
  === doc
  ahd1: Adaptec 39320 Ultra320 SCSI adapter mem 0-0x1fff at device
  10.1 on pci0 Unable to read SEEPROM
  
  At this point the whole machine is locked...can't even ping it...and
  this happens every time I try the install. Everything else runs
  fine...only this install is causing problems.
  
  Here's some relevant dmesg output:
  
  da0 at ahd0 bus 0 target 0 lun 0
  da0: MAXTOR ATLAS10K4_36SCA DFL0 Fixed Direct Access SCSI-3 device
  da0: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
  Queueing Enabled
  da0: 35074MB (71833096 512 byte sectors: 255H 63S/T 4471C)
  ahd0: Adaptec 39320 Ultra320 SCSI adapter port
  0xed00-0xedff,0xe000-0xe0ff mem
   0xfe40-0xfe401fff irq 16 at device 10.0 on pci0
  ahd0: [GIANT-LOCKED]
  ahd1: Adaptec 39320 Ultra320 SCSI adapter at device 10.1 on pci0
  device_attach: ahd1 attach returned 12
  da0 at ahd0 bus 0 target 0 lun 0
  
  And it's an Asus a7v880 board.
  
  The only strange thing I see in here is the attach returned 12. In
  the handbook it says to try adding
  hw.pci.allow_unsupported_io_range=1, but it looks like this was
  taken out in 5.3
  
  Anything else to try?...Any more info needed?
 
 Am I missing the video card you have?  That would be a fairly
 important bit of info. :)
 
 Also, do you already have Xorg or XFree86 running?
 What does 'Xorg -configure' say the card is? - run that as root and it
 will create xorg.conf.new in /root.  That will give an idea what the
 card claims to be.

Whoops...so I did...it's a Nvidia MX440-SE Dual Head AGP card. I do have
Xorg and KDE both working fine...I need the nvidia driver for the dual
monitor support.

Also, I've found something else that causes the problem...when I try and
do a kldload snd_driver the same symptoms happen (except a new mem
address):

ahd1: Adaptec 39320 Ultra320 SCSI adapter mem 0-0x1fff at device 10.1
on pci0 Unable to read SEEPROM

My first guess is it looks like some resource problem?...since it occurs
when I load hardware modules. So I shut down, and removed my pci
firewire card and disabled my on-board nic and sound in the bios. Upon
reboot I received a message: Kernel trap 12 with interrupts disabled.
It is now frozen and I have to do a hard shut down. When I re-add them
to the system it boots up fine??? I've rinsed and repeated several
times with the same results 

Per the ahd(4) manual page, I've also compiled in the debugging code,
but I haven't seen any debugging info yet

Thanks.

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


Re: Hauppauge WinTV bt878 card

2004-11-20 Thread Shaun Friedle
Aaron Peterson wrote:
I tried:
mplayer tv://4 -tv driver=bsdbt848:channel=4 

but just got a big blue screen
Try mplayer tv://4 -tv driver=bsdbt848:input=1:channel=4
That works for my card anyway.
--
Shaun Friedle
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: segmentation fault

2004-11-20 Thread Kent Stewart
On Saturday 20 November 2004 11:39 am, Steel City Phantom wrote:
 i am trying to run a portupgrade and have a problem.  portupgrade says i
 have a stale dependency and need to fix it with pkgdb, when i run that,
 i get this

 guinness# pkgdb -F
 ---  Checking the package registry database
 Stale dependency: php4-4.3.5_7 - apache-1.3.29_3 (www/apache13):
 [Failed `Inappropriate file type or format'] [Updating the portsdb
 format:bdb1_btree in /usr/ports ... - 11973 port entries found
 .1000.2000.3000.4000.5000/u
sr/local/lib/ruby/site_ruby/1.8/portsdb.rb:587: [BUG] Segmentation fault
 ruby 1.8.2 (2004-07-29) [i386-freebsd4]

 Abort (core dumped)

 i rebuilt the ports index by going to /usr/ports and doing make index,
 but i still get this same deal.

 whats up?

It helps if you read /usr/ports/UPDATING first :).

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


Re: segmentation fault

2004-11-20 Thread Kris Kennaway
On Sat, Nov 20, 2004 at 02:39:50PM -0500, Steel City Phantom wrote:
 i am trying to run a portupgrade and have a problem.  portupgrade says i 
 have a stale dependency and need to fix it with pkgdb, when i run that, 
 i get this
 
 guinness# pkgdb -F
 ---  Checking the package registry database
 Stale dependency: php4-4.3.5_7 - apache-1.3.29_3 (www/apache13):
 [Failed `Inappropriate file type or format'] [Updating the portsdb 
 format:bdb1_btree in /usr/ports ... - 11973 port entries found 
 .1000.2000.3000.4000.5000/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:587:
  
 [BUG] Segmentation fault
 ruby 1.8.2 (2004-07-29) [i386-freebsd4]
 
 Abort (core dumped)
 
 i rebuilt the ports index by going to /usr/ports and doing make index, 
 but i still get this same deal.
 
 whats up?

You need to get into the habit of 

1) Searching the archives before asking questions

2) Reading /usr/ports/UPDATING after every cvsup.

Kris


pgpgEfs7gYNnM.pgp
Description: PGP signature


Re: Lost am I (FreeBSD4.10)

2004-11-20 Thread Kevin D. Kinsey, DaleCo, S.P.
Matthew Seaman wrote:
On Fri, Nov 19, 2004 at 11:19:05PM -0500, gazwacker the kazmaster wrote:
 

Annoyed am I. For mine computer hath been tampered upon by a fool
which hath deleted mine /usr/share folder. I have the
installation CD, now how would I re-install my purloined portfolio?
(If no one knows how to do that, a copy of the /usr/share/misc/termcap file would suffice)
   

Grab the system sources via cvsup, and do a 'make world' cycle as
described here:
   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html
and here
   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
That will reinstall the contents of /usr/share along with all of the
rest of the system -- sure, it's a sledge hammer, but it will crack
this nut very effectively.  Nb. you should always compile a new kernel
to go with the new system -- having kernel and world out of synch
tends to cause a number of oddities of behaviour in the system.
Cheers,
	Matthew
 

Lo!  A large hammer indeed.
Might not he simply changeth to /usr/src/share (if he indeed hath
such) and typest make install as root?
Kevin Kinsey
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Major problem with Gnome's GDM

2004-11-20 Thread Cam
I'm running Gnome 2.8 with the gdm installed and configured to execute 
at startup.  The problem is that my keyboard doesn't work when It gets 
to the gdm.  Mouse is fine, and keyboard works at the command line, but 
when It gets there, it doesnt function.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


PHP portupgrade error

2004-11-20 Thread Robert Fitzpatrick
I am getting this error when trying to do a portupgrade of php-4.3.9
from 4.3.7, actually at this point I have PHP uninstalled. Can someone
tell me if they know what this refers to?

/usr/ports/lang/php4/work/php-4.3.9/ext/standard/file.c:119:21:
fnmatch.h: No such file or directory
/usr/ports/lang/php4/work/php-4.3.9/ext/standard/file.c: In function
`zm_startup_file':
/usr/ports/lang/php4/work/php-4.3.9/ext/standard/file.c:205: error:
`FNM_NOESCAPE' undeclared (first use in this function)
/usr/ports/lang/php4/work/php-4.3.9/ext/standard/file.c:205: error:
(Each undeclared identifier is reported only once
/usr/ports/lang/php4/work/php-4.3.9/ext/standard/file.c:205: error: for
each function it appears in.)
/usr/ports/lang/php4/work/php-4.3.9/ext/standard/file.c:206: error:
`FNM_PATHNAME' undeclared (first use in this function)
/usr/ports/lang/php4/work/php-4.3.9/ext/standard/file.c:207: error:
`FNM_PERIOD' undeclared (first use in this function)
*** Error code 1

Stop in /usr/ports/lang/php4/work/php-4.3.9.
*** Error code 1

Stop in /usr/ports/lang/php4.

-- 
Robert

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


Re: FluxBox??

2004-11-20 Thread Eric Schuele
Danny Browne wrote:
Just came across fluxbox window manager. Installed it, and followed the 
instructions (replacing exec gnome-session  .xinitrc)
but how does fluxbox work??
is it suppossed to work with gnome or what?
Fluxbox is just another window manager.  Based on some Blackbox code. 
Many new features. There is gnome app support, kde as well.  Very nice.

Take a look at http://www.fluxbox.org
saw some fluxbox themes that i really liked so i wanted to give it a try.

Danny Browne

_
Sign up for eircom broadband now and get a free two month trial.*
Phone 1850 73 00 73 or visit http://home.eircom.net/broadbandoffer
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

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


Re: nvidia driver install-unable to read seeprom

2004-11-20 Thread Louis LeBlanc
On 11/20/04 03:16 PM, Stephen L. Martin sat at the `puter and typed:
 On Thu, Nov 18, 2004 at 11:33:10PM -0500, Louis LeBlanc wrote:
  On 11/18/04 10:42 PM, Stephen L. Martin sat at the `puter and typed:
   Hello,
   
   I am trying to install the nvidia-driver (1.0.6113_2) on
   5.3-RELEASE. The installation fails and locks the computer, what
   looks like, right at the end. This is what happens:
   
   Install -o root -g wheel -m 555 nvidia.ko /boot/modules
   kldxref /boot/modules
   === lib
   === lib/GL
   === lib/libnvidia-tls
   === lib/libGLcore
   === lib/libXvMCNVIDIA
   === lib/compat
   === lib/compat/libGL
   === lib/compat/libnvidia-tls
   === lib/compat/libGLcore
   === x11
   === x11/driver
   === x11/extension
   === etc
   === doc
   ahd1: Adaptec 39320 Ultra320 SCSI adapter mem 0-0x1fff at device
   10.1 on pci0 Unable to read SEEPROM
   
   At this point the whole machine is locked...can't even ping it...and
   this happens every time I try the install. Everything else runs
   fine...only this install is causing problems.
   
   Here's some relevant dmesg output:
   
   da0 at ahd0 bus 0 target 0 lun 0
   da0: MAXTOR ATLAS10K4_36SCA DFL0 Fixed Direct Access SCSI-3 device
   da0: 160.000MB/s transfers (80.000MHz, offset 127, 16bit), Tagged
   Queueing Enabled
   da0: 35074MB (71833096 512 byte sectors: 255H 63S/T 4471C)
   ahd0: Adaptec 39320 Ultra320 SCSI adapter port
   0xed00-0xedff,0xe000-0xe0ff mem
0xfe40-0xfe401fff irq 16 at device 10.0 on pci0
   ahd0: [GIANT-LOCKED]
   ahd1: Adaptec 39320 Ultra320 SCSI adapter at device 10.1 on pci0
   device_attach: ahd1 attach returned 12
   da0 at ahd0 bus 0 target 0 lun 0
   
   And it's an Asus a7v880 board.
   
   The only strange thing I see in here is the attach returned 12. In
   the handbook it says to try adding
   hw.pci.allow_unsupported_io_range=1, but it looks like this was
   taken out in 5.3
   
   Anything else to try?...Any more info needed?
  
  Am I missing the video card you have?  That would be a fairly
  important bit of info. :)
  
  Also, do you already have Xorg or XFree86 running?
  What does 'Xorg -configure' say the card is? - run that as root and it
  will create xorg.conf.new in /root.  That will give an idea what the
  card claims to be.
 
 Whoops...so I did...it's a Nvidia MX440-SE Dual Head AGP card. I do have
 Xorg and KDE both working fine...I need the nvidia driver for the dual
 monitor support.
 
 Also, I've found something else that causes the problem...when I try and
 do a kldload snd_driver the same symptoms happen (except a new mem
 address):
 
 ahd1: Adaptec 39320 Ultra320 SCSI adapter mem 0-0x1fff at device 10.1
 on pci0 Unable to read SEEPROM
 
 My first guess is it looks like some resource problem?...since it occurs
 when I load hardware modules. So I shut down, and removed my pci
 firewire card and disabled my on-board nic and sound in the bios. Upon
 reboot I received a message: Kernel trap 12 with interrupts disabled.
 It is now frozen and I have to do a hard shut down. When I re-add them
 to the system it boots up fine??? I've rinsed and repeated several
 times with the same results 
 
 Per the ahd(4) manual page, I've also compiled in the debugging code,
 but I haven't seen any debugging info yet

Ok, how about the card config in your xorg.conf?  I found with my
GeForce FX 5200, the same card name and manufacturer worked just fine,
with just the different driver spec and other driver specific configs
like TwinView, etc.

Unfortunately, the unable to read SEEPROM message sounds like the
chip scan routine is having trouble reading the cards manufacturer
info off the chip.  Maybe it means that you're specifying a BusID that
isn't correct?  Have you run scanpci yet?  It gives me the exact
string and I need for my boardname config:

pci bus 0x0001 cardnum 0x00 function 0x00: vendor 0x10de device 0x0322
 nVidia Corporation NV34 [GeForce FX 5200]

Just for yuks, here's my card config for the twinview setup - make
sure you modify at least the BoardName and if need be, the BusID:

Section Device
 Identifier NV AGP TwinView
 VendorName  nVidia Corporation
 Driver nvidia
 # update this with the PCI id of your card.  Consult the output
 # of the 'scanpci' command. The  BusID is usually optional when
 # only using one graphics card.
 BusID   PCI:1:0:0
 BoardName   NV34 [GeForce FX 5200]

 # These are extras, you may want to do without these at first.
 Option NoLogo True
 Option RenderAccel True
 Option NvAGP 0
 Option HWCursor True
 Option CursorShadow True

 # twinview setup
 # make sure the sync/refresh rates and modes match your system
 Option TwinView
 Option SecondMonitorHorizSync 31-80
 Option SecondMonitorVertRefresh   56-75
 Option TwinViewOrientationRightOf
 Option MetaModes  1280x1024,1280x1024; 1024x768,1024x768
 Option ConnectedMonitor   crt,crt
EndSection

There is 

Ogle Question

2004-11-20 Thread RL
Hi, I just installed ogle-gui and when I try to open up a dvd or play
it, I get such things as DVDSetDVDRoot: Root not set  That is both
when I run it as root and as a regular user. And therefore I cannot
play dvd's.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


install: which cdrom?

2004-11-20 Thread Chuck Robey
I'm getting ready to do my last install (out of 3) ... on the sparc64 this
time, but I'd like to kknow one thing ... the instructions on cdrom
booting keep on referring only to the cdrom although there are 3
different cdroms that I *think* are bootable... there's the miniinst, the
disk1, and the bootonly ... heck, if the disc-2 is bootable (I tihnk it's
the live filesystem, so I doubt that one is) then there's even 4 choices
.. and I don't know which one the instructions are referring to.

The sparc-64 instructions say, after giving the 'boot cdrom' inf, to put
in the cdrom, but which of the 3 do they mean?

I know I tend to read fast (not speedy, spottily), and I hate friendly
docs (FreeBSD's are soem of the web's best, less friendly and full of real
info) but I do tend to skim a bit, so maybe I've missed it, but I don't
think so.  Can someone help me, please?


Chuck Robey | Interests include C  Java programming, FreeBSD,
[EMAIL PROTECTED]   | electronics, communications, and SF/Fantasy.

New Year's Resolution:  I will not sphroxify gullible people into looking up
fictitious words in the dictionary (on the wall at my old fraternity,
Signa Phi Nothing).

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


Re: OT: Powerbook Problem.

2004-11-20 Thread Nagilum
Reboot the machine, before the OS loads press the 'c' key to boot from 
CD-Rom or press the option key to have Openfirmware scan for bootable 
devices and then you can select from which to boot via mouse.
See: http://www.jacsoft.co.nz/Mac_Keys.htm
for more..

pixiedave wrote:
Hope someone can help!  When I boot my powerbook, my desktop image
loads, and then the apple bar starts to load, then the rainbow wheel
keeps spinning, and the apple bar keeps flashing on and off as iif it
is trying to load.  A disc will eject with the eject button, and the
volume buttons work including the display, but the os never finishes
loading.  So I want to reinstall, but how do i get the g4 to boot from
the install dvd without having the machine up and running, installing
the disc, choosing install and rebooting?  I imagine there is a key
sequence, but cant find it
 

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


Re: host name lookup failure under 4.9

2004-11-20 Thread Emil Khatib
I've found finally the problem: I've been using natd without enabling
IPDIVERT in the kernel. I gess that was the problem, as everything now
works properly. Thnaks for your help


On Sun, 14 Nov 2004 09:30:59 -0500, Chuck Swiger [EMAIL PROTECTED] wrote:
 Emil Khatib wrote:
 [ ... ]
   The firewall rules are:
 
  pass udp from me to any 53 keep-state
  pass tcp from me to any 20 keep-state
  pass tcp from me to any 21 keep-state
  pass tcp from me to any 80 keep-state
 
  So I want to allow DNS, FTP and HTTP.
 
 Your rules aren't enough to work right; at the very least, you need a
 check-state rule to permit return traffic to the connections you approve of
 via the keep-state keyword.  I suggest you examine /etc/rc.firewall carefully
 and look at the example rulesets there.
 
 Also, while you can use IPFW and natd in conjunction with PPP via the tun0
 interface, doing so is more complicated than need be since PPP already has
 firewall and NAT'ing capabilities built-in.  Using them directly via your
 ppp.conf might be easier.
 
 --
 -Chuck

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


NEW: cannot ssh to my computer

2004-11-20 Thread Ivan Georgiev
Hello,

Please excuse my re-posting of the same problem but, simply, I have no clue 
how to fix my account. Below you can see the previous postings. What puzzles 
me is that if I create a new user this user can connect trough ssh with no 
problems. Only my account is rejected.

Thank you for your help,
Ivan


 Ivan Georgiev [EMAIL PROTECTED] writes:
  On Thursday 18 November 2004 07:08 pm, Lowell Gilbert wrote:
   Ivan Georgiev [EMAIL PROTECTED] writes:
On Thursday 18 November 2004 06:00 pm, Sebastian Holmqvist wrote:
 On Thu, 18 Nov 2004 17:44:05 -0500, Ivan Georgiev [EMAIL PROTECTED]
 
  wrote:
  On Thursday 18 November 2004 08:42 am, Sebastian Holmqvist wrote:
   On Thu, 18 Nov 2004 13:26:05 +, Daniel Bye
  
   [EMAIL PROTECTED] wrote:
On Thu, Nov 18, 2004 at 07:49:03AM -0500, Ivan Georgiev wrote:
 I changed PasswordAuthentication to 'yes' and this time it
 asks me 6 times for my password (3 times beginning with
 Password:
   
You can disable these first three by changing
ChallengeResponseAuthentication to no.
   
 and another 3 times with Password for
 [EMAIL PROTECTED]) and rejects me again with the same
 message from sshd.
   
Sounds like a silly question, I know, but are you typing your
password correctly?  For example, is your local keymap
sending the right characters to the server?
   
 Adding more verbosity didn't help me to understand the
 problem. I also noticed that my ida_dsa.pub key ends with
 ivan@ . Usualy I have seen it ending with
 [EMAIL PROTECTED]. Is this a problem?
   
No, I don't think so.  It is just a convenient identifier for
human consumption - it's somewhat easier to use the last
little bit of the key than to try and remember the whole
keyblock!
   
Have you copied ida_dsa.pub from the client machine to your
~/.ssh/authorized_keys file on the server?
   
   
   
Dan
   
--
Daniel Bye
   
PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc
PGP Key fingerprint: 3B9D 8BBB EB03 BA83 5DB4 3B88 86FC F03A
90A1 BE8F _ ASCII ribbon campaign ( ) - against HTML, vCards
and  X - proprietary attachments in e-mail / \
  
   Sure you have changed your keymap?
  
   And sorry if I misunderstood, are you trying to ssh to the
   computer you're sitting on?
 
  I do not think I have done any changes to the keymap. And, yes, I
  am trying to connect to the computer I am sitting on plus have
  tried to connect from my office computer. In both cases no luck.
 
  I will appreciate if you can help me to resolve the issue.
 
  Thanks,
 
 
  Ivan

 When you connect from the office-computer, what happends?
   
As I said - rejects with Permission denied and a message the log:
sshd[25413]: Failed password for ivan from MY_OFFICE_COMPUTER_ADDRESS
port 44517 ssh2
  
   Try ssh -v (and if that doesn't tell you enough, ssh -vv) and look
   at the debug output when it asks for and rejects the password.  If that
   doesn't give you more of a clue, try doing the equivalent with sshd.
 
  I have tried that already but cannot understand where the problem is.
  Here is small part of the sshd log:
  
  debug1: userauth-request for user ivan service ssh-connection method
  password debug1: attempt 5 failures 4
  debug2: input_userauth_request: try method password
  debug3: mm_auth_password entering
  debug3: mm_request_send entering: type 10
  debug3: monitor_read: checking request 10
  debug3: mm_answer_authpassword: sending result 1
  debug3: mm_request_send entering: type 11
  debug3: mm_request_receive_expect entering: type 46
  debug3: mm_request_receive entering
  debug3: mm_auth_password: waiting for MONITOR_ANS_AUTHPASSWORD
  debug3: mm_request_receive_expect entering: type 11
  debug3: mm_request_receive entering
  debug3: mm_auth_password: user authenticated
  debug3: mm_do_pam_account entering
  debug3: mm_request_send entering: type 46
  debug3: mm_request_send entering: type 47
  Failed password for ivan from XXX.XXX.XXX.XXX port 55958 ssh2
  debug3: mm_request_receive entering
  debug3: mm_request_receive_expect entering: type 47
  debug3: mm_request_receive entering
  debug3: mm_do_pam_account returning 0
  Failed password for ivan from XXX.XXX.XXX.XXX port 55958 ssh2
  Connection closed by XXX.XXX.XXX.XXX
  debug1: do_cleanup
  debug1: PAM: cleanup
  debug3: PAM: sshpam_thread_cleanup entering
  debug1: do_cleanup
  debug1: PAM: cleanup
  debug3: PAM: sshpam_thread_cleanup entering
  
 
  and from ssh -vvv
  
  [EMAIL PROTECTED]'s password:
  debug3: packet_send2: adding 64 (len 59 padlen 5 extra_pad 64)
  debug2: we sent a password packet, wait for reply
  debug1: Authentications that can continue: 

pf qlimit ignored?

2004-11-20 Thread Nagilum
Hi,
Playing around with pf I noticed that my queues are still only 50 
packets large, although my pf.conf says:

altq on $ext_if priq bandwidth 090Kb qlimit 100 queue { q_def, q_pri q_mid }
Did I miss something?
Kind regards,
Alex,

pfctl -v -v -s queue:
queue q_pri priority 7 priq( red ecn )
 [ pkts:112  bytes:   6212  dropped pkts:  0 
bytes:  0 ]
 [ qlength:   0/ 50 ]
queue q_mid priority 3 priq( red ecn )
 [ pkts:102  bytes:  14763  dropped pkts:  0 
bytes:  0 ]
 [ qlength:   0/ 50 ]
queue q_def priority 0 priq( red ecn default )
 [ pkts:  53092  bytes:   18787909  dropped pkts:   3247 bytes: 
1431796 ]
 [ qlength:   6/ 50 ]

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


Re: NEW: cannot ssh to my computer

2004-11-20 Thread Rob
Ivan Georgiev wrote:
Hello,
Please excuse my re-posting of the same problem but, simply, I have no clue 
how to fix my account. Below you can see the previous postings. What puzzles 
me is that if I create a new user this user can connect trough ssh with no 
problems. Only my account is rejected.
As far as I know, ssh stores the user's ssh files in ~/.ssh/.
How about moving this .ssh out of the way by mv .ssh ssh_copy
and try again? If that solves your problem, you should inspect
the files in that ssh directory.
Rob.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: NEW: cannot ssh to my computer

2004-11-20 Thread Ivan Georgiev
On Saturday 20 November 2004 07:51 pm, Rob wrote:
 Ivan Georgiev wrote:
  Hello,
 
  Please excuse my re-posting of the same problem but, simply, I have no
  clue how to fix my account. Below you can see the previous postings. What
  puzzles me is that if I create a new user this user can connect trough
  ssh with no problems. Only my account is rejected.

 As far as I know, ssh stores the user's ssh files in ~/.ssh/.
 How about moving this .ssh out of the way by mv .ssh ssh_copy
 and try again? If that solves your problem, you should inspect
 the files in that ssh directory.

 Rob.

I already did that, i.e. removed my ~/.ssh directory and tried again. 
Unfortunately this didn't solve the problem.

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


RE: NEW: cannot ssh to my computer - Found word(s) XXX in the Text body

2004-11-20 Thread Michael Smith


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ivan Georgiev
Sent: Saturday, November 20, 2004 4:21 PM
To: [EMAIL PROTECTED]
Subject: [KEYWORD GFI SPAM] - NEW: cannot ssh to my computer - Found
word(s) XXX in the Text body

Hello,

Please excuse my re-posting of the same problem but, simply, I have no
clue 
how to fix my account. Below you can see the previous postings. What
puzzles 
me is that if I create a new user this user can connect trough ssh with
no 
problems. Only my account is rejected.

Thank you for your help,
Ivan


-

Hello Ivan:

Have you confirmed that all of your local files have the correct
permissions *and* ownership?  Are you the appropriate owner of your own
directory?

Mike

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


Re: video guru needed - installing driver for ATI 3D Rage IIC AGP

2004-11-20 Thread Kevin D. Kinsey, DaleCo, S.P.
Osvaldito wrote:
I need ATI 3D-Rage II C
 Osvbaldo
 


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


Sendmail, simple mail list problem

2004-11-20 Thread Alan Curtis
I have set up sendmail to use my ISP outgoing mail server as a relay 
for mail from my server using the instructions I found here

http://www.leo.org/~barner/freebsd/articles/mailsetup/article.html
I use dyndns so that everyone can find myserver (as 
myserver.dyndns.net). I can send and receive mail on my server.

I am also using a simple mailing list with about 15 subscribers that I 
set up using a mail alias
(i.e. with the line 'mylist: : include:/usr/home/alan/lists/mylist.txt')

I can send mail to anyone on the list by sending mail to 
[EMAIL PROTECTED] from any of my email accounts and from my 
account at my ISP (call it [EMAIL PROTECTED]). Other users have also 
successfully sent mail to the list. However, a subset of the users also 
use my ISP and their mail to the list gets bounced by the ISP server.

The error message in the bounced email is
553 You are not authorized to send mail as [EMAIL PROTECTED]
501 5.6.0 Data format error
So [EMAIL PROTECTED] and [EMAIL PROTECTED] can send mail 
to the list but not [EMAIL PROTECTED].

Any suggestions on how to fix this?
Thanks
Alan
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: NEW: cannot ssh to my computer

2004-11-20 Thread Ivan Georgiev
 Hello,

 Please excuse my re-posting of the same problem but, simply, I have no
 clue
 how to fix my account. Below you can see the previous postings. What
 puzzles
 me is that if I create a new user this user can connect trough ssh with
 no
 problems. Only my account is rejected.

 Thank you for your help,
 Ivan


 -

 Hello Ivan:

 Have you confirmed that all of your local files have the correct
 permissions *and* ownership?  Are you the appropriate owner of your own
 directory?

 Mike

Hi Mike,

Yes, all of the files/directories in my home directory have the right 
ownership. I do not know what you mean by right permission since each type 
of file can have different permissions. If you meant the permissions in my 
~/.ssh directory they are:

bash-2.05b$ ll
total 234
drwx--   2 ivan  ivan 512 Nov 19 22:05 .
drwxr-xr-x  28 ivan  ivan  198656 Nov 20 21:04 ..
-rw-r--r--   1 ivan  ivan 595 Nov 19 22:05 authorized_keys
-rw---   1 ivan  ivan 668 Nov 19 22:00 id_dsa
-rw-r--r--   1 ivan  ivan 595 Nov 19 22:00 id_dsa.pub
-rw-r--r--   1 ivan  ivan1817 Nov 20 14:20 known_hosts

Another interesting thing that I missed before in var/log/messages is :

sshd[45489]: error: PAM: success for ivan from 


while in /var/log/auth.log I see:
sshd[45489]: Failed keyboard-interactive/pam for ivan from ... port 56269 ssh2

Thanks for your help,
Ivan





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


Re: Sendmail, simple mail list problem

2004-11-20 Thread Charlie Schluting
Alan Curtis wrote:
553 You are not authorized to send mail as [EMAIL PROTECTED]
501 5.6.0 Data format error
So [EMAIL PROTECTED] and [EMAIL PROTECTED] can send mail 
to the list but not [EMAIL PROTECTED].

Any suggestions on how to fix this?
Sounds like your ISP published SPF records, and sites that do SPF 
checking are blocking.
This shouldn't happen if you're sending all mail through your ISP's mail 
server... unless you're ..well I don't know.

Not enough info.
Use real domain names in your questions.
This isn't a freebsd question, though.
-Charlie.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Natd manpage interpretation problem . . .

2004-11-20 Thread Louis LeBlanc
I know similar questions have been asked in the past, and I'm sure the
natd manpage has it described quite clearly, but I just can't seem to
figure this out.

I'm trying to automagically route all udp ports above 1023 coming from
a network block to a machine on the internal network.

My understanding of the natd manpage is that I simply need to put a
line like this in /etc/natd.conf:

redirect_port udp internalIP:1024-65535 remoteIP/xx:1024-65535

What am I doing wrong here?

TIA
Lou
-- 
Louis LeBlanc   [EMAIL PROTECTED]
Fully Funded Hobbyist, KeySlapper Extrordinaire :)
http://www.keyslapper.org ԿԬ

QOTD:
  Y'know how s'm people treat th'r body like a TEMPLE?
  Well, I treat mine like 'n AMUSEMENT PARK...  S'great...
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Thunderbird 0.9_2 Stalls at Startup

2004-11-20 Thread William Bloom
I upgraded my FreeBSD/GNOME desktop from 5.2.1 to 5.3 early last week, 
refreshed 
my ports collection, upgraded from XFree86 to Xorg.  I added the recommended 
libc_r/libpthread entries into libmap.conf for the sake of the already existing 
ports that had some library references to libc_r.  All was well so far, no 
major 
problems.  I upgraded a few ports, including firefox.  Again, this all worked 
out albeit I was briefly stymied by the firefox Xvfb extension/theme 
auto-registration issues that have been the cause of a few other postings in 
this list.

But my luck turned sour when I upgraded my thunderbird port to 0.9_2.  The new 
thunderbird would start, seemingly display the IMAP authentication panel 
briefly, almost too fast to see, then churn its busy cursor until I killed it. 
This behavior was repeatable even when I renamed my ~/.thunderbird directory to 
give thunderbird a clean slate, so the problem wasn't in my .thunderbird 
contents.

Interestingly, the package from ftp.freebsd.org (5-stable) installed and ran 
fine.  Being concerned that something might be fundamentally wrong with my 
desktop build environment, I looked at the differences between the downloaded 
package and my build.

What I discovered is that my own build of thunderbird had created a GNOME 
component during the build (libmozgnome.so), which was installed in...

   /usr/X11R6/lib/thunderbird/lib/thunderbird-0.9/components/

The downloaded package did -not- have this component.  Experimentally, I 
deleted 
libmozgnome.so and found that the oddball startup-and-stall problem vanished 
and 
thunderbird has been working just fine ever since.

I know I'm working with a thunderbird that's had a revision or so since the 
package was built.  I see from a brief perusal of the sources that the 
libmozgnome.so component is only built under certain conditions (certain GNOME 
libraries/features are checked and must all be present).  I'm guessing that the 
downloadable package must either been built in the absence of one or more of 
these libraries -or- the port revision from which that package was built had 
not 
enabled GNOME component support.  My GNOME ports were last brought up-to-date 
about six weeks ago.   Also, I notice that the libmozgnome.so component 
(toolkit/components/gnome in the thunderbird mozilla source tree) is fairly 
new; 
it showed up in version 0.8 (I never used that version).

Anyone else seen this problem?

Looks like the purpose of libmozgnome.so is to add support for GNOME VFS and 
Gconf.


Bill
-- 
William Bloom [EMAIL PROTECTED] (602) 604-3100
Eldorado Computing, Inc.  5353 North 16th Street, Suite 400
Phoenix, Az 85016  http://www.eldocomp.com

-- CONFIDENTIALITY NOTICE --

This message is intended for the sole use of the individual and entity to whom 
it is addressed, and may contain information that is privileged, confidential 
and exempt from disclosure under applicable law. If you are not the intended 
addressee, nor authorized to receive for the intended addressee, you are hereby 
notified that you may not use, copy, disclose or distribute to anyone the 
message or any information contained in the message. If you have received this 
message in error, please immediately advise the sender by reply email, and 
delete the message. Thank you.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Natd manpage interpretation problem . . .

2004-11-20 Thread Matt Emmerton
 I know similar questions have been asked in the past, and I'm sure the
 natd manpage has it described quite clearly, but I just can't seem to
 figure this out.

 I'm trying to automagically route all udp ports above 1023 coming from
 a network block to a machine on the internal network.

 My understanding of the natd manpage is that I simply need to put a
 line like this in /etc/natd.conf:

 redirect_port udp internalIP:1024-65535 remoteIP/xx:1024-65535

 What am I doing wrong here?

Based on my reading of the natd man pages, all of the redirect_xxx options
only work on single IPs -- not netblocks.
If you want to redirect traffic for a specific netblock, you need to have a
rule for every IP in the block.

--
Matt Emmerton

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


Re: PHP portupgrade error

2004-11-20 Thread Shantanoo Mahajan
+++ Robert Fitzpatrick [freebsd] [20-11-04 17:08 -0500]:
| I am getting this error when trying to do a portupgrade of php-4.3.9
| from 4.3.7, actually at this point I have PHP uninstalled. Can someone
| tell me if they know what this refers to?

'man portupgrade' and have a look at -N.

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


RE: NEW: cannot ssh to my computer

2004-11-20 Thread Michael Smith


-Original Message-
From: Ivan Georgiev [mailto:[EMAIL PROTECTED] 
Sent: Saturday, November 20, 2004 6:11 PM
To: [EMAIL PROTECTED]
Cc: Michael Smith
Subject: Re: NEW: cannot ssh to my computer

 Hello,

 Please excuse my re-posting of the same problem but, simply, I have no
 clue
 how to fix my account. Below you can see the previous postings. What
 puzzles
 me is that if I create a new user this user can connect trough ssh
with
 no
 problems. Only my account is rejected.

 Thank you for your help,
 Ivan


 -

 Hello Ivan:

 Have you confirmed that all of your local files have the correct
 permissions *and* ownership?  Are you the appropriate owner of your
own
 directory?

 Mike

Hi Mike,

Yes, all of the files/directories in my home directory have the right 
ownership. I do not know what you mean by right permission since each
type 
of file can have different permissions. If you meant the permissions in
my 
~/.ssh directory they are:

bash-2.05b$ ll
total 234
drwx--   2 ivan  ivan 512 Nov 19 22:05 .
drwxr-xr-x  28 ivan  ivan  198656 Nov 20 21:04 ..
-rw-r--r--   1 ivan  ivan 595 Nov 19 22:05 authorized_keys
-rw---   1 ivan  ivan 668 Nov 19 22:00 id_dsa
-rw-r--r--   1 ivan  ivan 595 Nov 19 22:00 id_dsa.pub
-rw-r--r--   1 ivan  ivan1817 Nov 20 14:20 known_hosts

Another interesting thing that I missed before in var/log/messages is :

sshd[45489]: error: PAM: success for ivan from 


while in /var/log/auth.log I see:
sshd[45489]: Failed keyboard-interactive/pam for ivan from ... port
56269 ssh2

Thanks for your help,
Ivan

-

This may be a stretch but I know that SSH can be quite finicky about
directory permissions.  Try setting your .ssh directory to 0700.  I
think the go+x on the directory itself may be causing you problems.

Mike





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


Re: User CD Mount

2004-11-20 Thread jason
Graham Bentley wrote:
Hi All,
I am trying to get permission to mount CD's when logged in non root
Following the handbook advice I have :-
As root set the sysctl variable vfs.usermount to 1.
# sysctl -w vfs.usermount=1
Added the line vfs.usermount=1 to the file /etc/sysctl.conf
Changed group perms on devs
# chgrp operator /dev/acd0
# chgrp operator /dev/acd1
Changed access perms
# chmod 640 /dev/acd0
# chmod 640 /dev/acd1
Changed group perms on the mount points
# chgrp operator /cdrom
# chgrp operator /cdrom1
Added myself to the operator group in /etc/group
operator:*:5:root,graham
However non of this worked - I could still not mount as non root
even though I was in the operator group.
Next I installed the sudo package and added my name to the list 
of adminsitrators. Whilst this had the desired outcome I still wasnt 
happy that I couldnt get this working without using sudo :(

Finally I change the owner on the mount point to my username
and that worked fine (without sudo)
However I still do not think I have done the right thing (being 
a bit of a noob :) as I have noticed that when I have mounted
the cd, an ls reveals the ownership as root:wheel - when I unmount
it is back to graham:operator ?

(gkrellm also always reports the devices as being busy even though 
I specified exactly the same mount command that works from cl )

This probably highlights my lack of understanding of permissions
etc so I was wondering if anyone could guide me in the path
to enlightenment ?
Thanks !!!
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
 

If I am not mistaken, chgrp and chmod are not sticky on /dev stuff, you 
lose it on reboot for example.  These must be set in a conf file to be 
permanent.  Your user account has to own the mount point also, so but 
something like cd-rom or acd0 in the top level of your home dir for easy 
access. 

Here is what I do to use the cd as a non root user.
I added a group called cd_access that could access and mount cd drives 
and made my self a group member. I set vfs.usermount=1 under 
sysctl.config.  In devfs.conf I added :

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


BTX halted on backup server

2004-11-20 Thread Jeffrey S. Kaye
We have two servers, one mirrors the other.  The backup server showed 
the following a couple days ago.  It's still down.  Any ideas?  The 
primary is working just fine.
-jk

FreeBSD/i386 bootstrap loader, Revision 0.8
([EMAIL PROTECTED] mailto:[EMAIL PROTECTED], 
Thu Apr 3 08:41:45 GMT 2003)
Loading /boot/defaults/loader.conf
/kernel text=0x171368 data=0x2342c+0x1bd08
\
Hit [Enter] to boot immediately, or any other key for command prompt.
Booting [kernel]...
-
int=000d  err=  efl=00010093   eip=002b200a
eax=0011e2e0   ebx=  ecx=0003   edx=000274c0
esi=   edi=0003841c   ebp=00094a7d   esp=0009ea3f
cs=0008   ds=0010   es=0010   fs=0010   gs=0010   ss=0010
cs:eip=6f 6e 73 6f 6c 65 3d 76-69 64 63 6f 6e 73 6f 6c
ss:esp=00 00 00 00 00 47 95 00-00 00 00 00 80 04 00 20
BTX halted
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Post screw-up recovery - invisible ports?

2004-11-20 Thread Andrew Robinson
Hi everyone,

after a botched upgrade from 5.2.1 to 5.3, which became a
reinstallation, I have the following dilemma.  I have about 300 ports
installed, but only a few of them are identified by my port
maintenance apparatus.  For example, if I do portversion, it finds the
objects in

/var/db/pkg

but I can run programs that are not there.  Presumably the ones there
are those that I have installed since my upgrade.

Is there any easy way around this problem?  I suppose that what I'm
asking is, is there any other location in which installed ports are
identified?  I assume that I ought to reinstall them anyway.

Thanks,

Andrew
-- 
Andrew Robinson  Ph: 208 885 7115
Department of Forest Resources   Fa: 208 885 6226
University of Idaho  E : [EMAIL PROTECTED]
PO Box 441133W : http://www.uidaho.edu/~andrewr
Moscow ID 83843  Or: http://www.biometrics.uidaho.edu
No statement above necessarily represents my employer's opinion.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Current Demographics Anaysis Workshop

2004-11-20 Thread Berkana Consulting

   Our Current Demographic Analysis Workshop
http://www.berkana-consulting.com is a fast paced, one day workshopdesigned 
to provide both you and your organization with the tools to
   mine = comprehensive demographic data on your community.  Beyond the
   2000 = Decennial Census there is a wealth of current information
   available. Our = philosophy is to empower you to independently access
   this demographic = data.



   This is a basic, technical workshop that will teach you how toaccess, 
analyze, and map data using the 2003 American Community Survey
   = and the annual Current Population Survey. There is a mixture of
   lecture = and hands-on work with one student per computer terminal.
   Each = student will learn how to present demographic data in
   compelling new = ways.



   The workshop is designed for human service providers, neighborhood
activists, grant writers, planners or anyone who would like to easily
   = look up and analyze demographic characteristics of populations and
neighborhoods.  Through this workshop students can gain uniqueinsights into 
their communities and express this information in aquantitative format.  It 
is customized for each city it is taught inand materials are updated 
weekly, so you will always have the mostcurrent version taught.



   You can find more information at http://www.berkana-consulting.comand 
register today for a workshop in a city near you!



   Berkana Consulting

   mailto://[EMAIL PROTECTED]

   http://www.berkana-consulting.com



   To unsubscribe, please place in the subject unsubscribe = and mail
   to mailto://[EMAIL PROTECTED]
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.289 / Virus Database: 265.3.1 - Release Date: 11/15/2004
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]