FBSD 8: custom kernel config ends boot at mountroot. Plz. help!

2010-12-19 Thread Rob

Hi,

My system boots fine with the GENERIC kernel on FreeBSD 8.0

I made a custom kernel, but the boot process then ends with the

mountroot

error and prompt.

Apparently something is wrong with my kernel config file.

Can somebody check it below and tell me what is wrong with my kernel config 
file? Especially the GEOM_PART_* at the end might be the culprit, although this 
configuration used to work for 7.3.

Thank you!

Rob.

# My kernel config file:
cpuI686_CPU
identMYKERNEL
options SCHED_ULE# ULE scheduler
options PREEMPTION# Enable kernel thread preemption
options INET# InterNETworking
options INET6# IPv6 communications protocols
options SCTP# Stream Control Transmission Protocol
options FFS# Berkeley Fast Filesystem
options SOFTUPDATES# Enable FFS soft updates support
options UFS_ACL# Support for access control lists
options UFS_DIRHASH# Improve performance on big directories
options COMPAT_FREEBSD7# Compatible with FreeBSD7
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
devicepci
deviceata
deviceatadisk# ATA disk drives
options ATA_STATIC_ID# Static device numbering
devicescbus# SCSI bus (required for SCSI)
deviceda# Direct Access (disks)
devicepass# Passthrough device (direct SCSI access)
deviceatkbdc# AT keyboard controller
deviceatkbd# AT keyboard
devicepsm# PS/2 mouse
devicevga# VGA video card driver
devicesplash# Splash screen and screen saver support
devicesc
devicepmtimer
deviceloop# Network loopback
deviceether# Ethernet support
devicepty# BSD-style compatibility pseudo ttys
devicemd# Memory disks
devicebpf# Berkeley packet filter
options SC_DISABLE_REBOOT
options DEVICE_POLLING
options HZ=1000
nodevice mem
nodevice io
nodevice uart_ns8250
nooptions GEOM_PART_BSD
nooptions GEOM_PART_EBR
nooptions GEOM_PART_EBR_COMPAT
nooptions GEOM_PART_MBR


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


Re: FBSD 8: custom kernel config ends boot at mountroot. Plz. help!

2010-12-19 Thread perryh
Rob spamref...@yahoo.com wrote:
 My system boots fine with the GENERIC kernel on FreeBSD 8.0
 I made a custom kernel, but the boot process then ends with the
 mountroot
 error and prompt.

One thing to try is entering ? there, to produce a list of
recognized filesystems.  Comparing that list with what you
expected might provide a clue.  Another possibility would
be to compare the dmesg from your kernel with the one from
GENERIC.

 Apparently something is wrong with my kernel config file.

 Can somebody check it below and tell me what is wrong with my
 kernel config file? Especially the GEOM_PART_* at the end might
 be the culprit, although this configuration used to work for 7.3.

Supposing the disk is partitioned with GPT (not with MBR/BSD, which
you appear to be excluding) I see nothing blatantly obvious, but
I am far from an expert in such matters.  It might be worthwhile to
check UPDATING to see if anything rings a bell, and/or compare your
config file with the GENERIC one.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FBSD 8: custom kernel config ends boot at mountroot. Plz. help!

2010-12-19 Thread Frank Shute
On Sun, Dec 19, 2010 at 05:11:58AM -0800, Rob wrote:

 
 Hi,
 
 My system boots fine with the GENERIC kernel on FreeBSD 8.0
 
 I made a custom kernel, but the boot process then ends with the
 
 mountroot
 
 error and prompt.
 
 Apparently something is wrong with my kernel config file.
 
 Can somebody check it below and tell me what is wrong with my kernel config 
 file? Especially the GEOM_PART_* at the end might be the culprit, although 
 this 
 configuration used to work for 7.3.
 
 Thank you!
 
 Rob.
 
 # My kernel config file:
 cpuI686_CPU
 identMYKERNEL
 options SCHED_ULE# ULE scheduler
 options PREEMPTION# Enable kernel thread preemption
 options INET# InterNETworking
 options INET6# IPv6 communications protocols
 options SCTP# Stream Control Transmission Protocol
 options FFS# Berkeley Fast Filesystem
 options SOFTUPDATES# Enable FFS soft updates support
 options UFS_ACL# Support for access control lists
 options UFS_DIRHASH# Improve performance on big directories
 options COMPAT_FREEBSD7# Compatible with FreeBSD7
 options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
 options KBD_INSTALL_CDEV# install a CDEV entry in /dev
 devicepci
 deviceata
 deviceatadisk# ATA disk drives
 options ATA_STATIC_ID# Static device numbering
 devicescbus# SCSI bus (required for SCSI)
 deviceda# Direct Access (disks)
 devicepass# Passthrough device (direct SCSI access)
 deviceatkbdc# AT keyboard controller
 deviceatkbd# AT keyboard
 devicepsm# PS/2 mouse
 devicevga# VGA video card driver
 devicesplash# Splash screen and screen saver support
 devicesc
 devicepmtimer
 deviceloop# Network loopback
 deviceether# Ethernet support
 devicepty# BSD-style compatibility pseudo ttys
 devicemd# Memory disks
 devicebpf# Berkeley packet filter
 options SC_DISABLE_REBOOT
 options DEVICE_POLLING
 options HZ=1000
 nodevice mem
 nodevice io
 nodevice uart_ns8250
 nooptions GEOM_PART_BSD
 nooptions GEOM_PART_EBR
 nooptions GEOM_PART_EBR_COMPAT
 nooptions GEOM_PART_MBR
 

Rob,

If you're going to use a custom kernel, copy GENERIC, edit it and save
it as your kernel conf.

Then when you run into trouble with your custom kernel you can post a
diff(1) between it and GENERIC. Then it's easy to see what you've
enabled/disabled, left-out etc.

