From owner-freebsd-questions@FreeBSD.ORG Sun May 15 00:06:12 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64CB416A4CE for ; Sun, 15 May 2005 00:06:12 +0000 (GMT) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA34E43D49 for ; Sun, 15 May 2005 00:06:11 +0000 (GMT) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([69.160.65.223]) by mta11.adelphia.netESMTP <20050515000611.DAFD13270.mta11.adelphia.net@default.chvlva.adelphia.net>; Sat, 14 May 2005 20:06:11 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id CA5FAB4FC; Sat, 14 May 2005 20:06:14 -0400 (EDT) Date: Sat, 14 May 2005 20:06:14 -0400 From: Parv To: Per Berger Message-ID: <20050515000614.GA9332@holestein.holy.cow> Mail-Followup-To: Per Berger , FreeBSD questions References: <4285EEDF.4070902@stortsett.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4285EEDF.4070902@stortsett.se> cc: FreeBSD questions Subject: Re: ipfilter and logging... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: f-q List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 00:06:12 -0000 in message <4285EEDF.4070902@stortsett.se>, wrote Per Berger thusly... > > The handbook says that I can add "security.*" in syslog.conf and > specify a logfile to log the firewall. But there is already an > entry in syslog.conf "security.*" from install ( I am running > 5.4-RELEASE upgraded from 5.3 via cvsup (which worked great > btw...)) pointing at /var/log/security. And all logging goes to > /var/log/security. But at least some of it goes also to > /var/log/messages; seems to be the "final" rules that goes there, > i.e. such as "block in log first quick on fxp0 all". (reformatted the syslog.conf entries) > *.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err /var/log/messages ^ ^ ^ ^ ^ ^ ^ ^ > security.* /var/log/security According to above entries & ipmon(8) man page ... -s Packet information read in will be sent through syslogd rather than saved to a file. The default facility when compiled and installed is security. The following levels are used: LOG_INFO - packets logged using the "log" keyword as the action rather than pass or block. LOG_NOTICE - packets logged which are also passed LOG_WARNING - packets logged which are also blocked LOG_ERR - packets which have been logged and which can be considered "short" ... only "pass" directives will/should be logged to "messages", *in addition to* also being logged in "security". "block" directives will only be logged in "security". > Now for my question. I do really want a separate log file for > ipfilter. How would a change syslog.conf to separate out the > ipfilter logs from the rest without breaking any other logging? Specify a file to ipmon(8) to log messages into via option "-D"; remove traces of ipf(8) activity from /etc/syslog.conf except as noted below. Update /etc/newsyslog.conf(5) to have the ipf log file rotated as you desire. In order to avoid to specify the option & file name manually each time you start your system, add something like the following to your /etc/rc.conf ... ipmon_enable="YES" ipmon_flags="-D /var/log/ipf.log" > how do I change the line for /var/log/messages so that no ipfilter > stuff goes there without breaking something else? Read syslog.conf(5) man page, especially the part about log levels. After reading that, in the "/var/log/messages" column, change the level of facility "security" from "*" to "none". - Parv -- From owner-freebsd-questions@FreeBSD.ORG Sun May 15 00:20:27 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DE5416A4CE for ; Sun, 15 May 2005 00:20:27 +0000 (GMT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C63F43D8A for ; Sun, 15 May 2005 00:20:25 +0000 (GMT) (envelope-from stevenrhowe@comcast.net) Received: from lucky7 (c-24-147-47-215.hsd1.nh.comcast.net[24.147.47.215]) by comcast.net (rwcrmhc12) with SMTP id <2005051500202401400dmcire>; Sun, 15 May 2005 00:20:24 +0000 From: "Steven R Howe" To: "'mojo fms'" , Date: Sat, 14 May 2005 20:20:14 -0400 Message-ID: <000a01c558e3$de580ca0$020a0a0a@lucky7> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal Subject: RE: changing users default shell X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 00:20:27 -0000 or just to be a know-it-all with anither answer.... pw usermod -s I personally use vipw to mod user account info, but use this to add users. Good Luck -steven -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of mojo fms Sent: Saturday, May 14, 2005 1:28 PM To: freebsd-questions@freebsd.org Subject: changing users default shell i know you use to be able to change it in /etc/passwd but im kind of out of date on how it is done on newer versions of fbsd.. i cant find any real info execpt for adduser in the handbook.. I want to change a users shell from sh to bash.. thanks _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" -- No virus found in this incoming message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.11.10 - Release Date: 5/13/2005 From owner-freebsd-questions@FreeBSD.ORG Sun May 15 00:20:53 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7A8C16A4CE for ; Sun, 15 May 2005 00:20:52 +0000 (GMT) Received: from titan.open-networks.net (dsl-202-173-176-254.qld.westnet.com.au [202.173.176.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0CED43D80 for ; Sun, 15 May 2005 00:20:51 +0000 (GMT) (envelope-from timothy@open-networks.net) Received: from [192.168.1.200] (unknown [192.168.1.1]) by titan.open-networks.net (Postfix) with ESMTP id A24C1A24; Sun, 15 May 2005 10:20:49 +1000 (EST) Message-ID: <428695E1.5000100@open-networks.net> Date: Sun, 15 May 2005 10:20:49 +1000 From: Timothy Smith User-Agent: Mozilla Thunderbird 0.8 (X11/20041023) X-Accept-Language: en-us, en MIME-Version: 1.0 References: <42832E02.2090003@open-networks.net> <42837807.2090407@dial.pipex.com> <42837E15.9020302@dial.pipex.com> <4283CF69.8010005@open-networks.net> <4284D3D6.4030409@dial.pipex.com> <42851CCB.8030603@open-networks.net> <428537EF.1040306@dial.pipex.com> <42859E37.1080100@open-networks.net> In-Reply-To: <42859E37.1080100@open-networks.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org cc: Alex Zbyslaw Subject: Re: can't build firefox 1.0.4 on 4.10 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 00:20:53 -0000 Timothy Smith wrote: > Alex Zbyslaw wrote: > >> Timothy Smith wrote: >> >>> ./configure gets >>> >>> *** The libIDL-config script installed by libIDL could not be found >>> *** If libIDL was installed in PREFIX, make sure PREFIX/bin is in >>> *** your path, or set the LIBIDL_CONFIG environment variable to the >>> *** full path to libIDL-config. >>> checking for orbit-config... no >>> configure: error: libIDL not found. >>> libIDL 0.6.3 or higher is required. >> >> >> >> [and ...] >> >>> %locate libIDL-config-2 >>> /usr/local/bin/libIDL-config-2 >>> %which make >>> /usr/bin/make >>> %ls -lsa `which make` >>> 224 -r-xr-xr-x 1 root wheel 206736 May 26 2004 /usr/bin/make >>> >> That looks right. (Btw "/usr/local/bin/libIDL-config was installed >> by package ORBit-0.5.17_2" and that doesn't appear to be a dependency >> of firefox's. I think the message from firefox install is just >> confusing the issue and it is libIDL-config-2 that's required). >> >> More obvious questions. You are doing the firefox install as root >> and root does have /usr/local/bin/ in it's path and libIDL-config-2 >> is executable? As root check with: "which libIDL-config-2". >> >> Just to confirm it working, I tried just configuring firefox and got: >> >> checking for libIDL-2.0 >= 0.8.0... yes >> checking LIBIDL_CFLAGS... -I/usr/local/include/libIDL-2.0 >> -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include >> checking LIBIDL_LIBS... -L/usr/local/lib -lIDL-2 >> >> I'm not sure what else to suggest. make clean in firefox and try >> making again. >> >> --Alex >> >> >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to >> "freebsd-questions-unsubscribe@freebsd.org" >> >> > i wasn't doing ./configure as root, doing it as root and it's found > libIDL-config without a problem, however i've runinto something else now > > make halts at > > "Makefile", line 386: Missing dependency operator > Error expanding embedded variable. > > note there's a few other missing dependency operator msg's above that > > a quick look in the make file see's this at line 386 > # Hack to generate xpidl Makefile > ifneq ($(BUILD_MODULES),all) > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > i've gotten futher, i've found you can't compile it with make, you need to use gmake. sunbird compiled fine, however firefox errors with +++ making chrome /usr/home/timothy/mozilla/netwerk/resources => ../../dist/bin/chrome/en-US.jar error: file '../../toolkit/locales/en-US/chrome/necko/contents.rdf' doesn't exist at ../../config/make-jars.pl line 418, chunk 9. gmake[3]: *** [libs] Error 2 gmake[3]: Leaving directory `/usr/home/timothy/mozilla/netwerk/resources' gmake[2]: *** [libs] Error 2 gmake[2]: Leaving directory `/usr/home/timothy/mozilla/netwerk' gmake[1]: *** [tier_9] Error 2 gmake[1]: Leaving directory `/usr/home/timothy/mozilla' gmake: *** [default] Error 2 From owner-freebsd-questions@FreeBSD.ORG Sun May 15 00:54:55 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 538F616A4CE for ; Sun, 15 May 2005 00:54:55 +0000 (GMT) Received: from mux1.uit.no (mux1.uit.no [129.242.4.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id C28C043D4C for ; Sun, 15 May 2005 00:54:53 +0000 (GMT) (envelope-from eirik.fossgaard@cc.uit.no) Received: from EDENEVS1.asp.ad.uit.no (eden1.asp.ad.uit.no [129.242.8.24]) by mux1.uit.no (8.13.3/8.13.3/Mux) with ESMTP id j4F0spcH074769 for ; Sun, 15 May 2005 02:54:52 +0200 (CEST) X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Sun, 15 May 2005 02:54:51 +0200 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Cannot mount ThinkPad removable cdrom device under FreeBSD-5.4 thread-index: AcVY6LNow9KxRrrlTuObQCBFvmNKJQ== From: =?iso-8859-1?Q?Eirik_Fossg=E5rd?= To: X-Virus-Scanned: : ok X-Scanned-By: MIMEDefang 2.36 Subject: Cannot mount ThinkPad removable cdrom device under FreeBSD-5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 00:54:55 -0000 hi, I have an IBM removable cdrom device which I'm trying to use under=20 FreeBSD-5.4 RELEASE. I connect it on the USB ports on my ThinkPad X40, = insert a cdrom (neil young) but I cannot mount it: "mount -t cd9660 /dev/cd0 /mnt/cdrom" yields:=20 cd9660: /dev/cd0: Device not configured. A "dmesg" then yields: umass0: GENERIC CDRCB04, rev 2.00/0.00, addr 2 cd0 at umass-sim0 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device=20 cd0: 40.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present = - tray closed (cd0:umass-sim0:0:0:0): READ(10). CDB: 28 0 0 0 0 10 0 0 1 0=20 (cd0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (cd0:umass-sim0:0:0:0): SCSI Status: Check Condition (cd0:umass-sim0:0:0:0): ILLEGAL REQUEST asc:64,0 (cd0:umass-sim0:0:0:0): Illegal mode for this track (cd0:umass-sim0:0:0:0): Unretryable error (cd0:umass-sim0:0:0:0): cddone: got error 0x6 back (cd0:umass-sim0:0:0:0): READ(10). CDB: 28 0 0 0 0 10 0 0 1 0=20 (cd0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (cd0:umass-sim0:0:0:0): SCSI Status: Check Condition (cd0:umass-sim0:0:0:0): ILLEGAL REQUEST asc:64,0 (cd0:umass-sim0:0:0:0): Illegal mode for this track (cd0:umass-sim0:0:0:0): Unretryable error (cd0:umass-sim0:0:0:0): cddone: got error 0x6 back (cd0:umass-sim0:0:0:0): READ(10). CDB: 28 0 0 0 0 10 0 0 1 0=20 (cd0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (cd0:umass-sim0:0:0:0): SCSI Status: Check Condition (cd0:umass-sim0:0:0:0): ILLEGAL REQUEST asc:64,0 (cd0:umass-sim0:0:0:0): Illegal mode for this track (cd0:umass-sim0:0:0:0): Unretryable error (cd0:umass-sim0:0:0:0): cddone: got error 0x6 back I have:=20 device cd device pass device atapicam device atapicd device scbus device ata compiled into my kernel. I'm stuck. Grateful for any help/hints=20 on what to try next. From owner-freebsd-questions@FreeBSD.ORG Sun May 15 01:38:56 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECBBE16A4D0 for ; Sun, 15 May 2005 01:38:56 +0000 (GMT) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BF5C43DAA for ; Sun, 15 May 2005 01:38:56 +0000 (GMT) (envelope-from mike@sentex.net) Received: from BLUELAPIS.sentex.ca (cage.simianscience.com [64.7.134.1]) by smarthost2.sentex.ca (8.13.3/8.13.3) with SMTP id j4F1crdG077418; Sat, 14 May 2005 21:38:55 -0400 (EDT) (envelope-from mike@sentex.net) From: Mike Tancsa To: Andrea Venturoli Date: Sat, 14 May 2005 21:38:55 -0400 Message-ID: References: <4286313A.3080102@netfence.it> In-Reply-To: <4286313A.3080102@netfence.it> X-Mailer: Forte Agent 1.93/32.576 English (American) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on smarthost2.sentex.ca X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: Re: NFS read-ahead? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 01:38:57 -0000 On Sat, 14 May 2005 19:11:22 +0200, in sentex.lists.freebsd.questions you wrote: >If yes, is there a way to set it up to perform some read-ahead? Hi, Take a look at the -a and -r options on mount_nfs=20 ---Mike -------------------------------------------------------- Mike Tancsa, Sentex communications http://www.sentex.net Providing Internet Access since 1994 mike@sentex.net, (http://www.tancsa.com) From owner-freebsd-questions@FreeBSD.ORG Sun May 15 01:45:08 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBEB216A4E7 for ; Sun, 15 May 2005 01:45:07 +0000 (GMT) Received: from utilnj01.rightnowtech.com (utilnj01.rightnowtech.com [63.240.89.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00C1443D58 for ; Sun, 15 May 2005 01:44:59 +0000 (GMT) (envelope-from merchandise@musictoday.com) Received: from utilnj01.int.rightnowtech.com (localhost.localdomain [127.0.0.1]) by utilnj01.rightnowtech.com (Postfix) with SMTP id 36CF91D7FA1 for ; Sat, 14 May 2005 21:44:56 -0400 (EDT) MIME-Version: 1.0 Message-Id: <4286A998.000036.23786@utilnj01.int.rightnowtech.com> Date: Sat, 14 May 2005 21:44:56 -0400 (EDT) To: questions@freebsd.org From: "Musictoday" Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Auf Streife durch den Berliner Wedding [Incident: 050514-000916] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Musictoday List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 01:45:08 -0000 Thank you for your email. You should receive a response within one business day during our normal business hours. Our normal business hours are: Monday-Thursday 9am-Midnight ET and Friday 9am-8pm ET.=20 Question Reference #050514-000916 --------------------------------------------------------------- Summary: Auf Streife durch den Berliner Wedding Date Created: 05/14/2005 09:44 PM Last Updated: 05/14/2005 09:44 PM Status: Unresolved Discussion Thread --------------------------------------------------------------- Customer - 05/14/2005 09:44 PM Lese selbst: http://www.zdf.de/ZDFde/inhalt/7/0,1872,2222503,00.html http://www.libasoli.de/2004/ethnoclans%20spiegel50_04.html [---001:000608:49574---] From owner-freebsd-questions@FreeBSD.ORG Sun May 15 01:57:10 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EF2116A4F7 for ; Sun, 15 May 2005 01:57:06 +0000 (GMT) Received: from mailgate2.dslextreme.com (mailgate2.dslextreme.com [66.51.199.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06DF943D54 for ; Sun, 15 May 2005 01:57:06 +0000 (GMT) (envelope-from rshakin@unixfreak.org) Received: from mail5.dslextreme.com (unknown [192.168.7.93]) by mailgate2.dslextreme.com (Postfix) with SMTP id 085FD3A6508 for ; Sat, 14 May 2005 18:56:59 -0700 (PDT) Received: (qmail 19262 invoked from network); 15 May 2005 01:57:04 -0000 Received: from unknown (HELO [192.168.1.102]) (rshakin@66.245.221.240) by mail5.dslextreme.com with SMTP; Sat, 14 May 2005 18:57:04 -0700 Message-ID: <4286AC83.8030904@unixfreak.org> Date: Sat, 14 May 2005 18:57:23 -0700 From: Roman Shakin User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-DSLExtreme-MailGate-Information: Please contact the ISP for more information X-DSLExtreme-MailGate: Found to be clean X-MailScanner-From: rshakin@unixfreak.org Subject: Mouse scrolling problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 01:57:11 -0000 I am trying to get my mouse scrolling to work in firerox, and I did the Zaxizmapping 4 5 in xfree config. And my what my wheel does instead of page down and up it does back and forward button. What can I do? -- ---------------------------------- Roman Shakin rshakin@unixfreak.org (email) +1 (707) 570-1685 (phone) +1 (707) 360-7773 (cell ) From owner-freebsd-questions@FreeBSD.ORG Sun May 15 02:35:38 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F38616A4CE for ; Sun, 15 May 2005 02:35:38 +0000 (GMT) Received: from mail.nativenerds.com (host-70-0-111-24.midco.net [24.111.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7961543DB1 for ; Sun, 15 May 2005 02:35:37 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from [192.168.1.89] (host-133-35-230-24.midco.net [24.230.35.133]) j4F2n8J6008098; Sat, 14 May 2005 20:49:08 -0600 (MDT) (envelope-from estover@nativenerds.com) Message-ID: <4286B5BC.5030205@nativenerds.com> Date: Sat, 14 May 2005 20:36:44 -0600 From: Ed Stover Organization: Native Nerds User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050503) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chuck Swiger References: <428394B2.20409@att.net> <20050512141024.U37797@wonkity.com> <4285A22C.60707@nativenerds.com> <4285E301.9060604@mac.com> In-Reply-To: <4285E301.9060604@mac.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mail.nativenerds.com cc: FreeBSD - Questions Subject: Re: monitoring and alerting software ???? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: estover@nativenerds.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 02:35:38 -0000 Chuck Swiger wrote: > Ed Stover wrote: > [ ... ] > >> I know some people that run big brother and are satisfied by it. >> http://www.bb4.org/ > > > I would second this recommendation. Big brother is relatively simple to > configure, although it is by design more of a monitoring tool, and is > less active about responding to changes, although it does support lots > and lots of types of notifications. > > BB is also not open source, although the source code is available and > you are welcome to use it for yourself or your business for free. But > they want you to buy a license if you sell BB's monitoring to other > people-- ie, an ISP and clients... > You know, I think there was an open source clone of this some where... If i find it, I will post it and see if it in ports as well... From owner-freebsd-questions@FreeBSD.ORG Sun May 15 03:56:08 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1816B16A4D0 for ; Sun, 15 May 2005 03:56:08 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98A8643D91 for ; Sun, 15 May 2005 03:56:07 +0000 (GMT) (envelope-from subhro.kar@gmail.com) Received: by rproxy.gmail.com with SMTP id i8so370033rne for ; Sat, 14 May 2005 20:56:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:organization:user-agent:x-accept-language:mime-version:to:cc:subject:references:in-reply-to:content-type; b=Fgjq4bYYNt9LiRHhbM3UuX1E13NSzP6HbHbmaoY5dswpGrlz3iRuD/wj93h1siyLV04gUeW8xV7qBwjQpKX0Ljiqjw1SH/4RWc1+JTni10bBTrAoSxPNSfWSV40BnOvzxnCXD6uQzw+z/5l89J0LsK20knOwkNGd3UARm6t0Fas= Received: by 10.39.3.49 with SMTP id f49mr1627963rni; Sat, 14 May 2005 20:56:07 -0700 (PDT) Received: from ?59.93.162.9? ([59.93.162.9]) by mx.gmail.com with ESMTP id 3sm1252904rns.2005.05.14.20.56.05; Sat, 14 May 2005 20:56:07 -0700 (PDT) Message-ID: <4286C84A.6010904@gmail.com> Date: Sun, 15 May 2005 09:25:54 +0530 From: Subhro Organization: Indian Institute of Information Technology User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Roman Shakin References: <4286AC83.8030904@unixfreak.org> In-Reply-To: <4286AC83.8030904@unixfreak.org> Content-Type: multipart/mixed; boundary="------------090901040806080209050108" X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: FreeBSD Questions Subject: Re: Mouse scrolling problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 03:56:08 -0000 This is a multi-part message in MIME format. --------------090901040806080209050108 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 5/15/2005 7:27, Roman Shakin wrote: > I am trying to get my mouse scrolling to work in firerox, and I did > the Zaxizmapping 4 5 in xfree config. And my what my wheel does > instead of page down and up it does back and forward button. What can > I do? > Install imwheel from the ports collection and man imwheel. Regards S. --------------090901040806080209050108-- From owner-freebsd-questions@FreeBSD.ORG Sun May 15 04:02:32 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0301216A4D3 for ; Sun, 15 May 2005 04:02:29 +0000 (GMT) Received: from mail.blarg.net (electric.blarg.net [206.124.128.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id B59D043DBB for ; Sun, 15 May 2005 04:02:28 +0000 (GMT) (envelope-from allanb@u.washington.edu) Received: from mail.blarg.net (localhost.drteeth.p.blarg.net [127.0.0.1]) by mail.blarg.net (Postfix) with ESMTP id 702A5F3938 for ; Sat, 14 May 2005 21:02:28 -0700 (PDT) Received: from kosmos.my.net (c-67-170-10-15.hsd1.wa.comcast.net [67.170.10.15]) by mail.blarg.net (Postfix) with ESMTP id 2BCA8F395B for ; Sat, 14 May 2005 21:02:28 -0700 (PDT) Received: from kosmos.my.net (localhost [127.0.0.1]) by kosmos.my.net (8.13.3/8.13.3) with ESMTP id j4F41Hr8029542 for ; Sat, 14 May 2005 21:02:33 -0700 (PDT) (envelope-from kosmos@kosmos.my.net) Received: (from kosmos@localhost) by kosmos.my.net (8.13.3/8.13.3/Submit) id j4F41HOR029541 for freebsd-questions@freebsd.org; Sat, 14 May 2005 21:01:17 -0700 (PDT) (envelope-from kosmos) Date: Sat, 14 May 2005 21:00:02 -0700 From: Allan Bowhill To: freebsd-questions@freebsd.org Message-ID: <20050515040002.GA29505@kosmos.my.net> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline X-URL: http://www.blarg.net/~abowhill/ User-Agent: Mutt/1.5.6i X-BlargAV-Status: No viruses detected, BlargAV v1.1 on localhost.drteeth.p.blarg.net Subject: silencing the boot beep X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 04:02:32 -0000 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Does anyone know how to turn off the annoying beep when=20 BSD partition selector comes up?=20 Also, has anyone got a decent setup for a synaptics touchpad=20 attached to a Dell Inspiron 1150 laptop? 5.4-STABLE=20 Thanks in advance! :) --=20 Allan Bowhill abowhill@blarg.net c1afddf65d9d9811141cf67b033f5355 Nothing astonishes men so much as common sense and plain dealing. --82I3+IH0IqGh5yIs Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQFChslBBC/kSIeFE54RAjNCAJ4x258UOq9kts2cNfJe2GJHiicZXQCeOUF2 92lBHi+WRZwV0iLQXEXd1Fg= =y37B -----END PGP SIGNATURE----- --82I3+IH0IqGh5yIs-- From owner-freebsd-questions@FreeBSD.ORG Sun May 15 04:18:52 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEFC016A4D1 for ; Sun, 15 May 2005 04:18:52 +0000 (GMT) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC04343DB5 for ; Sun, 15 May 2005 04:18:51 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) j4F4JOb17474; Sat, 14 May 2005 21:19:25 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Roman Shakin" , "FreeBSD Questions" Date: Sat, 14 May 2005 21:18:50 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <4286AC83.8030904@unixfreak.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal Subject: RE: Mouse scrolling problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 04:18:53 -0000 Insert this in your XF86Config file (or xorg config file) For a wheel mouse, in the following section of XF86Config: Section "InputDevice" Identifier "Mouse0" add the following: Option "Buttons" "5" Option "ZAxisMapping" "4 5" to enable wheel access Ted > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Roman Shakin > Sent: Saturday, May 14, 2005 6:57 PM > To: FreeBSD Questions > Subject: Mouse scrolling problems > > > I am trying to get my mouse scrolling to work in firerox, and > I did the > Zaxizmapping 4 5 in xfree config. And my what my wheel does instead of > page down and up it does back and forward button. What can I do? > > -- > > > ---------------------------------- > Roman Shakin > rshakin@unixfreak.org (email) > +1 (707) 570-1685 (phone) > +1 (707) 360-7773 (cell ) > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sun May 15 04:29:06 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C13A216A4D0; Sun, 15 May 2005 04:29:06 +0000 (GMT) Received: from carver.gumbysoft.com (carver.gumbysoft.com [66.220.23.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A418643D78; Sun, 15 May 2005 04:29:06 +0000 (GMT) (envelope-from dwhite@gumbysoft.com) Received: by carver.gumbysoft.com (Postfix, from userid 1000) id 9806172DD9; Sat, 14 May 2005 21:29:06 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by carver.gumbysoft.com (Postfix) with ESMTP id 95E4272DD4; Sat, 14 May 2005 21:29:06 -0700 (PDT) Date: Sat, 14 May 2005 21:29:06 -0700 (PDT) From: Doug White To: fbsd_user In-Reply-To: Message-ID: <20050514212427.Q49081@carver.gumbysoft.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: stable@freebsd.org cc: "freebsd-questions@FreeBSD. ORG" Subject: Re: 5.4 install disc1 will not find hard drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 04:29:06 -0000 On Sat, 14 May 2005, fbsd_user wrote: > I have seen this problem on the questions list since 5.0 first can out as > development version. Here 5.4 is now stable release and this problem is > still not fixed. I have been using the same pc to test installing stable > versions from miniinst.iso every version since 3.4 without any problems. > Even 5.3-miniinst.iso worked just 2 weeks ago. The 5.4 stable does not have > a miniinst.iso file so this time I used the disc1.iso to burn the install cd > from and when booting from this cd I now get no hard drive found message > from sysinstall (standard install) menu. This sure looks very strange to me > as I can put in the cd burned from the 5.3-miniinst.iso file and the system > installs just fine. Only difference is using disc1 this time. Even though > the md5 CHECKSUM matched I downloaded and reburned disc1.iso again just to > verify it was good. What hardware (motherboard, cpus, memory, etc.) are you using? > Power management and APIC have been bios disabled since version FreeBSD 3.4 > version so that is not the problem. I tried selecting safe option to boot > and still get same error 'no hard disk found". My hard drive is an western > digital 310100 on ata0 as master. When using this 5.4 install cd on other > pc/ motherboard/ hard drive combos I get same error. You can hit Scroll Lock and use the arrow keys or page up/down to look at the boot messages. Near the bottom of the output should be the disk probe -- this may have more details. If not, try booting and selecting the "verbose boot" option. > I think there is something wrong with the build process of the disc1.iso > file. The miniinst.iso must be build using a different canned script that > does not incorporated the bug that is in the disc1 build. Maybe the .ISO > builds team needs to take a look at this problem. The only difference is the files included in the mkisofs run. The exact same files are used. > And to continue on with this thought why does 5.4 NOT have a miniinst.iso > file????? That's a good question :-) I didn't realize we hadn't made one. -- Doug White | FreeBSD: The Power to Serve dwhite@gumbysoft.com | www.FreeBSD.org From owner-freebsd-questions@FreeBSD.ORG Sun May 15 04:30:51 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7128C16A4D2 for ; Sun, 15 May 2005 04:30:51 +0000 (GMT) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 104A543D93 for ; Sun, 15 May 2005 04:30:51 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) j4F4VNb17564; Sat, 14 May 2005 21:31:23 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Marcello Maggioni" , Date: Sat, 14 May 2005 21:30:48 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <63f5296805051416096cb95383@mail.gmail.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal Subject: RE: LBA and CHS parameters of my FBSD partition differ! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 04:30:52 -0000 Well, your skirting the thin edge since you obviously have a dual-boot system - but if a fsck of the FreeBSD partition, and a chkdsk /f of the XP partition turn up nothing, your probably fine. What is going on is your motherboard BIOS is old, and doesen't understand disk drives that report more than cylinders 16383 heads 16 sectors/track 63 and furthermore doesen't understand LBA mode all that well either. Basically, the OS (either Windows or FreeBSD) does a BIOS call at boot to figure out the size of the disk, and what they are both getting back differs from what the drive reports when the disk driver queries it directly. If your motherboard is reasonably supported the manufacturer may have a BIOS update that might fix this. Otherwise, if everything is working, leave well enough alone. The failure that can result if your not lucky is that one OS scribbles on the others space on the disk. For people that only run a single OS on the computer, these error messages can be ignored - unless, that is, after installation, the FreeBSD partition fails to boot. Ted > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marcello > Maggioni > Sent: Saturday, May 14, 2005 4:09 PM > To: freebsd-questions@freebsd.org > Subject: LBA and CHS parameters of my FBSD partition differ! > > > Hi all, > > I have FreeBSD 5.4 installed after a buildworld from 5.3 . > > The problem is that during the setup of the system a warning message > appeared and notified me something about "Wrong disk geometry" or > something like that. I ignored the message and installed the system > which booted and worked fine . > > Today, from my WinXP disk I loaded Partition Magic 8 and this warned > me that my FBSD partition has different LBA and CHS parameters and > that this is wrong, because these two should be identical and asked me > if I would like to correct this. I answered no, bue what should I do? > Why there is this incongruency in these 2 parameters? > > Thanks > > Marcello > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sun May 15 04:32:56 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11B8016A4D0; Sun, 15 May 2005 04:32:56 +0000 (GMT) Received: from carver.gumbysoft.com (carver.gumbysoft.com [66.220.23.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id E762743D62; Sun, 15 May 2005 04:32:55 +0000 (GMT) (envelope-from dwhite@gumbysoft.com) Received: by carver.gumbysoft.com (Postfix, from userid 1000) id DDA9E72DD4; Sat, 14 May 2005 21:32:55 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by carver.gumbysoft.com (Postfix) with ESMTP id DBBDE72DCB; Sat, 14 May 2005 21:32:55 -0700 (PDT) Date: Sat, 14 May 2005 21:32:55 -0700 (PDT) From: Doug White To: Vittorio De Martino In-Reply-To: <200505150038.11025.vdm.fbsd@virgilio.it> Message-ID: <20050514213135.F49081@carver.gumbysoft.com> References: <200505150038.11025.vdm.fbsd@virgilio.it> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-questions@freebsd.org cc: freebsd-mobile@freebsd.org Subject: Re: kde & kdm & mouse X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 04:32:56 -0000 On Sun, 15 May 2005, Vittorio De Martino wrote: > I have the latest installation of freebsd 5.4 on my laptop, kde & kdm 3.4. The > laptop has a synaptic mousepad endowed of two buttons that in normal > conditions are not used at all being enough to double-hit on the pad to have > the same effect as that of pressing the left button. > Now at boot time I enabled moused > > # ps ax|grep moused > 493 ?? Ss 0:00.54 /usr/sbin/moused -p /dev/psm0 -t auto > > And the following in /etc/X11/xorg.conf > ................................................ > Section "InputDevice" > Identifier "Mouse0" > Driver "mouse" > Option "Protocol" "Auto" > Option "Device" "/dev/sysmouse" > Option "ZAxisMapping" "4 5" > EndSection > ................................................. > > Now it happens that: > > 1) If I start kde as a user by means of the command startx (having put > startkde into .xinitrc) the mouse(-pad) works as expected: I can move around > the screen and select and launch programs just moving on the pad and double > hitting the pad . No problems! In a nutshell no need to press the left > button. > > 2) If at boot time I start kde by means of kdm having put in /etc/ttys: > ttyv8 "/usr/local/bin/kdm -nodaemon" xterm on secure > > and modified /etc/pam.d as required to autologin, I immediatedly and > automagically login into kde as a user and the mouse works BUT... with the > pad I can only move around the screen and the double-hit doesn't work anymore > so that I have to use the left button cumpulsorily (and annoyingly). > > Why in your opinion is that crazy behavior and what should I do? Are the startx-launched and kdm-launched X daemons using the same config file? Check the top of /var/log/Xorg.*.log for sure. If you ran "X -configure" at some point it might be using a config out of your home directory and not in one of the system locations. When kdm starts it it doesn't look in your homedir :) -- Doug White | FreeBSD: The Power to Serve dwhite@gumbysoft.com | www.FreeBSD.org From owner-freebsd-questions@FreeBSD.ORG Sun May 15 04:38:30 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5443116A4D0; Sun, 15 May 2005 04:38:30 +0000 (GMT) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB91A43D75; Sun, 15 May 2005 04:38:29 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) j4F4c6b17594; Sat, 14 May 2005 21:38:06 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , "freebsd-questions@FreeBSD. ORG" Date: Sat, 14 May 2005 21:37:31 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal cc: stable@freebsd.org Subject: RE: 5.4 install disc1 will not find hard drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 04:38:31 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of fbsd_user > Sent: Saturday, May 14, 2005 12:54 PM > To: freebsd-questions@FreeBSD. ORG > Cc: stable@freebsd.org > Subject: 5.4 install disc1 will not find hard drive > > > Power management and APIC have been bios disabled since > version FreeBSD 3.4 > version so that is not the problem. I tried selecting safe > option to boot > and still get same error 'no hard disk found". My hard drive > is an western > digital 310100 on ata0 as master. When using this 5.4 install > cd on other > pc/ motherboard/ hard drive combos I get same error. > > I think there is something wrong with the build process of the > disc1.iso > file. I don't think there is anything wrong with the build process of disc1.iso. I think instead that someone made a change in the atapi driver that broke this. I have a Intel Desktop Motherboard VC820 that this exact thing happened to. In my case, I fortunately was running a Hipoint RAID card in it so the only thing that got wacked was the system now does not recognize that there is a CDROM on the secondary onboard IDE controller. Last week I had it running FreeBSD 4.11 just fine. (not on the RAID controller) I had assumed that using the RAID controller made it so that the onboard ATAPI controller had some problem, but after seeing this post it is clear that they broke the driver. DO you want to file a PR or should I? Ted From owner-freebsd-questions@FreeBSD.ORG Sun May 15 06:03:35 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2270616A4CE for ; Sun, 15 May 2005 06:03:35 +0000 (GMT) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 021C843D8B for ; Sun, 15 May 2005 06:03:35 +0000 (GMT) (envelope-from parachute@optonline.net) Received: from [192.168.3.100] ([151.205.103.123])0.04 <0IGI009TOOTYIY82@vms042.mailsrvcs.net> for freebsd-questions@freebsd.org; Sun, 15 May 2005 01:03:34 -0500 (CDT) Date: Sun, 15 May 2005 02:03:32 -0400 From: "parachute@optonline.net" To: freebsd-questions@freebsd.org Message-id: MIME-version: 1.0 (Apple Message framework v728) X-Mailer: Apple Mail (2.728) Content-type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-transfer-encoding: 7bit Subject: daily log reports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 06:03:35 -0000 On 5.3 everything was working fine, I would be emailed daily/weekly/ monthly log reports. But now after upgrading to 5.4 I am seeing all those log report emails being queued up in postfix. The problem is it is trying to connect to the wrong IP... the machines default IP is 1.1.1.1 (for simplicity) which is hot.domain.tld and ip alias on the machine is 1.1.1.2 which is my mail.domain.tld According to maillog it keeps trying to connect to 1.1.1.1 to deliver to root@host.domain.tld and it gets refused... Back on 5.3 it never did this... it sent mail properly, I think by using the localhost address... I don't think this is a postfix problem but probably something changed on how daily log reports are sent/handled? Anyone have any idea on where to start? From owner-freebsd-questions@FreeBSD.ORG Sun May 15 06:31:52 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09E0616A4CE for ; Sun, 15 May 2005 06:31:52 +0000 (GMT) Received: from nic.ach.sch.gr (nic.sch.gr [194.63.238.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB31043DB2 for ; Sun, 15 May 2005 06:31:50 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: (qmail 29765 invoked by uid 207); 15 May 2005 06:31:48 -0000 Received: from keramida@ceid.upatras.gr by nic by uid 201 with qmail-scanner-1.21 (sophie: 3.04/2.19/3.81. Clear:RC:1(81.186.70.3):. Processed in 0.708704 secs); 15 May 2005 06:31:48 -0000 Received: from dialup3.ach.sch.gr (HELO gothmog.gr) ([81.186.70.3]) (envelope-sender ) by nic.sch.gr (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 15 May 2005 06:31:47 -0000 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.3/8.13.3) with ESMTP id j4F6Vi2b075243; Sun, 15 May 2005 09:31:44 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.3/8.13.3/Submit) id j4F6ViTv075230; Sun, 15 May 2005 09:31:44 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 15 May 2005 09:31:43 +0300 From: Giorgos Keramidas To: "parachute@optonline.net" Message-ID: <20050515063143.GC67277@gothmog.gr> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: cc: freebsd-questions@freebsd.org Subject: Re: daily log reports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 06:31:52 -0000 On 2005-05-15 02:03, "parachute@optonline.net" wrote: > On 5.3 everything was working fine, I would be emailed daily/weekly/ > monthly log reports. But now after upgrading to 5.4 I am seeing all > those log report emails being queued up in postfix. > > The problem is it is trying to connect to the wrong IP... the > machines default IP is 1.1.1.1 (for simplicity) which is > hot.domain.tld and ip alias on the machine is 1.1.1.2 which is my > mail.domain.tld 1.1.1.1 is not a valid IP address for your network, I suspect. > I don't think this is a postfix problem but probably something > changed on how daily log reports are sent/handled? Anyone have any > idea on where to start? You'll have to tell us more about the network setup of the system, the configuration of Postfix, etc. to be able to tell if it's a problem of Postfix, or something else. - Giorgos From owner-freebsd-questions@FreeBSD.ORG Sun May 15 07:02:17 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3F8516A4CE for ; Sun, 15 May 2005 07:02:17 +0000 (GMT) Received: from web32012.mail.mud.yahoo.com (web32012.mail.mud.yahoo.com [68.142.207.109]) by mx1.FreeBSD.org (Postfix) with SMTP id F418C43DB4 for ; Sun, 15 May 2005 07:02:16 +0000 (GMT) (envelope-from blesets@yahoo.com.au) Received: (qmail 16404 invoked by uid 60001); 15 May 2005 07:02:16 -0000 Message-ID: <20050515070216.16402.qmail@web32012.mail.mud.yahoo.com> Received: from [61.94.212.112] by web32012.mail.mud.yahoo.com via HTTP; Sun, 15 May 2005 17:02:16 EST Date: Sun, 15 May 2005 17:02:16 +1000 (EST) From: Andre Nas To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Itanium 64bit under FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 07:02:17 -0000 Dear, Is there any experience successful Install FreeBSD in HP Integrity rx2600, is there any problem when using FreeBSD ia64? How to know/check that the system OS or application can running pure in 64bit? can FreeBSD ia64 running pure 64bit ? Thanks, Andre --------------------------------- Find local movie times and trailers on Yahoo! Movies. From owner-freebsd-questions@FreeBSD.ORG Sun May 15 07:10:12 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C08A16A4CE for ; Sun, 15 May 2005 07:10:11 +0000 (GMT) Received: from nezlok.unixathome.org (nezlok.unixathome.org [66.154.97.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id B16D943D81 for ; Sun, 15 May 2005 07:10:11 +0000 (GMT) (envelope-from dan@nezlok.unixathome.org) Received: from localhost (localhost [127.0.0.1]) by nezlok.unixathome.org (Postfix) with ESMTP id C6F5058FB for ; Sun, 15 May 2005 00:10:06 -0700 (PDT) Received: from nezlok.unixathome.org ([127.0.0.1]) by localhost (nezlok.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04692-09 for ; Sun, 15 May 2005 00:10:05 -0700 (PDT) Received: by nezlok.unixathome.org (Postfix, from userid 1000) id 4AC3158E0; Sun, 15 May 2005 00:10:02 -0700 (PDT) From: Dan Langille To: freebsd-questions@freebsd.org Message-Id: <20050515071002.4AC3158E0@nezlok.unixathome.org> Date: Sun, 15 May 2005 00:10:02 -0700 (PDT) X-Virus-Scanned: by amavisd-new at unixathome.org Subject: The FreeBSD Diary: 2005-04-24 - 2005-05-14 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 07:10:12 -0000 The FreeBSD Diary contains a large number of practical examples and how-to guides. This message is posted weekly to freebsd-questions@freebsd.org with the aim of letting people know what's available on the website. Before you post a question here it might be a good idea to first search the mailing list archives and/or The FreeBSD Diary . -- Dan Langille BSDCan - http://www.BSDCan.org/ - BSD Conference From owner-freebsd-questions@FreeBSD.ORG Sun May 15 08:27:14 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A75516A4CE for ; Sun, 15 May 2005 08:27:14 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2597043D6A for ; Sun, 15 May 2005 08:27:14 +0000 (GMT) (envelope-from khaled.abu@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1312794wra for ; Sun, 15 May 2005 01:27:13 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=A3/SImSVJ3pAJ+3tNavFsDJxKrUEpmARcl1nz1MdWDUWONJOX7D4CWO6RfMKelrlOm30GZzvjQZwj9X5LSkV/YHNbV2KKLLcQyj91nAuXtE6IedHR6d7Gzbcao5DOaewpp3wNqfkZT+UC3vcnS1Mlodezo9iQwfGjHg7AZoBV10= Received: by 10.54.116.17 with SMTP id o17mr2902246wrc; Sun, 15 May 2005 01:27:13 -0700 (PDT) Received: by 10.54.66.16 with HTTP; Sun, 15 May 2005 01:27:13 -0700 (PDT) Message-ID: Date: Sun, 15 May 2005 11:27:13 +0300 From: Abu Khaled To: Lowell Gilbert In-Reply-To: <44u0l66ift.fsf@be-well.ilk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <44u0l66ift.fsf@be-well.ilk.org> cc: freebsd-questions@freebsd.org Subject: Re: sendmail NOINET6=true X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Abu Khaled List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 08:27:14 -0000 On 14 May 2005 09:33:26 -0400, Lowell Gilbert wrote: > Abu Khaled writes: >=20 > > sendmail[1579]: NOQUEUE: SYSERR(root): /etc/mail/sendmail.cf: line > > 279: Unknown address family inet6 in Family=3Doption >=20 > Comment out that line and the message will go away. Comment it out in > the .mc file as well, and it won't come back next time you update. >=20 Thanks Lowell for your help :) --=20 Kind regards Abu Khaled From owner-freebsd-questions@FreeBSD.ORG Sun May 15 08:58:04 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9656B16A4CE for ; Sun, 15 May 2005 08:58:04 +0000 (GMT) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2682243D6A for ; Sun, 15 May 2005 08:58:04 +0000 (GMT) (envelope-from hayarms@gmail.com) Received: by zproxy.gmail.com with SMTP id 12so444354nzp for ; Sun, 15 May 2005 01:58:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=a0vbmGpfbzdzQvCAHEPJmdgPgjdPma/lFo7OFVAPh+js6vxJmdhC5J5h+PDQLgEQI1KpS2TEIWmEDOzOUBCjxg7/EpML1d5imPo4nM4yvaxEYuZn+Ia2qp3JKHvVW1n/8GCoVwe51me4h2dQt5cQ82ipTS36vGuasPBZ5G9TLlY= Received: by 10.36.154.16 with SMTP id b16mr1448047nze; Sun, 15 May 2005 01:58:03 -0700 (PDT) Received: by 10.36.3.20 with HTTP; Sun, 15 May 2005 01:58:03 -0700 (PDT) Message-ID: <63f5296805051501582bfaeb11@mail.gmail.com> Date: Sun, 15 May 2005 10:58:03 +0200 From: Marcello Maggioni To: Ted Mittelstaedt In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <63f5296805051416096cb95383@mail.gmail.com> cc: freebsd-questions@freebsd.org Subject: Re: LBA and CHS parameters of my FBSD partition differ! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marcello Maggioni List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 08:58:04 -0000 Very bad... My motherboard (Abit KV7) has 8 different bios release and none of these seems to solve this issue. My 30GB disk on the other IDE channel seems to work fine with FreeBSD. Is this problem present silently with every OS (the problem exists but is not reported) or only with FBSD? Thanks Marcello 2005/5/15, Ted Mittelstaedt : >=20 > Well, your skirting the thin edge since you obviously have a dual-boot > system - but if a fsck of the FreeBSD partition, and a chkdsk /f of the > XP partition turn up nothing, your probably fine. >=20 > What is going on is your motherboard BIOS is old, and doesen't understand > disk drives that report more than >=20 > cylinders 16383 > heads 16 > sectors/track 63 >=20 > and furthermore doesen't understand LBA mode all that well either. > Basically, > the OS (either Windows or FreeBSD) does a BIOS call at boot to figure out > the > size of the disk, and what they are both getting back differs from what > the > drive reports when the disk driver queries it directly. >=20 > If your motherboard is reasonably supported the manufacturer may have a > BIOS update that might fix this. Otherwise, if everything is working, > leave well enough alone. >=20 > The failure that can result if your not lucky is that one OS scribbles on > the others space on the disk. >=20 > For people that only run a single OS on the computer, these error > messages > can be ignored - unless, that is, after installation, the FreeBSD > partition > fails to boot. >=20 > Ted >=20 > > -----Original Message----- > > From: owner-freebsd-questions@freebsd.org > > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marcello > > Maggioni > > Sent: Saturday, May 14, 2005 4:09 PM > > To: freebsd-questions@freebsd.org > > Subject: LBA and CHS parameters of my FBSD partition differ! > > > > > > Hi all, > > > > I have FreeBSD 5.4 installed after a buildworld from 5.3 . > > > > The problem is that during the setup of the system a warning message > > appeared and notified me something about "Wrong disk geometry" or > > something like that. I ignored the message and installed the system > > which booted and worked fine . > > > > Today, from my WinXP disk I loaded Partition Magic 8 and this warned > > me that my FBSD partition has different LBA and CHS parameters and > > that this is wrong, because these two should be identical and asked me > > if I would like to correct this. I answered no, bue what should I do? > > Why there is this incongruency in these 2 parameters? > > > > Thanks > > > > Marcello > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to > > "freebsd-questions-unsubscribe@freebsd.org" > > >=20 > From owner-freebsd-questions@FreeBSD.ORG Sun May 15 09:11:29 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5C4316A4CE for ; Sun, 15 May 2005 09:11:29 +0000 (GMT) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4486E43D7D for ; Sun, 15 May 2005 09:11:29 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) j4F9C0b18883; Sun, 15 May 2005 02:12:01 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Marcello Maggioni" Date: Sun, 15 May 2005 02:11:25 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <63f5296805051501582bfaeb11@mail.gmail.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal cc: freebsd-questions@freebsd.org Subject: RE: LBA and CHS parameters of my FBSD partition differ! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 09:11:29 -0000 > Is this problem present silently with every OS (the problem exists but > is not reported) yes. But, why is it a problem? It really isn't, you know. The only BIOS thing concerning hard disks that any modern operating system uses is the BIOS routines to load the kernel. Whether the kernel is a FreeBSD kernel like FreeBSD, or a Windows kernel like NTKERNEL, once the kernel and disk drivers have been fetched from the hard disk, via BIOS code, they are loaded, and the operating system can now talk to the hard disk directly. Granted, if you use some real-mode program to partition the hard disk, like the Windows 98 fdisk program running under DOS, why then you are going to be concerned with things like this. But, WinXP, Win2K, OS/2, all UNIXES, they all require themselves to be booted and running. FreeBSD knows all about how to read partition tables that Windows OSes have left on the hard drive, so in a dual-boot situation it should keep clear of the Windows partition. Windows knows all about how to read partition tables that itself writes, and God knows if it knows anything beyond that, so in general on dual-boot systems, if you follow the convention of loading Windows first followed by loading FreeBSD, then all the bits end up in the right place. Partition Magic is, in my opinion, nothing more than a crutch for lazy people who are too lazy to backup their Windows systems then reformat their hard drives with Windows and create with Windows a smaller partition, leaving free space for FreeBSD. But of course, saying that is going to get people coming out of the woodwork to flame me. Ted > -----Original Message----- > From: Marcello Maggioni [mailto:hayarms@gmail.com] > Sent: Sunday, May 15, 2005 1:58 AM > To: Ted Mittelstaedt > Cc: freebsd-questions@freebsd.org > Subject: Re: LBA and CHS parameters of my FBSD partition differ! > > > Very bad... > > My motherboard (Abit KV7) has 8 different bios release and none of > these seems to solve this issue. My 30GB disk on the other IDE > channel seems to work fine with FreeBSD. > Is this problem present silently with every OS (the problem exists but > is not reported) or only with FBSD? > > Thanks > > Marcello > > 2005/5/15, Ted Mittelstaedt : > > > > Well, your skirting the thin edge since you obviously have a > dual-boot > > system - but if a fsck of the FreeBSD partition, and a > chkdsk /f of the > > XP partition turn up nothing, your probably fine. > > > > What is going on is your motherboard BIOS is old, and > doesen't understand > > disk drives that report more than > > > > cylinders 16383 > > heads 16 > > sectors/track 63 > > > > and furthermore doesen't understand LBA mode all that well either. > > Basically, > > the OS (either Windows or FreeBSD) does a BIOS call at boot > to figure out > > the > > size of the disk, and what they are both getting back > differs from what > > the > > drive reports when the disk driver queries it directly. > > > > If your motherboard is reasonably supported the manufacturer > may have a > > BIOS update that might fix this. Otherwise, if everything > is working, > > leave well enough alone. > > > > The failure that can result if your not lucky is that one OS > scribbles on > > the others space on the disk. > > > > For people that only run a single OS on the computer, these error > > messages > > can be ignored - unless, that is, after installation, the FreeBSD > > partition > > fails to boot. > > > > Ted > > > > > -----Original Message----- > > > From: owner-freebsd-questions@freebsd.org > > > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marcello > > > Maggioni > > > Sent: Saturday, May 14, 2005 4:09 PM > > > To: freebsd-questions@freebsd.org > > > Subject: LBA and CHS parameters of my FBSD partition differ! > > > > > > > > > Hi all, > > > > > > I have FreeBSD 5.4 installed after a buildworld from 5.3 . > > > > > > The problem is that during the setup of the system a > warning message > > > appeared and notified me something about "Wrong disk geometry" or > > > something like that. I ignored the message and installed the system > > > which booted and worked fine . > > > > > > Today, from my WinXP disk I loaded Partition Magic 8 and > this warned > > > me that my FBSD partition has different LBA and CHS parameters and > > > that this is wrong, because these two should be identical > and asked me > > > if I would like to correct this. I answered no, bue what > should I do? > > > Why there is this incongruency in these 2 parameters? > > > > > > Thanks > > > > > > Marcello > > > _______________________________________________ > > > freebsd-questions@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > To unsubscribe, send any mail to > > > "freebsd-questions-unsubscribe@freebsd.org" > > > > > > > > From owner-freebsd-questions@FreeBSD.ORG Sun May 15 09:30:21 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F0AB16A4CE for ; Sun, 15 May 2005 09:30:21 +0000 (GMT) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90EDE43DAD for ; Sun, 15 May 2005 09:30:20 +0000 (GMT) (envelope-from hayarms@gmail.com) Received: by zproxy.gmail.com with SMTP id 12so448004nzp for ; Sun, 15 May 2005 02:30:17 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VUrGYD3zjCyTJH3wrt2I0MqlaScIbuobCGYbk3Recfy5hfl4M4D+Hka9Bf1ql/uIOtcbcJzQX0WaVsi1PxbJWhsrMVe6diNALhfDpf9zexkzAm1MumwBjhUJJXKI7BIuMGni+qyKIhGKYuH8BzOoXbXJqPz4nCz7snpDCHsDJcE= Received: by 10.36.148.14 with SMTP id v14mr1462205nzd; Sun, 15 May 2005 02:30:17 -0700 (PDT) Received: by 10.36.3.20 with HTTP; Sun, 15 May 2005 02:30:17 -0700 (PDT) Message-ID: <63f529680505150230236e953d@mail.gmail.com> Date: Sun, 15 May 2005 11:30:17 +0200 From: Marcello Maggioni To: Ted Mittelstaedt In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <63f5296805051501582bfaeb11@mail.gmail.com> cc: freebsd-questions@freebsd.org Subject: Re: LBA and CHS parameters of my FBSD partition differ! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Marcello Maggioni List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 09:30:21 -0000 So are you saying that I should ignore the message during FBSD setup and also ignore the message from PM too? Just another question, is this "fact" common or I'm just the only one who get it ?:D Thanks again Marcello 2005/5/15, Ted Mittelstaedt : >=20 > > Is this problem present silently with every OS (the problem exists but > > is not reported) >=20 > yes. But, why is it a problem? It really isn't, you know. >=20 > The only BIOS thing concerning hard disks that any modern operating > system > uses is the BIOS routines to load the kernel. Whether the kernel is a > FreeBSD > kernel like FreeBSD, or a Windows kernel like NTKERNEL, once the kernel > and > disk drivers have been fetched from the hard disk, via BIOS code, they > are > loaded, and the operating system can now talk to the hard disk directly. >=20 > Granted, if you use some real-mode program to partition the hard disk, > like > the Windows 98 fdisk program running under DOS, why then you are going to > be > concerned with things like this. But, WinXP, Win2K, OS/2, all UNIXES, > they all require themselves to be booted and running. >=20 > FreeBSD knows all about how to read partition tables that Windows OSes > have > left on the hard drive, so in a dual-boot situation it should keep clear > of the > Windows partition. Windows knows all about how to read partition tables > that > itself writes, and God knows if it knows anything beyond that, so in > general > on dual-boot systems, if you follow the convention of loading Windows > first > followed by loading FreeBSD, then all the bits end up in the right place. >=20 > Partition Magic is, in my opinion, nothing more than a crutch for lazy > people > who are too lazy to backup their Windows systems then reformat their hard > drives > with Windows and create with Windows a smaller partition, leaving free > space > for FreeBSD. But of course, saying that is going to get people coming > out of > the woodwork to flame me. >=20 > Ted >=20 >=20 > > -----Original Message----- > > From: Marcello Maggioni [mailto:hayarms@gmail.com] > > Sent: Sunday, May 15, 2005 1:58 AM > > To: Ted Mittelstaedt > > Cc: freebsd-questions@freebsd.org > > Subject: Re: LBA and CHS parameters of my FBSD partition differ! > > > > > > Very bad... > > > > My motherboard (Abit KV7) has 8 different bios release and none of > > these seems to solve this issue. My 30GB disk on the other IDE > > channel seems to work fine with FreeBSD. > > Is this problem present silently with every OS (the problem exists but > > is not reported) or only with FBSD? > > > > Thanks > > > > Marcello > > > > 2005/5/15, Ted Mittelstaedt : > > > > > > Well, your skirting the thin edge since you obviously have a > > dual-boot > > > system - but if a fsck of the FreeBSD partition, and a > > chkdsk /f of the > > > XP partition turn up nothing, your probably fine. > > > > > > What is going on is your motherboard BIOS is old, and > > doesen't understand > > > disk drives that report more than > > > > > > cylinders 16383 > > > heads 16 > > > sectors/track 63 > > > > > > and furthermore doesen't understand LBA mode all that well either. > > > Basically, > > > the OS (either Windows or FreeBSD) does a BIOS call at boot > > to figure out > > > the > > > size of the disk, and what they are both getting back > > differs from what > > > the > > > drive reports when the disk driver queries it directly. > > > > > > If your motherboard is reasonably supported the manufacturer > > may have a > > > BIOS update that might fix this. Otherwise, if everything > > is working, > > > leave well enough alone. > > > > > > The failure that can result if your not lucky is that one OS > > scribbles on > > > the others space on the disk. > > > > > > For people that only run a single OS on the computer, these error > > > messages > > > can be ignored - unless, that is, after installation, the FreeBSD > > > partition > > > fails to boot. > > > > > > Ted > > > > > > > -----Original Message----- > > > > From: owner-freebsd-questions@freebsd.org > > > > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marcello > > > > Maggioni > > > > Sent: Saturday, May 14, 2005 4:09 PM > > > > To: freebsd-questions@freebsd.org > > > > Subject: LBA and CHS parameters of my FBSD partition differ! > > > > > > > > > > > > Hi all, > > > > > > > > I have FreeBSD 5.4 installed after a buildworld from 5.3 . > > > > > > > > The problem is that during the setup of the system a > > warning message > > > > appeared and notified me something about "Wrong disk geometry" or > > > > something like that. I ignored the message and installed the system > > > > which booted and worked fine . > > > > > > > > Today, from my WinXP disk I loaded Partition Magic 8 and > > this warned > > > > me that my FBSD partition has different LBA and CHS parameters and > > > > that this is wrong, because these two should be identical > > and asked me > > > > if I would like to correct this. I answered no, bue what > > should I do? > > > > Why there is this incongruency in these 2 parameters? > > > > > > > > Thanks > > > > > > > > Marcello > > > > _______________________________________________ > > > > freebsd-questions@freebsd.org mailing list > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > > To unsubscribe, send any mail to > > > > "freebsd-questions-unsubscribe@freebsd.org" > > > > > > > > > > > > >=20 > From owner-freebsd-questions@FreeBSD.ORG Sun May 15 10:50:46 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E41116A4CE for ; Sun, 15 May 2005 10:50:46 +0000 (GMT) Received: from mail.nativenerds.com (host-70-0-111-24.midco.net [24.111.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id F04A343DAB for ; Sun, 15 May 2005 10:50:45 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from [192.168.1.89] (host-133-35-230-24.midco.net [24.230.35.133]) j4FB3oU7009845; Sun, 15 May 2005 05:03:53 -0600 (MDT) (envelope-from estover@nativenerds.com) Message-ID: <428729AE.9020302@nativenerds.com> Date: Sun, 15 May 2005 04:51:26 -0600 From: Ed Stover Organization: Native Nerds User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050503) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jerry Bell References: <6.2.1.2.0.20050510195910.03994fd0@office.compudoc.za.org> <1841.209.134.164.17.1115752323.squirrel@209.134.164.17> In-Reply-To: <1841.209.134.164.17.1115752323.squirrel@209.134.164.17> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mail.nativenerds.com cc: freebsd-questions@freebsd.org cc: Godfrey Hamshire Subject: Re: ps: bad namelist X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: estover@nativenerds.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 10:50:46 -0000 Jerry Bell wrote: > Typically this is caused by a kernel and utilities (like ps and w) being > out of sync. It sounds like you don't think that is the case, though. I > suppose it could be a problem with your procfs, but I'm not sure that > would cause this kind of symptom. My suspicion is still on > inconsistencies between the kernel and "world". > >>ps: bad namelist >>w: bad namelist > > > > Jerry > http://www.syslog.org > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > Ok, try the command "uptime" as well, I bet it will error too. It was a while ago I have had this same problem..... I remember I had to remake a /dev/file ... maybe it was /dev/null ... remake /dev/null and see if that clears it up. Try this .. # cd /dev # rm null # mknod null c 2 2 # chmod 666 null From owner-freebsd-questions@FreeBSD.ORG Sun May 15 11:02:30 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEAC316A4CE for ; Sun, 15 May 2005 11:02:30 +0000 (GMT) Received: from mail.nativenerds.com (host-70-0-111-24.midco.net [24.111.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBC3043D72 for ; Sun, 15 May 2005 11:02:29 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from [192.168.1.89] (host-133-35-230-24.midco.net [24.230.35.133]) j4FBGEis009894; Sun, 15 May 2005 05:16:15 -0600 (MDT) (envelope-from estover@nativenerds.com) Message-ID: <42872C95.6020301@nativenerds.com> Date: Sun, 15 May 2005 05:03:49 -0600 From: Ed Stover Organization: Native Nerds User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050503) X-Accept-Language: en-us, en MIME-Version: 1.0 To: holle@ackw.de References: <1115875834.6252.5.camel@lap.richard> In-Reply-To: <1115875834.6252.5.camel@lap.richard> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mail.nativenerds.com cc: freebsd-questions@freebsd.org Subject: Re: FreebSD 5.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: estover@nativenerds.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 11:02:30 -0000 Richard Verwayen wrote: > Am Mittwoch, den 11.05.2005, 16:53 -0700 schrieb Dixit, Viraj: > >>Folks, >> >>I have accidentally changed the permissions to my directories on my test system. Now I cannot login either on console using root or any other login account. I simply cannot login, the permissions change has done it. I get the login prompt but this is the message I get from the system when I log in. Help !!!! >>Thanks, >>An Idiot >> >>Here is the message: >>login: invalid script: /usr/libexec/login_krb-or-pwd >>Login incorrect > > What about single-user mode? > > RIchard > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > Look in the archives of this mailing list going back for 5 years.. You will find a bazillion howto's on logging in , in single user mode and mounting the stuff you need to fix. ;) good luck! From owner-freebsd-questions@FreeBSD.ORG Sun May 15 11:06:09 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 371DA16A4CE for ; Sun, 15 May 2005 11:06:09 +0000 (GMT) Received: from mail.nativenerds.com (host-70-0-111-24.midco.net [24.111.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id B002443D6E for ; Sun, 15 May 2005 11:06:08 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from [192.168.1.89] (host-133-35-230-24.midco.net [24.230.35.133]) j4FBJsKT009907; Sun, 15 May 2005 05:19:54 -0600 (MDT) (envelope-from estover@nativenerds.com) Message-ID: <42872D71.3050902@nativenerds.com> Date: Sun, 15 May 2005 05:07:29 -0600 From: Ed Stover Organization: Native Nerds User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050503) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Xian References: <200505121205.17487.ian@codepad.net> In-Reply-To: <200505121205.17487.ian@codepad.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mail.nativenerds.com cc: freebsd-questions@freebsd.org Subject: Re: Slow DNS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: estover@nativenerds.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 11:06:09 -0000 Xian wrote: > I have just set up a router and would like DNS caching on it. I have tried to > set it up an it kind of works, just computer using it as their nameserver > take ages on DNS queries, up to 4-5 seconds. > > To set up the DNS caching I added the ip of another DNS server > to /etc/resolv.conf and added namd_enable="YES" to /etc/rc.conf. > I also tweaked the following lines in /var/named/etc/namedb/named.conf: > listen-on { "any"; }; > forwarders { > 192.168.0.1; > }; > query-source address * port 53; > > Any ideas on how to make it run better? The DNS server at 192.168.0.1 answers > DNS queries in a few milliseconds. > Put an entry for your upstream DNS/DNSes as well... That will speed things up. <--quote // In addition to the "forwarders" clause, you can force your name // server to never initiate queries of its own, but always ask its // forwarders only, by enabling the following line: // // forward only; // If you've got a DNS server around at your upstream provider, enter // its IP address here, and enable the line below. This will make you // benefit from its cache, thus reduce overall DNS traffic in the Internet. /* forwarders { 127.0.0.1; }; */ --> From owner-freebsd-questions@FreeBSD.ORG Sun May 15 11:14:15 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4620316A4CE for ; Sun, 15 May 2005 11:14:15 +0000 (GMT) Received: from mail.nativenerds.com (host-70-0-111-24.midco.net [24.111.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD69143D73 for ; Sun, 15 May 2005 11:14:14 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from [192.168.1.89] (host-133-35-230-24.midco.net [24.230.35.133]) j4FBS1oj009952; Sun, 15 May 2005 05:28:02 -0600 (MDT) (envelope-from estover@nativenerds.com) Message-ID: <42872F58.3010802@nativenerds.com> Date: Sun, 15 May 2005 05:15:36 -0600 From: Ed Stover Organization: Native Nerds User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050503) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Colin J. Raven" References: <20050514090844.Q9329@kenmore.kozy-kabin.nl> In-Reply-To: <20050514090844.Q9329@kenmore.kozy-kabin.nl> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mail.nativenerds.com cc: FreeBSD Questions Subject: Re: Strange kernel messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: estover@nativenerds.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 11:14:15 -0000 Colin J. Raven wrote: > Hi all! > I occasionally get these in my daily security run output (which is > worrying in itself) > > Limiting closed port RST response from 1629 to 200 packets per second > > the number of these can range from one or two, to sometimes 25 - 30 > although the latter case is rarer. Usually there's about six or so. > These don't arrive every day, usually about once per week on average. You get those when someone nmaps you. What I do aside from FreeBSD's builtin anti-DOS stuff is; 1. Blackholeing 2.portsentry (it is kinda a honey pot but has some pretty neat features) > > Is this an OS response to an attempted attack, limiting potential DDOS > damage? yes it is. How heavily loaded is your server? >That's how I'm reading it, but of course I'm guessing. If that > *is* so, what mechanism is doing this? Others have answered this question allready ;) > > FreeBSD 4.11 STABLE > > Regards & TIA > -Colin > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sun May 15 11:18:36 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08A7116A4CE for ; Sun, 15 May 2005 11:18:36 +0000 (GMT) Received: from mail.nativenerds.com (host-70-0-111-24.midco.net [24.111.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9597D43D55 for ; Sun, 15 May 2005 11:18:35 +0000 (GMT) (envelope-from estover@nativenerds.com) Received: from [192.168.1.89] (host-133-35-230-24.midco.net [24.230.35.133]) j4FBWMmn009975; Sun, 15 May 2005 05:32:23 -0600 (MDT) (envelope-from estover@nativenerds.com) Message-ID: <4287305E.2090006@nativenerds.com> Date: Sun, 15 May 2005 05:19:58 -0600 From: Ed Stover Organization: Native Nerds User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050503) X-Accept-Language: en-us, en MIME-Version: 1.0 To: VnPenguin References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on mail.nativenerds.com cc: freebsd-questions Subject: Re: Filesystem was not properly dismounted (5.4-RELEASE) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: estover@nativenerds.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 11:18:36 -0000 VnPenguin wrote: > Hi all, > On my FreeBSD 5.4 system, when I do "reboot" or "shutdown -h " and > reboot, there is always a warning at boot time: > > WARNING: / was not properly dismounted > > and fbsd starts filesystem check over / partition (~5GB) :( > > Anyone could explain me why this ? Any solution for help ? > > Thank you, > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > Why in the world is your / partition ~5Gb ? 256M is what your / should be, 512Mb is even cool... You used to be a Linux guy huh? ;) From owner-freebsd-questions@FreeBSD.ORG Sun May 15 11:41:00 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCF6416A4CE; Sun, 15 May 2005 11:41:00 +0000 (GMT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EDE343DB6; Sun, 15 May 2005 11:41:00 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.81]) by mta10.adelphia.net (InterMail vM.6.01.04.01 201-2131-118-101-20041129) with SMTP id <20050515114059.XZKL17140.mta10.adelphia.net@barbish>; Sun, 15 May 2005 07:40:59 -0400 From: "fbsd_user" To: "Ted Mittelstaedt" , "freebsd-questions@FreeBSD. ORG" Date: Sun, 15 May 2005 07:40:54 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal cc: stable@freebsd.org Subject: RE: 5.4 install disc1 will not find hard drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 11:41:01 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of fbsd_user > Sent: Saturday, May 14, 2005 12:54 PM > To: freebsd-questions@FreeBSD. ORG > Cc: stable@freebsd.org > Subject: 5.4 install disc1 will not find hard drive > > > Power management and APIC have been bios disabled since > version FreeBSD 3.4 > version so that is not the problem. I tried selecting safe > option to boot > and still get same error 'no hard disk found". My hard drive > is an western > digital 310100 on ata0 as master. When using this 5.4 install > cd on other > pc/ motherboard/ hard drive combos I get same error. > > I think there is something wrong with the build process of the > disc1.iso > file. I don't think there is anything wrong with the build process of disc1.iso. I think instead that someone made a change in the atapi driver that broke this. I have a Intel Desktop Motherboard VC820 that this exact thing happened to. In my case, I fortunately was running a Hipoint RAID card in it so the only thing that got wacked was the system now does not recognize that there is a CDROM on the secondary onboard IDE controller. Last week I had it running FreeBSD 4.11 just fine. (not on the RAID controller) I had assumed that using the RAID controller made it so that the onboard ATAPI controller had some problem, but after seeing this post it is clear that they broke the driver. DO you want to file a PR or should I? Ted -----Original Message----- From: Ted Mittelstaedt [mailto:tedm@toybox.placo.com] Sent: Sunday, May 15, 2005 12:38 AM To: fbsd_user@a1poweruser.com; freebsd-questions@FreeBSD. ORG Cc: stable@freebsd.org Subject: RE: 5.4 install disc1 will not find hard drive Ted. I filed a PR on the missing miniinst.iso file. http://www.freebsd.org/cgi/query-pr.cgi?pr=80861 And it's not been addressed yet. So if you have some pull in getting PR's worked on then you should file the PR on this problem. As I see this, it's a show stopper in distributing 5.4 stable and needs to be addressed immediately because all the mirror FTP sites are populated with non-functional disc1 iso files. Here are some more details from the boot of disc1. The btx loader issues this messages bios drive C: is disk1 and near the end of the boot messages I get ata1-master: pio=0x0c wdma=0x22 udma=0x42 cable=40pin ata1-master; setting pio4 on VIA 82C596B chip Please send me the PR number after you report this so I can track it. Thanks From owner-freebsd-questions@FreeBSD.ORG Sun May 15 11:44:13 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 252DA16A4CE for ; Sun, 15 May 2005 11:44:13 +0000 (GMT) Received: from smtprelay02.ispgateway.de (smtprelay02.ispgateway.de [80.67.18.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56BE443D79 for ; Sun, 15 May 2005 11:44:09 +0000 (GMT) (envelope-from freebsd-listen@fabiankeil.de) Received: (qmail 9556 invoked from network); 15 May 2005 11:44:02 -0000 Received: from unknown (HELO localhost) ([pbs]775067@[83.129.15.212]) (envelope-sender ) by smtprelay02.ispgateway.de (qmail-ldap-1.03) with SMTP for ; 15 May 2005 11:44:02 -0000 Date: Sun, 15 May 2005 13:43:48 +0200 From: Fabian Keil To: Eirik =?ISO-8859-1?Q?Fossg=E5rd?= Message-ID: <20050515134348.76f5cbe3@localhost> In-Reply-To: References: X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable cc: FreeBSD-questions@FreeBSD.ORG Subject: Re: Cannot mount ThinkPad removable cdrom device under FreeBSD-5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 11:44:13 -0000 Eirik Fossg=E5rd wrote: > I have an IBM removable cdrom device which I'm trying to use under=20 > FreeBSD-5.4 RELEASE. I connect it on the USB ports on my ThinkPad X40, > insert a cdrom (neil young) but I cannot mount it: >=20 > "mount -t cd9660 /dev/cd0 /mnt/cdrom" yields:=20 >=20 > cd9660: /dev/cd0: Device not configured. >=20 > A "dmesg" then yields: >=20 > umass0: GENERIC CDRCB04, rev 2.00/0.00, addr 2 > cd0 at umass-sim0 bus 0 target 0 lun 0 > cd0: Removable CD-ROM SCSI-0 device=20 > cd0: 40.000MB/s transfers > cd0: Attempt to query device size failed: NOT READY, Medium not present -= tray closed > (cd0:umass-sim0:0:0:0): READ(10). CDB: 28 0 0 0 0 10 0 0 1 0=20 > (cd0:umass-sim0:0:0:0): CAM Status: SCSI Status Error > (cd0:umass-sim0:0:0:0): SCSI Status: Check Condition > (cd0:umass-sim0:0:0:0): ILLEGAL REQUEST asc:64,0 > (cd0:umass-sim0:0:0:0): Illegal mode for this track > (cd0:umass-sim0:0:0:0): Unretryable error > (cd0:umass-sim0:0:0:0): cddone: got error 0x6 back > (cd0:umass-sim0:0:0:0): READ(10). CDB: 28 0 0 0 0 10 0 0 1 0=20 > (cd0:umass-sim0:0:0:0): CAM Status: SCSI Status Error > (cd0:umass-sim0:0:0:0): SCSI Status: Check Condition > (cd0:umass-sim0:0:0:0): ILLEGAL REQUEST asc:64,0 > (cd0:umass-sim0:0:0:0): Illegal mode for this track > (cd0:umass-sim0:0:0:0): Unretryable error > (cd0:umass-sim0:0:0:0): cddone: got error 0x6 back > (cd0:umass-sim0:0:0:0): READ(10). CDB: 28 0 0 0 0 10 0 0 1 0=20 > (cd0:umass-sim0:0:0:0): CAM Status: SCSI Status Error > (cd0:umass-sim0:0:0:0): SCSI Status: Check Condition > (cd0:umass-sim0:0:0:0): ILLEGAL REQUEST asc:64,0 > (cd0:umass-sim0:0:0:0): Illegal mode for this track > (cd0:umass-sim0:0:0:0): Unretryable error > (cd0:umass-sim0:0:0:0): cddone: got error 0x6 back >=20 > I have:=20 >=20 > device cd > device pass > device atapicam > device atapicd > device scbus > device ata >=20 > compiled into my kernel. I'm stuck. Grateful for any help/hints=20 > on what to try next. What are you trying to do? Audio CDs can't be mounted, they have no file system, just a toc and some subchannel data. If you want to play music, you can use cdcontrol. To copy the disc use cdda2wav and cdrecord. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html Fabian --=20 http://www.fabiankeil.de/ From owner-freebsd-questions@FreeBSD.ORG Sun May 15 13:45:25 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99A0516A4CE for ; Sun, 15 May 2005 13:45:25 +0000 (GMT) Received: from mail.duth.gr (mail.duth.gr [192.108.114.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77D6243D95 for ; Sun, 15 May 2005 13:45:24 +0000 (GMT) (envelope-from bigbrother@bonbon.net) Received: from bigb3server.ath.cx (b9-29.xan.duth.gr [193.92.211.29]) by mail.duth.gr (8.13.1/8.13.1) with ESMTP id j4FDjKQS077108 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 15 May 2005 16:45:21 +0300 (EEST) (envelope-from bigbrother@bonbon.net) Received: from bigb3server.bbcluster.gr (localhost [127.0.0.1]) by bigb3server.ath.cx (8.13.1/8.13.1) with ESMTP id j4FDdZLX007900 for ; Sun, 15 May 2005 16:39:35 +0300 (EEST) (envelope-from bigbrother@bonbon.net) Received: from localhost (bigbrother@localhost)j4FDdYK7007897 for ; Sun, 15 May 2005 16:39:35 +0300 (EEST) (envelope-from bigbrother@bonbon.net) X-Authentication-Warning: bigb3server.bbcluster.gr: bigbrother owned process doing -bs Date: Sun, 15 May 2005 16:39:34 +0300 (EEST) From: BigBrother-{BigB3} To: freebsd-questions@freebsd.org Message-ID: <20050515163439.U32963@bigb3server.bbcluster.gr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.51 on 192.108.114.110 X-Greylist: Sender DNS name whitelisted, not delayed by milter-greylist-1.6 (mail.duth.gr [192.108.114.110]); Sun, 15 May 2005 16:45:21 +0300 (EEST) Subject: Too many "unknown dynamic rule type 244" in syslog.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 13:45:25 -0000 hi, For the past weeks I have been receiving in my syslog the following message "ikaros /kernel: unknown dynamic rule type 244" "ikaros last message repeated XXX times" ipfw -d show | grep 244 does not show anything I have rebooted the machine, I have flushed & reloaded the ruleset...the message remains.... Can you help me of how to debug this situation? I do not know what is causing this. googling does not revealled something usefull (just the printf of the corresponding file) Thanks in advance, BB --- Dreams have no limits! From owner-freebsd-questions@FreeBSD.ORG Sun May 15 14:02:57 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED4C416A4CE for ; Sun, 15 May 2005 14:02:57 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.194.102.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id A42C943D83 for ; Sun, 15 May 2005 14:02:57 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AF2AD51F72; Sun, 15 May 2005 07:02:54 -0700 (PDT) Date: Sun, 15 May 2005 07:02:54 -0700 From: Kris Kennaway To: Andre Nas Message-ID: <20050515140254.GA74800@xor.obsecurity.org> References: <20050515070216.16402.qmail@web32012.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/9DWx/yDrRhgMJTb" Content-Disposition: inline In-Reply-To: <20050515070216.16402.qmail@web32012.mail.mud.yahoo.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: Itanium 64bit under FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 14:02:58 -0000 --/9DWx/yDrRhgMJTb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 15, 2005 at 05:02:16PM +1000, Andre Nas wrote: > Dear, > Is there any experience successful Install FreeBSD in HP Integrity rx2600= , is there any problem when using FreeBSD ia64? > =20 > How to know/check that the system OS or application can running pure in 6= 4bit? can FreeBSD ia64 running pure 64bit ? Yes, FreeBSD runs on ia64, in 64 bit mode. For more information, read the freebsd-ia64 mailing list. Kris --/9DWx/yDrRhgMJTb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQFCh1aOWry0BWjoQKURAj7PAKDPDsDwxaf/E5XZVs12Z1nu9U1GeQCg/6UP EzYG77YKRwfXdZQdjn8/UqE= =QC8Y -----END PGP SIGNATURE----- --/9DWx/yDrRhgMJTb-- From owner-freebsd-questions@FreeBSD.ORG Sat May 14 22:16:52 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CFD616A4CE for ; Sat, 14 May 2005 22:16:52 +0000 (GMT) Received: from hotmail.com (bay107-dav13.bay107.hotmail.com [64.4.51.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F0ED43D7B for ; Sat, 14 May 2005 22:16:52 +0000 (GMT) (envelope-from johnnyrf@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 14 May 2005 15:16:51 -0700 Message-ID: Received: from 64.4.51.220 by BAY107-DAV13.phx.gbl with DAV; Sat, 14 May 2005 22:16:51 +0000 X-Originating-IP: [64.4.51.220] X-Originating-Email: [johnnyrf@hotmail.com] X-Sender: johnnyrf@hotmail.com Mime-Version: 1.0 (Apple Message framework v622) To: freebsd-questions@freebsd.org Message-Id: <531a44dafe6f746745d136f406ac8ab9@hotmail.com> From: Juan Flores Date: Sat, 14 May 2005 18:27:36 -0400 X-Mailer: Apple Mail (2.622) X-OriginalArrivalTime: 14 May 2005 22:16:51.0842 (UTC) FILETIME=[A10F0620:01C558D2] X-Mailman-Approved-At: Sun, 15 May 2005 14:42:48 +0000 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: sysinstall "Unable to find device node..." X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 May 2005 22:16:52 -0000 Hello: I am sorry to bother you. But I was wondering if you found a solution to your problem at the following site: http://lists.freebsd.org/pipermail/freebsd-questions/2004-March/ 042082.html "Unable to find device node for /dev/ad0s1b in /dev!" I am having the same problem with FreeBSD 5.4 and 5.3. PIII 800 Mhz 40Gb HD 256Ram . cant seem to solve. However 5.4 loads fine under Virtual PC on my Mac. when I set the geometry to the BIOS specs Install tells me Geometry not correct and doesnt accept. Sysinstall also states do not use physical geometry, but when physical geometry is used it is accepted. If you have any info it would be greatly appreciated. Thanks JRF From owner-freebsd-questions@FreeBSD.ORG Sun May 15 14:21:51 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 996AF16A4CE for ; Sun, 15 May 2005 14:21:51 +0000 (GMT) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.18.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89AD343D79 for ; Sun, 15 May 2005 14:21:50 +0000 (GMT) (envelope-from freebsd-listen@fabiankeil.de) Received: (qmail 30377 invoked from network); 15 May 2005 14:21:44 -0000 Received: from unknown (HELO localhost) ([pbs]775067@[83.129.15.212]) (envelope-sender ) by smtprelay01.ispgateway.de (qmail-ldap-1.03) with SMTP for ; 15 May 2005 14:21:44 -0000 Date: Sun, 15 May 2005 16:20:37 +0200 From: Fabian Keil To: Message-ID: <20050515162037.1fc4a203@localhost> In-Reply-To: References: <20050515002913.262d295c@localhost> X-Mailer: Sylpheed-Claws 1.0.4 (GTK+ 1.2.10; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Signature_Sun__15_May_2005_16_20_37_+0200_RSfqVrmkXi9tlD3O; protocol="application/pgp-signature"; micalg=pgp-sha1 cc: "freebsd-questions@FreeBSD. ORG" Subject: Re: clone cd disk to cd disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 14:21:51 -0000 --Signature_Sun__15_May_2005_16_20_37_+0200_RSfqVrmkXi9tlD3O Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable "fbsd_user" wrote: > > -----Original Message----- > > From: owner-freebsd-questions@freebsd.org > > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Fabian > Keil > > Sent: Saturday, May 14, 2005 5:22 PM > > To: fbsd_user@a1poweruser.com > > Cc: freebsd-questions@FreeBSD. ORG > > Subject: Re: clone cd disk to cd disk > > > > Its my understanding both of your suggestions only read the > contents > > of the source cd as files thus no MBR or any of those imbedded > > hidden hardware security measures would get cloned. Which is the > > purpose of asking for a cdrom sector cloning program or utility. >=20 > 1. Neither dd nor readcd does "file reading". > 2. You don't need to clone sectors to copy a bootable cd. > 3. readcd has a clone switch. > 4. If your "hidden hardware security measures" read the ATIP, > you are lost anyway. >=20 > Fabian > -- > ******************************************************************** > ** >=20 > Fabian, thanks for the insight. >=20 > I am running 4.10 generic kernel with 2 ata cd drives. > Master is read only and slave is rd/rw. >=20 > How would I code the burncd command to read all the music files from > cd0 and write to cd1 without work file in between? >=20 > How would I code the burncd command to clone a bootable cd without > work file in between? I never used burncd. man burncd seems to be a good starting point. Fabian --=20 http://www.fabiankeil.de/ --Signature_Sun__15_May_2005_16_20_37_+0200_RSfqVrmkXi9tlD3O Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCh1rqbmGO+3DrZ9sRApB7AJwMut3cZuIZuMWzpzp0yx7CLnzf+wCePgWf VAdZATgMshZDlgXwdj3K3PA= =0sqP -----END PGP SIGNATURE----- --Signature_Sun__15_May_2005_16_20_37_+0200_RSfqVrmkXi9tlD3O-- From owner-freebsd-questions@FreeBSD.ORG Sun May 15 14:27:01 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C062616A4D0 for ; Sun, 15 May 2005 14:27:01 +0000 (GMT) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E36F43D72 for ; Sun, 15 May 2005 14:27:01 +0000 (GMT) (envelope-from gollum123@free.fr) Received: from BIGBOY (tui75-2-82-229-178-102.fbx.proxad.net [82.229.178.102]) by postfix3-2.free.fr (Postfix) with ESMTP id 24417C018 for ; Sun, 15 May 2005 16:27:00 +0200 (CEST) Date: Sun, 15 May 2005 16:26:59 +0200 From: Mathieu CHATEAU X-Mailer: The Bat! (v3.0) Professional X-Priority: 3 (Normal) Message-ID: <13310178909.20050515162659@free.fr> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: FBSD 5.4 & netstat -an X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mathieu CHATEAU List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 14:27:01 -0000 Hello freebsd-questions, i have 2 freebsd 5.4 running . On one of them, if if do the classic "netstat -an" i do NOT see tcp connection while i can see them on the other.. There are tcp connection on the box, at least me trough ssh (tcpdump show it). Any clue ? thank you -- Best regards, Mathieu mailto:gollum123@free.fr From owner-freebsd-questions@FreeBSD.ORG Sun May 15 15:54:41 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04ED716A4D6 for ; Sun, 15 May 2005 15:54:41 +0000 (GMT) Received: from smtp05.web.de (smtp05.web.de [217.72.192.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72F0A43DC2 for ; Sun, 15 May 2005 15:54:40 +0000 (GMT) (envelope-from platanthera@web.de) Received: from [84.179.203.82] (helo=liza.herti) by smtp05.web.de with asmtp (WEB.DE 4.105 #282) id 1DXLRv-0005ac-00; Sun, 15 May 2005 17:54:39 +0200 From: platanthera To: freebsd-questions@freebsd.org Date: Sun, 15 May 2005 17:52:54 +0200 User-Agent: KMail/1.8 References: <20050514165453.GA2287@mint-square.mit.edu> <200505142019.j4EKJS4S021948@clunix.cl.msu.edu> <20050514213011.GA23191@no-knife.mit.edu> In-Reply-To: <20050514213011.GA23191@no-knife.mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505151752.54984.platanthera@web.de> Sender: platanthera@web.de X-Sender: platanthera@web.de cc: Ross Adams Lippert Subject: Re: write failed filesystem full on fresh install of 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 15:54:41 -0000 On Saturday 14 May 2005 23:30, Ross Adams Lippert wrote: > I'm sorry I was not more specific. > > /var has 256MB > /tmp has 256 > / has 256 > /usr has 4500MB > newfs had been run on everything. > > ftp was passive. > > Since base is about 46MB of material, it seems it could put it > anywhere. > > This occurs 3% of the way into the extration of base into / via > ftp. I did burn a CD and install off of that in the end and the > problem went away. > > > -r > > On Saturday, 14 May 2005 at 16:19:27 -0400, Jerry McAllister wrote: > > > It was extracting the distribution into / over ftp and said > > > > > > /: write failed, filesystem is full > > > > > > this was after doing a newfs on /. Has anyone run into this > > > problem? it's not a problem of your fs layout. i ran into the same problem during 5.4/i386/ftp installation. i can't recall the specific circumstances (probably i did something wrong), but during the next attempt (after rebooting) it didn't reappear. > > > > You are going to have to give more information. > > What do your file systems look like? > > > > Sure I have had that happen when what I was ftp-ing was too big to > > fit where I was trying to put it. Then I had to either find or > > make a bigger space or change my mind about what I wantd to move > > there. > > > > Maybe yo udidn't make / big enough or made only a / big enough > > for stuff that will be in root, but didn't make a separate /usr and > > /var, etc for things what will go in them. > > > > > I am not subscribed. If I should be tell me. If not, put me > > > in the cc-line. > > > > It would be good if you could subscribe. > > You may need to follow some of these threads. > > > > ////jerry > > > > > -r > > > _______________________________________________ > > > freebsd-questions@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > To unsubscribe, send any mail to > > > "freebsd-questions-unsubscribe@freebsd.org" > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sun May 15 16:23:15 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 928D216A4CE for ; Sun, 15 May 2005 16:23:15 +0000 (GMT) Received: from vms044pub.verizon.net (vms044pub.verizon.net [206.46.252.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BCA443DAB for ; Sun, 15 May 2005 16:23:15 +0000 (GMT) (envelope-from parachute@optonline.net) Received: from [192.168.3.100] ([151.205.103.123])0.04 <0IGJ004KXHIOXYH6@vms044.mailsrvcs.net> for freebsd-questions@freebsd.org; Sun, 15 May 2005 11:23:13 -0500 (CDT) Date: Sun, 15 May 2005 12:23:11 -0400 From: "parachute@optonline.net" In-reply-to: <1116139844.9131.7.camel@lmail.bathnetworks.co.uk> To: Robert Slade Message-id: <4501563E-5264-4CAC-B5EB-4A6B75B45300@optonline.net> MIME-version: 1.0 (Apple Message framework v728) X-Mailer: Apple Mail (2.728) Content-type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-transfer-encoding: 7bit References: <1116139844.9131.7.camel@lmail.bathnetworks.co.uk> cc: freebsd-questions@freebsd.org Subject: Re: daily log reports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 16:23:15 -0000 That is not my IP address or what is assigned, i was just using it for simplicity... How can I change the address it sends mail to? I rather change it to root@localhost instead or root@domain.tld. I can probably do that by changing /etc/aliases but it's strange since I didn't need to do this in 5.3 On May 15, 2005, at 2:50 AM, Robert Slade wrote: > On Sun, 2005-05-15 at 07:03, parachute@optonline.net wrote: > >> On 5.3 everything was working fine, I would be emailed daily/weekly/ >> monthly log reports. But now after upgrading to 5.4 I am seeing all >> those log report emails being queued up in postfix. >> >> The problem is it is trying to connect to the wrong IP... >> the machines default IP is 1.1.1.1 (for simplicity) which is >> hot.domain.tld and ip alias on the machine is 1.1.1.2 which is my >> mail.domain.tld >> According to maillog it keeps trying to connect to 1.1.1.1 to deliver >> to root@host.domain.tld and it gets refused... >> > > You should not use IP addresses that or allocated or reserved for > other > purposes. Use one of the addresses reserved for private networks. eg > 192.168.0.1 or 10.0.0.1. > > >> >> Back on 5.3 it never did this... it sent mail properly, I think by >> using the localhost address... >> >> I don't think this is a postfix problem but probably something >> changed on how daily log reports are sent/handled? Anyone have any >> idea on where to start? >> > > The default for the mail is root@host.domain.tld. Did you have an > alias > setup to send it to whatever addresses you want the log reports > sent to? > > Rob > > From owner-freebsd-questions@FreeBSD.ORG Sun May 15 16:56:43 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7275A16A4CE for ; Sun, 15 May 2005 16:56:43 +0000 (GMT) Received: from server010.webpack.hosteurope.de (server010.webpack.hosteurope.de [80.237.130.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD1FB43D80 for ; Sun, 15 May 2005 16:56:40 +0000 (GMT) (envelope-from kevin@vokaboly.de) Received: by server010.webpack.hosteurope.de running Exim 4.34 using asmtp from p508660c0.dip.t-dialin.net ([80.134.96.192] helo=kevin) id 1DXMPv-0005BX-HA; Sun, 15 May 2005 18:56:39 +0200 Message-ID: <004001c5596f$89139110$6402a8c0@kevin> From: "Kevin Pang" To: Date: Sun, 15 May 2005 19:00:02 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1478 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Subject: Spam Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 16:56:43 -0000 Hello All, I'm a newbie and manage a FreeBSD server, which only hosts my own websites, also only me have shell accounts on this server. Someone sent out lots of spams from my server today. I have stopped postfix and disabled mail command to make sure no any emails will be sent to from this server. I want to know how the spammer did that. Actually I didn't manage postfix to work well, I even can't send emails from my desktop myself, on the server side, sending/receiving emails works well. I guess the spams were sent via a web script. The sender was specified as "www@myhost.com" according to the complaint email. I use phpBB, vBulletin and Awstats. The spam email entry in the maillog is: May 14 14:55:03 pang postfix/smtp[46011]: EC0C595C90: to=, relay=mail2.iecc.com[208.31.42.98], delay=724, status=sent (250 ok 1116100192 qp 2255) As a newbie, I have no idea where to start to fix the problem. My first question: Is it possible to know which script sent out these spams? I don't know what else to ask at the moment. I will appreciate it very much too if you any other suggestions about my problems. Thanks! Kevin From owner-freebsd-questions@FreeBSD.ORG Sun May 15 17:14:02 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A294416A4CE for ; Sun, 15 May 2005 17:14:02 +0000 (GMT) Received: from stelesys.com (web1.stelesys.com [63.175.100.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68A9643DBF for ; Sun, 15 May 2005 17:14:02 +0000 (GMT) (envelope-from jbell@stelesys.com) Received: from [127.0.0.1] (helo=www.stelesys.com) by stelesys.com with esmtpa (Exim 4.44 (FreeBSD)) id 1DXMgb-00064o-As; Sun, 15 May 2005 13:13:53 -0400 Received: from 24.98.86.57 (SquirrelMail authenticated user jbell@stelesys.com); by www.stelesys.com with HTTP; Sun, 15 May 2005 13:13:53 -0400 (EDT) Message-ID: <2652.24.98.86.57.1116177233.squirrel@24.98.86.57> In-Reply-To: <004001c5596f$89139110$6402a8c0@kevin> References: <004001c5596f$89139110$6402a8c0@kevin> Date: Sun, 15 May 2005 13:13:53 -0400 (EDT) From: "Jerry Bell" To: "Kevin Pang" User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal cc: freebsd-questions@freebsd.org Subject: Re: Spam Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 17:14:02 -0000 > web script. The sender was specified as "www@myhost.com" according to the > complaint email. I use phpBB, vBulletin and Awstats. Most likely the attacker used a flaw in phpBB or awstats. Are you running the latest versions of those? Otherwise, it is possible they found a vulnerability in something else you were running, like apache, php, etc. Jerry http://www.syslog.org From owner-freebsd-questions@FreeBSD.ORG Sun May 15 17:25:58 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AD8416A4CE for ; Sun, 15 May 2005 17:25:58 +0000 (GMT) Received: from makeworld.com (makeworld.com [216.201.118.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2224543D91 for ; Sun, 15 May 2005 17:25:58 +0000 (GMT) (envelope-from racerx@makeworld.com) Received: from localhost (localhost.com [127.0.0.1]) by makeworld.com (Postfix) with ESMTP id 5A91560D8; Sun, 15 May 2005 12:25:57 -0500 (CDT) Received: from makeworld.com ([127.0.0.1]) by localhost (makeworld.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01168-03; Sun, 15 May 2005 12:25:53 -0500 (CDT) Received: from [216.201.118.138] (racerx.makeworld.com [216.201.118.138]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by makeworld.com (Postfix) with ESMTP id 9BE2560DA; Sun, 15 May 2005 12:25:48 -0500 (CDT) Message-ID: <4287864E.8050102@makeworld.com> Date: Sun, 15 May 2005 12:26:38 -0500 From: Chris User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050414) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Jerry Bell References: <004001c5596f$89139110$6402a8c0@kevin> <2652.24.98.86.57.1116177233.squirrel@24.98.86.57> In-Reply-To: <2652.24.98.86.57.1116177233.squirrel@24.98.86.57> X-Enigmail-Version: 0.91.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by ClamAV 0.75.1/amavisd-new-2.3.0 (20050424) at makeworld.com - Isn't it ironic cc: Kevin Pang cc: freebsd-questions@freebsd.org Subject: Re: Spam Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: racerx@makeworld.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 17:25:58 -0000 Jerry Bell wrote: >>web script. The sender was specified as "www@myhost.com" according to the >>complaint email. I use phpBB, vBulletin and Awstats. > > > Most likely the attacker used a flaw in phpBB or awstats. Are you running > the latest versions of those? Otherwise, it is possible they found a > vulnerability in something else you were running, like apache, php, etc. > > Jerry > http://www.syslog.org In addition to what Jerry states, visit the Postfix site. Learn how to setup, configure, and manage Postfix. If not done right, you may have set it up to be a relay - and that's not a good thing. Lock down Postfix. Ensure you understand all he things you did to it, in the end you may find out you set something wrong, or added something you should not have. -- Best regards, Chris The one ingredient you made a special trip to the store to get will be the one thing your guest is allergic to. From owner-freebsd-questions@FreeBSD.ORG Sun May 15 18:09:01 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 663AD16A4CE for ; Sun, 15 May 2005 18:09:01 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB80B43D82 for ; Sun, 15 May 2005 18:09:00 +0000 (GMT) (envelope-from phusion2k@gmail.com) Received: by rproxy.gmail.com with SMTP id g11so1115826rne for ; Sun, 15 May 2005 11:09:00 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=mx1OocyheYPwTzW5Glejo80+eBDxFtUHURJCvVkA2OKzA7WBt4fofSEVeGcv7Jb/k64wVgmppM3yphw81z1iaG9WoU9PsT3ID/mkAnxhThc1A/e2cuejciCF+BDyFAaGJ49IG+D56wl57cDJsn0bebKTWl9P9zpK7ECTY+e2FFM= Received: by 10.11.1.23 with SMTP id 23mr44927cwa; Sun, 15 May 2005 11:09:00 -0700 (PDT) Received: by 10.11.100.43 with HTTP; Sun, 15 May 2005 11:09:00 -0700 (PDT) Message-ID: Date: Sun, 15 May 2005 13:09:00 -0500 From: Phusion To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Help with Expect Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Phusion List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 18:09:01 -0000 I'm new to writing expect scripts and need some help. The script will telnet to a host and run some commands. I want the script to ping the host to see if it's alive first before it telnets into it. Also, I know the host is pingable meaning it responds to pings. If the host doesn't respond to a ping I want it to log that to a log file and then quit. I already know how to telnet to the host, but not sure about the ping part and writing it to a log file. Could you please reply to this email with a little example script. Thanks. Phusion From owner-freebsd-questions@FreeBSD.ORG Sun May 15 18:26:54 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BE5416A4CE for ; Sun, 15 May 2005 18:26:54 +0000 (GMT) Received: from engraver.valleygate.net (12-215-216-27.client.mchsi.com [12.215.216.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9372443D5C for ; Sun, 15 May 2005 18:26:53 +0000 (GMT) (envelope-from wizlayer@gmail.com) Received: from wizard.valleygate.net (wizard.valleygate.net [10.51.10.3]) j4FIQldL006662 for ; Sun, 15 May 2005 14:26:47 -0400 (EDT) (envelope-from wizlayer@gmail.com) From: wizlayer To: freebsd-questions@freebsd.org Date: Sun, 15 May 2005 14:26:45 -0400 User-Agent: KMail/1.8 References: <199901030420.12159.> In-Reply-To: <199901030420.12159.> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200505151426.45577.wizlayer@gmail.com> Subject: Re: xconfiguration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: wizlayer@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 18:26:54 -0000 On Saturday 02 January 1999 11:20 pm, paul klatt wrote: > I am having a problem configuring x in free bsd I am having > problem disabling the virtual desktop the desktop is to large > for my monitor and the mouse does not work correctly. I would > appreciate the help. I am using the kde desktop Being this is pretty vague, I'm going to assume that you're new to X on FreeBSD... Welcome! Try following at the prompt (and yes.... there's lots of things you can do, and there's lots of hardware xorg will work with... So there's lots of reading involved): man xorg.conf man Xorg Don't forget the 'See Also' sections, as they will take you to other man pages which you will want to review as well. Then, there's also www.x.org you can check out. Good luck. From owner-freebsd-questions@FreeBSD.ORG Sun May 15 18:30:22 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B8416A4CE for ; Sun, 15 May 2005 18:30:22 +0000 (GMT) Received: from gaia.nimnet.asn.au (nimbin.lnk.telstra.net [139.130.45.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07B7F43DD0 for ; Sun, 15 May 2005 18:30:20 +0000 (GMT) (envelope-from smithi@nimnet.asn.au) Received: from localhost (smithi@localhost) by gaia.nimnet.asn.au (8.8.8/8.8.8R1.4) with SMTP id EAA18638 for ; Mon, 16 May 2005 04:30:14 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Mon, 16 May 2005 04:30:13 +1000 (EST) From: Ian Smith To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: simple? sh problen X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 18:30:22 -0000 Hopefully not too OT .. the only silly question being the unasked one .. How do I test whether a sh argument is an integer or not, so as to avoid failing on a syntax error from otherwise working code such as: [ $3 -lt 10 -o $3 -gt 600 ] && echo "$0 $1 $2: $3 invalid" && exit 1 when $3 is a non-integer argument? Do I need to delve into awk and REs, or is there something more simple I've missed in mans test, expr, etc? Cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Sun May 15 18:49:56 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD4FF16A4D0 for ; Sun, 15 May 2005 18:49:56 +0000 (GMT) Received: from smtp5.suscom.net (smtp5.suscom.net [64.78.83.238]) by mx1.FreeBSD.org (Postfix) with ESMTP id 933A143D46 for ; Sun, 15 May 2005 18:49:56 +0000 (GMT) (envelope-from gerard-seibert@rcn.com) Received: from localhost (unknown [127.0.0.1]) by smtp5.suscom.net (Postfix) with ESMTP id E25F9510109 for ; Sun, 15 May 2005 14:49:54 -0400 (EDT) Received: from smtp5.suscom.net ([127.0.0.1]) by localhost (smtp5.suscom.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 15700-01-4 for ; Sun, 15 May 2005 14:49:52 -0400 (EDT) Received: from Gerard.cable.rcn.com (ip47.232.susc.suscom.net [216.45.232.47]) by smtp5.suscom.net (Postfix) with SMTP id 552FE510107 for ; Sun, 15 May 2005 14:49:52 -0400 (EDT) Date: Sun, 15 May 2005 14:49:54 -0400 (Eastern Standard Time) From: Gerard Seibert To: freebsd-questions Message-ID: X-Warning: UNAuthenticated Sender MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: amavisd-new at suscom.net Subject: ata1-slave: FAILURE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 18:49:57 -0000 I just did a clean install of FreeBSD 5.4. While booting up, the following messages appears: as0: 7665MB [15574/16/63] at ata0-master UDMA 33 ata1-slave: FAILURE - SETFEATURES SET TRANSFER MODE status=1 error=4 acd0: DVDROM at ata1 master PIO4 afdo: REMOVABLE at ata1-slave BIOSPIO Obviously, I am referring to the "FAILURE" message. I have no idea what it means or how to correct it. I did google for an answer, but not with a whole lot of success. I am not even sure if it is serious or not. Everything seems to be working correctly. I have a regular CD and an internal ZIP drive installed besides the HD. I am trying this OS on an old Compaq 5140 computer. Not exactly the latest thing I know, but I want to learn how to use it before trying it on my production machine. Perhaps someone could point me in the right direction. -- Ciao, Gerard Seibert gerard-seibert@suscom.net From owner-freebsd-questions@FreeBSD.ORG Sun May 15 19:18:34 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1BEC16A4CE for ; Sun, 15 May 2005 19:18:34 +0000 (GMT) Received: from argent.heraldsnet.org (argent.heraldsnet.org [64.83.41.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7406F43DE1 for ; Sun, 15 May 2005 19:18:34 +0000 (GMT) (envelope-from jtrigg@spamcop.net) Received: from [192.168.1.4] (vair.heraldsnet.org [192.168.1.4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by argent.heraldsnet.org (Postfix) with ESMTP id 34CB3124; Sun, 15 May 2005 15:18:32 -0400 (EDT) Message-ID: <4287A07C.4070607@spamcop.net> Date: Sun, 15 May 2005 15:18:20 -0400 From: Jim Trigg User-Agent: Mozilla Thunderbird 1.0.2 (Macintosh/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kevin Pang References: <004001c5596f$89139110$6402a8c0@kevin> In-Reply-To: <004001c5596f$89139110$6402a8c0@kevin> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: Spam Problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 19:18:35 -0000 Kevin Pang wrote: > Hello All, > > I'm a newbie and manage a FreeBSD server, which only hosts my own websites, > also only me have shell accounts on this server. Someone sent out lots of > spams from my server today. I have stopped postfix and disabled mail command > to make sure no any emails will be sent to from this server. > > I want to know how the spammer did that. Actually I didn't manage postfix to > work well, I even can't send emails from my desktop myself, on the server > side, sending/receiving emails works well. I guess the spams were sent via a > web script. The sender was specified as "www@myhost.com" according to the > complaint email. I use phpBB, vBulletin and Awstats. > > The spam email entry in the maillog is: > May 14 14:55:03 pang postfix/smtp[46011]: EC0C595C90: to=, > relay=mail2.iecc.com[208.31.42.98], delay=724, status=sent (250 ok > 1116100192 qp 2255) > > > As a newbie, I have no idea where to start to fix the problem. My first > question: Is it possible to know which script sent out these spams? I don't > know what else to ask at the moment. I will appreciate it very much too if > you any other suggestions about my problems. Thanks! If you post the output of 'postconf -n' we can determine what might be wrong in your postfix setup; if that looks good then it's probably one of the addon web packages. Jim From owner-freebsd-questions@FreeBSD.ORG Sun May 15 19:31:37 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE79E16A4CE for ; Sun, 15 May 2005 19:31:37 +0000 (GMT) Received: from smtp102.rog.mail.re2.yahoo.com (smtp102.rog.mail.re2.yahoo.com [206.190.36.80]) by mx1.FreeBSD.org (Postfix) with SMTP id 0E24E43D92 for ; Sun, 15 May 2005 19:31:37 +0000 (GMT) (envelope-from Mike.Jeays@rogers.com) Received: from unknown (HELO ?192.168.2.150?) (mjeays2551@24.114.152.139 with plain) by smtp102.rog.mail.re2.yahoo.com with SMTP; 15 May 2005 19:31:33 -0000 From: Mike Jeays To: Phusion In-Reply-To: References: Content-Type: text/plain Message-Id: <1116185492.86936.52.camel@chaucer> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sun, 15 May 2005 15:31:32 -0400 Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: Help with Expect Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 19:31:37 -0000 On Sun, 2005-05-15 at 14:09, Phusion wrote: > I'm new to writing expect scripts and need some help. The script will > telnet to a host and run some commands. I want the script to ping the > host to see if it's alive first before it telnets into it. Also, I > know the host is pingable meaning it responds to pings. If the host > doesn't respond to a ping I want it to log that to a log file and then > quit. I already know how to telnet to the host, but not sure about the > ping part and writing it to a log file. Could you please reply to this > email with a little example script. Thanks. > > Phusion > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > You can ping a host and test whether it was successful from a shell script, without needing to use expect. Hope this is useful, as it doesn't quite answer your question. Note the "-c 1" to tell ping to try just once. ping -c 1 chaucer rc1=$? if [ $rc1 -gt 0 ] then echo "Chaucer is down" else echo "Chaucer is up" fi Here is an example of telnet from expect; a very quick and dirty way to synchronize a clock on a very old machine. #!/usr/local/bin/expect set timeout 10 spawn telnet jansen expect "]" send "password1\r" expect "jansen???" send "su\r" expect "Password:" send "rootpassword\r" expect "#" exec date >/tmp/datesync.tmp exec cat /tmp/datesync.tmp set newtime [exec cat /tmp/datesync.tmp] send "date -s \"$newtime\"\r" expect "#" send "exit\r" expect "jansen???" send "exit\r" expect "host." From owner-freebsd-questions@FreeBSD.ORG Sun May 15 19:39:40 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7913916A4CE for ; Sun, 15 May 2005 19:39:40 +0000 (GMT) Received: from sociostat.org (echeney.adsl.spfdma.crocker.net [159.250.21.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DC5C43DB9 for ; Sun, 15 May 2005 19:39:40 +0000 (GMT) (envelope-from eric@sociostat.org) Received: from eric by sociostat.org with local (Exim 3.36 #1 (Debian)) id 1DXOvH-0005J8-00 for ; Sun, 15 May 2005 15:37:11 -0400 Date: Sun, 15 May 2005 15:37:11 -0400 From: Eric Cheney To: freebsd-questions@freebsd.org Message-ID: <20050515193710.GA20262@sociostat.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i Sender: Eric Cheney Subject: can't connect to mysql X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: cheney@soc.umass.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 19:39:40 -0000 Hello. I'm trying to get MySQL4.0 working. I've installed it using /stand/systinstall (as well as ports method on another attempt). I got a report from sysinstall that MySQL was installed. That's both the client and the server (it caught the dependencies.) But here's the problem: I can't connect to the database. Here's the error I get.... ****begin error message****** max# mysql -u root -p Enter password: ERROR 2002: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) ****end error message****** I did the above leaving the password blank because I haven't set up a password for root on MySQL yet. Which brings up another problem. I've tried the below and get the stated message..... ****begin error message****** max# mysqladmin -u root password 'newpassword' mysqladmin: connect to server at 'localhost' failed error: 'Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)' Check that mysqld is running and that the socket: '/tmp/mysql.sock' exists! max# ****end error message****** Well sure enough, /tmp/mysql.sock does not exist. And a "ps waux | grep msyql" leaves me to believe that mysql is not running. So then I did this, as root .... max# /usr/local/etc/rc.d/mysql-server.sh start And still mysql is not running, and I get the same problems as stated above. Any ideas about what I'm doing wrong? Thank you. -- cheney@soc.umass.edu From owner-freebsd-questions@FreeBSD.ORG Sun May 15 19:49:34 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E01F916A4CE for ; Sun, 15 May 2005 19:49:34 +0000 (GMT) Received: from pyro.cenergynetworks.com (pyro.cenergynetworks.com [196.30.191.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id F37BF43DE0 for ; Sun, 15 May 2005 19:49:33 +0000 (GMT) (envelope-from savage@savage.za.org) Received: from localhost ([127.0.0.1] helo=pyro.cenergynetworks.com) by pyro.cenergynetworks.com with smtp (Exim 4.50) id 1DXP1F-0003As-pk; Sun, 15 May 2005 21:43:21 +0200 Received: from wblv-146-195-156.telkomadsl.co.za ([165.146.195.156] helo=netphobia) by pyro.cenergynetworks.com with esmtpa (Exim 4.50) id 1DXP1C-0003Ao-s7; Sun, 15 May 2005 21:43:19 +0200 Message-ID: <076501c55987$362fb380$0a01a8c0@ops.cenergynetworks.com> From: "Chris Knipe" To: , References: <20050515193710.GA20262@sociostat.org> Date: Sun, 15 May 2005 21:49:28 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-PMX-Version: 4.7.1.128075, Antispam-Engine: 2.0.3.0, Antispam-Data: 2005.3.10.17 Subject: Re: can't connect to mysql X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Chris Knipe List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 19:49:35 -0000 vi /etc/rc.conf mysql_enable="YES" :wq /usr/local/etc/rc.d/mysql-server.sh start mysql and you should be fine. read what the port installation says the next time you install a port ;-) -- Chris. I love deadlines. I especially love the whooshing sound they make as they fly by..." - Douglas Adams, 'Hitchhiker's Guide to the Galaxy' ----- Original Message ----- From: "Eric Cheney" To: Sent: Sunday, May 15, 2005 9:37 PM Subject: can't connect to mysql > Hello. I'm trying to get MySQL4.0 working. I've installed it using > /stand/systinstall (as well as ports method on another attempt). > I got a report from sysinstall that MySQL was installed. That's > both the client and the server (it caught the dependencies.) > > But here's the problem: I can't connect to the database. > > Here's the error I get.... > > ****begin error message****** > > max# mysql -u root -p > Enter password: > ERROR 2002: Can't connect to local MySQL server through socket > '/tmp/mysql.sock' (2) > > ****end error message****** > > I did the above leaving the password blank because I haven't set up > a password for root on MySQL yet. > > Which brings up another problem. I've tried the below and get the > stated message..... > > ****begin error message****** > > max# mysqladmin -u root password 'newpassword' > mysqladmin: connect to server at 'localhost' failed > error: 'Can't connect to local MySQL server through socket > '/tmp/mysql.sock' (2)' > Check that mysqld is running and that the socket: '/tmp/mysql.sock' > exists! > max# > > ****end error message****** > > Well sure enough, /tmp/mysql.sock does not exist. And a "ps waux | > grep msyql" leaves me to believe that mysql is not running. > > So then I did this, as root .... > > max# /usr/local/etc/rc.d/mysql-server.sh start > > And still mysql is not running, and I get the same problems as > stated above. > > Any ideas about what I'm doing wrong? > > Thank you. > > -- > > cheney@soc.umass.edu > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Sun May 15 19:53:04 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D661416A4CE for ; Sun, 15 May 2005 19:53:04 +0000 (GMT) Received: from post-22.mail.nl.demon.net (post-22.mail.nl.demon.net [194.159.73.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6968943D8A for ; Sun, 15 May 2005 19:53:04 +0000 (GMT) (envelope-from albi@scii.nl) Received: from aseed.demon.nl ([83.160.138.119]:10020 helo=mail.aseed.antenna.nl) by post-22.mail.nl.demon.net with esmtp (Exim 4.43) id 1DXPAd-000CBV-C0; Sun, 15 May 2005 19:53:03 +0000 Received: from http.aseed.antenna.nl (unknown [192.168.0.50]) by mail.aseed.antenna.nl (Postfix) with ESMTP id 5B003154485; Sun, 15 May 2005 21:56:27 +0200 (CEST) Received: from localhost.localdomain (217-19-30-147.dsl.cambrium.nl [217.19.30.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by http.aseed.antenna.nl (Postfix) with ESMTP id 61EC958CC1F; Sun, 15 May 2005 21:53:03 +0200 (CEST) Date: Sun, 15 May 2005 21:53:01 +0200 From: "albi@scii.nl" To: cheney@soc.umass.edu Message-Id: <20050515215301.352fa111.albi@scii.nl> In-Reply-To: <20050515193710.GA20262@sociostat.org> References: <20050515193710.GA20262@sociostat.org> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: can't connect to mysql X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 19:53:04 -0000 On Sun, 15 May 2005 15:37:11 -0400 Eric Cheney wrote: > Here's the error I get.... > > ****begin error message****** > > max# mysql -u root -p > Enter password: > ERROR 2002: Can't connect to local MySQL server through socket > '/tmp/mysql.sock' (2) ---- cut ---- > So then I did this, as root .... > > max# /usr/local/etc/rc.d/mysql-server.sh start you have to specifically enable it in /etc/rc.conf : mysql_enable="YES" it's documented in /usr/local/etc/rc.d/mysql-server.sh From owner-freebsd-questions@FreeBSD.ORG Sun May 15 20:19:31 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1510616A4CE for ; Sun, 15 May 2005 20:19:31 +0000 (GMT) Received: from sociostat.org (echeney.adsl.spfdma.crocker.net [159.250.21.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2F1843D92 for ; Sun, 15 May 2005 20:19:30 +0000 (GMT) (envelope-from eric@sociostat.org) Received: from eric by sociostat.org with local (Exim 3.36 #1 (Debian)) id 1DXPXp-0005UP-00; Sun, 15 May 2005 16:17:01 -0400 Date: Sun, 15 May 2005 16:17:01 -0400 From: Eric Cheney To: "albi@scii.nl" Message-ID: <20050515201701.GA20902@sociostat.org> References: <20050515193710.GA20262@sociostat.org> <20050515215301.352fa111.albi@scii.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050515215301.352fa111.albi@scii.nl> User-Agent: Mutt/1.5.9i Sender: Eric Cheney cc: freebsd-questions@freebsd.org Subject: Re: can't connect to mysql X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: cheney@soc.umass.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 20:19:31 -0000 On Sunday, 15 May 2005 at 21:53:01 +0200, albi@scii.nl wrote: > On Sun, 15 May 2005 15:37:11 -0400 > Eric Cheney wrote: > > > Here's the error I get.... > > > > ****begin error message****** > > > > max# mysql -u root -p > > Enter password: > > ERROR 2002: Can't connect to local MySQL server through socket > > '/tmp/mysql.sock' (2) > ---- cut ---- > > So then I did this, as root .... > > > > max# /usr/local/etc/rc.d/mysql-server.sh start > > you have to specifically enable it in /etc/rc.conf : > > mysql_enable="YES" > > it's documented in /usr/local/etc/rc.d/mysql-server.sh Thank you; that did it! My apologies for not reading the documentation---but I didn't know that's where I'd find the answer. And thanks for the quick response....I think I waited all of 10 minutes! I have to say FreeBSD is just terrific. I used FreeBSD for about nine months about 2 or 3 years ago. I loved it then, but had to move to another unix-like OS for reasons that had nothing to do with FreeBSD. I put 5.4 on a machine Friday night and it has just been a terrific experience. I'm amazed about how "current" the software is, and yet it seems to be a very stable release. And now I get help from the list in about 10 minutes! People really should feel proud about FreeBSD. Great work! Many thanks to all.... -- cheney@soc.umass.edu From owner-freebsd-questions@FreeBSD.ORG Sun May 15 20:32:13 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92A2416A4CE for ; Sun, 15 May 2005 20:32:13 +0000 (GMT) Received: from wind.securenet-server.net (wind.securenet-server.net [72.9.238.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B8C543DCE for ; Sun, 15 May 2005 20:32:13 +0000 (GMT) (envelope-from zaid@ben-dashti.com) Received: from [62.215.147.129] (helo=ZaiD) by wind.securenet-server.net with esmtpa (Exim 4.44) id 1DXPmH-0001Cs-Ji for freebsd-questions@freebsd.org; Sun, 15 May 2005 16:31:59 -0400 Message-ID: <000601c5598d$28c33630$0601a8c0@ZaiD> From: "Zaid Dashti" To: Date: Sun, 15 May 2005 23:32:00 +0300 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - wind.securenet-server.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - ben-dashti.com X-Source: X-Source-Args: X-Source-Dir: Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: configuring KDE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 20:32:13 -0000 Hello, I have installed FreeBSD 5.4 and configured the X server by using = (xorgcfg -textmode) command. when i write startx, the X server is started, but where is the kde ? when i write startkde, i got error message, that needs some = configuration! anyone know how to configure it? Regards, Zaid From owner-freebsd-questions@FreeBSD.ORG Sun May 15 20:44:41 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8897816A4CE for ; Sun, 15 May 2005 20:44:41 +0000 (GMT) Received: from ylpvm29.prodigy.net (ylpvm29-ext.prodigy.net [207.115.57.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C59743D92 for ; Sun, 15 May 2005 20:44:41 +0000 (GMT) (envelope-from mbsd@pacbell.net) Received: from pimout7-ext.prodigy.net (pimout7-ext.prodigy.net [207.115.63.58])j4FKiWIC000316 for ; Sun, 15 May 2005 16:44:32 -0400 X-ORBL: [66.126.169.252] Received: from sotec.home (adsl-66-126-169-252.dsl.snfc21.pacbell.net [66.126.169.252])j4FKiPMH224028; Sun, 15 May 2005 16:44:33 -0400 Date: Sun, 15 May 2005 13:44:20 -0700 (PDT) From: =?ISO-8859-1?Q?Mikko_Ty=F6l=E4j=E4rvi?= X-X-Sender: mikko@sotec.home To: Ian Smith In-Reply-To: Message-ID: <20050515133928.F10135@sotec.home> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: freebsd-questions@freebsd.org Subject: Re: simple? sh problen X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 20:44:41 -0000 On Mon, 16 May 2005, Ian Smith wrote: > Hopefully not too OT .. the only silly question being the unasked one .. > > How do I test whether a sh argument is an integer or not, so as to avoid > failing on a syntax error from otherwise working code such as: > > [ $3 -lt 10 -o $3 -gt 600 ] && echo "$0 $1 $2: $3 invalid" && exit 1 > > when $3 is a non-integer argument? Do I need to delve into awk and REs, > or is there something more simple I've missed in mans test, expr, etc? Here are some suggestions for functions to do the test: isnum() { expr "$1" : '^[0-9][0-9]*$' >/dev/null } isnum() { case "$1" in *[^0-9]*|'') return 1;; esac return 0 } The second one is likely to be faster unless "expr" is a shell builtin (typically it it not). $.02, /Mikko From owner-freebsd-questions@FreeBSD.ORG Sun May 15 21:11:12 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BF6116A4CE for ; Sun, 15 May 2005 21:11:12 +0000 (GMT) Received: from jeremino.homeunix.net (jeremino.xs4all.nl [80.126.224.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7D9643D80 for ; Sun, 15 May 2005 21:11:11 +0000 (GMT) (envelope-from trap1@jeremino.homeunix.net) Received: from jeremina.homeunix.net ([10.0.0.5]) by jeremino.homeunix.net with smtp (Exim 4.42) id 1DXQOA-000Bf6-Uu; Sun, 15 May 2005 23:11:07 +0200 Message-Id: <3173862.uhLH1Sg3fq@not_a_message_id> From: Kees Plonsz To: Zaid Dashti , freebsd-questions@freebsd.org Date: Sun, 15 May 2005 23:11:20 +0200 References: Lines: 18 Organization: Chaos User-Agent: KNode/0.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Approved: Yes Subject: Re: configuring KDE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 21:11:12 -0000 Zaid Dashti wrote on Sunday 15 May 2005 22:32: > Hello, > I have installed FreeBSD 5.4 and configured the X server by using (xorgcfg > -textmode) command. > > when i write startx, the X server is started, but where is the kde ? > when i write startkde, i got error message, that needs some configuration! > > anyone know how to configure it? Put it in xinitrc. Located at "/usr/X11R6/lib/X11/xinit/xinitrc" Remove everything after "start some nice programs". The only nice program you have is startkde. -- Key-ID = A6581435 E-mail: replace trap1 with kees From owner-freebsd-questions@FreeBSD.ORG Sun May 15 21:14:35 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C36716A4CE for ; Sun, 15 May 2005 21:14:35 +0000 (GMT) Received: from post-22.mail.nl.demon.net (post-22.mail.nl.demon.net [194.159.73.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id D228C43DA8 for ; Sun, 15 May 2005 21:14:34 +0000 (GMT) (envelope-from albi@scii.nl) Received: from aseed.demon.nl ([83.160.138.119]:10032 helo=mail.aseed.antenna.nl) by post-22.mail.nl.demon.net with esmtp (Exim 4.43) id 1DXQRU-000MZG-Fo; Sun, 15 May 2005 21:14:32 +0000 Received: from http.aseed.antenna.nl (unknown [192.168.0.50]) by mail.aseed.antenna.nl (Postfix) with ESMTP id 038EF154485; Sun, 15 May 2005 23:17:57 +0200 (CEST) Received: from localhost.localdomain (217-19-30-147.dsl.cambrium.nl [217.19.30.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by http.aseed.antenna.nl (Postfix) with ESMTP id 4FBC758CC26; Sun, 15 May 2005 23:14:30 +0200 (CEST) Date: Sun, 15 May 2005 23:14:24 +0200 From: "albi@scii.nl" To: cheney@soc.umass.edu Message-Id: <20050515231424.3f0f8c87.albi@scii.nl> In-Reply-To: <20050515201701.GA20902@sociostat.org> References: <20050515193710.GA20262@sociostat.org> <20050515215301.352fa111.albi@scii.nl> <20050515201701.GA20902@sociostat.org> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: can't connect to mysql X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 21:14:35 -0000 On Sun, 15 May 2005 16:17:01 -0400 Eric Cheney wrote: > > you have to specifically enable it in /etc/rc.conf : > > > > mysql_enable="YES" > > > > it's documented in /usr/local/etc/rc.d/mysql-server.sh > > Thank you; that did it! My apologies for not reading the > documentation---but I didn't know that's where I'd find the answer. well, i just found out by looking into that file, rather than reading any documentation ;-) however in FreeBSD 5.x more and more services start to use the "enable-option", which is very nice i think, it's very useful in a jail-setup with shared nullfs-mounted directories > And thanks for the quick response....I think I waited all of 10 > minutes! > > I have to say FreeBSD is just terrific. I used FreeBSD for about > nine months about 2 or 3 years ago. I loved it then, but had to > move to another unix-like OS for reasons that had nothing to do with > FreeBSD. I put 5.4 on a machine Friday night and it has just been a > terrific experience. I'm amazed about how "current" the software > is, and yet it seems to be a very stable release. And now I get > help from the list in about 10 minutes! People really should feel > proud about FreeBSD. Great work! Many thanks to all.... i agree, esp. the jails and ports i enjoy a lot, e.g last week i needed to get a database-backup used with mysql 3.x from a linux-machine working on a newer linux-setup with mysql 4.x, and that backup refused to "load properly" then on a freebsd-machine i installed mysql 3.x, used the database-backup on that, did a mysqldump, and then it worked fine on the linux-machine of course on linux i could have removed the mysql 4.x and compile mysql 3.x from source, but that would have taken quite a bit more time yes, FreeBSD rocks :) From owner-freebsd-questions@FreeBSD.ORG Sun May 15 21:16:09 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C46F716A4CE for ; Sun, 15 May 2005 21:16:09 +0000 (GMT) Received: from post-22.mail.nl.demon.net (post-22.mail.nl.demon.net [194.159.73.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CD6143D64 for ; Sun, 15 May 2005 21:16:09 +0000 (GMT) (envelope-from albi@scii.nl) Received: from aseed.demon.nl ([83.160.138.119]:10033 helo=mail.aseed.antenna.nl) by post-22.mail.nl.demon.net with esmtp (Exim 4.43) id 1DXQT0-000MhQ-Cv; Sun, 15 May 2005 21:16:06 +0000 Received: from http.aseed.antenna.nl (unknown [192.168.0.50]) by mail.aseed.antenna.nl (Postfix) with ESMTP id EBB4B154485; Sun, 15 May 2005 23:19:30 +0200 (CEST) Received: from localhost.localdomain (217-19-30-147.dsl.cambrium.nl [217.19.30.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by http.aseed.antenna.nl (Postfix) with ESMTP id 149DA58CC23; Sun, 15 May 2005 23:16:04 +0200 (CEST) Date: Sun, 15 May 2005 23:15:58 +0200 From: "albi@scii.nl" To: "Zaid Dashti" Message-Id: <20050515231558.630961ad.albi@scii.nl> In-Reply-To: <000601c5598d$28c33630$0601a8c0@ZaiD> References: <000601c5598d$28c33630$0601a8c0@ZaiD> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: configuring KDE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 21:16:09 -0000 On Sun, 15 May 2005 23:32:00 +0300 "Zaid Dashti" wrote: > when i write startx, the X server is started, but where is the kde ? > when i write startkde, i got error message, that needs some > configuration! > > anyone know how to configure it? you can try : echo "startkde" > .xinitrc and then type startx again From owner-freebsd-questions@FreeBSD.ORG Sun May 15 21:43:07 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77DB416A4CE for ; Sun, 15 May 2005 21:43:07 +0000 (GMT) Received: from gaia.nimnet.asn.au (nimbin.lnk.telstra.net [139.130.45.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF85F43D92 for ; Sun, 15 May 2005 21:43:05 +0000 (GMT) (envelope-from smithi@nimnet.asn.au) Received: from localhost (smithi@localhost) by gaia.nimnet.asn.au (8.8.8/8.8.8R1.4) with ESMTP id HAA23692; Mon, 16 May 2005 07:42:54 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Mon, 16 May 2005 07:42:53 +1000 (EST) From: Ian Smith To: =?ISO-8859-1?Q?Mikko_Ty=F6l=E4j=E4rvi?= In-Reply-To: <20050515133928.F10135@sotec.home> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT cc: freebsd-questions@freebsd.org Subject: Re: simple? sh problen X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 21:43:07 -0000 On Sun, 15 May 2005, Mikko Työläjärvi wrote: > On Mon, 16 May 2005, Ian Smith wrote: > > How do I test whether a sh argument is an integer or not, so as to avoid > > failing on a syntax error from otherwise working code such as: > > > > [ $3 -lt 10 -o $3 -gt 600 ] && echo "$0 $1 $2: $3 invalid" && exit 1 > > > > when $3 is a non-integer argument? Do I need to delve into awk and REs, > > or is there something more simple I've missed in mans test, expr, etc? > > Here are some suggestions for functions to do the test: > > isnum() { > expr "$1" : '^[0-9][0-9]*$' >/dev/null > } > > isnum() { > case "$1" in > *[^0-9]*|'') return 1;; > esac > return 0 > } > > The second one is likely to be faster unless "expr" is a shell builtin > (typically it it not). Thanks Mikko; I liked the look of the case version, and it works fine: if ! isnum $3; then echo "$0 $1 $2: $3 is not an integer"; exit 1; fi > $.02, Worth every penny. Cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Sun May 15 22:03:24 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D442916A4CE for ; Sun, 15 May 2005 22:03:24 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 790D443DB4 for ; Sun, 15 May 2005 22:03:24 +0000 (GMT) (envelope-from dot.sn1tch@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so623404rng for ; Sun, 15 May 2005 15:03:21 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:mime-version:content-type:x-mailer:x-mimeole:thread-index:message-id; b=ECAstEBD+WC88UbT3xnIJM+UWvVSfc9EK7NYJZVTUE8EO3qpmlNQA3wyFTJeyhySFAh4yiF2teYWkRZxKfN1Rmmr0VmPXi/5dn5ExgnppWJxgABNZ76kG5+pOcjG8+2gd/zgjcgCQj9Cqg3y3OWtl2qI0ahpraZBAVilqfcOZLM= Received: by 10.39.1.54 with SMTP id d54mr2587983rni; Sun, 15 May 2005 15:03:21 -0700 (PDT) Received: from blade ([68.207.248.220]) by mx.gmail.com with ESMTP id a67sm214774rne.2005.05.15.15.03.21; Sun, 15 May 2005 15:03:21 -0700 (PDT) From: "Joe Wood" To: Date: Sun, 15 May 2005 18:07:19 -0400 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcVZmnZweFIIAUDJQN6aQLhmIXo4Nw== Message-ID: <4287c729.605b3677.7e3a.5a93@mx.gmail.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: BIND and NAT X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 22:03:25 -0000 Hello all, I have a small question regarding a DNS issue I am having. I have a bsd box setup for a domain I am hosting..it has FBSD 5.3 and Bind 9.3. It sits behind a NAT device and is in a DMZ. The problem is when I setup the domain I told it to point to the public ip which is translated to the private IP on which DNS listens. Now when I try to go to the site it keeps trying to connect to the private IP the site is on instead of the correct public ip. Is this an issue with the DNS files being setup for the private network or should it matter? Thanks for any help. joe From owner-freebsd-questions@FreeBSD.ORG Sun May 15 22:51:42 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 389DF16A4D0 for ; Sun, 15 May 2005 22:51:42 +0000 (GMT) Received: from web80802.mail.yahoo.com (web80802.mail.yahoo.com [66.163.170.97]) by mx1.FreeBSD.org (Postfix) with SMTP id E0E6643D68 for ; Sun, 15 May 2005 22:51:41 +0000 (GMT) (envelope-from paul.klatt@sbcglobal.net) Message-ID: <20050515225138.15681.qmail@web80802.mail.yahoo.com> Received: from [68.23.33.68] by web80802.mail.yahoo.com via HTTP; Sun, 15 May 2005 15:51:38 PDT Date: Sun, 15 May 2005 15:51:38 -0700 (PDT) From: Paul Klatt To: Questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: virtualdesktop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 22:51:42 -0000 Could nayone please help me configure the virtual desktop correctly so that the desktop does not go off of the monitor, and also the mouse does not work correctly. I would appreciate the help. From owner-freebsd-questions@FreeBSD.ORG Sun May 15 22:59:42 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93B6B16A4CE for ; Sun, 15 May 2005 22:59:42 +0000 (GMT) Received: from post-22.mail.nl.demon.net (post-22.mail.nl.demon.net [194.159.73.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 494D243D78 for ; Sun, 15 May 2005 22:59:42 +0000 (GMT) (envelope-from albi@scii.nl) Received: from aseed.demon.nl ([83.160.138.119]:10037 helo=mail.aseed.antenna.nl) by post-22.mail.nl.demon.net with esmtp (Exim 4.43) id 1DXS5B-0007g9-GU; Sun, 15 May 2005 22:59:37 +0000 Received: from http.aseed.antenna.nl (unknown [192.168.0.50]) by mail.aseed.antenna.nl (Postfix) with ESMTP id AEFF5154485; Mon, 16 May 2005 01:03:02 +0200 (CEST) Received: from localhost.localdomain (217-19-30-147.dsl.cambrium.nl [217.19.30.147]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by http.aseed.antenna.nl (Postfix) with ESMTP id E993B58C82F; Mon, 16 May 2005 00:59:36 +0200 (CEST) Date: Mon, 16 May 2005 00:59:33 +0200 From: "albi@scii.nl" To: Paul Klatt Message-Id: <20050516005933.16fd2bb7.albi@scii.nl> In-Reply-To: <20050515225138.15681.qmail@web80802.mail.yahoo.com> References: <20050515225138.15681.qmail@web80802.mail.yahoo.com> X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: Questions@freebsd.org Subject: Re: virtualdesktop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 22:59:42 -0000 On Sun, 15 May 2005 15:51:38 -0700 (PDT) Paul Klatt wrote: > Could nayone please help me configure the virtual > desktop correctly so that the desktop does not go off > of the monitor, and also the mouse does not work > correctly. I would appreciate the help. how did you configure X ? which desktop-environment or windowmanager are you using ? what is the exact problem with the mouse ? if you're using 5.3 or later, try xorgcfg to configure X (or xorgcfg -textmode) From owner-freebsd-questions@FreeBSD.ORG Sun May 15 23:00:13 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D04ED16A4CE for ; Sun, 15 May 2005 23:00:13 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 779AB43DCF for ; Sun, 15 May 2005 23:00:13 +0000 (GMT) (envelope-from pwaring@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so627023rng for ; Sun, 15 May 2005 16:00:08 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qQA5Jv1BzzhNfDQkwnpZJrwLUlYJAa+bGH1Dfe3gFgzhaI1WkzZW8rW5XBx98XS0YzmIDpn4Rd2wUgWJSnFsFHFnVedJtG4gdn1riO13btVsMf/7O3yQbi6h2NNyqKajhiB+buz/Gz+J+kqEfmJ15UwItdyYClT0sZPvVJ03H9o= Received: by 10.39.1.54 with SMTP id d54mr2608467rni; Sun, 15 May 2005 16:00:08 -0700 (PDT) Received: by 10.38.76.66 with HTTP; Sun, 15 May 2005 16:00:08 -0700 (PDT) Message-ID: <8953a1db050515160066ea3c0d@mail.gmail.com> Date: Mon, 16 May 2005 00:00:08 +0100 From: Paul Waring To: Joe Wood In-Reply-To: <4287c729.605b3677.7e3a.5a93@mx.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <4287c729.605b3677.7e3a.5a93@mx.gmail.com> cc: freebsd-questions@freebsd.org Subject: Re: BIND and NAT X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Paul Waring List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 23:00:13 -0000 On 5/15/05, Joe Wood wrote: > I have a small question regarding a DNS issue I am having. I have a bsd b= ox > setup for a domain I am hosting..it has FBSD 5.3 and Bind 9.3. It sits > behind a NAT device and is in a DMZ. The problem is when I setup the doma= in > I told it to point to the public ip which is translated to the private IP= on > which DNS listens. Now when I try to go to the site it keeps trying to > connect to the private IP the site is on instead of the correct public ip= . > Is this an issue with the DNS files being setup for the private network o= r > should it matter? If your DNS server is giving out the private IP address to machines on the other side of the NAT device then yes, that does matter because they won't be able to connect to it. If you want to run your DNS from behind a NAT device (using port forwarding from a public IP perhaps - that's what I do) then you might want to look into the concepts of "views" in Bind, which will allow you to give out the private IP for the domain to any machine on the same subnet (e.g. 192.168.0.x) and the public IP address to any machine on the other side of the NAT device. This is what I do when running my DNS from behind a router on a private IP range and it works very well. It's a bit fiddly to setup as each zone you have needs to be in both views (internal and external) but otherwise it's fairly simple to setup. Paul --=20 Rogue Tory http://www.roguetory.org.uk From owner-freebsd-questions@FreeBSD.ORG Sun May 15 23:48:26 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC97D16A4CE for ; Sun, 15 May 2005 23:48:26 +0000 (GMT) Received: from smtp.ade.swiftdsl.com.au (smtp.ade.swiftdsl.com.au [218.214.228.98]) by mx1.FreeBSD.org (Postfix) with SMTP id C1F8443DBF for ; Sun, 15 May 2005 23:48:25 +0000 (GMT) (envelope-from no-spam@swiftdsl.com.au) Received: (qmail 12893 invoked from network); 15 May 2005 23:48:18 -0000 Received: from unknown (HELO daemon.foo.lan) (218.214.176.70) by smtp.ade.swiftdsl.com.au with SMTP; 15 May 2005 23:48:18 -0000 From: Ian Moore To: freebsd-questions@freebsd.org Date: Mon, 16 May 2005 09:18:09 +0930 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1795425.QeQZroNPQV"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200505160918.16568.no-spam@swiftdsl.com.au> Subject: NSSwitch settings on 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 23:48:27 -0000 --nextPart1795425.QeQZroNPQV Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hi, I'm trying to configure an openldap server on 5.4 and I'm unsure of what th= e=20 correct settings in nsswitch.conf should be for a 5.4-Release system, since= =20 the default seems to be different to previous releases. Perhaps someone here might know? I've been using the guide at http://books.blurgle.ca/read/chapter/1 as a=20 reference. This document says you have these lines in your nsswitch.conf: passwd: files ldap group: files ldap On my 5.4-Release system, the default nsswitch.conf is: group: compat group_compat: nis hosts: files dns networks: files passwd: compat passwd_compat: nis shells: files So should I have group: compat ldap passwd: compat ldap or=20 group: files ldap passwd: files ldap or some other combination? Using the 'compat ldap' version, I get errors in /var/log/messages: May 13 22:42:26 daemon -csh: NSSWITCH(nsparser): /etc/nsswitch.conf line= 1: 'compat' used with other sources May 13 22:42:26 daemon -csh: NSSWITCH(nsparser): /etc/nsswitch.conf line= 5: 'compat' used with other sources Cheers, =2D-=20 Ian gpg key: http://home.swiftdsl.com.au/~imoore/no-spam.asc --nextPart1795425.QeQZroNPQV Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQBCh9/APUlnmbKkJ6ARAtLCAJwL39oARIWRpoLrca1G0ccYWhd+pACgqGsV en0nkO5hkL9VtwpwINmWJak= =zPV7 -----END PGP SIGNATURE----- --nextPart1795425.QeQZroNPQV-- From owner-freebsd-questions@FreeBSD.ORG Mon May 16 00:07:40 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 215A616A4CE; Mon, 16 May 2005 00:07:40 +0000 (GMT) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80B1643DBA; Mon, 16 May 2005 00:07:39 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) j4G07ob22086; Sun, 15 May 2005 17:07:50 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , "freebsd-questions@FreeBSD. ORG" Date: Sun, 15 May 2005 17:07:14 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 cc: stable@freebsd.org Subject: RE: 5.4 install disc1 will not find hard drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 00:07:40 -0000 PR i386/81082 Once again, I don't think the problem is in the build process they used for making the ISO. As a matter of fact I just yesterday did a 5.4 install on a system, booting from CD, which I burned from disc1.iso that I downloaded from one of the FTP mirrors, on the one machine I mentioned in the PR that didn't have a problem. I think the problem is in the driver. If you go to the CVS tree it is obvious that they have been dealing with these issues. For example, check out comments like "Fix more ATAPI breakage. Apparently some devices are very picky on details :)" made just 2 days ago, see here: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/ata/ You also might consider that according to the device driver output your running a 40pin non-UDMA cable on what looks like a UDMA drive, which is a no-no, it might simply be a cabling issue with bad cables in your system. If you really do have an 80 pin cable then try exchanging it with another one, and remember, the blue connector goes to the adapter card, the black connector to the drive, and the grey to the secondary drive, if there is one. I don't have any more pull getting PR's worked on, but I have found that if they are properly filed then they get worked on faster. For example, the PR system isn't an appropriate place for complaining that a mirror site is missing miniinst.iso file - you should contact the mirror administrator of the mirror in question, directly. And you might also consider that there is a 20MB file named 5.4-RELEASE-i386-bootonly.iso in the release directory - see for example: ftp://ftp13.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/5.4/ and that there IS NOT a miniinst.iso file in the master FTP location, see: ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/5.4/ I would guess maybe they renamed it? Also, you cannot assume a mirror site is going to have a good copy of stable anyway. You can only assume mirrors are going to be accurate for RELEASES, as there's always propagation time from when changes are made. If your traking snapshots you should be using ftp://current.freebsd.org/pub/FreeBSD/snapshots/ Ted Ted > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of fbsd_user > Sent: Sunday, May 15, 2005 4:41 AM > To: Ted Mittelstaedt; freebsd-questions@FreeBSD. ORG > Cc: stable@freebsd.org > Subject: RE: 5.4 install disc1 will not find hard drive > > > > > > > > > -----Original Message----- > > From: owner-freebsd-questions@freebsd.org > > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of fbsd_user > > Sent: Saturday, May 14, 2005 12:54 PM > > To: freebsd-questions@FreeBSD. ORG > > Cc: stable@freebsd.org > > Subject: 5.4 install disc1 will not find hard drive > > > > > > > Power management and APIC have been bios disabled since > > version FreeBSD 3.4 > > version so that is not the problem. I tried selecting safe > > option to boot > > and still get same error 'no hard disk found". My hard drive > > is an western > > digital 310100 on ata0 as master. When using this 5.4 install > > cd on other > > pc/ motherboard/ hard drive combos I get same error. > > > > I think there is something wrong with the build process of the > > disc1.iso > > file. > > I don't think there is anything wrong with the build process of > disc1.iso. I think instead that someone made a change in the atapi > driver that broke this. > > I have a Intel Desktop Motherboard VC820 that this exact thing > happened > to. In my case, I fortunately was running a Hipoint RAID card in it > so > the only thing that got wacked was the system now does not recognize > that there is a CDROM on the secondary onboard IDE controller. Last > week I had it running FreeBSD 4.11 just fine. (not on the RAID > controller) > > I had assumed that using the RAID controller made it so that the > onboard > ATAPI controller had some problem, but after seeing this post it is > clear > that they broke the driver. > > DO you want to file a PR or should I? > > Ted > > > -----Original Message----- > From: Ted Mittelstaedt [mailto:tedm@toybox.placo.com] > Sent: Sunday, May 15, 2005 12:38 AM > To: fbsd_user@a1poweruser.com; freebsd-questions@FreeBSD. ORG > Cc: stable@freebsd.org > Subject: RE: 5.4 install disc1 will not find hard drive > > > Ted. > > I filed a PR on the missing miniinst.iso file. > http://www.freebsd.org/cgi/query-pr.cgi?pr=80861 > > And it's not been addressed yet. So if you have some pull > in getting PR's worked on then you should file the PR on this > problem. > As I see this, it's a show stopper in distributing 5.4 stable and > needs > to be addressed immediately because all the mirror FTP sites are > populated with non-functional disc1 iso files. > > Here are some more details from the boot of disc1. > > The btx loader issues this messages > bios drive C: is disk1 > > and near the end of the boot messages I get > > ata1-master: pio=0x0c wdma=0x22 udma=0x42 cable=40pin > ata1-master; setting pio4 on VIA 82C596B chip > > Please send me the PR number after you report this so I can track > it. > > Thanks > > > > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 16 01:35:06 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCF1716A4CE for ; Mon, 16 May 2005 01:35:06 +0000 (GMT) Received: from smtp105.rog.mail.re2.yahoo.com (smtp105.rog.mail.re2.yahoo.com [206.190.36.83]) by mx1.FreeBSD.org (Postfix) with SMTP id 2228543DA2 for ; Mon, 16 May 2005 01:35:06 +0000 (GMT) (envelope-from Mike.Jeays@rogers.com) Received: from unknown (HELO ?192.168.2.150?) (mjeays2551@24.114.152.139 with plain) by smtp105.rog.mail.re2.yahoo.com with SMTP; 16 May 2005 01:35:04 -0000 From: Mike Jeays To: freebsd-questions@freebsd.org Content-Type: text/plain Message-Id: <1116207303.86936.60.camel@chaucer> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sun, 15 May 2005 21:35:03 -0400 Content-Transfer-Encoding: 7bit Subject: Epson Stylus C86 Printer X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 01:35:06 -0000 I have just bought one of these printers, and am having trouble getting it to work with ghostscript. It is connected via a USB port, and it responds momentarily when I send anything directly to /dev/ulpt0. I would appreciate the correct parameters for ghostscript - I think it should work with device ijs and 'server' ijsgimpprint, which has been installed in /usr/local/bin. Some of the instructions recommend CUPS and FooMatic, and seem much more complicated than I ought to need for a local installation. I tested the printer with Windows, and it does work. From owner-freebsd-questions@FreeBSD.ORG Mon May 16 01:39:14 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DBDA16A4CE for ; Mon, 16 May 2005 01:39:14 +0000 (GMT) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0116D43D95 for ; Mon, 16 May 2005 01:39:14 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.81]) by mta11.adelphia.net (InterMail vM.6.01.04.01 201-2131-118-101-20041129) with SMTP id <20050516013913.JUCC13270.mta11.adelphia.net@barbish>; Sun, 15 May 2005 21:39:13 -0400 From: "fbsd_user" To: "Ted Mittelstaedt" , "freebsd-questions@FreeBSD. ORG" Date: Sun, 15 May 2005 21:39:08 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Importance: Normal Subject: RE: 5.4 install disc1 will not find hard drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 01:39:14 -0000 -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Ted Mittelstaedt Sent: Sunday, May 15, 2005 8:07 PM To: fbsd_user@a1poweruser.com; freebsd-questions@FreeBSD. ORG Cc: stable@freebsd.org Subject: RE: 5.4 install disc1 will not find hard drive You also might consider that according to the device driver output your running a 40pin non-UDMA cable on what looks like a UDMA drive, which is a no-no, it might simply be a cabling issue with bad cables in your system. If you really do have an 80 pin cable then try exchanging it with another one, and remember, the blue connector goes to the adapter card, the black connector to the drive, and the grey to the secondary drive, if there is one. You can only assume mirrors are going to be accurate for RELEASES, as there's always propagation time from when changes are made. If your traking snapshots you should be using ftp://current.freebsd.org/pub/FreeBSD/snapshots/ Ted ************************************ ***************************** There is a 80 pin cable and its good because I tested it in another pc. But your comments about snapshots is very interesting. I did not know about this. I checked the contents at the URL you posted. It looks like an install cd layout. Is there some command, script, or utility that will download and burn a cd from a snapshot? Is there any documentation on these snapshots and how to use one? From owner-freebsd-questions@FreeBSD.ORG Mon May 16 02:00:45 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A3C516A4CE for ; Mon, 16 May 2005 02:00:45 +0000 (GMT) Received: from sccrmhc14.comcast.net (sccrmhc14.comcast.net [204.127.202.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id B169A43D1F for ; Mon, 16 May 2005 02:00:43 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [192.168.214.215] (c-24-1-232-64.hsd1.tx.comcast.net[24.1.232.64]) by comcast.net (sccrmhc14) with ESMTP id <200505160200390140035thge>; Mon, 16 May 2005 02:00:41 +0000 Message-ID: <4287FEC5.70306@computer.org> Date: Sun, 15 May 2005 21:00:37 -0500 From: Eric Schuele User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD Questions References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: fbsd_user@a1poweruser.com cc: Ted Mittelstaedt Subject: Re: 5.4 install disc1 will not find hard drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 02:00:45 -0000 > I don't have any more pull getting PR's worked on, but I have found > that if they are properly filed then they get worked on faster. For > example, > the PR system isn't an appropriate place for complaining that a mirror > site > is missing miniinst.iso file - you should contact the mirror > administrator FWIW: There is no miniinst. I'm pretty sure they intend it to be so. I've been hearing talk for many months regarding the changes in disc ISOs. I'm sure its documented somewhere (though I could not find it). You could search the archives. At least you can start with the release announcement... http://www.freebsd.org/releases/5.4R/announce.html At the bottom it shows they produced no mini installation. (as evidenced by the MD5s) -- Regards, Eric From owner-freebsd-questions@FreeBSD.ORG Mon May 16 02:12:22 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55EC416A4CE for ; Mon, 16 May 2005 02:12:22 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D87543D8B for ; Mon, 16 May 2005 02:12:20 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [192.168.214.215] (c-24-1-232-64.hsd1.tx.comcast.net[24.1.232.64]) by comcast.net (sccrmhc13) with ESMTP id <2005051602121301600r87sfe>; Mon, 16 May 2005 02:12:16 +0000 Message-ID: <42880176.5040009@computer.org> Date: Sun, 15 May 2005 21:12:06 -0500 From: Eric Schuele User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Allan Bowhill , FreeBSD Questions References: <20050515040002.GA29505@kosmos.my.net> In-Reply-To: <20050515040002.GA29505@kosmos.my.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: silencing the boot beep X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 02:12:22 -0000 Allan Bowhill wrote: > Does anyone know how to turn off the annoying beep when > BSD partition selector comes up? Wish I knew... I could use this as well. > > Also, has anyone got a decent setup for a synaptics touchpad > attached to a Dell Inspiron 1150 laptop? To /boot/device.hints add hint.psm.0.flags="0x1000" That got mine on its feet. > > 5.4-STABLE > > Thanks in advance! :) > -- Regards, Eric From owner-freebsd-questions@FreeBSD.ORG Mon May 16 02:13:22 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3325016A4CE for ; Mon, 16 May 2005 02:13:22 +0000 (GMT) Received: from web31710.mail.mud.yahoo.com (web31710.mail.mud.yahoo.com [68.142.201.190]) by mx1.FreeBSD.org (Postfix) with SMTP id BC52343DB6 for ; Mon, 16 May 2005 02:13:21 +0000 (GMT) (envelope-from holtor@yahoo.com) Received: (qmail 826 invoked by uid 60001); 16 May 2005 02:13:21 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=CDu36COcMdpSJIAseSGn1M2bDPvrViv/iMMdek2rQctlsVxlJW8kUigVM2R+8YLsWMHOqIz/0ooGop7wV1jiR3NIV85j/Q980w276W7mZH8p1Fpcoi33BTJINqysAOQxR7j2JQ17wibsdVyMFJcVNA2R+fnP1tRERTScpJzYcww= ; Message-ID: <20050516021321.824.qmail@web31710.mail.mud.yahoo.com> Received: from [67.85.37.167] by web31710.mail.mud.yahoo.com via HTTP; Sun, 15 May 2005 19:13:21 PDT Date: Sun, 15 May 2005 19:13:21 -0700 (PDT) From: Holtor To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Working Keyboard in 5.x X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 02:13:22 -0000 Hello, Does anyone know how to make a PS/2 keyboard work when plugged into a system booted without a keyboard on FreeBSD 5.x? It doesn't seem to work. For example in 4.x the default GENERIC kernel line is: device atkbd0 at atkbdc? irq 1 flags 0x1 If you leave that line alone, the ps/2 keyboard will not work if a system booted without one plugged in. But if you remove the "flags 0x1" it will work fine. Does anyone know how to make the PS/2 work properly in 5.x? Thank you, Holt G. Discover Yahoo! Stay in touch with email, IM, photo sharing and more. Check it out! http://discover.yahoo.com/stayintouch.html From owner-freebsd-questions@FreeBSD.ORG Mon May 16 03:44:02 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 546CF16A4CE for ; Mon, 16 May 2005 03:44:02 +0000 (GMT) Received: from skipjack.no-such-agency.net (skipjack.no-such-agency.net [64.142.114.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9A0643DC5 for ; Mon, 16 May 2005 03:44:01 +0000 (GMT) (envelope-from jpp@cloudview.com) Received: from skipjack.no-such-agency.net (localhost [127.0.0.1]) by skipjack.no-such-agency.net (Postfix) with ESMTP id 8A83834DA11; Sun, 15 May 2005 20:44:01 -0700 (PDT) Received: from [192.168.2.120] (blackhole.no-such-agency.net [64.142.103.196]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by skipjack.no-such-agency.net (Postfix) with ESMTP id 5719F34D435; Sun, 15 May 2005 20:44:01 -0700 (PDT) Message-ID: <42881700.6010502@cloudview.com> Date: Sun, 15 May 2005 20:44:00 -0700 From: John Pettitt User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Eric Schuele References: <20050515040002.GA29505@kosmos.my.net> <42880176.5040009@computer.org> In-Reply-To: <42880176.5040009@computer.org> X-Enigmail-Version: 0.90.1.1 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AV-Checked: by skipjack cc: Allan Bowhill cc: FreeBSD Questions Subject: Re: silencing the boot beep X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 03:44:02 -0000 Eric Schuele wrote: > Allan Bowhill wrote: > >> Does anyone know how to turn off the annoying beep when BSD partition >> selector comes up? > > > Wish I knew... I could use this as well. > > If I recall correctly the beep comes from the PC BIOS and indicates the POST passed. My suggestion - unplug the speaker. John From owner-freebsd-questions@FreeBSD.ORG Mon May 16 04:22:18 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EEFD16A4CE for ; Mon, 16 May 2005 04:22:18 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6EEB43D5E for ; Mon, 16 May 2005 04:22:17 +0000 (GMT) (envelope-from nuopus@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1473605wra for ; Sun, 15 May 2005 21:22:17 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type; b=cawmG5sMpXdzO5fCrKQjn/H6p3FsO3q2nuPsf6GdjLE07AsGCuMmPTdXm25siHl2UB5gzlgCdJiELfDs4r45bHwqcsD9xL4Wc+lPYkPrD4UlrQ7FTuAzQYooSxA/c192BboGqWw+3XrHjKACp8NrCkKD8QQbSZsSDgvqdqnNpqk= Received: by 10.54.24.31 with SMTP id 31mr3427158wrx; Sun, 15 May 2005 21:22:17 -0700 (PDT) Received: by 10.54.51.79 with HTTP; Sun, 15 May 2005 21:22:17 -0700 (PDT) Message-ID: <6695b8f705051521222d74927b@mail.gmail.com> Date: Sun, 15 May 2005 21:22:17 -0700 From: Christopher Cox To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Sound playing through mic jack X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Christopher Cox List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 04:22:18 -0000 Hello, I am having a problem in FreeBSD 5.4-RELEASE where all audio is bein= g=20 played through the mic jack instead of the one it is supposed to. I have=20 read problems like this before about AC97 audio chips. I have been able to play MP3 music through this jack, so I know the snd_ich= =20 driver is working properly. Problem is I cannot just switch jacks using=20 wires because this is a laptop. In Linux I could just add AC97_QUIRK=3D1 to my configuration and it would m= ake=20 the sound right ... but I cannot seem to find an equivelant in FreeBSD.=20 Is there some kind of kernel option or even a source patch I could use? BTW, I have an Intel 82801 ICH5 chipset. --=20 Christopher Cox nuOpus@gmail.com From owner-freebsd-questions@FreeBSD.ORG Mon May 16 04:51:08 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19CC316A4CE for ; Mon, 16 May 2005 04:51:08 +0000 (GMT) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B32A43D9A for ; Mon, 16 May 2005 04:51:07 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) j4G4pPb22991; Sun, 15 May 2005 21:51:26 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , "freebsd-questions@FreeBSD. ORG" Date: Sun, 15 May 2005 21:50:50 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Subject: RE: 5.4 install disc1 will not find hard drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 04:51:08 -0000 > -----Original Message----- > From: fbsd_user [mailto:fbsd_user@a1poweruser.com] > Sent: Sunday, May 15, 2005 6:39 PM > To: Ted Mittelstaedt; freebsd-questions@FreeBSD. ORG > Subject: RE: 5.4 install disc1 will not find hard drive > > > There is a 80 pin cable and its good because I tested it in another > pc. > I understand you may have an 80 pin cable on there and that you think it must be good. But the output you posted showed that the FreeBSD device driver thinks you only have a 40 pin cable. Either that is a bug or the ata chipset cannot sense your 80 pin cable. The obvious thing to do is to try a different 80 pin cable. > But your comments about snapshots is very interesting. I did not > know about this. > I checked the contents at the URL you posted. It looks like an > install cd layout. > Is there some command, script, or utility that will download and > burn a cd from a snapshot? > Is there any documentation on these snapshots and how to use one? > Probably the FreeBSD handbook is the best place. Ted From owner-freebsd-questions@FreeBSD.ORG Mon May 16 04:55:24 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19D7416A4CE for ; Mon, 16 May 2005 04:55:24 +0000 (GMT) Received: from harmony.digitalbluesky.net (dsl093-010-046.cle1.dsl.speakeasy.net [66.93.10.46]) by mx1.FreeBSD.org (Postfix) with SMTP id 6646943D7C for ; Mon, 16 May 2005 04:55:23 +0000 (GMT) (envelope-from steve@digitalbluesky.net) Received: (qmail 42297 invoked by uid 0); 16 May 2005 04:55:40 -0000 Received: from unknown (HELO willow.digitalbluesky.net) (steve@digitalbluesky.net@192.168.1.1) by harmony.digitalbluesky.net with SMTP; 16 May 2005 04:55:40 -0000 Message-Id: <6.2.1.2.0.20050516005230.0203f110@mail.digitalbluesky.net> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Mon, 16 May 2005 00:55:22 -0400 To: freebsd-questions@freebsd.org From: Steve Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: how to format an external usb drive with a freebsd partititon under freebsd 5.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 04:55:24 -0000 I've done a google search, read the freebsd handbook and searched the mailing list archives...maybe I'm not using the right search terms but I'm not finding the information I need...or I'm misunderstanding something on a fundamental level. I have a 120 gig western digital usb drive with a FAT32 file system connected to a freebsd 5.3 box that I can mount and read/write to okay . But (and I think this is correct) when I backup files from my freebsd 5.3 box to this drive, the file permissions aren't being maintained. That is because it's a FAT32 files system correct? I've always in the past backed up linux/freebsd files to other linux/freebsd boxes so this is the first time I'm dealing with this. What is the correct way to format this FAT32 usb drive so I can put freebsd files on it and maintain the proper owner and file permissions. I've tried to do this with sysinstall based on the instructions in the freebsd handbook but I get an error that freebsd can't write the partition. The usb drive is currently mounted, is that the problem? Steve Bopple www.digitalbluesky.net From owner-freebsd-questions@FreeBSD.ORG Mon May 16 05:29:58 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F6E016A4D0 for ; Mon, 16 May 2005 05:29:58 +0000 (GMT) Received: from pop-3.dnv.wideopenwest.com (pop-3.dnv.wideopenwest.com [64.233.207.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id C927243D73 for ; Mon, 16 May 2005 05:29:57 +0000 (GMT) (envelope-from moy@tiresias.dyndns.org) Received: from [192.168.1.102] (d60-65-99-219.col.wideopenwest.com [65.60.219.99])j4G5Tv605109 for ; Mon, 16 May 2005 00:29:57 -0500 Message-ID: <42882FAE.6000904@tiresias.dyndns.org> Date: Mon, 16 May 2005 01:29:18 -0400 From: Moy Easwaran User-Agent: Mozilla Thunderbird 1.0.2-1.3.2 (X11/20050324) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Newbie: fonts &c. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 05:29:58 -0000 I use mainly Fedora and OS X on desktops and OpenBSD on servers (so no GUI there). I'm trying to play with FreeBSD 5.4 a little and having trouble with look-and-feel issues. Fonts, menus, and sometimes icons look a bit ugly. Here are some screenshots: http://tiresias.dyndns.org/~moy/screenshots/ I tried using Fedora's gtkrc but that didn't help, so either it's not a GTK issue or I wasn't doing it right. I've added the various bluecurve packages, browsed through FreeBSD FAQs, and tried gtk[2]-theme-switch; that didn't help either. I should also note that when I previewed the Bluecurve theme in gtk2-theme-switch, it didn't really look like the Bluecurve I'm used to. Any ideas? Thanks, Moy (Please cc me on replies.) From owner-freebsd-questions@FreeBSD.ORG Mon May 16 05:37:08 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D7EB16A4CE for ; Mon, 16 May 2005 05:37:08 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BBFD43DB6 for ; Mon, 16 May 2005 05:37:08 +0000 (GMT) (envelope-from trenktaz@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1484079wra for ; Sun, 15 May 2005 22:37:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=D1UiejnkitYPocA6ydrm+K5UaSZCH1BFPhIya1V0wiCZhC/r5h/Z7h+eX4MkPxLu55bTrN+bsWQKN2YZZzOgRjRvtLFMo1Ah089Vx/1tGZJk9fb2tf9aJDtOIBSSqooNCIle8qZ6bylr+EAgf9tVJ/pD+G8iTR0wXFkhZofC3hw= Received: by 10.54.98.19 with SMTP id v19mr3447747wrb; Sun, 15 May 2005 22:37:07 -0700 (PDT) Received: by 10.54.40.39 with HTTP; Sun, 15 May 2005 22:37:07 -0700 (PDT) Message-ID: Date: Mon, 16 May 2005 08:37:07 +0300 From: Mantas Smelevicius To: Moy Easwaran In-Reply-To: <42882FAE.6000904@tiresias.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <42882FAE.6000904@tiresias.dyndns.org> cc: freebsd-questions@freebsd.org Subject: Re: Newbie: fonts &c. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mantas Smelevicius List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 05:37:08 -0000 try to install=20 /usr/ports/x11-fonts/webfonts or alternative /usr/ports/x11-fonts/arkpandora then enter on of the following lines into X config FontPath "/usr/X11R6/lib/X11/font/webfonts/" or FontPath "/usr/X11R6/lib/X11/font/arkpandora/" Also look at the Modules section into X config. Line Load "freetype" must be ther. On 5/16/05, Moy Easwaran wrote: > I use mainly Fedora and OS X on desktops and OpenBSD on servers (so no > GUI there). I'm trying to play with FreeBSD 5.4 a little and having > trouble with look-and-feel issues. Fonts, menus, and sometimes icons > look a bit ugly. Here are some screenshots: > http://tiresias.dyndns.org/~moy/screenshots/ >=20 > I tried using Fedora's gtkrc but that didn't help, so either it's not > a GTK issue or I wasn't doing it right. I've added the various > bluecurve packages, browsed through FreeBSD FAQs, and tried > gtk[2]-theme-switch; that didn't help either. I should also note that > when I previewed the Bluecurve theme in gtk2-theme-switch, it didn't > really look like the Bluecurve I'm used to. >=20 > Any ideas? >=20 > Thanks, >=20 > Moy >=20 > (Please cc me on replies.) >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" >=20 --=20 Pagarbiai / Best regards Mantas Smelevicius http://mantas.lt From owner-freebsd-questions@FreeBSD.ORG Mon May 16 05:40:21 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1B0716A4D0 for ; Mon, 16 May 2005 05:40:21 +0000 (GMT) Received: from inetbml02.citec.qld.gov.au (inetbml02.citec.qld.gov.au [203.5.10.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10FCD43D5E for ; Mon, 16 May 2005 05:40:17 +0000 (GMT) (envelope-from tdundar@cremis.net) Received: from lasun129.dnr.qld.gov.au (mailgate1.nrm.qld.gov.au [203.46.162.123]) by inetbml02.citec.qld.gov.au (Postfix) with ESMTP id C0AC995339 for ; Mon, 16 May 2005 15:40:05 +1000 (EST) Received: from nrmsweep1.lands.resnet.qg (nrmsweep1.lands.resnet.qg [131.242.97.4]) by lasun129.dnr.qld.gov.au (Postfix) with ESMTP id 62C6B94826 for ; Mon, 16 May 2005 15:40:05 +1000 (EST) Received: from minfolders.lands.resnet.qg (unverified) by nrmsweep1.lands.resnet.qg for ; Mon, 16 May 2005 15:40:04 +1000 Received: from fms.dnr.qld.gov.au ([131.242.94.21]) by minfolders.lands.resnet.qg with Microsoft SMTPSVC(6.0.3790.211); Mon, 16 May 2005 15:40:05 +1000 Received: from [131.242.91.210] (fms210.dnr.qld.gov.au [131.242.91.210]) by fms.dnr.qld.gov.au (8.11.6/8.11.6) with ESMTP id j4G5dvw17489 for ; Mon, 16 May 2005 15:40:04 +1000 From: Turker Dundar To: freebsd-questions@freebsd.org Content-Type: text/plain Message-Id: <1116221759.2853.9.camel@fms210.dnr.qld.gov.au> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 (1.4.5-7) Date: Mon, 16 May 2005 15:35:59 +1000 Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 16 May 2005 05:40:05.0035 (UTC) FILETIME=[B63FFFB0:01C559D9] Subject: Proliant 1600 with 2 CPUs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 05:40:21 -0000 Hi, I am trying to create a new kernel to use both the cpus installed in my Proliant 1600 system. The machine can see both the cpus when it starts up, but kernel fails to do so. I am using 5.4-Release. In the kernel configuration file I have this parameter defined already. options SMP Kernel compiles with no errors. However, after the boot dmesg shows only cpu0. additional cpu is not listed. I tried options like NCPU=2 or APIC_IO. They are rejected as being invlaid options. Could you please tell me how I can make a new kernel to run with multiple cpus. I am posting this email because I could not find any document to help me further. Many thanks, Turker Dundar From owner-freebsd-questions@FreeBSD.ORG Mon May 16 06:30:09 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B36C16A4D3 for ; Mon, 16 May 2005 06:30:09 +0000 (GMT) Received: from tiresias.dyndns.org (d60-65-99-219.col.wideopenwest.com [65.60.219.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10EAE43DD1 for ; Mon, 16 May 2005 06:30:09 +0000 (GMT) (envelope-from moy@tiresias.dyndns.org) Message-ID: <42883DC5.90600@tiresias.dyndns.org> Date: Mon, 16 May 2005 02:29:25 -0400 From: Moy Easwaran User-Agent: Mozilla Thunderbird 1.0.2-1.3.2 (X11/20050324) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mantas Smelevicius References: <42882FAE.6000904@tiresias.dyndns.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: Newbie: fonts &c. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 06:30:09 -0000 Thanks for the quick response. freetype is already being loaded. pkg_add -r webfonts gives me a file not found error, and when I look for it manually (in a browser) there doesn't appear to be a package. I added arkpandora fonts but that made no difference. Also, my concern is more than just web fonts: I want to clean up the icons and menus and stuff as well (see the vim screenshots, for instance). Thanks, Moy From owner-freebsd-questions@FreeBSD.ORG Mon May 16 07:05:47 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4C1416A4CE for ; Mon, 16 May 2005 07:05:47 +0000 (GMT) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCA2643DD0 for ; Mon, 16 May 2005 07:05:46 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) j4G76Ib23456; Mon, 16 May 2005 00:06:19 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Marcello Maggioni" Date: Mon, 16 May 2005 00:05:43 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 In-Reply-To: <63f529680505150230236e953d@mail.gmail.com> cc: freebsd-questions@freebsd.org Subject: RE: LBA and CHS parameters of my FBSD partition differ! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 07:05:47 -0000 Yes, read question 4.2.4 from the installation notes: http://www.freebsd.org/releases/5.4R/installation-i386.html Ted > -----Original Message----- > From: Marcello Maggioni [mailto:hayarms@gmail.com] > Sent: Sunday, May 15, 2005 2:30 AM > To: Ted Mittelstaedt > Cc: freebsd-questions@freebsd.org > Subject: Re: LBA and CHS parameters of my FBSD partition differ! > > > So are you saying that I should ignore the message during FBSD setup > and also ignore the message from PM too? > > Just another question, is this "fact" common or I'm just the only one > who get it ?:D > > Thanks again > > Marcello > > 2005/5/15, Ted Mittelstaedt : > > > > > Is this problem present silently with every OS (the > problem exists but > > > is not reported) > > > > yes. But, why is it a problem? It really isn't, you know. > > > > The only BIOS thing concerning hard disks that any modern operating > > system > > uses is the BIOS routines to load the kernel. Whether the > kernel is a > > FreeBSD > > kernel like FreeBSD, or a Windows kernel like NTKERNEL, once > the kernel > > and > > disk drivers have been fetched from the hard disk, via BIOS > code, they > > are > > loaded, and the operating system can now talk to the hard > disk directly. > > > > Granted, if you use some real-mode program to partition the > hard disk, > > like > > the Windows 98 fdisk program running under DOS, why then you > are going to > > be > > concerned with things like this. But, WinXP, Win2K, OS/2, > all UNIXES, > > they all require themselves to be booted and running. > > > > FreeBSD knows all about how to read partition tables that > Windows OSes > > have > > left on the hard drive, so in a dual-boot situation it > should keep clear > > of the > > Windows partition. Windows knows all about how to read > partition tables > > that > > itself writes, and God knows if it knows anything beyond that, so in > > general > > on dual-boot systems, if you follow the convention of loading Windows > > first > > followed by loading FreeBSD, then all the bits end up in the > right place. > > > > Partition Magic is, in my opinion, nothing more than a > crutch for lazy > > people > > who are too lazy to backup their Windows systems then > reformat their hard > > drives > > with Windows and create with Windows a smaller partition, > leaving free > > space > > for FreeBSD. But of course, saying that is going to get > people coming > > out of > > the woodwork to flame me. > > > > Ted > > > > > > > -----Original Message----- > > > From: Marcello Maggioni [mailto:hayarms@gmail.com] > > > Sent: Sunday, May 15, 2005 1:58 AM > > > To: Ted Mittelstaedt > > > Cc: freebsd-questions@freebsd.org > > > Subject: Re: LBA and CHS parameters of my FBSD partition differ! > > > > > > > > > Very bad... > > > > > > My motherboard (Abit KV7) has 8 different bios release and none of > > > these seems to solve this issue. My 30GB disk on the other IDE > > > channel seems to work fine with FreeBSD. > > > Is this problem present silently with every OS (the > problem exists but > > > is not reported) or only with FBSD? > > > > > > Thanks > > > > > > Marcello > > > > > > 2005/5/15, Ted Mittelstaedt : > > > > > > > > Well, your skirting the thin edge since you obviously have a > > > dual-boot > > > > system - but if a fsck of the FreeBSD partition, and a > > > chkdsk /f of the > > > > XP partition turn up nothing, your probably fine. > > > > > > > > What is going on is your motherboard BIOS is old, and > > > doesen't understand > > > > disk drives that report more than > > > > > > > > cylinders 16383 > > > > heads 16 > > > > sectors/track 63 > > > > > > > > and furthermore doesen't understand LBA mode all that > well either. > > > > Basically, > > > > the OS (either Windows or FreeBSD) does a BIOS call at boot > > > to figure out > > > > the > > > > size of the disk, and what they are both getting back > > > differs from what > > > > the > > > > drive reports when the disk driver queries it directly. > > > > > > > > If your motherboard is reasonably supported the manufacturer > > > may have a > > > > BIOS update that might fix this. Otherwise, if everything > > > is working, > > > > leave well enough alone. > > > > > > > > The failure that can result if your not lucky is that one OS > > > scribbles on > > > > the others space on the disk. > > > > > > > > For people that only run a single OS on the computer, these error > > > > messages > > > > can be ignored - unless, that is, after installation, the FreeBSD > > > > partition > > > > fails to boot. > > > > > > > > Ted > > > > > > > > > -----Original Message----- > > > > > From: owner-freebsd-questions@freebsd.org > > > > > [mailto:owner-freebsd-questions@freebsd.org]On Behalf > Of Marcello > > > > > Maggioni > > > > > Sent: Saturday, May 14, 2005 4:09 PM > > > > > To: freebsd-questions@freebsd.org > > > > > Subject: LBA and CHS parameters of my FBSD partition differ! > > > > > > > > > > > > > > > Hi all, > > > > > > > > > > I have FreeBSD 5.4 installed after a buildworld from 5.3 . > > > > > > > > > > The problem is that during the setup of the system a > > > warning message > > > > > appeared and notified me something about "Wrong disk > geometry" or > > > > > something like that. I ignored the message and > installed the system > > > > > which booted and worked fine . > > > > > > > > > > Today, from my WinXP disk I loaded Partition Magic 8 and > > > this warned > > > > > me that my FBSD partition has different LBA and CHS > parameters and > > > > > that this is wrong, because these two should be identical > > > and asked me > > > > > if I would like to correct this. I answered no, bue what > > > should I do? > > > > > Why there is this incongruency in these 2 parameters? > > > > > > > > > > Thanks > > > > > > > > > > Marcello > > > > > _______________________________________________ > > > > > freebsd-questions@freebsd.org mailing list > > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > > > To unsubscribe, send any mail to > > > > > "freebsd-questions-unsubscribe@freebsd.org" > > > > > > > > > > > > > > > > > > > > > From owner-freebsd-questions@FreeBSD.ORG Mon May 16 07:56:27 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42CFC16A4CE for ; Mon, 16 May 2005 07:56:27 +0000 (GMT) Received: from top.daemonsecurity.com (FW-182-254.go.retevision.es [62.174.254.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0389243D5D for ; Mon, 16 May 2005 07:56:14 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from [IPv6:::1] (localhost [127.0.0.1]) by top.daemonsecurity.com (Postfix) with ESMTP id 7810AFD06B for ; Mon, 16 May 2005 09:56:11 +0200 (CEST) Message-ID: <42885217.7050001@locolomo.org> Date: Mon, 16 May 2005 09:56:07 +0200 From: =?ISO-8859-1?Q?Erik_N=F8rgaard?= Organization: Locolomo.ORG User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050314 X-Accept-Language: en, en-us, en-gb, da, fr, de, it, es MIME-Version: 1.0 To: FreeBSD Questions Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Strange mouse problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 07:56:27 -0000 Hi, I have a laptop with FreeBSD -CURRENT/xorg 6.7.0. Everything works perfectly - almost everything: When I attach an external monitor the left mouse button stops working. This is both the case for the built in mouse pad and if I attach an external USB-mouse. I haven't tried to set up a left handed mouse but I don't see why this should change anything as the mouse functions fine without the external monitor. This is not a critical problem as I only use the external monitor for presentations, but I'd really like to have it solved for the next one. I would appreciate any hint on how to solve/debug this problem. Thanks, Erik -- Ph: +34.666334818 web: http://www.locolomo.org S/MIME Certificate: http://www.locolomo.org/crt/2004071206.crt Subject ID: A9:76:7A:ED:06:95:2B:8D:48:97:CE:F2:3F:42:C8:F2:22:DE:4C:B9 Fingerprint: 4A:E8:63:38:46:F6:9A:5D:B4:DC:29:41:3F:62:D3:0A:73:25:67:C2 From owner-freebsd-questions@FreeBSD.ORG Mon May 16 08:14:02 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEFA416A4CE for ; Mon, 16 May 2005 08:14:01 +0000 (GMT) Received: from mail.iinet.net.au (mail-02.iinet.net.au [203.59.3.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 5F0B443D76 for ; Mon, 16 May 2005 08:14:00 +0000 (GMT) (envelope-from shinjii@virusinfo.rdksupportinc.com) Received: (qmail 17947 invoked from network); 16 May 2005 08:13:59 -0000 Received: from unknown (HELO warren.shinji.nq.nu) (203.206.231.2) by mail.iinet.net.au with SMTP; 16 May 2005 08:13:58 -0000 From: Warren To: freebsd-questions@freebsd.org Date: Mon, 16 May 2005 18:12:39 +1000 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_4XFiCEEsuFMCf1n" Message-Id: <200505161812.40531.shinjii@virusinfo.rdksupportinc.com> Subject: make depend error in kernel config X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 08:14:02 -0000 --Boundary-00=_4XFiCEEsuFMCf1n Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Up untill 1 week ago i have been able to compile my kernel perfectly fine. However after running a CVSUP i am no longer able to compile my kernel and i have not changed anything it since i did it quite a few mnths ago. I do not have sound loaded in my kernel anywhere but rather in a different spot where it seems to be loading and working perfectly fine. Any assistance would be greatful. I am running FreeBSD 5.4-STABLE & my kernel file is attached. ".depend", line 1: Need an operator make: fatal errors encountered -- cannot continue *** Error code 1 Stop in /usr/src/sys/modules/sound/driver. *** Error code 1 Stop in /usr/src/sys/modules/sound. *** Error code 1 Stop in /usr/src/sys/modules. *** Error code 1 -- Yours Sincerely Shinjii http://www.shinji.nq.nu --Boundary-00=_4XFiCEEsuFMCf1n Content-Type: text/plain; charset="us-ascii"; name="WARREN" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="WARREN" # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.413.2.8 2004/10/24 17:42:08 scottl Exp $ machine i386 cpu I486_CPU cpu I586_CPU cpu I686_CPU ident WARREN # To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" # Default places to look for devices. options SCHED_4BSD # 4BSD scheduler options INET # InterNETworking options INET6 # IPv6 communications protocols 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 MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server options NFS_ROOT # NFS usable as /, requires NFSCLIENT options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework options GEOM_GPT # GUID Partition Tables. options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!] options COMPAT_FREEBSD4 # Compatible with FreeBSD4 options SCSI_DELAY=15000 # Delay (in ms) before probing SCSI options KTRACE # ktrace(1) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~128k to driver. options AHD_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~215k to driver. options ADAPTIVE_GIANT # Giant mutex is adaptive. device apic # I/O APIC # Bus support. Do not remove isa, even if you have no isa slots device isa device eisa device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives device ataraid # ATA RAID drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID # Static device numbering # SCSI peripherals device scbus # SCSI bus (required for SCSI) # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc # Enable this for the pcvt (VT220 compatible) console driver #device vt #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor device agp # support several AGP chipsets # Floating point support - do not disable. device npx # Power management support (see NOTES for more options) #device apm # Add suspend/resume support for the i8254. device pmtimer # PCCARD (PCMCIA) support # PCMCIA and cardbus bridge support device cbb # cardbus (yenta) bridge device pccard # PC Card (16-bit) bus device cardbus # CardBus (32-bit) bus # Serial (COM) ports device sio # 8250, 16[45]50 based serial ports # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # If you've got a "dumb" serial or parallel PCI card that is # supported by the puc(4) glue driver, uncomment the following # line to enable it (connects to the sio and/or ppc drivers): #device puc # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device em # Intel PRO/1000 adapter Gigabit Ethernet Card device ixgb # Intel PRO/10GbE Ethernet Card device txp # 3Com 3cR990 (``Typhoon'') device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device bfe # Broadcom BCM440x 10/100 Ethernet device bge # Broadcom BCM570xx Gigabit Ethernet device dc # DEC/Intel 21143 and various workalikes device fxp # Intel EtherExpress PRO/100B (82557, 82558) device lge # Level 1 LXT1001 gigabit ethernet device nge # NatSemi DP83820 gigabit ethernet device pcn # AMD Am79C97x PCI 10/100 (precedence over 'lnc') device re # RealTek 8139C+/8169/8169S/8110S device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet device ste # Sundance ST201 (D-Link DFE-550TX) device ti # Alteon Networks Tigon I/II gigabit Ethernet device tl # Texas Instruments ThunderLAN device tx # SMC EtherPower II (83c170 ``EPIC'') device vge # VIA VT612x gigabit ethernet device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. pccard NICs included. device cs # Crystal Semiconductor CS89x0 NIC # 'device ed' requires 'device miibus' device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards device ex # Intel EtherExpress Pro/10 and Pro/10+ device ep # Etherlink III based cards device fe # Fujitsu MB8696x based cards device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc. device lnc # NE2100, NE32-VL Lance Ethernet cards device sn # SMC's 9000 series of Ethernet chips device xe # Xircom pccard Ethernet # ISA devices that use the old ISA shims #device le # Wireless NIC cards device wlan # 802.11 support device an # Aironet 4500/4800 802.11 wireless NICs. device awi # BayStack 660 and others device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. #device wl # Older non 802.11 Wavelan wireless NIC. # Pseudo devices. device loop # Network loopback device mem # Memory and kernel memory devices device io # I/O device device random # Entropy device device ether # Ethernet support device sl # Kernel SLIP device ppp # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif # IPv6 and IPv4 tunneling device faith # IPv6-to-IPv4 relaying (translation) # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! device bpf # Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device urio # Diamond Rio 500 MP3 player device uscanner # Scanners # USB Ethernet, requires mii device aue # ADMtek USB Ethernet device axe # ASIX Electronics USB Ethernet device cue # CATC USB Ethernet device kue # Kawasaki LSI USB Ethernet device rue # RealTek RTL8150 USB Ethernet # FireWire support device firewire # FireWire bus code device sbp # SCSI over FireWire (Requires scbus and da) device fwe # Ethernet over FireWire (non-standard!) --Boundary-00=_4XFiCEEsuFMCf1n-- From owner-freebsd-questions@FreeBSD.ORG Mon May 16 08:37:54 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A040C16A4CE for ; Mon, 16 May 2005 08:37:54 +0000 (GMT) Received: from zero.ramb.com.ua (zero.ramb.com.ua [62.149.0.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7482043D8B for ; Mon, 16 May 2005 08:37:47 +0000 (GMT) (envelope-from fenix@ramb.com.ua) Received: from sirius (ip.82.144.202.143.stat-9.volia.net [82.144.202.143]) by zero.ramb.com.ua (8.13.3/8.13.3) with ESMTP id j4GBgMjJ052575; Mon, 16 May 2005 11:42:28 GMT (envelope-from fenix@ramb.com.ua) From: "Sergey S. Ropchan" To: freebsd-questions@freebsd.org, Mathieu CHATEAU In-Reply-To: <13310178909.20050515162659@free.fr> References: <13310178909.20050515162659@free.fr> Content-Type: text/plain Date: Mon, 16 May 2005 11:37:33 +0300 Message-Id: <1116232653.88677.10.camel@sirius> Mime-Version: 1.0 X-Mailer: Evolution 2.2.1.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.80/875/Tue May 10 11:27:59 2005 clamav-milter version 0.80j on zero.ramb.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=0.0 required=6.3 tests=none autolearn=failed version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on zero.ramb.com.ua Subject: Re: FBSD 5.4 & netstat -an X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 08:37:54 -0000 Hello > Hello freebsd-questions, > > i have 2 freebsd 5.4 running . > > On one of them, if if do the classic "netstat -an" i do NOT see tcp > connection while i can see them on the other.. This may happend when you rebuild your source tree without make installworld ... try to recompile and install "world" with kernel. As addition you cat try: sockstat -4cl > > There are tcp connection on the box, at least me trough ssh (tcpdump > show it). > > Any clue ? > > thank you > From owner-freebsd-questions@FreeBSD.ORG Mon May 16 09:58:47 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7E9816A4CE for ; Mon, 16 May 2005 09:58:47 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DD3A43DB7 for ; Mon, 16 May 2005 09:58:47 +0000 (GMT) (envelope-from luca.micali@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1486722wri for ; Mon, 16 May 2005 02:58:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=OFq+4BMecD0J38R+TKHJ71JJVE0tNIlFdqK+b7PB5jMBzwNuORZv7G0DWypQDv5Xl7c1C0QgNpMWc+EmPHy4kPIV2Eo1sG2Th3Hw/uJ6fON8ZUz7t/jL3OD5eMR9psQXeNj2nylesXFUXB5mLQtBrR2lhBDPR7N/GdC7czohoA8= Received: by 10.54.56.40 with SMTP id e40mr3493083wra; Mon, 16 May 2005 02:58:43 -0700 (PDT) Received: by 10.54.61.20 with HTTP; Mon, 16 May 2005 02:58:42 -0700 (PDT) Message-ID: <58a92a8f05051602581bfd4641@mail.gmail.com> Date: Mon, 16 May 2005 09:58:42 +0000 From: Luca Micali To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: atheros card and radiotap headers X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Luca Micali List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 09:58:48 -0000 Hi all, I have really big problems with radiotap-enabled captures, specially with atheros card/driver. Let's proceed. My test system is a fujitsu p7010, and FreeBSD 5.4-RELEASE [root@dagger.sunspot.org] # uname -a FreeBSD dagger.sunspot.org 5.4-RELEASE FreeBSD 5.4-RELEASE #1: Fri May 13 20:56:25 CEST 2005 =20 root@dagger.sunspot.org:/usr/src/sys/i386/compile/DAGGER i386 and my test card is a NetGear WG511T, here follows a snippet from dmesg and related sysctl variables: [root@dagger.sunspot.org] # dmesg | grep ^ath0 ath0: mem 0xd0210000-0xd021ffff irq 11 at device 0.0 on card= bus0 ath0: mac 5.6 phy 4.1 5ghz radio 4.6 ath0: Ethernet address: 00:09:5b:92:ec:80 ath0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps ath0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps [root@dagger.sunspot.org] # sysctl -a | grep -E '(^hw|^dev).ath' hw.ath.hal.swba_backoff: 0 hw.ath.hal.sw_brt: 10 hw.ath.hal.dma_brt: 2 hw.ath.hal.version: 0.9.6.3 hw.ath.dump: hw.ath.debug: 0 hw.ath.regdomain: 0 hw.ath.countrycode: 0 hw.ath.outdoor: 1 hw.ath.calibrate: 30 hw.ath.dwell: 200 dev.ath.0.%desc: Atheros 5212 dev.ath.0.%driver: ath dev.ath.0.%location: slot=3D0 function=3D0 dev.ath.0.%pnpinfo: vendor=3D0x168c device=3D0x0013 subvendor=3D0x1385 subdevice=3D0x4b00 class=3D0x020000 dev.ath.0.%parent: cardbus0 The WG511T works good in BSS and IBSS modes with pretty decent FTP peaks of 2.80 MB/s, but when it goes in monitor mode it receives a lot of noise and pcap enabled applications show up a lot of "malformed packets": [root@dagger.sunspot.org] # tethereal -i ath0 -y IEEE802_11_RADIO Warning: Couldn't obtain netmask info (ath0: no IPv4 address assigned). Capturing on ath0 0.000000 -> IEEE 802.11 Unrecognized (Reserved frame) 0.070546 XXX.XX.5.57 -> XXX.XX.255.255 BROWSER Host Announcement XXXXXX280016, Workstation, Server, NT Workstation, Potential Browser 0.131467 XXX.XX.4.105 -> 255.255.255.255 UDP Source port: 2301=20 Destination port: 2301 0.141319 3comEuro_d5:b9:b8 -> Broadcast IEEE 802.11 Beacon frame, SSID: "............"[Malformed Packet] 0.192535 XXX.XX.1.55 -> XXX.XX.255.255 NBNS Name query NB PRINTERS<00> 0.221540 XXX.XX.1.30 -> Broadcast ARP Who has XXX.XX.7.55? Tell XXX.XX.1.30 adns warning: sendto failed: Network is unreachable (NS=3DXXX.XXX.2.12) 0.237164 XXX.XX.1.30 -> Broadcast ARP Who has XXX.XX.4.234?=20 Tell XXX.XX.1.30 0.243721 3comEuro_d5:b9:b8 -> Broadcast IEEE 802.11 Beacon frame, SSID: "............"[Malformed Packet] 0.292573 XXX.XX.4.212 -> Broadcast ARP Who has XXX.XX.1.10? Tell XXX.XX.4.212 adns warning: sendto failed: Network is unreachable (NS=3DXXX.XXX.2.12) 0.325725 XXX.XX.1.11 -> Broadcast ARP Who has XXX.XX.7.37? Tell XXX.XX.1.11 adns warning: sendto failed: Network is unreachable (NS=3DXXX.XXX.2.12) 0.346129 3comEuro_d5:b9:b8 -> Broadcast IEEE 802.11 Beacon frame, SSID: "............"[Malformed Packet] 0.350925 HewlettP_7c:ab:31 -> HP LLC U P, func=3DTEST; SNAP, OUI 0x00805F (Unknown), PID 0x0002 0.351848 XXX.XX.255.115 -> Broadcast ARP XXX.XX.255.115 is at 00:0b:46:01:34:80 adns warning: sendto failed: Network is unreachable (NS=3DXXX.XXX.2.12) 0.382862 00000002.0030c12f2eff -> 00000002.ffffffffffff IPX SAP General Response 0.384205 00000002.0030c12f2eff -> 00000002.ffffffffffff IPX SAP General Response 0.386566 XXX.XX.6.125 -> XXX.XX.255.255 BROWSER Host Announcement XXXXXXFI008, Workstation, Server, SQL Server, NT Workstation, Potential Browser 0.448530 3comEuro_d5:b9:b8 -> Broadcast IEEE 802.11 Beacon frame, SSID: "............"[Malformed Packet] 0.473888 XXX.XX.1.10 -> Broadcast ARP Who has XXX.XX.7.98? Tell XXX.XX.1.10 adns warning: sendto failed: Network is unreachable (NS=3DXXX.XXX.2.12) 0.653333 3comEuro_d5:b9:b8 -> Broadcast IEEE 802.11 Beacon frame, SSID: "............"[Malformed Packet] I see that here there is just one really noisy packet (the first one), if they could be helpful I could capture a lot more of them this evening. There's another interesting thing is that launching kismet with radiotab_fbsd_b and setting debug.ieee80211 to 1, machine says: [...] ieee80211_newstate: SCAN -> SCAN ieee80211_newstate: SCAN -> INIT ieee80211_newstate: INIT -> RUN ieee80211_newstate: invalid transition ieee80211_newstate: RUN -> INIT ieee80211_newstate: INIT -> RUN ieee80211_newstate: invalid transition ieee80211_newstate: RUN -> INIT ieee80211_newstate: INIT -> RUN ieee80211_newstate: invalid transition ieee80211_newstate: RUN -> INIT ieee80211_newstate: INIT -> RUN ieee80211_newstate: invalid transition ieee80211_newstate: RUN -> INIT ieee80211_newstate: INIT -> RUN ieee80211_newstate: invalid transition ieee80211_newstate: RUN -> INIT ieee80211_newstate: INIT -> RUN ieee80211_newstate: invalid transition [...] until i shutdown kismet, but maybe this is a kismet bug in channel hopping. enabling hw.ath.debug it says: ath_stop: invalid 0 if_flags 0x48842 ath_newstate: SCAN -> INIT Is this a known bug? How can i fix this? Thanks in advance and sorry for my poor english, Luca Micali ####### KERNEL CONFIG, what you don't see here is loaded as kld machine i386 cpu I686_CPU ident DAGGER options SCHED_4BSD options INET options INET6 options FFS options SOFTUPDATES options UFS_ACL options UFS_DIRHASH options NFSCLIENT options NFSSERVER options LIBICONV options EICON_DIVA options MSDOSFS options MSDOSFS_LARGE options MSDOSFS_ICONV options NTFS options NTFS_ICONV options CD9660 options CD9660_ICONV options UDF options UDF_ICONV options PROCFS options PSEUDOFS options COMPAT_43 options SYSVSHM options SYSVMSG options SYSVSEM options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV device apic device isa device eisa device pci device ata device atadisk device atapicam options ATA_STATIC_ID device uhci device ehci device usb device scbus device da device cd device pass device atkbdc device atkbd device psm device vga device sc device splash options SC_PIXEL_MODE device agp device npx device apm device acpi device pty device loop device mem device io device random device ether device ppp device tun device bpf device md From owner-freebsd-questions@FreeBSD.ORG Mon May 16 10:19:30 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D955616A4CE for ; Mon, 16 May 2005 10:19:30 +0000 (GMT) Received: from parrot.aev.net (host29-15.pool8174.interbusiness.it [81.74.15.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2C7543D91 for ; Mon, 16 May 2005 10:19:28 +0000 (GMT) (envelope-from ml.diespammer@netfence.it) Received: from soth.ventu (adsl-245-23.37-151.net24.it [151.37.23.245]) (authenticated bits=128) by parrot.aev.net (8.13.4/8.13.4) with ESMTP id j4GANLgn047622 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 16 May 2005 12:23:28 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Received: from [10.1.2.18] (alamar.ventu [10.1.2.18]) (authenticated bits=0) by soth.ventu (8.13.3/8.13.3) with ESMTP id j4GAIP2m074603 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 16 May 2005 12:18:25 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Message-ID: <428873A1.1060209@netfence.it> Date: Mon, 16 May 2005 12:19:13 +0200 From: Andrea Venturoli User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050502) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mike Tancsa , freebsd-questions@freebsd.org References: <4286313A.3080102@netfence.it> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.51 on 192.168.2.2 X-Scanned-By: MIMEDefang 2.51 on 10.1.2.13 Subject: Re: NFS read-ahead? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 10:19:31 -0000 Mike Tancsa wrote: > On Sat, 14 May 2005 19:11:22 +0200, in sentex.lists.freebsd.questions > you wrote: > > >>If yes, is there a way to set it up to perform some read-ahead? > > > Hi, > Take a look at the -a and -r options on mount_nfs Thanks. Sometimes things are in the most obvious place, yet you miss them :) Now, the manual pages says for -a I should give values greater than 1 if bandwidth*delay is high. I'm on a swithed FastEthernet, so bandwidth=100Mb/s and delay is around 0.2 ms of ping roundtrip time. As for -r it says it should be used when there are many "fragments dropped due to timeout"; yet I see almost none. Do you have any suggested values to start with, before I make random experiments? bye & Thanks av. From owner-freebsd-questions@FreeBSD.ORG Mon May 16 10:32:08 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9A8516A4CE for ; Mon, 16 May 2005 10:32:08 +0000 (GMT) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A1E43D96 for ; Mon, 16 May 2005 10:32:08 +0000 (GMT) (envelope-from fteg@london.com) Received: from unknown (unknown [192.168.9.180])6586B18001D6 for ; Mon, 16 May 2005 10:32:08 +0000 (GMT) X-OB-Received: from unknown (205.158.62.81) by wfilter.us4.outblaze.com; 16 May 2005 10:32:08 -0000 Received: by ws1-2.us4.outblaze.com (Postfix, from userid 1001) id 5C3871F50B1; Mon, 16 May 2005 10:32:08 +0000 (GMT) Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 2.117 (F2.6; A1.17; B2.12; Q2.03) Received: from [213.187.181.70] by ws1-2.us4.outblaze.com with http for fteg@london.com; Mon, 16 May 2005 05:32:08 -0500 X-Mailer: mail.com webmail From: "Fafa Hafiz Krantz" To: questions@freebsd.org Date: Mon, 16 May 2005 05:32:08 -0500 X-Originating-Ip: 213.187.181.70 X-Originating-Server: ws1-2.us4.outblaze.com Message-Id: <20050516103208.5C3871F50B1@ws1-2.us4.outblaze.com> Subject: Creative Sound Blaster Audigy LS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 10:32:08 -0000 Hello. I've compiled "device sound" into my kernel, yet my Creative Sound Blaster Audigy LS isn't detected at boot-up. I take it that I do not need loader.conf settings if I already have sound compiled into my kernel? I am aware of that patch. But it's already in FreeBSD isn't it? Thanks! -- Fafa Hafiz Krantz Research Designer @ http://www.home.no/barbershop Enlightened @ http://www.home.no/barbershop/smart/sharon.pdf --=20 ___________________________________________________________ Sign-up for Ads Free at Mail.com http://promo.mail.com/adsfreejump.htm From owner-freebsd-questions@FreeBSD.ORG Mon May 16 10:59:03 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16DC916A4CE for ; Mon, 16 May 2005 10:59:03 +0000 (GMT) Received: from rosebud.otenet.gr (rosebud.otenet.gr [195.170.0.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3024A43DA7 for ; Mon, 16 May 2005 10:59:02 +0000 (GMT) (envelope-from keramida@FreeBSD.org) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])j4GAvJv5007685; Mon, 16 May 2005 13:57:20 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) j4GAwuR3001288; Mon, 16 May 2005 13:58:56 +0300 (EEST) (envelope-from keramida@FreeBSD.org) Received: (from keramida@localhost)j4GAwt9E001287; Mon, 16 May 2005 13:58:55 +0300 (EEST) (envelope-from keramida@FreeBSD.org) Date: Mon, 16 May 2005 13:58:55 +0300 From: Giorgos Keramidas To: Steve Message-ID: <20050516105855.GA1223@orion.daedalusnetworks.priv> References: <6.2.1.2.0.20050516005230.0203f110@mail.digitalbluesky.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6.2.1.2.0.20050516005230.0203f110@mail.digitalbluesky.net> cc: freebsd-questions@FreeBSD.org Subject: Re: how to format an external usb drive with a freebsd partititon under freebsd 5.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 10:59:03 -0000 On 2005-05-16 00:55, Steve wrote: > I've done a google search, read the freebsd handbook and searched the > mailing list archives...maybe I'm not using the right search terms but > I'm not finding the information I need...or I'm misunderstanding > something on a fundamental level. > > I have a 120 gig western digital usb drive with a FAT32 file system > connected to a freebsd 5.3 box that I can mount and read/write to okay > . But (and I think this is correct) when I backup files from my > freebsd 5.3 box to this drive, the file permissions aren't being > maintained. That is because it's a FAT32 files system correct? I've > always in the past backed up linux/freebsd files to other > linux/freebsd boxes so this is the first time I'm dealing with this. > > What is the correct way to format this FAT32 usb drive so I can put > freebsd files on it and maintain the proper owner and file > permissions. I've tried to do this with sysinstall based on the > instructions in the freebsd handbook but I get an error that freebsd > can't write the partition. > > The usb drive is currently mounted, is that the problem? YES, that is a serious problem. You cannot run "newfs" on a mounted partition in FreeBSD. It would mess up the internal state the kernel keeps around for mounted devices (disk & device information, pending I/O buffers, etc). The correct way to switch a disk/partition to UFS is: 1. Mount any partitions the disk has now. 2. Backup the data of the disk somewhere. 3. Unmount ALL the partitions of the disk. 4. Create a BIOS partition (these are called "slices" by FreeBSD) on the disk that covers the area you want to format. 5. Label the slice, creating a BSD partition in it. 6. Run newfs on the new BSD partition. 7. Mount the partition. 8. Restore the data you backed up in step 2. The command line tools that you can use to create & format new BSD partitions are described in the article ``Formatting Media For Use With FreeBSD'', which is available as part of the FreeBSD documentation set: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/formatting-media/ If you read that article and find that it lacks some details or that it confuses you in any way, then it's a bug of the documentation. In that case, feel free to mail me in person or to contact the FreeBSD documentation team (by mailing the freebsd-doc@freebsd.org list). - Giorgos From owner-freebsd-questions@FreeBSD.ORG Mon May 16 11:04:17 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8566216A4CE for ; Mon, 16 May 2005 11:04:17 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBAE343DA7 for ; Mon, 16 May 2005 11:04:16 +0000 (GMT) (envelope-from luca.micali@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1498601wri for ; Mon, 16 May 2005 04:04:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=F2vB6TT/FTBr1PtssMyx32xOz0UDF2+drXZvC/ma1vK9Fm2LaKymokpm79kyxJOOn9CH/1nZgUMjquLL8sZboNDaj7y5RJxN5zEH9YPuOawj6MTSDKCOwGz+7yuvVEBY+xhuKwHA8u0zrYx5xpwMOaLFHsxGa2YwKjjX19ruCGQ= Received: by 10.54.160.8 with SMTP id i8mr3530977wre; Mon, 16 May 2005 04:04:16 -0700 (PDT) Received: by 10.54.61.20 with HTTP; Mon, 16 May 2005 04:04:16 -0700 (PDT) Message-ID: <58a92a8f0505160404332d0673@mail.gmail.com> Date: Mon, 16 May 2005 11:04:16 +0000 From: Luca Micali To: Fafa Hafiz Krantz In-Reply-To: <20050516103208.5C3871F50B1@ws1-2.us4.outblaze.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20050516103208.5C3871F50B1@ws1-2.us4.outblaze.com> cc: questions@freebsd.org Subject: Re: Creative Sound Blaster Audigy LS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Luca Micali List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 11:04:17 -0000 On 5/16/05, Fafa Hafiz Krantz wrote: >=20 > Hello. >=20 > I've compiled "device sound" into my kernel, yet my Creative > Sound Blaster Audigy LS isn't detected at boot-up. >=20 > I take it that I do not need loader.conf settings if I already > have sound compiled into my kernel? in 5.4... lmicali@to1fsce002$ man -k emu10k snd_emu10k1(4) - SoundBlaster Live! and Audigy PCI bridge device driver lmicali@to1fsce002$ man snd_emu10k1 SND_EMU10K1(4) FreeBSD Kernel Interfaces Manual SND_EMU10K1= (4) NAME snd_emu10k1 -- SoundBlaster Live! and Audigy PCI bridge device driver SYNOPSIS device sound device "snd_emu10k1" DESCRIPTION The snd_emu10k1 bridge driver allows the generic audio driver sound(4)= to attach to the SoundBlaster Live! and Audigy audio cards. Digital output is supported by default. HARDWARE The snd_emu10k1 driver supports the following soundcards: o Creative SoundBlaster Live! (EMU10K1 Chipset) o Creative SoundBlaster Audigy (EMU10K2 Chipset) SEE ALSO sound(4) HISTORY The snd_emu10k1 manual page first appeared in FreeBSD 5.3. AUTHORS David O'Brien Orlando Bassotto Cameron Grant BUGS Fancy features like DD5.1 output are not supported. FreeBSD 5.4 August 27, 2004 FreeBSD = 5.4 eventually, in loader.conf add the line: snd_emu10k1_load=3D"YES" hope it's helpful, Luca Micali From owner-freebsd-questions@FreeBSD.ORG Mon May 16 11:27:31 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 672FB16A4CE for ; Mon, 16 May 2005 11:27:31 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDE9943DC6 for ; Mon, 16 May 2005 11:27:30 +0000 (GMT) (envelope-from giuseppe.magnotta@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1502840wri for ; Mon, 16 May 2005 04:27:30 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=uc+tIrycHjgEPj9z1kWR3oyjcM711dbWU1364fp2IC9n96isCaAfV7jDGVdXZPuo0D4+58dr5xCEwXgVlCA8Nk5qqUyYgiq4py+xNq4dkRj66fInExLbxNhqutevKFFsJPHoCisRgN1Jbu6aGijSn3JrQZrF0wfbonq7litDGq4= Received: by 10.54.21.18 with SMTP id 18mr3560492wru; Mon, 16 May 2005 04:27:30 -0700 (PDT) Received: by 10.54.14.50 with HTTP; Mon, 16 May 2005 04:27:27 -0700 (PDT) Message-ID: Date: Mon, 16 May 2005 13:27:27 +0200 From: "Dott. Surricani" To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: info about make.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Dott. Surricani" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 11:27:31 -0000 Hello everybody. I would like to know what means NOLIBC_R NOLIBPTHREAD NOLIBTHR in make.conf and how/when are usesed/useful. Thanks. giuseppe.magnotta at gmail.com From owner-freebsd-questions@FreeBSD.ORG Mon May 16 11:41:06 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F262016A4CE for ; Mon, 16 May 2005 11:41:06 +0000 (GMT) Received: from enterprise.thenetnow.com (enterprise.thenetnow.com [65.39.193.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A56743D6D for ; Mon, 16 May 2005 11:41:06 +0000 (GMT) (envelope-from gpeel@thenetnow.com) Received: from GRANT (hpeel.ody.ca [216.240.12.2])j4GBf0f78173 for ; Mon, 16 May 2005 07:41:00 -0400 (EDT) (envelope-from gpeel@thenetnow.com) Message-ID: <008901c55a0c$1c9d1090$6601a8c0@GRANT> From: "Grant Peel" To: Date: Mon, 16 May 2005 07:40:48 -0400 Organization: The Net Now MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Subject: Initio A100U2W X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 11:41:07 -0000 Hi all, How does one install a new driver (that does not come with FreeBSD) when the system wont install (does not see the Initio SCSI controller) ? I have the source code and can do the changes to the Kernel etc after, but the chicken and the egg thing has got me.... -Grant From owner-freebsd-questions@FreeBSD.ORG Mon May 16 11:52:52 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CABAE16A4CE for ; Mon, 16 May 2005 11:52:52 +0000 (GMT) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA1E443DAD for ; Mon, 16 May 2005 11:52:51 +0000 (GMT) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1DXe8Q-0001bu-0h for freebsd-questions@freebsd.org; Mon, 16 May 2005 13:51:46 +0200 Received: from dsl-62-3-100-125.zen.co.uk ([62.3.100.125]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 May 2005 13:51:46 +0200 Received: from darenr by dsl-62-3-100-125.zen.co.uk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 May 2005 13:51:46 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Daren Russell Date: Mon, 16 May 2005 12:51:50 +0100 Lines: 24 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: dsl-62-3-100-125.zen.co.uk User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en Sender: news Subject: IPSec and Racoon between 5.4 and 4.11 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 11:52:52 -0000 Hi, We have a VPN between two FBSD machines using IPSEC and Racoon. I managed to put this together a couple of years back with (getting) old hardware, although I am certainly no expert. One of the machines is about to be replaced as it is occasionally conking out, and I though I would try the 5.4 release on the new hardware (both existing machines are running 4.9) I have setup internally the layout and effectively replicated the configs of both machines (except for the one being 5.4, and a second running 4.11 instead of 4.9), but I cannot get them talking. The configs for Racoon/IPSec/psk have been transferred over with zero changes. The 5.4 machine is using standard IPSEC (not FAST_IPSEC), and a standard tunnel works fine. It's as soon as IPSec/Racoon is brought in that it falls over. Has anybody got 5.4 <-> 4.11 talking in this config, or does anybody know of any pitfalls because of kernel changes? The only other thing is the 5.4 machine is running amd64. Thanks for any help / pointers. Daren From owner-freebsd-questions@FreeBSD.ORG Mon May 16 11:57:11 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C27E16A4CE for ; Mon, 16 May 2005 11:57:11 +0000 (GMT) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3F1D43DC3 for ; Mon, 16 May 2005 11:57:10 +0000 (GMT) (envelope-from mike@sentex.net) Received: from BLUELAPIS.sentex.ca (cage.simianscience.com [64.7.134.1]) by smarthost2.sentex.ca (8.13.3/8.13.3) with SMTP id j4GBv9w6079293; Mon, 16 May 2005 07:57:09 -0400 (EDT) (envelope-from mike@sentex.net) From: Mike Tancsa To: Andrea Venturoli Date: Mon, 16 May 2005 07:57:14 -0400 Message-ID: <9f2h819gnc2938un66cpouvnrbti39adsv@4ax.com> References: <4286313A.3080102@netfence.it> <428873A1.1060209@netfence.it> In-Reply-To: <428873A1.1060209@netfence.it> X-Mailer: Forte Agent 1.93/32.576 English (American) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on smarthost2.sentex.ca X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: Re: NFS read-ahead? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 11:57:11 -0000 On Mon, 16 May 2005 12:19:13 +0200, in sentex.lists.freebsd.questions you wrote: >Now, the manual pages says for -a I should give values greater than 1 if= =20 >bandwidth*delay is high. I'm on a swithed FastEthernet, so=20 >bandwidth=3D100Mb/s and delay is around 0.2 ms of ping roundtrip time. >As for -r it says it should be used when there are many "fragments=20 >dropped due to timeout"; yet I see almost none. > >Do you have any suggested values to start with, before I make random=20 >experiments? Hi, Offhand, not really, but if you look around via google for mount_nfs freebsd "-r" a lot of people suggest r=3D32768,-w=3D32768. Perhaps use that as a starting point and experiment to see what gives you the best performance for your situation. ---Mike -------------------------------------------------------- Mike Tancsa, Sentex communications http://www.sentex.net Providing Internet Access since 1994 mike@sentex.net, (http://www.tancsa.com) From owner-freebsd-questions@FreeBSD.ORG Mon May 16 11:58:30 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E78216A4CE for ; Mon, 16 May 2005 11:58:30 +0000 (GMT) Received: from asia.telenet-ops.be (asia.telenet-ops.be [195.130.132.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4F5343DBC for ; Mon, 16 May 2005 11:58:29 +0000 (GMT) (envelope-from pieter.baele@telenet.be) Received: from localhost (localhost.localdomain [127.0.0.1]) by asia.telenet-ops.be (Postfix) with SMTP id 53B692244F2 for ; Mon, 16 May 2005 13:58:28 +0200 (MEST) Received: from oetsel.org (dD576B185.access.telenet.be [213.118.177.133]) by asia.telenet-ops.be (Postfix) with ESMTP id 39AEE224425 for ; Mon, 16 May 2005 13:58:28 +0200 (MEST) From: Pieter Baele To: freebsd-questions@freebsd.org Content-Type: text/plain Date: Mon, 16 May 2005 13:58:57 +0200 Message-Id: <1116244737.16984.10.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.2.1.1 Content-Transfer-Encoding: 7bit Subject: Problem installing FreeBSD 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 11:58:30 -0000 I want to install freebsd maybe as a replacement for (gentoo) linux (on the long term), but I am experiencing some problems. The booting process (kernel) of the installation media just halts. I've tried with acpi off but this didn't help. I thin it has something to do with ata/ide Verbose output gives me errors like these (probe0:ata0:0:0:0): error 22 (probe0:ata0:0:0:0): Unretryable Error (probe1:ata0:0:1:0): error 22 (probe1:ata0:0:1:0): Unretryable Error (probe0:ata0:0:0:0): error 22 (probe0:ata0:0:0:0): Unretryable Error (probe1:ata0:0:1:0): error 22 (probe1:ata0:0:1:0): Unretryable Error (probe3:ata1:0:1:0): error 22 (probe3:ata1:0:1:0): Unretryable Error (probe3:ata1:0:1:0): error 22 (probe3:ata1:0:1:0): Unretryable Error (probe2:ata1:0:0:0): error 22 (probe2:ata1:0:0:0): Unretryable Error (probe2:ata1:0:0:0): error 6 (probe2:ata1:0:0:0): Unretryable Error (probe2:ata1:0:0:0): error 22 (probe2:ata1:0:0:0): Unretryable Error (source: http://lists.freebsd.org/pipermail/freebsd-current/2004-September/038318.html) My hardware: amd athlon 2500+ asus a7n8x (latest bios) 120GB IBM IDE - ATA harddisk dvd-writer plextor + cdrom drive geforce4 ti GPU ... I just want to run bsd ;) memtest gives me some errors so I think there is a ram module with some faults... (but I don't think this has something to do with it???) From owner-freebsd-questions@FreeBSD.ORG Mon May 16 12:07:03 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31BA816A4CE for ; Mon, 16 May 2005 12:07:03 +0000 (GMT) Received: from pne-smtpout1-sn1.fre.skanova.net (pne-smtpout1-sn1.fre.skanova.net [81.228.11.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49FA143D1D for ; Mon, 16 May 2005 12:07:02 +0000 (GMT) (envelope-from freebsd@stortsett.se) Received: from kalle.stortsett.local (81.230.166.174) by pne-smtpout1-sn1.fre.skanova.net (7.1.026.7) id 42885ED50001D98F for freebsd-questions@freebsd.org; Mon, 16 May 2005 14:06:59 +0200 Received: from kalle.stortsett.local (localhost [127.0.0.1]) by kalle.stortsett.local (Postfix) with ESMTP id 3FB5860D7 for ; Mon, 16 May 2005 14:06:59 +0200 (CEST) Received: from www.susie.mine.nu (localhost [127.0.0.1]) by kalle.stortsett.local (Postfix) with ESMTP id EBC4660D3 for ; Mon, 16 May 2005 14:06:58 +0200 (CEST) Received: from 131.116.254.199 (proxying for unknown) (SquirrelMail authenticated user per) by www.susie.mine.nu with HTTP; Mon, 16 May 2005 14:06:58 +0200 (CEST) Message-ID: <31232.131.116.254.199.1116245218.squirrel@www.susie.mine.nu> Date: Mon, 16 May 2005 14:06:58 +0200 (CEST) From: "Per Berger" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 (Normal) Importance: Normal Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV using ClamSMTP Subject: Remove /usr/X11R6 after deinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 12:07:03 -0000 Hi! Since I have deinstalled all X-related stuff incl. xorg from my machine (don't need it anymore), can I remove the /usr/X11R6 dir structure? It's empty, I've checked, only dirs, no files... Or, to put it another way, is the dir structure there default, i.e. if you do not install X when you install the OS? And are there any config files that needs to be changed? Of course I've removed all I have edited by hand but is there anything I need to change that by default searches and needs this path for instance? X was installe= d from ports, not from sysinstall... and it's 5.4 upgraded from 5.3... --=20 Per Berger /"\ ASCII Ribbon Campaign \ / No HTML/RTF in e-mail http://www.stortsett.se/ X No Word docs in e-mail http://hav.just.nu/ / \ Respect for open standards From owner-freebsd-questions@FreeBSD.ORG Mon May 16 12:22:01 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E24116A4CE for ; Mon, 16 May 2005 12:22:01 +0000 (GMT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9994743D81 for ; Mon, 16 May 2005 12:22:00 +0000 (GMT) (envelope-from fbsd_user@a1poweruser.com) Received: from barbish ([69.172.31.81]) by mta10.adelphia.net (InterMail vM.6.01.04.01 201-2131-118-101-20041129) with SMTP id <20050516122200.MZAO17140.mta10.adelphia.net@barbish> for ; Mon, 16 May 2005 08:22:00 -0400 From: "fbsd_user" To: "freebsd-questions@FreeBSD. ORG" Date: Mon, 16 May 2005 08:21:55 -0400 Message-ID: MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: How to use snapshots X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: fbsd_user@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 12:22:01 -0000 ftp://current.freebsd.org/pub/FreeBSD/snapshots/ looks like install disc1 content. How or what do I need to run to use this to update my system? Been to the official handbook with no luck. From owner-freebsd-questions@FreeBSD.ORG Mon May 16 12:30:24 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A934A16A4CE for ; Mon, 16 May 2005 12:30:24 +0000 (GMT) Received: from sccrmhc14.comcast.net (sccrmhc14.comcast.net [204.127.202.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AF2843D1F for ; Mon, 16 May 2005 12:30:24 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [192.168.214.215] (c-24-1-232-64.hsd1.tx.comcast.net[24.1.232.64]) by comcast.net (sccrmhc14) with ESMTP id <200505161230220140033ftre>; Mon, 16 May 2005 12:30:22 +0000 Message-ID: <4288925D.30509@computer.org> Date: Mon, 16 May 2005 07:30:21 -0500 From: Eric Schuele User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050325) X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Pettitt References: <20050515040002.GA29505@kosmos.my.net> <42880176.5040009@computer.org> <42881700.6010502@cloudview.com> In-Reply-To: <42881700.6010502@cloudview.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: Allan Bowhill cc: FreeBSD Questions Subject: Re: silencing the boot beep X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 12:30:24 -0000 John Pettitt wrote: > > Eric Schuele wrote: > > >>Allan Bowhill wrote: >> >> >>>Does anyone know how to turn off the annoying beep when BSD partition >>>selector comes up? >> >> >>Wish I knew... I could use this as well. >> >> > > If I recall correctly the beep comes from the PC BIOS and indicates the > POST passed. My suggestion - unplug the speaker. The beep in question is definitely NOT from the BIOS. My machine was completely silent during boot until installing the boot loader. Unplugging the speaker would remove my ability to discern particular errors during the POST. > > John > -- Regards, Eric From owner-freebsd-questions@FreeBSD.ORG Mon May 16 13:08:09 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B17E616A4CE for ; Mon, 16 May 2005 13:08:09 +0000 (GMT) Received: from royk.itea.ntnu.no (royk.itea.ntnu.no [129.241.190.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0294F43DA8 for ; Mon, 16 May 2005 13:08:07 +0000 (GMT) (envelope-from svein-freebsd-questions@theloosingend.net) Received: from localhost (localhost [127.0.0.1]) by royk.itea.ntnu.no (Postfix) with ESMTP id DEDAE66CC5 for ; Mon, 16 May 2005 15:08:02 +0200 (CEST) Received: from maren.thelosingend.net (maren.math.ntnu.no [129.241.211.48]) by royk.itea.ntnu.no (Postfix) with SMTP for ; Mon, 16 May 2005 15:08:02 +0200 (CEST) Received: (qmail 42830 invoked by uid 1001); 16 May 2005 13:08:02 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 16 May 2005 13:08:02 -0000 Date: Mon, 16 May 2005 15:08:02 +0200 (CEST) From: Svein Halvor Halvorsen X-X-Sender: sveinhal@maren.thelosingend.net To: Per Berger In-Reply-To: <31232.131.116.254.199.1116245218.squirrel@www.susie.mine.nu> Message-ID: <20050516150142.J42770@maren.thelosingend.net> References: <31232.131.116.254.199.1116245218.squirrel@www.susie.mine.nu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Content-Scanned: with sophos and spamassassin at mailgw.ntnu.no. cc: freebsd-questions@freebsd.org Subject: Re: Remove /usr/X11R6 after deinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 13:08:09 -0000 * Per Berger [2005-05-16 14:06 +0200] > Since I have deinstalled all X-related stuff incl. xorg from my machine > (don't need it anymore), can I remove the /usr/X11R6 dir structure? It's > empty, I've checked, only dirs, no files... Or, to put it another way, is > the dir structure there default, i.e. if you do not install X when you > install the OS? No, you could safely remove the empty /usr/X11R6 directory. To see if all the directories that came with the distribution is there, check the mount point against the mtree files in /etc/mtree, eg.: mtree -f /etc/mtree/BSD.usr.dist -p /usr -e ...will show all the directories that exists in the mtree file, but are missing in the directory tree, ie. what dirs are missing. See mtree(8) for more info From owner-freebsd-questions@FreeBSD.ORG Mon May 16 13:31:53 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDA6816A4CE; Mon, 16 May 2005 13:31:53 +0000 (GMT) Received: from pne-smtpout2-sn1.fre.skanova.net (pne-smtpout2-sn1.fre.skanova.net [81.228.11.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A7EC43D81; Mon, 16 May 2005 13:31:53 +0000 (GMT) (envelope-from freebsd@stortsett.se) Received: from kalle.stortsett.local (81.230.166.174) by pne-smtpout2-sn1.fre.skanova.net (7.1.026.7) id 42687F2000665234; Mon, 16 May 2005 15:31:50 +0200 Received: from kalle.stortsett.local (localhost [127.0.0.1]) by kalle.stortsett.local (Postfix) with ESMTP id A1A1960DA; Mon, 16 May 2005 15:31:49 +0200 (CEST) Received: from www.susie.mine.nu (localhost [127.0.0.1]) by kalle.stortsett.local (Postfix) with ESMTP id 59E4760D7; Mon, 16 May 2005 15:31:49 +0200 (CEST) Received: from 131.116.254.200 (proxying for unknown) (SquirrelMail authenticated user per) by www.susie.mine.nu with HTTP; Mon, 16 May 2005 15:31:49 +0200 (CEST) Message-ID: <49925.131.116.254.200.1116250309.squirrel@www.susie.mine.nu> In-Reply-To: <20050516150142.J42770@maren.thelosingend.net> References: <31232.131.116.254.199.1116245218.squirrel@www.susie.mine.nu> <20050516150142.J42770@maren.thelosingend.net> Date: Mon, 16 May 2005 15:31:49 +0200 (CEST) From: "Per Berger" To: questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 (Normal) Importance: Normal Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV using ClamSMTP cc: freebsd-questions@freebsd.org cc: Per Berger Subject: Re: Remove /usr/X11R6 after deinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 13:31:54 -0000 On M=E5, 2005-05-16, 15:08, Svein Halvor Halvorsen skrev: > > * Per Berger [2005-05-16 14:06 +0200] >> Since I have deinstalled all X-related stuff incl. xorg from my machi= ne >> (don't need it anymore), can I remove the /usr/X11R6 dir structure? >> It's >> empty, I've checked, only dirs, no files... Or, to put it another way= , >> is >> the dir structure there default, i.e. if you do not install X when yo= u >> install the OS? > > No, you could safely remove the empty /usr/X11R6 directory. > To see if all the directories that came with the distribution is there, > check the mount point against the mtree files in /etc/mtree, eg.: > > mtree -f /etc/mtree/BSD.usr.dist -p /usr -e > > ...will show all the directories that exists in the mtree file, but are > missing in the directory tree, ie. what dirs are missing. > > See mtree(8) for more info > > Thanks! I did "mv X11R6 X11R6.old" and the ran the "mtree" command... No output! :-) So... "rm -rf /usr/X11R6.old"... /Per --=20 From owner-freebsd-questions@FreeBSD.ORG Mon May 16 13:31:53 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDA6816A4CE; Mon, 16 May 2005 13:31:53 +0000 (GMT) Received: from pne-smtpout2-sn1.fre.skanova.net (pne-smtpout2-sn1.fre.skanova.net [81.228.11.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A7EC43D81; Mon, 16 May 2005 13:31:53 +0000 (GMT) (envelope-from freebsd@stortsett.se) Received: from kalle.stortsett.local (81.230.166.174) by pne-smtpout2-sn1.fre.skanova.net (7.1.026.7) id 42687F2000665234; Mon, 16 May 2005 15:31:50 +0200 Received: from kalle.stortsett.local (localhost [127.0.0.1]) by kalle.stortsett.local (Postfix) with ESMTP id A1A1960DA; Mon, 16 May 2005 15:31:49 +0200 (CEST) Received: from www.susie.mine.nu (localhost [127.0.0.1]) by kalle.stortsett.local (Postfix) with ESMTP id 59E4760D7; Mon, 16 May 2005 15:31:49 +0200 (CEST) Received: from 131.116.254.200 (proxying for unknown) (SquirrelMail authenticated user per) by www.susie.mine.nu with HTTP; Mon, 16 May 2005 15:31:49 +0200 (CEST) Message-ID: <49925.131.116.254.200.1116250309.squirrel@www.susie.mine.nu> In-Reply-To: <20050516150142.J42770@maren.thelosingend.net> References: <31232.131.116.254.199.1116245218.squirrel@www.susie.mine.nu> <20050516150142.J42770@maren.thelosingend.net> Date: Mon, 16 May 2005 15:31:49 +0200 (CEST) From: "Per Berger" To: questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 (Normal) Importance: Normal Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV using ClamSMTP cc: freebsd-questions@freebsd.org cc: Per Berger Subject: Re: Remove /usr/X11R6 after deinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 13:31:54 -0000 On M=E5, 2005-05-16, 15:08, Svein Halvor Halvorsen skrev: > > * Per Berger [2005-05-16 14:06 +0200] >> Since I have deinstalled all X-related stuff incl. xorg from my machi= ne >> (don't need it anymore), can I remove the /usr/X11R6 dir structure? >> It's >> empty, I've checked, only dirs, no files... Or, to put it another way= , >> is >> the dir structure there default, i.e. if you do not install X when yo= u >> install the OS? > > No, you could safely remove the empty /usr/X11R6 directory. > To see if all the directories that came with the distribution is there, > check the mount point against the mtree files in /etc/mtree, eg.: > > mtree -f /etc/mtree/BSD.usr.dist -p /usr -e > > ...will show all the directories that exists in the mtree file, but are > missing in the directory tree, ie. what dirs are missing. > > See mtree(8) for more info > > Thanks! I did "mv X11R6 X11R6.old" and the ran the "mtree" command... No output! :-) So... "rm -rf /usr/X11R6.old"... /Per --=20 From owner-freebsd-questions@FreeBSD.ORG Mon May 16 13:20:57 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9000016A4CE for ; Mon, 16 May 2005 13:20:57 +0000 (GMT) Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DBA543D83 for ; Mon, 16 May 2005 13:20:56 +0000 (GMT) (envelope-from palma@ext.jussieu.fr) Received: from idf.ext.jussieu.fr (idf.ext.jussieu.fr [134.157.81.129]) by shiva.jussieu.fr (8.12.11/jtpda-5.4) with ESMTP id j4GDKpfd043501 ; Mon, 16 May 2005 15:20:51 +0200 (CEST) X-Ids: 165 Received: from idf.ext.jussieu.fr (localhost [127.0.0.1]) j4GDKoUk039863 ; Mon, 16 May 2005 15:20:50 +0200 (CEST) Received: (from palma@localhost) by idf.ext.jussieu.fr (8.12.6/8.12.6/Submit) id j4GDKonk039862; Mon, 16 May 2005 15:20:50 +0200 (CEST) From: "palma apg 42.71.63.00" Message-Id: <200505161320.j4GDKonk039862@idf.ext.jussieu.fr> To: palma@idf.ext.jussieu.fr (palma apg 42.71.63.00) Date: Mon, 16 May 2005 15:20:50 +0200 (CEST) X-Mailer: ELM [version 2.5 PL6] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.7.2 (shiva.jussieu.fr [134.157.0.165]); Mon, 16 May 2005 15:20:51 +0200 (CEST) X-Antivirus: scanned by sophie at shiva.jussieu.fr X-Miltered: at shiva.jussieu.fr with ID 42889E33.001 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Mailman-Approved-At: Mon, 16 May 2005 13:37:18 +0000 Subject: query X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 13:20:57 -0000 Good day, as you see my screen name (which I set myslef but i forgot how) shows a phone number that is no longer in use. would yopu please tell me what is the cmd line that effects a change in thoseA? aI cannot find under chname tec. thank yopu palma@idf.ext.jussieu.fr From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:05:58 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31E9616A4CE for ; Mon, 16 May 2005 14:05:58 +0000 (GMT) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9748F43DDC for ; Mon, 16 May 2005 14:05:57 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend2.messagingengine.com (frontend2.internal [10.202.2.151]) by frontend1.messagingengine.com (Postfix) with ESMTP id 96006C90416 for ; Mon, 16 May 2005 10:05:47 -0400 (EDT) X-Sasl-enc: jveCc8VTFkpeYI9om061IhTmOEPiLOZcsjlsb96XI1VA 1116252345 Received: from gumby.localhost (dsl-80-41-79-106.access.as9105.com [80.41.79.106]) by frontend2.messagingengine.com (Postfix) with ESMTP id 28F2D570326 for ; Mon, 16 May 2005 10:05:40 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Mon, 16 May 2005 15:04:54 +0100 User-Agent: KMail/1.8 References: <20050513233758.53228.qmail@web31804.mail.mud.yahoo.com> In-Reply-To: <20050513233758.53228.qmail@web31804.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505161504.54711.list-freebsd-2004@morbius.sent.com> Subject: Re: bittorrent client X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:05:58 -0000 On Saturday 14 May 2005 00:37, Paulo Roberto wrote: > Hello, > > Any suggestions? I have been using ctorrent, but I am getting a lot of I use Azureus, it's full of features, but it uses a lot resources. Bittorrent is probably the next best port, and is much lighter. > files it shows that it has downloaded 100%, but if I start it again (to > seed) it was fully completed. I don't see what you are getting at here, aren't "100%" and "fully" the same thing. From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:07:57 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5817616A4CE for ; Mon, 16 May 2005 14:07:57 +0000 (GMT) Received: from aiolos.otenet.gr (aiolos.otenet.gr [195.170.0.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D48943DAA for ; Mon, 16 May 2005 14:07:53 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])j4GE6Dv8010697; Mon, 16 May 2005 17:06:14 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) j4GE7oap001134; Mon, 16 May 2005 17:07:50 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost)j4GE7otb001133; Mon, 16 May 2005 17:07:50 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 16 May 2005 17:07:50 +0300 From: Giorgos Keramidas To: "Dott. Surricani" Message-ID: <20050516140749.GB731@orion.daedalusnetworks.priv> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: cc: freebsd-questions@freebsd.org Subject: Re: info about make.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:07:57 -0000 On 2005-05-16 13:27, "Dott. Surricani" wrote: > Hello everybody. > > I would like to know what means > > NOLIBC_R > NOLIBPTHREAD > NOLIBTHR > > in make.conf and how/when are usesed/useful. You mean NO_LIBC_R, NO_LIBPTHREAD and NO_LIBTHR of course. These should all be documented in the make.conf(5) manpage. % man make.conf - Giorgos From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:10:09 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0D3B16A4CE for ; Mon, 16 May 2005 14:10:09 +0000 (GMT) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2107743DA9 for ; Mon, 16 May 2005 14:10:09 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4GE9wuf099459; Mon, 16 May 2005 09:09:58 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost)j4GE9vK9099452; Mon, 16 May 2005 09:09:57 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 16 May 2005 09:09:57 -0500 (CDT) From: Tony Shadwick To: RW In-Reply-To: <200505161504.54711.list-freebsd-2004@morbius.sent.com> Message-ID: <20050516090859.R80488@mail.goinet.com> References: <20050513233758.53228.qmail@web31804.mail.mud.yahoo.com> <200505161504.54711.list-freebsd-2004@morbius.sent.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on mail.goinet.com X-Virus-Status: Clean cc: freebsd-questions@freebsd.org Subject: Re: bittorrent client X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:10:09 -0000 I don't think so actually. :) My understanding is that non-complete files are kept in a seperate directory from completed ones, so when a file hits 100%, I believe it gets crc-checked, then copied to the completed folder. So...I guess they aren't the same thing. ;) On Mon, 16 May 2005, RW wrote: > On Saturday 14 May 2005 00:37, Paulo Roberto wrote: >> Hello, >> >> Any suggestions? I have been using ctorrent, but I am getting a lot of > > I use Azureus, it's full of features, but it uses a lot resources. Bittorrent > is probably the next best port, and is much lighter. > >> files it shows that it has downloaded 100%, but if I start it again (to >> seed) it was fully completed. > > I don't see what you are getting at here, aren't "100%" and "fully" the same > thing. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:13:27 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 510CB16A4CE for ; Mon, 16 May 2005 14:13:27 +0000 (GMT) Received: from mail.goinet.com (mail.goinet.com [208.207.72.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id E884943D2D for ; Mon, 16 May 2005 14:13:26 +0000 (GMT) (envelope-from tshadwick@goinet.com) Received: from mail.goinet.com (localhost.goinet.com [127.0.0.1]) by mail.goinet.com (8.13.1/8.13.1) with ESMTP id j4GEClMJ000176; Mon, 16 May 2005 09:12:47 -0500 (CDT) (envelope-from tshadwick@goinet.com) Received: from localhost (tshadwick@localhost)j4GECjkZ000163; Mon, 16 May 2005 09:12:45 -0500 (CDT) (envelope-from tshadwick@goinet.com) X-Authentication-Warning: mail.goinet.com: tshadwick owned process doing -bs Date: Mon, 16 May 2005 09:12:45 -0500 (CDT) From: Tony Shadwick To: fbsd_user In-Reply-To: Message-ID: <20050516091057.K80488@mail.goinet.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.84, clamav-milter version 0.84e on mail.goinet.com X-Virus-Status: Clean cc: "freebsd-questions@FreeBSD. ORG" Subject: Re: How to use snapshots X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:13:27 -0000 (FYI: 5.3 -> 5.4 is the first time I haven't just backed up my home directory, wiped the system, and installed the new system, so take what I say with a grain of salt) I don't think you use snapshots to update your system. You can either do a binary upgrade using an ISO image, or do a src upgrade, the latter of which you would change your supfile for cvsup to be tag=RELENG_5_4. Run cvsup, then go through the 'make world' procedure in the handbook. Feel free to correct me anyone. :) Tony On Mon, 16 May 2005, fbsd_user wrote: > ftp://current.freebsd.org/pub/FreeBSD/snapshots/ looks like install disc1 > content. > > How or what do I need to run to use this to update my system? > > Been to the official handbook with no luck. > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:15:31 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3640F16A4CE for ; Mon, 16 May 2005 14:15:31 +0000 (GMT) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 483FF43D81 for ; Mon, 16 May 2005 14:15:28 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.messagingengine.com (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 99742C8F169; Mon, 16 May 2005 10:15:23 -0400 (EDT) X-Sasl-enc: S86sE6tLG6jjeUQsf4gFB1NWeR/DcUG/g4N5xmetoAqh 1116252923 Received: from gumby.localhost (dsl-80-41-79-106.access.as9105.com [80.41.79.106]) by frontend3.messagingengine.com (Postfix) with ESMTP id 1DCE95F; Mon, 16 May 2005 10:15:20 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org, crzdgns1@starpower.net Date: Mon, 16 May 2005 15:14:29 +0100 User-Agent: KMail/1.8 References: <6a99c6f0.fc045e0c.819d700@ms07.mrf.mail.rcn.net> <20050514075657.GB71168@slackbox.xs4all.nl> In-Reply-To: <20050514075657.GB71168@slackbox.xs4all.nl> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200505161514.30047.list-freebsd-2004@morbius.sent.com> Subject: Re: video card X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:15:31 -0000 On Saturday 14 May 2005 08:56, Roland Smith wrote: > On Fri, May 13, 2005 at 06:27:54PM -0400, crzdgns1@starpower.net wrote: > > Hello All, > > > > Is there are better driver for my video card than the > > standard, generic vga0 driver? > > My video card is a Diamond Viper v550 vidoe card which uses the nVidia > > Riva TNT chip. The card uses the AGP interface and has 8 MB of SDRAM. > > Yes. Use the "nv" driver. See 'man nv'. > I would first try nvidia's own driver, in the port x11/nvidia-driver and then fall back on nv if the former doesn't work. From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:21:18 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6A8C16A4CE for ; Mon, 16 May 2005 14:21:18 +0000 (GMT) Received: from charm.uugrn.org (charm.uugrn.org [195.226.127.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9401643D9F for ; Mon, 16 May 2005 14:21:17 +0000 (GMT) (envelope-from Raphael.Becker@gmx.de) Received: from daemon.local.net (rabe@localhost.uugrn.org [127.0.0.1]) by charm.uugrn.org (8.13.0/8.13.0) with ESMTP id j4GELZM9011500 for ; Mon, 16 May 2005 16:21:35 +0200 (CEST) Received: from daemon.local.net (rabe@localhost.local.net [127.0.0.1]) by daemon.local.net (8.13.3/8.13.1) with ESMTP id j4GELNaa036549 for ; Mon, 16 May 2005 16:21:23 +0200 (CEST) (envelope-from Raphael.Becker@gmx.de) Received: (from rabe@localhost) by daemon.local.net (8.13.3/8.13.1/Submit) id j4GELMa9036548 for freebsd-questions@freebsd.org; Mon, 16 May 2005 16:21:22 +0200 (CEST) (envelope-from Raphael.Becker@gmx.de) X-Authentication-Warning: daemon.local.net: rabe set sender to Raphael.Becker@gmx.de using -f Date: Mon, 16 May 2005 16:21:22 +0200 From: "Raphael H. Becker" To: freebsd-questions@freebsd.org Message-ID: <20050516142122.GB35991@local.net> References: <20050513065243.GD7977@orthanc.st.hmc.edu> <200505131308.50805.ian@codepad.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="f2QGlHpHGjS2mn6Y" Content-Disposition: inline In-Reply-To: <200505131308.50805.ian@codepad.net> User-Agent: Mutt/1.4.2.1i Subject: Re: Shutting down [k|g]dm for a short while? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:21:18 -0000 --f2QGlHpHGjS2mn6Y Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, May 13, 2005 at 01:08:50PM +0100, Xian wrote: > You can edit /etc/ttys to turn off the appropriate tty, then SIGHUP init = (pid=20 > 1). > You might have to kill [k|g]dm afterwards as well. You need killall kdm=20 Killing the X-Session using Ctrl-Alt-Backspace might not kill kdm. =20 > Then when your done, enable the tty, and SIGHUP init again. Right.=20 Using `init q=B4 is the more cleaner way.=20 init(8): SYNOPSIS init init [0 | 1 | 6 | c | q] [...] Run-level Signal Action 0 SIGUSR2 Halt and turn the power off 1 SIGTERM Go to single-user mode 6 SIGINT Reboot the machine c SIGTSTP Block further logins q SIGHUP Rescan the ttys(5) file =20 This should also be documented in /etc/ttys. Regards --=20 Raphael Becker http://rabe.uugrn.org/ http://schnitzelmitkartoffelsalat.und.rahmspin.at/ =2E........|.........|.........|.........|.........|.........|.........|.. --f2QGlHpHGjS2mn6Y Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFCiKxinNo+exDKny0RAosVAJwPl/5wVvBPt5eUnUavAdyLw4Vc+ACdFhxa Vrvt+V3o+xjtz68plwFNhZo= =DHX7 -----END PGP SIGNATURE----- --f2QGlHpHGjS2mn6Y-- From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:27:01 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3786F16A4CE for ; Mon, 16 May 2005 14:27:01 +0000 (GMT) Received: from hobbiton.shire.net (hobbiton.shire.net [166.70.252.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id A43B843DB8 for ; Mon, 16 May 2005 14:27:00 +0000 (GMT) (envelope-from chad@shire.net) Received: from [67.161.222.227] (helo=[192.168.99.68]) by hobbiton.shire.net with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.43) id 1DXgZo-000JEv-Od; Mon, 16 May 2005 08:28:13 -0600 Mime-Version: 1.0 (Apple Message framework v728) Message-Id: From: "Chad Leigh -- Shire.Net LLC" Date: Mon, 16 May 2005 08:26:58 -0600 To: FreeBSD Mailing List X-Mailer: Apple Mail (2.728) X-SA-Exim-Connect-IP: 67.161.222.227 X-SA-Exim-Mail-From: chad@shire.net Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.0 (2004-09-13) on hobbiton.shire.net X-Spam-Status: No, score=-0.1 required=5.0 tests=AWL,BAYES_50 autolearn=disabled version=3.0.0 X-Spam-Level: X-SA-Exim-Version: 4.1+cvs (built Mon, 23 Aug 2004 08:44:05 -0700) X-SA-Exim-Scanned: Yes (on hobbiton.shire.net) cc: Chad Leigh Subject: is this a possible DoS attack? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:27:01 -0000 I had a server reboot itself twice in close succession in the middle of the night, after a long uptime. This server had not reboot itself in ages (years) -- all previous boots were controlled. The syslog has the following in it a half hour or so prior to the first boot (the first line or two is just to show that nothing much happened before this happened): May 16 02:20:00 crickhollow named[87025]: zone 22.63.209.in-addr.arpa/ IN: loading master file ptr.209.63.22: file not found May 16 02:33:31 crickhollow /kernel: Limiting icmp unreach response from 232 to 200 packets per second May 16 03:14:52 crickhollow /kernel: All mbufs exhausted, please see tuning(7). May 16 03:14:53 crickhollow last message repeated 3 times May 16 03:14:59 crickhollow /kernel: o 00:20:ed:16:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 and then this arp message-pair (moving from one address to another and back) goes on a ton for 20-30 minutes then a spontaneous reboot then more of these arp message-pairs for another 20-30 minutes (no mbuf message though during the intervening period) and then another spontaneous reboot and then the arp message-pair went on for another short while 10-20 minutes and then all is relatively quiet. There were some intermediate May 16 03:59:36 crickhollow /kernel: Limiting closed port RST response from 646 to 200 packets per second sort of messages during the "arp" flood. The address 166.70.252.252 is on another server that has not changed at all and is on a linux server that has that address but has no open ports / services listening on that address at all (it does all its listening on a private 192.168 type address -- the public address assignment is to make it easier for it to go out to the world for updates) The mbufs on this machine are pretty high and the usage of the machine has not gone up much. Here is what the mbufs look like this morning host# netstat -m 148/46048/131072 mbufs in use (current/peak/max): 148 mbufs allocated to data 144/468/32768 mbuf clusters in use (current/peak/max) 12448 Kbytes allocated to network (12% of mb_map in use) 0 requests for memory denied 0 requests for memory delayed 0 calls to protocol drain routines host# Any thoughts on what could have happened would be appreciated. Thanks Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad@shire.net From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:36:53 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C10CA16A4CE for ; Mon, 16 May 2005 14:36:53 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9FEB43DDC for ; Mon, 16 May 2005 14:36:52 +0000 (GMT) (envelope-from juu.borg@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so1590827wra for ; Mon, 16 May 2005 07:36:49 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=s2BZDDfn01ZdCBv8DPs2aMrLdfJj+m1ETdgdDZZkJ4VEaEYHt8CTF3GBrLEVHclI4qYP6iKsDRrEsLYUcLaUVA8x+NzjcX6EjqeVL1IGxJAeD4xSIb/YPE2+tm1dYQNdJBAPImW8tnw4ju4kXp6+wjG7MumOehprJjyB0VS/3Uo= Received: by 10.54.51.78 with SMTP id y78mr3726124wry; Mon, 16 May 2005 07:36:49 -0700 (PDT) Received: by 10.54.140.4 with HTTP; Mon, 16 May 2005 07:36:49 -0700 (PDT) Message-ID: <6f2ed49705051607363f0876c4@mail.gmail.com> Date: Mon, 16 May 2005 16:36:49 +0200 From: Joseph Borg To: "Chad Leigh -- Shire.Net LLC" In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: cc: FreeBSD Mailing List Subject: Re: is this a possible DoS attack? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: joeborg@ieee.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:36:53 -0000 On 5/16/05, Chad Leigh -- Shire.Net LLC wrote: >=20 > I had a server reboot itself twice in close succession in the middle > of the night, after a long uptime. This server had not reboot itself > in ages (years) -- all previous boots were controlled. >=20 > The syslog has the following in it a half hour or so prior to the > first boot (the first line or two is just to show that nothing much > happened before this happened): >=20 > May 16 02:20:00 crickhollow named[87025]: zone 22.63.209.in-addr.arpa/ > IN: loading master file ptr.209.63.22: file not found > May 16 02:33:31 crickhollow /kernel: Limiting icmp unreach response > from 232 to 200 packets per second > May 16 03:14:52 crickhollow /kernel: All mbufs exhausted, please see > tuning(7). > May 16 03:14:53 crickhollow last message repeated 3 times > May 16 03:14:59 crickhollow /kernel: o 00:20:ed:16:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:56:b9:07 to 00:20:ed:16:b9:07 on dc0 >=20 As a first guess, I'd say there's an IP conflict, with two machines having the same IP address and hence the corresponding arp keeps changing from one machine to another... > and then this arp message-pair (moving from one address to another > and back) goes on a ton for 20-30 minutes then a spontaneous reboot > then more of these arp message-pairs for another 20-30 minutes (no > mbuf message though during the intervening period) and then another > spontaneous reboot and then the arp message-pair went on for another > short while 10-20 minutes and then all is relatively quiet. >=20 > There were some intermediate >=20 > May 16 03:59:36 crickhollow /kernel: Limiting closed port RST > response from 646 to 200 packets per second >=20 > sort of messages during the "arp" flood. >=20 > The address 166.70.252.252 is on another server that has not > changed at all and is on a linux server that has that address but has > no open ports / services listening on that address at all (it does > all its listening on a private 192.168 type address -- the public > address assignment is to make it easier for it to go out to the world > for updates) >=20 Are these to machines "166.70.252.252 is on another server that has not > changed at all and is on a linux server that has that address" ? > The mbufs on this machine are pretty high and the usage of the > machine has not gone up much. >=20 > Here is what the mbufs look like this morning >=20 > host# netstat -m > 148/46048/131072 mbufs in use (current/peak/max): > 148 mbufs allocated to data > 144/468/32768 mbuf clusters in use (current/peak/max) > 12448 Kbytes allocated to network (12% of mb_map in use) > 0 requests for memory denied > 0 requests for memory delayed > 0 calls to protocol drain routines > host# >=20 > Any thoughts on what could have happened would be appreciated. >=20 > Thanks > Chad >=20 > --- > Chad Leigh -- Shire.Net LLC > Your Web App and Email hosting provider > chad@shire.net >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:44:46 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 190A216A4CE for ; Mon, 16 May 2005 14:44:46 +0000 (GMT) Received: from parrot.aev.net (host29-15.pool8174.interbusiness.it [81.74.15.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6085643DBD for ; Mon, 16 May 2005 14:44:44 +0000 (GMT) (envelope-from ml.diespammer@netfence.it) Received: from soth.ventu (adsl-245-23.37-151.net24.it [151.37.23.245]) (authenticated bits=128) by parrot.aev.net (8.13.4/8.13.4) with ESMTP id j4GEmV6m018330 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 16 May 2005 16:48:39 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Received: from [10.1.2.18] (alamar.ventu [10.1.2.18]) (authenticated bits=0) by soth.ventu (8.13.3/8.13.3) with ESMTP id j4GEhV9T007060 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 16 May 2005 16:43:31 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Message-ID: <4288B1C4.9030806@netfence.it> Date: Mon, 16 May 2005 16:44:20 +0200 From: Andrea Venturoli User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050502) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mike Tancsa , freebsd-questions@freebsd.org References: <4286313A.3080102@netfence.it> <428873A1.1060209@netfence.it> <9f2h819gnc2938un66cpouvnrbti39adsv@4ax.com> In-Reply-To: <9f2h819gnc2938un66cpouvnrbti39adsv@4ax.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.51 on 192.168.2.2 X-Scanned-By: MIMEDefang 2.51 on 10.1.2.13 Subject: Re: NFS read-ahead? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:44:46 -0000 Mike Tancsa wrote: > Offhand, not really, but if you look around via google for > mount_nfs freebsd "-r" a lot of people suggest r=32768,-w=32768. > Perhaps use that as a starting point and experiment to see what gives > you the best performance for your situation. Tried this: with simple tests it doesn't seem to make any difference. I guess I'll have to investigate further. Thanks for now. bye av. From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:52:25 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CC0616A4CE for ; Mon, 16 May 2005 14:52:25 +0000 (GMT) Received: from chello084114137224.1.15.vie.surfer.at (chello084114137224.1.15.vie.surfer.at [84.114.137.224]) by mx1.FreeBSD.org (Postfix) with SMTP id 7EEFD43D79 for ; Mon, 16 May 2005 14:52:23 +0000 (GMT) (envelope-from 4711@chello.at) Received: (qmail 11265 invoked from network); 16 May 2005 14:52:15 -0000 Received: from www.matrix.net (HELO localhost) (192.168.123.10) by ftp.matrix.net with SMTP; 16 May 2005 14:52:15 -0000 From: Christian Hiris <4711@chello.at> To: freebsd-questions@freebsd.org Date: Mon, 16 May 2005 16:51:57 +0200 User-Agent: KMail/1.8 References: <200505161320.j4GDKonk039862@idf.ext.jussieu.fr> In-Reply-To: <200505161320.j4GDKonk039862@idf.ext.jussieu.fr> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3146468.3rCduVcaXY"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200505161652.14730.4711@chello.at> cc: "palma apg 42.71.63.00" Subject: Re: query X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:52:25 -0000 --nextPart3146468.3rCduVcaXY Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 16 May 2005 15:20:15, palma apg 42.71.63.00 wrote: > Good day, as you see my screen name (which I set myslef but i forgot how) > shows a phone number that is no longer in use. > would yopu please tell me what is the cmd line that effects a change in > thoseA? aI cannot find under chname tec. > thank yopu Try 'man 1 chpass'. Cheers, ch =2D-=20 Christian Hiris <4711@chello.at> | OpenPGP KeyID 0x3BCA53BE=20 OpenPGP-Key at hkp://wwwkeys.eu.pgp.net and http://pgp.mit.edu --nextPart3146468.3rCduVcaXY Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (FreeBSD) iD8DBQBCiLOe09WjGjvKU74RAhW4AJ9oHio4Opbo9k680w71okfKiKkJlgCeLtbq WjlXI9ju9VQVgVsBLsz4B2M= =r4IP -----END PGP SIGNATURE----- --nextPart3146468.3rCduVcaXY-- From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:54:51 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9765A16A4CE for ; Mon, 16 May 2005 14:54:51 +0000 (GMT) Received: from smtp.golden.net (smtp.golden.net [199.166.210.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25C1943D3F for ; Mon, 16 May 2005 14:54:51 +0000 (GMT) (envelope-from gldisater@gto.net) Received: from 180-137.speede.golden.net ([216.75.180.137]) by smtp.golden.net with esmtp (Exim 4.22) id 1DXgza-0003YV-Hx; Mon, 16 May 2005 10:54:50 -0400 Message-ID: <4288B443.9000707@gto.net> Date: Mon, 16 May 2005 10:54:59 -0400 From: Jeremy Faulkner User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Paulo Roberto References: <20050513233758.53228.qmail@web31804.mail.mud.yahoo.com> In-Reply-To: <20050513233758.53228.qmail@web31804.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: questions@freebsd.org Subject: Re: bittorrent client X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:54:51 -0000 Paulo Roberto wrote: >Hello, > >Any suggestions? I have been using ctorrent, but I am getting a lot of >files it shows that it has downloaded 100%, but if I start it again (to >seed) it was fully completed. > >thanks, > >Paulo > > Do not use ctorrent it's unmaintained and buggy. It should probably be removed from the ports. ports/net/rtorrent From owner-freebsd-questions@FreeBSD.ORG Mon May 16 14:55:18 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 213D516A4CE for ; Mon, 16 May 2005 14:55:18 +0000 (GMT) Received: from mail.bdug.org.au (mail.bdug.org.au [202.72.170.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id A359A43DA0 for ; Mon, 16 May 2005 14:55:14 +0000 (GMT) (envelope-from paulh@bdug.org.au) Received: from w2k2 (unknown [192.168.0.183]) by mail.bdug.org.au (Postfix) with ESMTP id AF2E8DA8 for ; Mon, 16 May 2005 22:55:53 +0800 (WST) From: "Paul Hamilton" To: "Freebsd-Questions" Date: Mon, 16 May 2005 22:56:57 +0800 Message-ID: <006801c55a27$81afbe90$b700a8c0@w2k2> MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Importance: Normal Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: running FreeBSD 4.11 or 5.4 on a SBC X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 14:55:18 -0000 Hi, I have a need for a Single Board Computer (SBC), something like the TS-5600 http://www.embeddedarm.com/epc/ts5600-spec-p.php My requirements are: +100MHz CPU Wireless 802.11b 3 or 4 Serial ports boot from a CF card 8 ch. A/D 2 ch. D/A less than 5 watts of power! is this do-able in FreeBSD? Since I am on this subject, I was going to use an old P-120 motherboard running with a hard drive for development. Does any one know of a cheep A/D - D/A and DIO PCI card that can be used with FreeBSD? I am hoping to most of the development in C (little as possible, as I am just learning C), and shell scripts. Thanks. Cheers, Paul Hamilton. From owner-freebsd-questions@FreeBSD.ORG Mon May 16 15:26:51 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDE9316A4D0 for ; Mon, 16 May 2005 15:26:51 +0000 (GMT) Received: from postfix3-1.free.fr (postfix3-1.free.fr [213.228.0.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D90843D76 for ; Mon, 16 May 2005 15:26:51 +0000 (GMT) (envelope-from oliviergautherot@free.fr) Received: from ogautherot (mas91-1-82-238-221-116.fbx.proxad.net [82.238.221.116]) by postfix3-1.free.fr (Postfix) with ESMTP id 4D8A2173509 for ; Mon, 16 May 2005 17:26:45 +0200 (CEST) From: Olivier Gautherot To: freebsd-questions@freebsd.org Date: Mon, 16 May 2005 17:26:42 +0200 User-Agent: KMail/1.8 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200505161726.43437.oliviergautherot@free.fr> Subject: Impossible install of 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: olivier@gautherot.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 15:26:52 -0000 Hi folks! I've tried to install 5.4 but can't boot the disk. I see a FreeBSD prompt (the master boot selector being a Linux version of grub) but it complains about a missing /kernel. When I check my 5.3 disk with the new 5.4 install, the content of /boot looks fine. I tried all 3 options for the bootmanager but none works. Any clue of what I should investigate? I've installed several versions of FreeBSD in the past but never got this behavior. Thanks in advance P.S. Please copy me on answers... -- Olivier Gautherot olivier@gautherot.net From owner-freebsd-questions@FreeBSD.ORG Mon May 16 15:41:09 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1724C16A4CE for ; Mon, 16 May 2005 15:41:09 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAD8F43D93 for ; Mon, 16 May 2005 15:41:08 +0000 (GMT) (envelope-from ic.gowtham@gmail.com) Received: by rproxy.gmail.com with SMTP id i8so523721rne for ; Mon, 16 May 2005 08:41:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type; b=q0/FmQJFbapP5BAxKYyU6GmgMKNisqhqEiG8z5Wfd1cVRj5pSGP/xxrLJiSLt9pu6QorLiji3EqDmAM7Twtn0MmGh1vh33lxUgunOOSvlInHoqMm65fe8XaXGAXOWThm8B+TrJzdq0kIXD9sLhuT8qmSFTVfoRoS5brb5FxpS1U= Received: by 10.38.88.73 with SMTP id l73mr2278367rnb; Mon, 16 May 2005 08:41:03 -0700 (PDT) Received: by 10.38.97.13 with HTTP; Mon, 16 May 2005 08:41:03 -0700 (PDT) Message-ID: <2ab1ba0c05051608414c0884c7@mail.gmail.com> Date: Mon, 16 May 2005 21:11:03 +0530 From: Gowtham To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Daemon Process X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gowtham List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 15:41:09 -0000 Hi, I want to know how can I programmatically restart a dead daemon process in= =20 Unix? --=20 Gowtham From owner-freebsd-questions@FreeBSD.ORG Mon May 16 15:44:09 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A00B16A4CE for ; Mon, 16 May 2005 15:44:09 +0000 (GMT) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with SMTP id 4545F43DBF for ; Mon, 16 May 2005 15:44:08 +0000 (GMT) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 23374 invoked by uid 0); 16 May 2005 15:44:02 -0000 Received: from user-69-73-60-132.knology.net (HELO Grumpy.DynDNS.org) (69.73.60.132) by smtp6.knology.net with SMTP; 16 May 2005 15:44:02 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id 1407B67B2; Mon, 16 May 2005 10:44:02 -0500 (CDT) Date: Mon, 16 May 2005 10:44:02 -0500 From: David Kelly To: "Chad Leigh -- Shire.Net LLC" Message-ID: <20050516154402.GA87442@Grumpy.DynDNS.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: FreeBSD Mailing List Subject: Re: is this a possible DoS attack? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 15:44:09 -0000 On Mon, May 16, 2005 at 08:26:58AM -0600, Chad Leigh -- Shire.Net LLC wrote: > > May 16 03:14:59 crickhollow /kernel: arp: 166.70.252.252 moved from > 00:20:ed:16:b9:07 to 00:20:ed:56:b9:07 on dc0 [...] > The address 166.70.252.252 is on another server that has not > changed at all and is on a linux server that has that address but has > no open ports / services listening on that address at all (it does > all its listening on a private 192.168 type address -- the public > address assignment is to make it easier for it to go out to the world > for updates) Both nets on the Linux machine on the same NIC? If so then I'd suspect something with Linux. Else note the MAC address only differs by one bit. Unless that rings a bell as a signature of a DoS then I'd suspect either the Linux NIC or ethernet switch between. None the less whatever the cause doesn't excuse FreeBSD for falling on its face. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Mon May 16 15:46:15 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D75016A4CE for ; Mon, 16 May 2005 15:46:15 +0000 (GMT) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6A0943DA8 for ; Mon, 16 May 2005 15:46:14 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 8367A5CF1; Mon, 16 May 2005 11:46:11 -0400 (EDT) Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 84441-07; Mon, 16 May 2005 11:46:08 -0400 (EDT) Received: from [192.168.1.3] (pool-68-161-53-96.ny325.east.verizon.net [68.161.53.96]) by pi.codefab.com (Postfix) with ESMTP id D93F25CAF; Mon, 16 May 2005 11:46:07 -0400 (EDT) Message-ID: <4288C010.3050002@mac.com> Date: Mon, 16 May 2005 11:45:20 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.7) Gecko/20050414 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Grant Peel References: <008901c55a0c$1c9d1090$6601a8c0@GRANT> In-Reply-To: <008901c55a0c$1c9d1090$6601a8c0@GRANT> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at codefab.com cc: freebsd-questions@freebsd.org Subject: Re: Initio A100U2W X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 15:46:15 -0000 Grant Peel wrote: > How does one install a new driver (that does not come with FreeBSD) when > the system wont install (does not see the Initio SCSI controller) ? > > I have the source code and can do the changes to the Kernel etc after, > but the chicken and the egg thing has got me.... You could build the driver into a kernel by setting up a system on another machine and doing a buildworld/buildkernel cycle, and then move the hard drive over to the system with this device. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Mon May 16 15:48:49 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39B8516A4CE for ; Mon, 16 May 2005 15:48:49 +0000 (GMT) Received: from zero.ramb.com.ua (zero.ramb.com.ua [62.149.0.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C57243D97 for ; Mon, 16 May 2005 15:48:48 +0000 (GMT) (envelope-from fenix@ramb.com.ua) Received: from server.webinfo.int (ip.82.144.202.143.stat-9.volia.net [82.144.202.143]) by zero.ramb.com.ua (8.13.3/8.13.3) with ESMTP id j4GIrNKn068401; Mon, 16 May 2005 18:53:29 GMT (envelope-from fenix@ramb.com.ua) Date: Mon, 16 May 2005 18:48:34 +0300 From: "Sergey S. Ropchan" X-Mailer: The Bat! (v3.0.1.33) Professional X-Priority: 3 (Normal) Message-ID: <1639417618.20050516184834@ramb.com.ua> To: Gowtham In-Reply-To: <2ab1ba0c05051608414c0884c7@mail.gmail.com> References: <2ab1ba0c05051608414c0884c7@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.80/875/Tue May 10 11:27:59 2005 clamav-milter version 0.80j on zero.ramb.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=0.1 required=6.3 tests=FORGED_RCVD_HELO autolearn=failed version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on zero.ramb.com.ua cc: freebsd-questions@freebsd.org Subject: Re: Daemon Process X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Sergey S. Ropchan" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 15:48:49 -0000 Hello Gowtham, Monday, May 16, 2005, 6:41:03 PM, you wrote: > Hi, > I want to know how can I programmatically restart a dead daemon process in > Unix? You can restart daemon process with: kill -HUP `cat /path/to/processname.pid` or you can do that in your own C program this kill syscall, read before: man 2 kill -- Best regards, Sergey S. Ropchan mailto:fenix@ramb.com.ua From owner-freebsd-questions@FreeBSD.ORG Mon May 16 15:52:35 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C16D16A4CE for ; Mon, 16 May 2005 15:52:35 +0000 (GMT) Received: from smtpauth01.mail.atl.earthlink.net (smtpauth01.mail.atl.earthlink.net [209.86.89.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECFEE43D5F for ; Mon, 16 May 2005 15:52:34 +0000 (GMT) (envelope-from algould@datawok.com) Received: from [206.255.31.21] (helo=[192.168.63.10]) by smtpauth01.mail.atl.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1DXhtO-0007pg-Ci; Mon, 16 May 2005 11:52:30 -0400 From: "Andrew L. Gould" To: freebsd-questions@freebsd.org, olivier@gautherot.net Date: Mon, 16 May 2005 10:52:49 -0500 User-Agent: KMail/1.6.2 References: <200505161726.43437.oliviergautherot@free.fr> In-Reply-To: <200505161726.43437.oliviergautherot@free.fr> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200505161052.50084.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69563f9fea00a6dd62bcd2ba681a662cf401ea5bffe52949ab52350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 206.255.31.21 Subject: Re: Impossible install of 5.4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 15:52:35 -0000 On Monday 16 May 2005 10:26 am, Olivier Gautherot wrote: > Hi folks! > > I've tried to install 5.4 but can't boot the disk. I see a FreeBSD > prompt (the master boot selector being a Linux version of grub) but > it complains about a missing /kernel. > > When I check my 5.3 disk with the new 5.4 install, the content of > /boot looks fine. I tried all 3 options for the bootmanager but none > works. > > Any clue of what I should investigate? I've installed several > versions of FreeBSD in the past but never got this behavior. > > Thanks in advance > > P.S. Please copy me on answers... Did you check the md5 value of the iso file to ensure the download was good? Best of luck, Andrew Gould From owner-freebsd-questions@FreeBSD.ORG Mon May 16 16:00:13 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00C2116A4CE for ; Mon, 16 May 2005 16:00:13 +0000 (GMT) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id A77E843DBF for ; Mon, 16 May 2005 16:00:12 +0000 (GMT) (envelope-from fteg@london.com) Received: from unknown (unknown [192.168.9.180])413B61800420 for ; Mon, 16 May 2005 16:00:09 +0000 (GMT) X-OB-Received: from unknown (205.158.62.182) by wfilter.us4.outblaze.com; 16 May 2005 16:00:04 -0000 Received: by ws1-6.us4.outblaze.com (Postfix, from userid 1001) id 51B811CE305; Mon, 16 May 2005 16:00:00 +0000 (GMT) Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 X-Mailer: MIME::Lite 2.117 (F2.6; A1.17; B2.12; Q2.03) Received: from [213.187.181.70] by ws1-6.us4.outblaze.com with http for fteg@london.com; Mon, 16 May 2005 11:00:00 -0500 X-Mailer: mail.com webmail From: "Fafa Hafiz Krantz" To: questions@freebsd.org Date: Mon, 16 May 2005 11:00:00 -0500 X-Originating-Ip: 213.187.181.70 X-Originating-Server: ws1-6.us4.outblaze.com Message-Id: <20050516160000.51B811CE305@ws1-6.us4.outblaze.com> Subject: Burning with HP DVD Writer 630 (c/i) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2005 16:00:13 -0000 Hello. I am having some serious problems with my HP DVD Writer 630c, aka 630i. It doesn't really respond when I click the eject button, I have to press it real hard a lot of times before it opens. And, when I've finally managed putting a disc into it, whether it's a CD or a DVD, it cannot read it. Let alone write to it. I'm a poor man so buying a new burner ain't really an option. There must be a way to fix this. # dmesg # Copyright (c) 1992-2005 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.4-STABLE #0: Sun May 8 18:15:39 CEST 2005 fafa@urban.hetrah.lan:/usr/obj/usr/src/sys/URBAN MPTable: Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) 4 CPU 3.20GHz (3192.02-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0xf34 Stepping =3D 4 Features=3D0xbfebfbff Hyperthreading: 2 logical CPUs real memory =3D 1073610752 (1023 MB) avail memory =3D 1045262336 (996 MB) ioapic0: Changing APIC ID to 1 ioapic0: Assuming intbase of 0 ioapic0 irqs 0-23 on motherboard npx0: on motherboard npx0: INT 16 interface cpu0 on motherboard pcib0: pcibus 0 on motherboard pci0: on pcib0 pcib1: irq 16 at device 1.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) pci1: at device 0.1 (no driver attached) pcib2: at device 28.0 on pci0 pci32: on pcib2 pcib3: irq 17 at device 28.1 on pci0 pci64: on pcib3 bge0: mem 0xf0400000-= 0xf040ffff irq 17 at device 0.0 on pci64 miibus0: on bge0 brgphy0: on miibus0 brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 1000b= aseTX-FDX, auto bge0: Ethernet address: 00:11:85:df:7d:9b uhci0: port 0x4440-0x= 445f irq 20 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x4460-0x= 447f irq 18 at device 29.1 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0x4480-0x= 449f irq 21 at device 29.2 on pci0 usb2: on uhci2 usb2: USB revision 1.0 uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered uhci3: port 0x44a0-0x= 44bf irq 22 at device 29.3 on pci0 usb3: on uhci3 usb3: USB revision 1.0 uhub3: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub3: 2 ports with 2 removable, self powered pci0: at device 29.7 (no driver attached) pcib4: at device 30.0 on pci0 pci5: on pcib4 pci5: at device 4.0 (no driver attached) pci5: