From owner-freebsd-current@FreeBSD.ORG Thu Sep 9 20:37:46 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF4F116A4CE for ; Thu, 9 Sep 2004 20:37:46 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3C8943D5E for ; Thu, 9 Sep 2004 20:37:45 +0000 (GMT) (envelope-from europax@comcast.net) Received: from [192.168.1.101] (c-67-169-203-186.client.comcast.net[67.169.203.186]) by comcast.net (sccrmhc11) with ESMTP id <200409092037440110023tj7e> (Authid: europax); Thu, 9 Sep 2004 20:37:44 +0000 Message-ID: <4140BF50.2080700@comcast.net> Date: Thu, 09 Sep 2004 13:38:40 -0700 From: Rob User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040816 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-current Content-Type: multipart/mixed; boundary="------------080204040203040204040005" X-Mailman-Approved-At: Fri, 10 Sep 2004 12:07:40 +0000 Subject: warning messages from root mount until login, also my rc.conf file X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Sep 2004 20:37:46 -0000 This is a multi-part message in MIME format. --------------080204040203040204040005 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sorry about attaching files but can't seem to put them inline with mozilla. Perhaps Sylpheed would work better. I can actually get even more warning messages if I delay logging in. For example, sendmail claims it can't find a socket and comes back with a multitude of warnings. In this particular case, just wanted to show a few examples. Rob --------------080204040203040204040005 Content-Type: text/plain; name="rc.conf1" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rc.conf1" #!/bin/sh # # This is rc.conf - a file full of useful variables that you can set # to change the default startup behavior of your system. You should # not edit this file! Put any overrides into one of the ${rc_conf_files} # instead and you will be able to update these defaults later without # spamming your local configuration information. # # The ${rc_conf_files} files should only contain values which override # values set in this file. This eases the upgrade path when defaults # are changed and new features are added. # # All arguments must be in double or single quotes. # # $FreeBSD: src/etc/defaults/rc.conf,v 1.212 2004/07/27 00:28:16 mlaier Exp $ ############################################################## ### Important initial Boot-time options #################### ############################################################## apm_enable="YES" # Set to YES to enable APM BIOS functions (or NO). apmd_enable="YES" # Run apmd to handle APM event from userland. apmd_flags="" # Flags to apmd (if enabled). pccard_enable="NO" # Set to YES if you want to configure PCCARD devices. pccard_mem="DEFAULT" # If pccard_enable=YES, this is card memory address. pccard_beep="2" # pccard beep type. pccard_ifconfig="NO" # Specialized pccard ethernet configuration (or NO). pccardd_flags="-z" # Additional flags for pccardd. pccard_conf="/etc/defaults/pccard.conf" # pccardd(8) config file pccard_ether_delay="5" # Delay before trying to start dhclient in pccard_ether removable_interfaces="" # Removable network interfaces for /etc/pccard_ether. tmpmfs="AUTO" # Set to YES to always create an mfs /tmp, NO to never tmpsize="20m" # Size of mfs /tmp if created varmfs="AUTO" # Set to YES to always create an mfs /var, NO to never varsize="32m" # Size of mfs /var if created populate_var="AUTO" # Set to YES to always (re)populate /var, NO to never local_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d" # startup script dirs. rc_conf_files="/etc/rc.conf /etc/rc.conf.local" background_fsck="YES" # Attempt to run fsck in the background where possible. background_fsck_delay="60" # Time to wait (seconds) before starting the fsck. # mount at startup (or NO). ############################################################## ### Network configuration sub-section ###################### ############################################################## ### Basic network and firewall/security options: ### firewall_enable="NO" # Set to YES to enable firewall functionality firewall_script="/etc/rc.firewall" # Which script to run to set up the firewall firewall_type="UNKNOWN" # Firewall type (see /etc/rc.firewall) firewall_quiet="NO" # Set to YES to suppress rule display firewall_logging="NO" # Set to YES to enable events logging firewall_flags="" # Flags passed to ipfw when type is a file ip_portrange_first="NO" # Set first dynamically allocated port ip_portrange_last="NO" # Set last dynamically allocated port ipfilter_enable="YES" # Set to YES to enable ipfilter functionality ipfilter_program="/sbin/ipf" # where the ipfilter program lives ipfilter_rules="/etc/ipf.rules" # rules definition file for ipfilter, see # /usr/src/contrib/ipfilter/rules for examples ipfilter_flags="" # additional flags for ipfilter ipmon_enable="YES" # Set to YES for ipmon; needs ipfilter or ipnat ipmon_program="/sbin/ipmon" # where the ipfilter monitor program lives ipmon_flags="-Ds" # typically "-Ds" or "-D /var/log/ipflog" tcp_keepalive="YES" # Enable stale TCP connection timeout (or NO). # For the following option you need to have TCP_DROP_SYNFIN set in your # kernel. Please refer to LINT and NOTES for details. tcp_drop_synfin="YES" # Set to YES to drop TCP packets with SYN+FIN # NOTE: this violates the TCP specification icmp_drop_redirect="YES" # Set to YES to ignore ICMP REDIRECT packet icmp_log_redirect="YES" # Set to YES to log ICMP REDIRECT packets network_interfaces="auto" # List of network interfaces (or "auto"). syslogd_program="/usr/sbin/syslogd" # path to syslogd, if you want a different one. syslogd_flags="-s" # Flags to syslogd (if enabled). #syslogd_flags="-ss" # Syslogd flags to not bind an inet socket inetd_enable="YES" # Run the network daemon dispatcher (YES/NO). inetd_program="/usr/sbin/inetd" # path to inetd, if you want a different one. inetd_flags="-wW -C 60" # Optional flags to inetd # sshd_enable="YES" # Enable sshd sshd_program="/usr/sbin/sshd" # path to sshd, if you want a different one. sshd_flags="" # Additional flags for sshd. ############################################################## ### System console options ################################# ############################################################## moused_enable="YES" # Run the mouse daemon. moused_type="auto" # See man page for rc.conf(5) for available settings. moused_port="/dev/psm0" # Set to your mouse port. moused_flags="" # Any additional flags to moused. mousechar_start="NO" # if 0xd0-0xd3 default range is occupied in your # language code table, specify alternative range # start like mousechar_start=3, see vidcontrol(1) ############################################################## ### Mail Transfer Agent (MTA) options ###################### ############################################################## mta_start_script="/etc/rc.sendmail" # Script to start your chosen MTA, called by /etc/rc. # Settings for /etc/rc.sendmail and /etc/rc.d/sendmail: sendmail_enable="NO" # Run the sendmail inbound daemon (YES/NO). sendmail_pidfile="/var/run/sendmail.pid" # sendmail pid file sendmail_procname="/usr/sbin/sendmail" # sendmail process name sendmail_flags="-L sm-mta -bd -q30m" # Flags to sendmail (as a server) sendmail_submit_enable="YES" # Start a localhost-only MTA for mail submission sendmail_submit_flags="-L sm-mta -bd -q30m -ODaemonPortOptions=Addr=localhost" # Flags for localhost-only MTA sendmail_outbound_enable="YES" # Dequeue stuck mail (YES/NO). sendmail_outbound_flags="-L sm-queue -q30m" # Flags to sendmail (outbound only) sendmail_msp_queue_enable="YES" # Dequeue stuck clientmqueue mail (YES/NO). sendmail_msp_queue_flags="-L sm-msp-queue -Ac -q30m" # Flags for sendmail_msp_queue daemon. ############################################################## ### Miscellaneous administrative options ################### ############################################################## cron_enable="YES" # Run the periodic job daemon. cron_program="/usr/sbin/cron" # Which cron executable to run (if enabled). cron_dst="YES" # Handle DST transitions intelligently (YES/NO) cron_flags="" # Which options to pass to the cron daemon. lpd_enable="YES" # Run the line printer daemon. lpd_program="/usr/sbin/lpd" # path to lpd, if you want a different one. lpd_flags="" # Flags to lpd (if enabled). usbd_enable="YES" # Run the usbd daemon. usbd_flags="" # Flags to usbd (if enabled). linux_enable="YES" # Linux binary compatibility loaded at startup (or NO). ldconfig_insecure="YES" # Set to YES to disable ldconfig security checks ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib" # shared library search paths ldconfig_paths_aout="/usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout" # a.out shared library search paths kern_securelevel_enable="NO" # kernel security level (see init(8)), kern_securelevel="-1" # range: -1..3 ; `-1' is the most insecure dmesg_enable="YES" # Save dmesg(8) to /var/run/dmesg.boot performance_throttle_state="HIGH" # Online throttling state # Enable network daemons for user convenience. # Created: Tue Sep 7 03:09:30 2004 # -- sysinstall generated deltas -- # Tue Sep 7 03:09:30 2004 ifconfig_bfe0="inet 192.168.1.101 netmask 255.255.255.0" defaultrouter="192.168.1.1" hostname="lm741n.comcast.net" # This file now contains just the overrides from /etc/defaults/rc.conf. # Please make all changes to this file, not to /etc/defaults/rc.conf. --------------080204040203040204040005 Content-Type: text/plain; name="messages1" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="messages1" Sep 7 20:07:41 lm741n kernel: Mounting root from ufs:/dev/ad0s3a Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $ipxrouted_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $kerberos5_server_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $kadmind5_server_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $kpasswdd_server_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $named_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $enable_quotas is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $pflog_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $pf_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $pppoed_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $virecover_enable is not set properly - see rc.conf(5). Sep 7 20:07:41 lm741n root: /etc/rc: WARNING: $timed_enable is not set properly - see rc.conf(5). Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: /dev/apmctl not found; kernel is missing apm(4) Sep 7 20:07:42 lm741n apmd[385]: start Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: $bootparamd_enable is not set properly - see rc.conf(5). Sep 7 20:07:42 lm741n lpd[397]: lpd startup: logging=0 Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: $update_motd is not set properly - see rc.conf(5). Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: $ntpd_enable is not set properly - see rc.conf(5). Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: $rarpd_enable is not set properly - see rc.conf(5). Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: $rtadvd_enable is not set properly - see rc.conf(5). Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: $rwhod_enable is not set properly - see rc.conf(5). Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: $ibcs2_enable is not set properly - see rc.conf(5). Sep 7 20:07:42 lm741n root: /etc/rc: WARNING: $sysvipc_enable is not set properly - see rc.conf(5). Sep 7 20:07:44 lm741n root: /etc/rc: WARNING: $svr4_enable is not set properly - see rc.conf(5). Sep 7 20:07:44 lm741n root: /etc/rc: WARNING: $jail_enable is not set properly - see rc.conf(5). Sep 7 20:07:44 lm741n root: /etc/rc: WARNING: $ntpdate_enable is not set properly - see rc.conf(5). Sep 7 20:19:05 lm741n kernel: ugen1: NEC NEC USB UF000x, rev 1.10/1.50, addr 2 Sep 7 20:20:27 lm741n kernel: ugen1: at uhub0 port 1 (addr 2) disconnected Sep 7 20:20:27 lm741n kernel: ugen1: detached Sep 7 21:51:38 lm741n login: ROOT LOGIN (root) ON ttyv1 Sep 7 21:56:09 lm741n su: rob to root on /dev/ttyv0 Sep 7 22:00:56 lm741n shutdown: shutdown by rob: Sep 7 22:00:59 lm741n root: /etc/rc.shutdown: WARNING: $jail_enable is not set properly - see rc.conf(5). Sep 7 22:00:59 lm741n root: /etc/rc.shutdown: WARNING: $ipfs_enable is not set properly - see rc.conf(5). Sep 7 22:00:59 lm741n syslogd: exiting on signal 15 Sep 7 22:01:10 lm741n syslogd: kernel boot file is /boot/kernel/kernel Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $ipxrouted_enable is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $kerberos5_server_enable is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $kadmind5_server_enable is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $kpasswdd_server_enable is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $named_enable is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $enable_quotas is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $pflog_enable is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $pf_enable is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $pppoed_enable is not set properly - see rc.conf(5). Sep 7 22:01:10 lm741n root: /etc/rc: WARNING: $virecover_enable is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $timed_enable is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: /dev/apmctl not found; kernel is missing apm(4) Sep 7 22:01:11 lm741n apmd[1212]: start Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $bootparamd_enable is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n lpd[1224]: lpd startup: logging=0 Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $update_motd is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $ntpd_enable is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $rarpd_enable is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $rtadvd_enable is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $rwhod_enable is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $ibcs2_enable is not set properly - see rc.conf(5). Sep 7 22:01:11 lm741n root: /etc/rc: WARNING: $sysvipc_enable is not set properly - see rc.conf(5). Sep 7 22:01:13 lm741n root: /etc/rc: WARNING: $svr4_enable is not set properly - see rc.conf(5). Sep 7 22:01:13 lm741n root: /etc/rc: WARNING: $jail_enable is not set properly - see rc.conf(5). Sep 7 22:01:13 lm741n root: /etc/rc: WARNING: $ntpdate_enable is not set properly - see rc.conf(5). Sep 7 22:03:04 lm741n su: rob to root on /dev/ttyv0 Sep 7 23:21:48 lm741n shutdown: power-down by rob: Sep 7 23:21:50 lm741n root: /etc/rc.shutdown: WARNING: $jail_enable is not set properly - see rc.conf(5). Sep 7 23:21:50 lm741n root: /etc/rc.shutdown: WARNING: $ipfs_enable is not set properly - see rc.conf(5). Sep 7 23:21:50 lm741n syslogd: exiting on signal 15 Sep 9 13:14:01 lm741n syslogd: kernel boot file is /boot/kernel/kernel Sep 9 13:14:01 lm741n kernel: Copyright (c) 1992-2004 The FreeBSD Project. Sep 9 13:14:01 lm741n kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Sep 9 13:14:01 lm741n kernel: The Regents of the University of California. All rights reserved. Sep 9 13:14:01 lm741n kernel: FreeBSD 5.3-BETA2 #0: Mon Sep 6 22:22:52 PDT 2004 Sep 9 13:14:01 lm741n kernel: root@:/usr/src/sys/i386/compile/ROBKERN Sep 9 13:14:01 lm741n kernel: WARNING: WITNESS option enabled, expect reduced performance. Sep 9 13:14:01 lm741n kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Sep 9 13:14:01 lm741n kernel: CPU: Intel(R) Pentium(R) M processor 1700MHz (1698.57-MHz 686-class CPU) Sep 9 13:14:01 lm741n kernel: Origin = "GenuineIntel" Id = 0x695 Stepping = 5 Sep 9 13:14:01 lm741n kernel: Features=0xa7e9f9bf Sep 9 13:14:01 lm741n kernel: real memory = 1073405952 (1023 MB) Sep 9 13:14:01 lm741n kernel: avail memory = 1040867328 (992 MB) Sep 9 13:14:01 lm741n kernel: npx0: [FAST] Sep 9 13:14:01 lm741n kernel: npx0: on motherboard Sep 9 13:14:01 lm741n kernel: npx0: INT 16 interface Sep 9 13:14:01 lm741n kernel: pcib0: pcibus 0 on motherboard Sep 9 13:14:01 lm741n kernel: pir0: on motherboard Sep 9 13:14:01 lm741n kernel: $PIR: BIOS IRQ 11 for 0.29.INTB is not valid for link 0x63 Sep 9 13:14:01 lm741n kernel: $PIR: BIOS IRQ 11 for 2.1.INTA is not valid for link 0x63 Sep 9 13:14:01 lm741n kernel: pci0: on pcib0 Sep 9 13:14:01 lm741n kernel: agp0: mem 0xe0000000-0xe7ffffff at device 0.0 on pci0 Sep 9 13:14:01 lm741n kernel: pcib1: at device 1.0 on pci0 Sep 9 13:14:01 lm741n kernel: pci1: on pcib1 Sep 9 13:14:01 lm741n kernel: pci1: at device 0.0 (no driver attached) Sep 9 13:14:01 lm741n kernel: uhci0: port 0xbf80-0xbf9f irq 11 at device 29.0 on pci0 Sep 9 13:14:01 lm741n kernel: uhci0: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: usb0: on uhci0 Sep 9 13:14:01 lm741n kernel: usb0: USB revision 1.0 Sep 9 13:14:01 lm741n kernel: uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Sep 9 13:14:01 lm741n kernel: uhub0: 2 ports with 2 removable, self powered Sep 9 13:14:01 lm741n kernel: uhci1: port 0xbf40-0xbf5f irq 11 at device 29.1 on pci0 Sep 9 13:14:01 lm741n kernel: uhci1: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: usb1: on uhci1 Sep 9 13:14:01 lm741n kernel: usb1: USB revision 1.0 Sep 9 13:14:01 lm741n kernel: uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Sep 9 13:14:01 lm741n kernel: uhub1: 2 ports with 2 removable, self powered Sep 9 13:14:01 lm741n kernel: uhci2: port 0xbf20-0xbf3f irq 11 at device 29.2 on pci0 Sep 9 13:14:01 lm741n kernel: uhci2: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: usb2: on uhci2 Sep 9 13:14:01 lm741n kernel: usb2: USB revision 1.0 Sep 9 13:14:01 lm741n kernel: uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Sep 9 13:14:01 lm741n kernel: uhub2: 2 ports with 2 removable, self powered Sep 9 13:14:01 lm741n kernel: pci0: at device 29.7 (no driver attached) Sep 9 13:14:01 lm741n kernel: pcib2: at device 30.0 on pci0 Sep 9 13:14:01 lm741n kernel: pci2: on pcib2 Sep 9 13:14:01 lm741n kernel: bfe0: mem 0xfaffe000-0xfaffffff irq 11 at device 0.0 on pci2 Sep 9 13:14:01 lm741n kernel: miibus0: on bfe0 Sep 9 13:14:01 lm741n kernel: bmtphy0: on miibus0 Sep 9 13:14:01 lm741n kernel: bmtphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Sep 9 13:14:01 lm741n kernel: bfe0: Ethernet address: 00:0d:56:38:b8:a0 Sep 9 13:14:01 lm741n kernel: bfe0: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: cbb0: irq 11 at device 1.0 on pci2 Sep 9 13:14:01 lm741n kernel: cardbus0: on cbb0 Sep 9 13:14:01 lm741n kernel: pccard0: <16-bit PCCard bus> on cbb0 Sep 9 13:14:01 lm741n kernel: fwohci0: <1394 Open Host Controller Interface> mem 0xfaff8000-0xfaffbfff,0xfaffd800-0xfaffdfff irq 11 at device 1.1 on pci2 Sep 9 13:14:01 lm741n kernel: fwohci0: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: fwohci0: OHCI version 1.10 (ROM=0) Sep 9 13:14:01 lm741n kernel: fwohci0: No. of Isochronous channels is 4. Sep 9 13:14:01 lm741n kernel: fwohci0: EUI64 5b:4f:c0:00:3f:ff:ff:ff Sep 9 13:14:01 lm741n kernel: fwohci0: Phy 1394a available S400, 2 ports. Sep 9 13:14:01 lm741n kernel: fwohci0: Link S400, max_rec 2048 bytes. Sep 9 13:14:01 lm741n kernel: firewire0: on fwohci0 Sep 9 13:14:01 lm741n kernel: sbp0: on firewire0 Sep 9 13:14:01 lm741n kernel: fwe0: on firewire0 Sep 9 13:14:01 lm741n kernel: if_fwe0: Fake Ethernet address: 5a:4f:c0:ff:ff:ff Sep 9 13:14:01 lm741n kernel: fwe0: Ethernet address: 5a:4f:c0:ff:ff:ff Sep 9 13:14:01 lm741n kernel: fwohci0: Initiate bus reset Sep 9 13:14:01 lm741n kernel: fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode Sep 9 13:14:01 lm741n kernel: firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me) Sep 9 13:14:01 lm741n kernel: firewire0: bus manager 0 (me) Sep 9 13:14:01 lm741n kernel: pci2: at device 3.0 (no driver attached) Sep 9 13:14:01 lm741n kernel: isab0: at device 31.0 on pci0 Sep 9 13:14:01 lm741n kernel: isa0: on isab0 Sep 9 13:14:01 lm741n kernel: atapci0: port 0xbfa0-0xbfaf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 31.1 on pci0 Sep 9 13:14:01 lm741n kernel: ata0: channel #0 on atapci0 Sep 9 13:14:01 lm741n kernel: ata1: channel #1 on atapci0 Sep 9 13:14:01 lm741n kernel: pcm0: port 0xbc40-0xbc7f,0xb800-0xb8ff mem 0xf4fff400-0xf4fff4ff,0xf4fff800-0xf4fff9ff irq 11 at device 31.5 on pci0 Sep 9 13:14:01 lm741n kernel: pcm0: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: pcm0: Sep 9 13:14:01 lm741n kernel: pci0: at device 31.6 (no driver attached) Sep 9 13:14:01 lm741n kernel: cpu0 on motherboard Sep 9 13:14:01 lm741n kernel: orm0: at iomem 0xcf800-0xcffff,0xc0000-0xcf7ff on isa0 Sep 9 13:14:01 lm741n kernel: pmtimer0 on isa0 Sep 9 13:14:01 lm741n kernel: atkbdc0: at port 0x64,0x60 on isa0 Sep 9 13:14:01 lm741n kernel: atkbd0: irq 1 on atkbdc0 Sep 9 13:14:01 lm741n kernel: kbd0 at atkbd0 Sep 9 13:14:01 lm741n kernel: atkbd0: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: psm0: irq 12 on atkbdc0 Sep 9 13:14:01 lm741n kernel: psm0: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: psm0: model GlidePoint, device ID 0 Sep 9 13:14:01 lm741n kernel: fdc0: ready for input in output Sep 9 13:14:01 lm741n kernel: fdc0: cmd 3 failed at out byte 1 of 3 Sep 9 13:14:01 lm741n kernel: ppc0: at port 0x378-0x37f irq 7 on isa0 Sep 9 13:14:01 lm741n kernel: ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode Sep 9 13:14:01 lm741n kernel: ppc0: FIFO with 16/16/8 bytes threshold Sep 9 13:14:01 lm741n kernel: ppbus0: on ppc0 Sep 9 13:14:01 lm741n kernel: plip0: on ppbus0 Sep 9 13:14:01 lm741n kernel: lpt0: on ppbus0 Sep 9 13:14:01 lm741n kernel: lpt0: Interrupt-driven port Sep 9 13:14:01 lm741n kernel: ppi0: on ppbus0 Sep 9 13:14:01 lm741n kernel: sc0: at flags 0x100 on isa0 Sep 9 13:14:01 lm741n kernel: sc0: VGA <16 virtual consoles, flags=0x300> Sep 9 13:14:01 lm741n kernel: sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 Sep 9 13:14:01 lm741n kernel: sio0: type 16550A Sep 9 13:14:01 lm741n kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 Sep 9 13:14:01 lm741n kernel: sio1: port may not be enabled Sep 9 13:14:01 lm741n kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Sep 9 13:14:01 lm741n kernel: unknown: can't assign resources (port) Sep 9 13:14:01 lm741n kernel: unknown: can't assign resources (irq) Sep 9 13:14:01 lm741n kernel: unknown: can't assign resources (port) Sep 9 13:14:01 lm741n kernel: unknown: can't assign resources (port) Sep 9 13:14:01 lm741n kernel: Timecounter "TSC" frequency 1698567438 Hz quality 800 Sep 9 13:14:01 lm741n kernel: Timecounters tick every 10.000 msec Sep 9 13:14:01 lm741n kernel: IP Filter: v3.4.35 initialized. Default = pass all, Logging = enabled Sep 9 13:14:01 lm741n kernel: cardbus0: Resource not specified in CIS: id=10, size=1000 Sep 9 13:14:01 lm741n kernel: ohci0: mem 0xf6001000-0xf6001fff irq 11 at device 0.0 on cardbus0 Sep 9 13:14:01 lm741n kernel: ohci0: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: usb3: OHCI version 1.0 Sep 9 13:14:01 lm741n kernel: ad0: 57231MB [116280/16/63] at ata0-master PIO4 Sep 9 13:14:01 lm741n kernel: ATAPI_RESET time = 30us Sep 9 13:14:01 lm741n kernel: acd0: CDRW <_NEC DVD+RW ND-5100A/10AC> at ata1-master PIO4 Sep 9 13:14:01 lm741n kernel: usb3: on ohci0 Sep 9 13:14:01 lm741n kernel: usb3: USB revision 1.0 Sep 9 13:14:01 lm741n kernel: uhub3: NEC OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Sep 9 13:14:01 lm741n kernel: uhub3: 3 ports with 3 removable, self powered Sep 9 13:14:01 lm741n kernel: cardbus0: Resource not specified in CIS: id=10, size=1000 Sep 9 13:14:01 lm741n kernel: ohci1: mem 0xf6002000-0xf6002fff irq 11 at device 0.1 on cardbus0 Sep 9 13:14:01 lm741n kernel: ohci1: [GIANT-LOCKED] Sep 9 13:14:01 lm741n kernel: usb4: OHCI version 1.0 Sep 9 13:14:01 lm741n kernel: usb4: on ohci1 Sep 9 13:14:01 lm741n kernel: usb4: USB revision 1.0 Sep 9 13:14:01 lm741n kernel: uhub4: NEC OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Sep 9 13:14:01 lm741n kernel: uhub4: 2 ports with 2 removable, self powered Sep 9 13:14:01 lm741n kernel: cardbus0: Resource not specified in CIS: id=10, size=100 Sep 9 13:14:01 lm741n kernel: cardbus0: at device 0.2 (no driver attached) Sep 9 13:14:01 lm741n kernel: ugen0: Orange Micro iBOT2 Camera, rev 2.00/1.00, addr 2 Sep 9 13:14:01 lm741n kernel: Mounting root from ufs:/dev/ad0s3a Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $ipxrouted_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $kerberos5_server_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $kadmind5_server_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $kpasswdd_server_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $named_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $enable_quotas is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $pflog_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $pf_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $pppoed_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $virecover_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: $timed_enable is not set properly - see rc.conf(5). Sep 9 13:14:01 lm741n root: /etc/rc: WARNING: /dev/apmctl not found; kernel is missing apm(4) Sep 9 13:14:02 lm741n apmd[385]: start Sep 9 13:14:02 lm741n root: /etc/rc: WARNING: $bootparamd_enable is not set properly - see rc.conf(5). Sep 9 13:14:02 lm741n lpd[397]: lpd startup: logging=0 Sep 9 13:14:02 lm741n root: /etc/rc: WARNING: $update_motd is not set properly - see rc.conf(5). Sep 9 13:14:02 lm741n root: /etc/rc: WARNING: $ntpd_enable is not set properly - see rc.conf(5). Sep 9 13:14:02 lm741n root: /etc/rc: WARNING: $rarpd_enable is not set properly - see rc.conf(5). Sep 9 13:14:02 lm741n root: /etc/rc: WARNING: $rtadvd_enable is not set properly - see rc.conf(5). Sep 9 13:14:02 lm741n root: /etc/rc: WARNING: $rwhod_enable is not set properly - see rc.conf(5). Sep 9 13:14:02 lm741n root: /etc/rc: WARNING: $ibcs2_enable is not set properly - see rc.conf(5). Sep 9 13:14:02 lm741n root: /etc/rc: WARNING: $sysvipc_enable is not set properly - see rc.conf(5). Sep 9 13:14:04 lm741n root: /etc/rc: WARNING: $svr4_enable is not set properly - see rc.conf(5). Sep 9 13:14:04 lm741n root: /etc/rc: WARNING: $jail_enable is not set properly - see rc.conf(5). Sep 9 13:14:04 lm741n root: /etc/rc: WARNING: $ntpdate_enable is not set properly - see rc.conf(5). Sep 9 13:14:34 lm741n login: ROOT LOGIN (root) ON ttyv0 --------------080204040203040204040005--