As it stands, it takes too much time for people to compare your custom
kernel with GENERIC.


Regards,

-- 

 Frank

 Contact info: http://www.shute.org.uk/misc/contact.html


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


Re: FBSD 8: custom kernel config ends boot at mountroot. Plz. help!

2010-12-19 Thread Warren Block

On Mon, 20 Dec 2010, Frank Shute wrote:


If you're going to use a custom kernel, copy GENERIC, edit it and save
it as your kernel conf.

Then when you run into trouble with your custom kernel you can post a
diff(1) between it and GENERIC. Then it's easy to see what you've
enabled/disabled, left-out etc.


Another option is to include GENERIC in the new config file and use 
nooptions and nodevice to exclude unwanted things.  Then the config file 
is a diff.

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


Re: Hi bsd team! Plz help me!

2007-10-19 Thread Matthias Apitz
El día Friday, October 19, 2007 a las 11:39:42AM +0500, Eldar Velibekov 
escribió:

 Hi BSD team. Thanx for a Great OS! But! i wont use also graphical mode(X -
 system) but i dont wont 1024-768 resolution, i wont 1280 - 800 on my
 laptop(HP 510, CHipset Intel 915GMS family).What i must do???

Asuming that you have installed Xor and KDE:

as root:

# Xorg -configure

this writes the guessed config as $HOME/xorg.conf.new

test it with:

# Xorg -config xorg.conf.new

copy it over to /etc/X11/xorg.conf and do as you (normal user):

% echo exec startkde  ~/.xinitrc
% startx

matthias
-- 
Matthias Apitz
Manager Technical Support - OCLC PICA GmbH
Gruenwalder Weg 28g - 82041 Oberhaching - Germany
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e [EMAIL PROTECTED] - w http://www.oclcpica.org/ http://www.UnixArea.de/
b http://gurucubano.blogspot.com/
OCLC PICA GmbH, Geschaeftsfuehrer: Christine Magin-Weeger, Norbert Weinberger
Sitz der Gesellschaft: Oberhaching, HRB Muenchen: 113261
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Hi bsd team! Plz help me!

2007-10-19 Thread Byung-Hee HWANG
On Fri, 2007-10-19 at 11:39 +0500, Eldar Velibekov wrote:
 Hi BSD team. Thanx for a Great OS! But! i wont use also graphical mode(X -
 system) but i dont wont 1024-768 resolution, i wont 1280 - 800 on my
 laptop(HP 510, CHipset Intel 915GMS family).What i must do???

If you are using GNOME desktop, then you do as following step:

System - Preferences - Screen Resolution - 1280x800 - Apply

That's GNOME Rules: http://www.freebsd.org/gnome/index.html ;;

Sincerely,

-- 
Byung-Hee HWANG [EMAIL PROTECTED]
InZealBomb, Kyungpook National University, KOREA

What I care about is that you obviously don't love me.
-- Kay Adams, Chapter 25, page 359
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Hi bsd team! Plz help me!

2007-10-19 Thread Niek

[EMAIL PROTECTED] wrote:






Subject:
Re: Hi bsd team! Plz help me!
From:
Alain G. Fabry [EMAIL PROTECTED]
Date:
Fri, 19 Oct 2007 10:02:24 +0200
To:
freebsd-questions@freebsd.org

To:
freebsd-questions@freebsd.org

Precedence:
list
MIME-Version:
1.0
References:
[EMAIL PROTECTED] 
[EMAIL PROTECTED]

In-Reply-To:
[EMAIL PROTECTED]
Message-ID:
[EMAIL PROTECTED]
Content-Type:
text/plain; charset=us-ascii
Message:
20


On Fri, Oct 19, 2007 at 04:23:13PM +0900, Byung-Hee HWANG wrote:
  

On Fri, 2007-10-19 at 11:39 +0500, Eldar Velibekov wrote:


Hi BSD team. Thanx for a Great OS! But! i wont use also graphical mode(X -
system) but i dont wont 1024-768 resolution, i wont 1280 - 800 on my
laptop(HP 510, CHipset Intel 915GMS family).What i must do???
  

If you are using GNOME desktop, then you do as following step:

System - Preferences - Screen Resolution - 1280x800 - Apply

That's GNOME Rules: http://www.freebsd.org/gnome/index.html ;;

Sincerely,




I guess it all depends on which video card he is using. My ATI X1600 Radeon 
doesn't
support 1280x800 (to my knowledge...)
So it is possible that his video card doesn't either?!




  



The OP could also try to use the port 915resolution that was designed to 
enable the 1280x800 resolution on Intel graph. chipsets.
If he reads the information that comes with it, he should not need more 
help.








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


Re: Hi bsd team! Plz help me!

2007-10-19 Thread Alain G. Fabry
On Fri, Oct 19, 2007 at 04:23:13PM +0900, Byung-Hee HWANG wrote:
 On Fri, 2007-10-19 at 11:39 +0500, Eldar Velibekov wrote:
  Hi BSD team. Thanx for a Great OS! But! i wont use also graphical mode(X -
  system) but i dont wont 1024-768 resolution, i wont 1280 - 800 on my
  laptop(HP 510, CHipset Intel 915GMS family).What i must do???
 
 If you are using GNOME desktop, then you do as following step:
 
 System - Preferences - Screen Resolution - 1280x800 - Apply
 
 That's GNOME Rules: http://www.freebsd.org/gnome/index.html ;;
 
 Sincerely,
 

I guess it all depends on which video card he is using. My ATI X1600 Radeon 
doesn't
support 1280x800 (to my knowledge...)
So it is possible that his video card doesn't either?!




 -- 
 Byung-Hee HWANG [EMAIL PROTECTED]
 InZealBomb, Kyungpook National University, KOREA
 
 What I care about is that you obviously don't love me.
   -- Kay Adams, Chapter 25, page 359
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Hi bsd team! Plz help me!

2007-10-19 Thread Eldar Velibekov
Hi BSD team. Thanx for a Great OS! But! i wont use also graphical mode(X -
system) but i dont wont 1024-768 resolution, i wont 1280 - 800 on my
laptop(HP 510, CHipset Intel 915GMS family).What i must do???

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


Plz, Help! /usr/sbin/sendmail: No such file or directory

2007-09-13 Thread VeeJay
Hi there



I have some weird problems in running Postfix. I have installed it on my
FreeBSD 6.2 Box. Postfix starts normally as shown from maillog:



Sep 13 16:28:37 veejay postfix/postfix-script[18197]: starting the Postfix
mail system

Sep 13 16:28:37 veejay postfix/master[18198]: daemon started -- version
2.4.0, configuration /usr/local/etc/postfix



But I am unable to send an email from the command prompt as shown here:



veejay# mail

Mail version 8.1 6/6/93.  Type ? for help.

/var/mail/christensen: 0 messages

 m [EMAIL PROTECTED]

Subject: Test message

it is workinng

.

EOT

 mail: /usr/sbin/sendmail: No such file or directory

q

veejay#



I thought its path/configuration problem but



veejay# /usr/local/sbin/postconf –nshows settings as follow, which seems
to be OK? I don't know L



command_directory = /usr/local/sbin

config_directory = /usr/local/etc/postfix

daemon_directory = /usr/local/libexec/postfix

debug_peer_level = 2

html_directory = no

mail_owner = postfix

mailq_path = /usr/local/bin/mailq

manpage_directory = /usr/local/man

mynetworks_style = host

newaliases_path = /usr/local/bin/newaliases

queue_directory = /var/spool/postfix

readme_directory = no

sample_directory = /usr/local/etc/postfix

sendmail_path = /usr/local/sbin/sendmail

setgid_group = maildrop

unknown_local_recipient_reject_code = 550



Could you please help to discover problem? What is wrong? Why this Error 
mail: /usr/sbin/sendmail: No such file or directory  keeps coming?

Thank you very much!

-- 
Thanks!

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


Re: Plz, Help! /usr/sbin/sendmail: No such file or directory

2007-09-13 Thread Tuareg
On 9/13/07, VeeJay [EMAIL PROTECTED] wrote:
 Hi there

Hi!




 I have some weird problems in running Postfix. I have installed it on my
 FreeBSD 6.2 Box. Postfix starts normally as shown from maillog:



 Sep 13 16:28:37 veejay postfix/postfix-script[18197]: starting the Postfix
 mail system

 Sep 13 16:28:37 veejay postfix/master[18198]: daemon started -- version
 2.4.0, configuration /usr/local/etc/postfix



 But I am unable to send an email from the command prompt as shown here:



 veejay# mail

 Mail version 8.1 6/6/93.  Type ? for help.

 /var/mail/christensen: 0 messages

  m [EMAIL PROTECTED]

 Subject: Test message

 it is workinng

 .

 EOT

  mail: /usr/sbin/sendmail: No such file or directory

 q

 veejay#



 I thought its path/configuration problem but



 veejay# /usr/local/sbin/postconf –nshows settings as follow, which seems
 to be OK? I don't know L



 command_directory = /usr/local/sbin

 config_directory = /usr/local/etc/postfix

 daemon_directory = /usr/local/libexec/postfix

 debug_peer_level = 2

 html_directory = no

 mail_owner = postfix

 mailq_path = /usr/local/bin/mailq

 manpage_directory = /usr/local/man

 mynetworks_style = host

 newaliases_path = /usr/local/bin/newaliases

 queue_directory = /var/spool/postfix

 readme_directory = no

 sample_directory = /usr/local/etc/postfix

 sendmail_path = /usr/local/sbin/sendmail


 setgid_group = maildrop

 unknown_local_recipient_reject_code = 550



 Could you please help to discover problem? What is wrong? Why this Error 
 mail: /usr/sbin/sendmail: No such file or directory  keeps coming?

 Thank you very much!


Because in your configuration appears another path:

sendmail_path = /usr/local/sbin/sendmail

And you are looking in: /usr/sbin/sendmail.


 --
 Thanks!

You're welcome.

-- 
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org  - against proprietary attachments
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Plz, Help! /usr/sbin/sendmail: No such file or directory

2007-09-13 Thread Roland Smith
On Thu, Sep 13, 2007 at 06:34:25PM +0200, VeeJay wrote:
 Hi there
 
 I have some weird problems in running Postfix. I have installed it on my
 FreeBSD 6.2 Box. Postfix starts normally as shown from maillog:
 
 Sep 13 16:28:37 veejay postfix/postfix-script[18197]: starting the Postfix
 mail system
 
 Sep 13 16:28:37 veejay postfix/master[18198]: daemon started -- version
 2.4.0, configuration /usr/local/etc/postfix
 
 But I am unable to send an email from the command prompt as shown here:
 
 veejay# mail
 
 Mail version 8.1 6/6/93.  Type ? for help.
 
 /var/mail/christensen: 0 messages
 
  m [EMAIL PROTECTED]
 
 Subject: Test message
 
 it is workinng
 
 .
 
 EOT
 
  mail: /usr/sbin/sendmail: No such file or directory
 
 q
 
 veejay#

/usr/sbin/sendmail should be a symbolic link to /usr/sbin/mailwrapper.

When you install Postfix, it asks if you want to activate postfix in
mailwrapper. You should say yes there.

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgpTkq5MOD6H7.pgp
Description: PGP signature


Re: plz help!

2007-06-23 Thread Nitin Arora

Thanks Guys

Actually, I have a older pc which was puted in store. on that pc the
BSD 4.8is installed.
now i want to connect this pc in my lan.


thanks


On 6/23/07, Tuc at T-B-O-H.NET [EMAIL PROTECTED] wrote:



 Second, is there some special reason you would want to install
 the 4.8 version?It is long ago obsolete.   I would suggest
 installing 6.2-RELEASE unless there is a very good reason to
 go with 4.8.

   Older laptops for one... :)

   (Actually, mine can go to 5.4 ... Once I try 5.5, it
locks up on the ata1 probe)

   Tuc/TBOH


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


Re: plz help!

2007-06-23 Thread [EMAIL PROTECTED]

On 23/06/07, Nitin Arora [EMAIL PROTECTED] wrote:


On 6/23/07, Tuc at T-B-O-H.NET [EMAIL PROTECTED] wrote:

 
  Second, is there some special reason you would want to install
  the 4.8 version?It is long ago obsolete.   I would suggest
  installing 6.2-RELEASE unless there is a very good reason to
  go with 4.8.
 
Older laptops for one... :)

(Actually, mine can go to 5.4 ... Once I try 5.5, it
 locks up on the ata1 probe)

Tuc/TBOH

Actually, I have a older pc which was puted in store. on that pc the
BSD 4.8is installed.
now i want to connect this pc in my lan.



man 8 ifconfig
Also
man 5 rc.conf
Although, you could just issue /stand/sysinstall
and under post install configuration find configure
additional network interfaces.

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


plz help!

2007-06-22 Thread Nitin Arora

hi
can u send me the installation procedure of freeBSD 4.8, and also can to
tell me how to give the ip address to BSD 4.8 machine.

plz reply asap

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


Re: plz help!

2007-06-22 Thread Jerry McAllister
On Fri, Jun 22, 2007 at 07:32:09PM +0530, Nitin Arora wrote:

 hi
 can u send me the installation procedure of freeBSD 4.8, and also can to
 tell me how to give the ip address to BSD 4.8 machine.

First of all, the instructions are published on the FreeBSD web site.
You can read them there or download them for yourself.
All of that is well documented - much better than one could knock off
in an Email reply.

Second, is there some special reason you would want to install
the 4.8 version?It is long ago obsolete.   I would suggest
installing 6.2-RELEASE unless there is a very good reason to
go with 4.8.

jerry

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


Re: plz help!

2007-06-22 Thread Gerard
On June 22, 2007 at 10:02AM Nitin Arora wrote:


 can u send me the installation procedure of freeBSD 4.8, and also can to
 tell me how to give the ip address to BSD 4.8 machine.

Virtually all of the information that you will require is available
via the FreeBSD web site. You could start there. This URL will give
you quite a bit of information for installing and running FBSD:

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

Why are you so intent on using version 4.8 anyway? That  is a
depreciated version. I would recommend the latest stable version - 6.2
for you to start out with.

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


Re: plz help!

2007-06-22 Thread Tuc at T-B-O-H.NET
 
 Second, is there some special reason you would want to install
 the 4.8 version?It is long ago obsolete.   I would suggest
 installing 6.2-RELEASE unless there is a very good reason to
 go with 4.8.
 
Older laptops for one... :)

(Actually, mine can go to 5.4 ... Once I try 5.5, it
locks up on the ata1 probe)

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


Major FreeBSD Problem plz help

2004-07-29 Thread Jonathan
Hello, I messed something up in my FreeBSD-5.2.1 box. I ran sysinstall 
in root and installed compat4 and some other compatibility base dir 
thing and it extracted over / i think and now the box wont recognize my 
logins. I am locked out of my own box. Is there a way to reset what I 
did so i wont lose any data. My server is colocated at a datacenter and 
the techs would have to do it. Could you guys possibly explain what 
needs to be done so i wont lose any data and reset what i did. Any help 
would be greatly appreciated
[EMAIL PROTECTED]

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


AW: Major FreeBSD Problem plz help

2004-07-29 Thread Alexander Liebau
yes the system is now in a fresh state (same as if you do a fresh install)
root has no password and all user are gone (the install has overwritten the
passwd-file). just log in on a local console with root (you wont need a
password)

-Ursprungliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Auftrag von Jonathan
Gesendet: Donnerstag, 29. Juli 2004 09:01
An: [EMAIL PROTECTED]
Betreff: Major FreeBSD Problem plz help


Hello, I messed something up in my FreeBSD-5.2.1 box. I ran sysinstall
in root and installed compat4 and some other compatibility base dir
thing and it extracted over / i think and now the box wont recognize my
logins. I am locked out of my own box. Is there a way to reset what I
did so i wont lose any data. My server is colocated at a datacenter and
the techs would have to do it. Could you guys possibly explain what
needs to be done so i wont lose any data and reset what i did. Any help
would be greatly appreciated
[EMAIL PROTECTED]

Regards,
Jonathan
___
[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: looks like i've dug my hole too deep, plz help quick.

2004-05-13 Thread Jan Grant
On Wed, 12 May 2004, carvin5string wrote:

 You have only those two files in root? What about the kernal files I
 see on my system?

You're running a -STABLE branch, the responder is running -CURRENT.


-- 
jan grant, ILRT, University of Bristol. http://www.ilrt.bris.ac.uk/
Tel +44(0)117 9287088 Fax +44 (0)117 9287112 http://ioctl.org/jan/
Sufficiently large=infinite for sufficiently large values of sufficiently
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


looks like i've dug my hole too deep, plz help quick.

2004-05-12 Thread carvin5string
I may have screwed up big time - I tried moving /var to /usr/var and
accidentally was in root when I ran the command
tar cf - . | ( cd /usr/var; tar xf - )
now when I look at root it has some directories but no files at all. I
look at /usr/var and see directories and no files. When I try to
reverse the process with this command, from /usr/var,
tar cr - . | ( cd /; tar xf - )
I get lots of errors about file system full.
This is on my company web server. What can I do to fix this?
--
Chip




__
Do you Yahoo!?
Yahoo! Movies - Buy advance tickets for 'Shrek 2'
http://movies.yahoo.com/showtimes/movie?mid=1808405861 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: looks like i've dug my hole too deep, plz help quick.

2004-05-12 Thread Vince Hoffman


On Wed, 12 May 2004, carvin5string wrote:

 I may have screwed up big time - I tried moving /var to /usr/var and
 accidentally was in root when I ran the command
 tar cf - . | ( cd /usr/var; tar xf - )

if it was simply that then nothing was deleted.
tar cf -  just tars up the files and sends it to stdout. nothing is
deleted.
the only files i have in / are COPYWRITE and entropy. dont need any others

you may need to delete the files you created in /usr/var but you shouldnt
need to copy them back.

 now when I look at root it has some directories but no files at all. I
 look at /usr/var and see directories and no files. When I try to
 reverse the process with this command, from /usr/var,
 tar cr - . | ( cd /; tar xf - )
 I get lots of errors about file system full.
 This is on my company web server. What can I do to fix this?
 --
 Chip




 __
 Do you Yahoo!?
 Yahoo! Movies - Buy advance tickets for 'Shrek 2'
 http://movies.yahoo.com/showtimes/movie?mid=1808405861
 ___
 [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: looks like i've dug my hole too deep, plz help quick.

2004-05-12 Thread carvin5string
You have only those two files in root? What about the kernal files I
see on my system? 
Anyway, I have taken this opportunity to do a complete upgrade - new
server, updated OS, Aps, everything. Moving from an AMD Athlon 600 to a
AMD 2600+ with a 400mHz FSB MB, and a 120gig HD, giving LOTS of room to
root and swap partitions. This time I will set the symlinks on /var and
/tmp to /usr/var and /usr/tmp first thing after the OS installs.
This should make for a very nice web server.
Regards,
Chip

--- Vince Hoffman [EMAIL PROTECTED] wrote:
 
 
 On Wed, 12 May 2004, carvin5string wrote:
 
  I may have screwed up big time - I tried moving /var to /usr/var
 and
  accidentally was in root when I ran the command
  tar cf - . | ( cd /usr/var; tar xf - )
 
 if it was simply that then nothing was deleted.
 tar cf -  just tars up the files and sends it to stdout. nothing is
 deleted.
 the only files i have in / are COPYWRITE and entropy. dont need any
 others
 
 you may need to delete the files you created in /usr/var but you
 shouldnt
 need to copy them back.
 
  now when I look at root it has some directories but no files at
 all. I
  look at /usr/var and see directories and no files. When I try to
  reverse the process with this command, from /usr/var,
  tar cr - . | ( cd /; tar xf - )
  I get lots of errors about file system full.
  This is on my company web server. What can I do to fix this?
  --
  Chip
 
 
 
 
  __
  Do you Yahoo!?
  Yahoo! Movies - Buy advance tickets for 'Shrek 2'
  http://movies.yahoo.com/showtimes/movie?mid=1808405861
  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 





__
Do you Yahoo!?
Yahoo! Movies - Buy advance tickets for 'Shrek 2'
http://movies.yahoo.com/showtimes/movie?mid=1808405861 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: I can't connect to internet. Plz help me

2003-12-11 Thread Shantanoo Mahajan
+++ nil ban [freebsd] [10-12-03 13:11 -0800]:
| Hello,
| I'm a novice linux user currently switched over to freebsd
| when many linux users told me that freebsd is real unix
| and only slackware is somehow matched with it. So I installed
| feeebsd 4.8 but I am getting few problems I can't handle.
| Kindly tell me how to do the following ; 
| I can't connect to internet. 
| Plz let me explain that.
| I have a username and password which my isp gave me to 
| use for having mail and surfing internet like 
| [EMAIL PROTECTED] and my mail servers
| names are mail.myisp.com(pop3)and smtp.mail.com.
| I tried using kpp and I could connect to my isp ( I am telling this
| because pppd does run ) but whenever I try to 
| visit a website it doesn't work, browser says unknown host.  
| I even tried xchat, it says something like have u missspelled your host name ?.  I 
also don't know what  my host name is. Whenever 
| I type the command hostname in console it displays nothing and only cursor 
reappears. I installed it as it is describe in the handbook. Only thing I have done is 
place this entry firewall_type=open in rc.conf. I haven't changed anything in any 
configuration file apart from that. I have written this because it seemed the default 
firewall has got something to do with it but I ain't sure.  
| Please tell me in a step by step procedure so I will be able 
| to fix it.. I am gradually being depressed for that. 
| Here telephone charge is very costly and for that I can't stay
| connected and experiment for long.
|  
| Please help me.
|  
| P.S  I also can't send  receive mail using kmail inspite of giving all the
| required parameters.

what's the o/p of

# ipfw list

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


I can't connect to internet. Plz help me

2003-12-10 Thread nil ban
Hello,
I'm a novice linux user currently switched over to freebsd
when many linux users told me that freebsd is real unix
and only slackware is somehow matched with it. So I installed
feeebsd 4.8 but I am getting few problems I can't handle.
Kindly tell me how to do the following ; 
I can't connect to internet. 
Plz let me explain that.
I have a username and password which my isp gave me to 
use for having mail and surfing internet like 
[EMAIL PROTECTED] and my mail servers
names are mail.myisp.com(pop3)and smtp.mail.com.
I tried using kpp and I could connect to my isp ( I am telling this
because pppd does run ) but whenever I try to 
visit a website it doesn't work, browser says unknown host.  
I even tried xchat, it says something like have u missspelled your host name ?.  I 
also don't know what  my host name is. Whenever 
I type the command hostname in console it displays nothing and only cursor 
reappears. I installed it as it is describe in the handbook. Only thing I have done is 
place this entry firewall_type=open in rc.conf. I haven't changed anything in any 
configuration file apart from that. I have written this because it seemed the default 
firewall has got something to do with it but I ain't sure.  
Please tell me in a step by step procedure so I will be able 
to fix it.. I am gradually being depressed for that. 
Here telephone charge is very costly and for that I can't stay
connected and experiment for long.
 
Please help me.
 
P.S  I also can't send  receive mail using kmail inspite of giving all the
required parameters.



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


Re: I can't connect to internet. Plz help me

2003-12-10 Thread Cordula's Web
 because pppd does run ) but whenever I try to 
 visit a website it doesn't work, browser says unknown host.  
 I even tried xchat, it says something like have u missspelled your host name ?.  I 
 also don't know what  my host name is. Whenever 

Have you properly configured the DNS nameservers (which your ISP
should have told you) in /etc/resolv.conf?

-- 
Cordula's Web. http://www.cordula.ws/

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


Re: I can't connect to internet. Plz help me

2003-12-10 Thread Charles Swiger
On Dec 10, 2003, at 4:11 PM, nil ban wrote:
I can't connect to internet.
[ ... ]
names are mail.myisp.com(pop3)and smtp.mail.com.
I tried using kpp and I could connect to my isp ( I am telling this
because pppd does run ) but whenever I try to
visit a website it doesn't work, browser says unknown host.
Sounds like /etc/resolv.conf hasn't been setup to point to valid DNS 
servers.  Try adding a line like:

nameserver 4.2.2.1

...to /etc/resolv.conf and see whether that solves your problem, only 
you should use the nameservers your ISP gives you if you know what they 
are.  You can also configure PPP to set this file up for you when you 
connect via the enable dns config option in /etc/ppp/ppp.conf.  
[Maybe for userland PPP rather than kernel-based PPP?]

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


Re: I can't connect to internet. Plz help me

2003-12-10 Thread Peter Risdon
nil ban wrote:

...

sp gave me to 
use for having mail and surfing internet like 
[EMAIL PROTECTED] and my mail servers
names are mail.myisp.com(pop3)and smtp.mail.com.
I tried using kpp and I could connect to my isp ( I am telling this
because pppd does run ) 

Do that then, once you are connected, type:

ping 158.43.128.1

if you get no packets back, it's a problem with your ppp settings. If 
you do get packets back, type:

ping www.yahoo.com

if you get no packets back, it's your DNS settings. Look at 
/etc/resolv.conf - you should see at least one line like this:

nameserver ip.address.of.nameserver

If you don't add such a line (or two) with valid nameservers. Your ISP 
should give you such settings. If they haven't, you could use:

nameserver 158.43.128.1

but only temporarily - it's a Worldcom/MCI nameserver and might not live 
forever.

Oh, and set a hostname. (see man hostname).

PWR.



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


Re: I can't connect to internet. Plz help me

2003-12-10 Thread Nathan Kinkade
On Wed, Dec 10, 2003 at 01:11:22PM -0800, nil ban wrote:
 Hello,
 I'm a novice linux user currently switched over to freebsd when many
 linux users told me that freebsd is real unix and only slackware is
 somehow matched with it. So I installed feeebsd 4.8 but I am getting
 few problems I can't handle.  Kindly tell me how to do the following ;
 I can't connect to internet.  Plz let me explain that.  I have a
 username and password which my isp gave me to use for having mail and
 surfing internet like [EMAIL PROTECTED] and my mail servers names
 are mail.myisp.com(pop3)and smtp.mail.com.  I tried using kpp and I
 could connect to my isp ( I am telling this because pppd does run )
 but whenever I try to visit a website it doesn't work, browser says
 unknown host.  I even tried xchat, it says something like have u
 missspelled your host name ?.  I also don't know what  my host name
 is. Whenever I type the command hostname in console it displays
 nothing and only cursor reappears. I installed it as it is describe in
 the handbook.  Only thing I have done is place this entry
 firewall_type=open in rc.conf. I haven't changed anything in any
 configuration file apart from that. I have written this because it
 seemed the default firewall has got something to do with it but I
 ain't sure.  Please tell me in a step by step procedure so I will be
 able to fix it.. I am gradually being depressed for that.  Here
 telephone charge is very costly and for that I can't stay connected
 and experiment for long.
  
 Please help me.
  
 P.S  I also can't send  receive mail using kmail inspite of giving
 all the required parameters.

Do you have DNS name resolution setup correctly on your machine?  Your
ISP should have given you at least one IP address for their DNS
server(s).  Make sure that you place these addresses in your
/etc/resolv.conf file.  Such as:

nameserver  1.2.3.4
nameserver  1.2.3.5

Also, while kppp tells you that you are connected, try pinging an IP
address instead of the domain name.  hotmail.com is 64.4.32.7 and
microsoft.com is 207.46.245.222.  Alternatively you could just plug
either of the IP addresses into your browser address bar.  If it still
doesn't work then you may be able to rule out a DNS issue.

Nathan
-- 
gpg --keyserver pgp.mit.edu --recv-keys D8527E49


pgp0.pgp
Description: PGP signature


RE: problem with network cards in server, plz help

2002-10-19 Thread JoeB
The problem you describe is becoming common in the 4.x versions of FBSD.
I have seen these solutions voiced previously in this list.

1. Check the PC's bios, look for a toggle to disable plug-n-play function.

2. Check that your PCI Nic card is not in the first or last PCI expansion
slot on the motherboard.

3. There is a problem with autonegotiation of the media settings between
your NIC and your switch. The default setting of auto means the Nic card
should sense the Lan for the switch or hub and set it's media type to match.
There have been reports of the Nic Card media type changing on the fly
between
10/100 and halfduplex and fullduplex causing the network to freeze up.
To stop this use the ifconfig command in the rc.conf file to force the
media type.  Like this
ifconfig_xl0=inet 10.0.10.2 media 100baseTX mediaopt full-duplex

4 add   option   PCI_ENABLE_IO_MODES
to your kernel source and recompile. See LINT

5. add   device  puc
 option  PUC_FASTINTR
to your kernel source and recompile. See LINT

6. Follow bug fix using this url
http://www.freebsd.org/cgi/query-pr.cgi?pr=40636


Try one of the above one at a time until your problem goes away.

I have two different cards on my Netfinity 5000 server, a pci Netgear
FA311 (showing up as a NatSemi (sis0), and the onboard network card
which seems to have an AMD chipset (pcn0).   If I have the onboard
ethernet card enabled at all and have an active cable connected to it
and restart the computer it comes up on ukphy0, turns the pci error
light on and I get no internet access which it later makes the computer
reboot automatically without any warning.  If I disable that card and
put in a PCI Netgear card, have also tried other cards such as Intel or
IBM cards, once in a while it will boot normally but every once in a
while it will get hung up on the ukphy0 as well, giving me the same
problem as the onboard network and reboot itself.  At first I thought it
was an IRQ problem but all of my devices now have individual IRQ's set
in the bios and I'm still having this problem.  I'm afraid to reboot
this thing because I'm afraid it won't be coming back up.  Below are
from my dmesg, the first is when I have my onboard ethernet enabled and
the second is when I have the netgear installed.  Any help would be much
appreciated on what to do with this problem.   By the wayI'm running
on FreeBSD 4.6.2 but also have this problem running 4.7, I it also
usually hangs on the driver initialization during installation of the os.

Dave

Oct  4 21:11:36 hermes /kernel: pcn0: AMD PCnet/PCI 10/100BaseTX port
0x2180-0
x219f mem 0xfebfdc00-0xfebfdc1f irq 10 at device 9.0 on pci0
Oct  4 21:11:36 hermes /kernel: pcn0: Ethernet address: 00:06:29:39:bf:a9
Oct  4 21:11:36 hermes /kernel: miibus0: MII bus on pcn0
Oct  4 21:11:36 hermes /kernel: ukphy0: Generic IEEE 802.3u media
interface on
miibus0
Oct  4 21:11:36 hermes /kernel: ukphy0:  10baseT, 10baseT-FDX,
100baseTX, 100bas
eTX-FDX, auto


pcib1: ServerWorks NB6536 2.0HE host to PCI bridge on motherboard
pci1: PCI bus on pcib1
sis0: NatSemi DP83815 10/100BaseTX port 0x4b00-0x4bff mem
0xc0fdf000-0xc0fd irq 5 at device 4.0 on pci1
sis0: Ethernet address: 00:a0:cc:76:d9:f1
miibus0: MII bus on sis0
ukphy0: Generic IEEE 802.3u media interface on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto








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



RE: problem with network cards in server, plz help

2002-10-19 Thread stealth215
I got it working with the netgear buy just turinging off
the plug n' play. I will try your other suggestions to
try to get the AMD nic working.

thx,
Dave
 The problem you describe is becoming common in the 4.x versions of FBSD.
 I have seen these solutions voiced previously in this list.
 
 1. Check the PC's bios, look for a toggle to disable plug-n-play function.
 
 2. Check that your PCI Nic card is not in the first or last PCI expansion
 slot on the motherboard.
 
 3. There is a problem with autonegotiation of the media settings between
 your NIC and your switch. The default setting of auto means the Nic card
 should sense the Lan for the switch or hub and set it's media type to match.
 There have been reports of the Nic Card media type changing on the fly
 between
 10/100 and halfduplex and fullduplex causing the network to freeze up.
 To stop this use the ifconfig command in the rc.conf file to force the
 media type.  Like this
 ifconfig_xl0=inet 10.0.10.2 media 100baseTX mediaopt full-duplex
 
 4 add   option   PCI_ENABLE_IO_MODES
 to your kernel source and recompile. See LINT
 
 5. add   device  puc
  option  PUC_FASTINTR
 to your kernel source and recompile. See LINT
 
 6. Follow bug fix using this url
 http://www.freebsd.org/cgi/query-pr.cgi?pr=40636
 
 
 Try one of the above one at a time until your problem goes away.
 
 I have two different cards on my Netfinity 5000 server, a pci Netgear
 FA311 (showing up as a NatSemi (sis0), and the onboard network card
 which seems to have an AMD chipset (pcn0).   If I have the onboard
 ethernet card enabled at all and have an active cable connected to it
 and restart the computer it comes up on ukphy0, turns the pci error
 light on and I get no internet access which it later makes the computer
 reboot automatically without any warning.  If I disable that card and
 put in a PCI Netgear card, have also tried other cards such as Intel or
 IBM cards, once in a while it will boot normally but every once in a
 while it will get hung up on the ukphy0 as well, giving me the same
 problem as the onboard network and reboot itself.  At first I thought it
 was an IRQ problem but all of my devices now have individual IRQ's set
 in the bios and I'm still having this problem.  I'm afraid to reboot
 this thing because I'm afraid it won't be coming back up.  Below are
 from my dmesg, the first is when I have my onboard ethernet enabled and
 the second is when I have the netgear installed.  Any help would be much
 appreciated on what to do with this problem.   By the wayI'm running
 on FreeBSD 4.6.2 but also have this problem running 4.7, I it also
 usually hangs on the driver initialization during installation of the os.
 
 Dave
 
 Oct  4 21:11:36 hermes /kernel: pcn0: AMD PCnet/PCI 10/100BaseTX port
 0x2180-0
 x219f mem 0xfebfdc00-0xfebfdc1f irq 10 at device 9.0 on pci0
 Oct  4 21:11:36 hermes /kernel: pcn0: Ethernet address: 00:06:29:39:bf:a9
 Oct  4 21:11:36 hermes /kernel: miibus0: MII bus on pcn0
 Oct  4 21:11:36 hermes /kernel: ukphy0: Generic IEEE 802.3u media
 interface on
 miibus0
 Oct  4 21:11:36 hermes /kernel: ukphy0:  10baseT, 10baseT-FDX,
 100baseTX, 100bas
 eTX-FDX, auto
 
 
 pcib1: ServerWorks NB6536 2.0HE host to PCI bridge on motherboard
 pci1: PCI bus on pcib1
 sis0: NatSemi DP83815 10/100BaseTX port 0x4b00-0x4bff mem
 0xc0fdf000-0xc0fd irq 5 at device 4.0 on pci1
 sis0: Ethernet address: 00:a0:cc:76:d9:f1
 miibus0: MII bus on sis0
 ukphy0: Generic IEEE 802.3u media interface on miibus0
 ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
 
 
 
 
 
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message

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



problem with network cards in server, plz help!

2002-10-18 Thread David Loszewski
I have two different cards on my Netfinity 5000 server, a pci Netgear 
FA311 (showing up as a NatSemi (sis0), and the onboard network card 
which seems to have an AMD chipset (pcn0).   If I have the onboard 
ethernet card enabled at all and have an active cable connected to it 
and restart the computer it comes up on ukphy0, turns the pci error 
light on and I get no internet access which it later makes the computer 
reboot automatically without any warning.  If I disable that card and 
put in a PCI Netgear card, have also tried other cards such as Intel or 
IBM cards, once in a while it will boot normally but every once in a 
while it will get hung up on the ukphy0 as well, giving me the same 
problem as the onboard network and reboot itself.  At first I thought it 
was an IRQ problem but all of my devices now have individual IRQ's set 
in the bios and I'm still having this problem.  I'm afraid to reboot 
this thing because I'm afraid it won't be coming back up.  Below are 
from my dmesg, the first is when I have my onboard ethernet enabled and 
the second is when I have the netgear installed.  Any help would be much 
appreciated on what to do with this problem.   By the wayI'm running 
on FreeBSD 4.6.2 but also have this problem running 4.7, I it also 
usually hangs on the driver initialization during installation of the os.

Dave

Oct  4 21:11:36 hermes /kernel: pcn0: AMD PCnet/PCI 10/100BaseTX port 
0x2180-0
x219f mem 0xfebfdc00-0xfebfdc1f irq 10 at device 9.0 on pci0
Oct  4 21:11:36 hermes /kernel: pcn0: Ethernet address: 00:06:29:39:bf:a9
Oct  4 21:11:36 hermes /kernel: miibus0: MII bus on pcn0
Oct  4 21:11:36 hermes /kernel: ukphy0: Generic IEEE 802.3u media 
interface on
miibus0
Oct  4 21:11:36 hermes /kernel: ukphy0:  10baseT, 10baseT-FDX, 
100baseTX, 100bas
eTX-FDX, auto


pcib1: ServerWorks NB6536 2.0HE host to PCI bridge on motherboard
pci1: PCI bus on pcib1
sis0: NatSemi DP83815 10/100BaseTX port 0x4b00-0x4bff mem 
0xc0fdf000-0xc0fd irq 5 at device 4.0 on pci1
sis0: Ethernet address: 00:a0:cc:76:d9:f1
miibus0: MII bus on sis0
ukphy0: Generic IEEE 802.3u media interface on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto



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


problem with network cards in server, plz help

2002-10-18 Thread David Loszewski
I have two different cards on my Netfinity 5000 server, a pci Netgear 
FA311 (showing up as a NatSemi (sis0), and the onboard network card 
which seems to have an AMD chipset (pcn0).   If I have the onboard 
ethernet card enabled at all and have an active cable connected to it 
and restart the computer it comes up on ukphy0, turns the pci error 
light on and I get no internet access which it later makes the computer 
reboot automatically without any warning.  If I disable that card and 
put in a PCI Netgear card, have also tried other cards such as Intel or 
IBM cards, once in a while it will boot normally but every once in a 
while it will get hung up on the ukphy0 as well, giving me the same 
problem as the onboard network and reboot itself.  At first I thought it 
was an IRQ problem but all of my devices now have individual IRQ's set 
in the bios and I'm still having this problem.  I'm afraid to reboot 
this thing because I'm afraid it won't be coming back up.  Below are 
from my dmesg, the first is when I have my onboard ethernet enabled and 
the second is when I have the netgear installed.  Any help would be much 
appreciated on what to do with this problem.   By the wayI'm running 
on FreeBSD 4.6.2 but also have this problem running 4.7, I it also 
usually hangs on the driver initialization during installation of the os.

Dave

Oct  4 21:11:36 hermes /kernel: pcn0: AMD PCnet/PCI 10/100BaseTX port 
0x2180-0
x219f mem 0xfebfdc00-0xfebfdc1f irq 10 at device 9.0 on pci0
Oct  4 21:11:36 hermes /kernel: pcn0: Ethernet address: 00:06:29:39:bf:a9
Oct  4 21:11:36 hermes /kernel: miibus0: MII bus on pcn0
Oct  4 21:11:36 hermes /kernel: ukphy0: Generic IEEE 802.3u media 
interface on
miibus0
Oct  4 21:11:36 hermes /kernel: ukphy0:  10baseT, 10baseT-FDX, 
100baseTX, 100bas
eTX-FDX, auto


pcib1: ServerWorks NB6536 2.0HE host to PCI bridge on motherboard
pci1: PCI bus on pcib1
sis0: NatSemi DP83815 10/100BaseTX port 0x4b00-0x4bff mem 
0xc0fdf000-0xc0fd irq 5 at device 4.0 on pci1
sis0: Ethernet address: 00:a0:cc:76:d9:f1
miibus0: MII bus on sis0
ukphy0: Generic IEEE 802.3u media interface on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto




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