From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 00:46:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8625516A4DE for ; Sun, 27 Aug 2006 00:46:08 +0000 (UTC) (envelope-from jbronson@wixb.com) Received: from cheyenne.sixcompanies.com (cheyenne.sixcompanies.com [65.43.82.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42A1943D46 for ; Sun, 27 Aug 2006 00:46:08 +0000 (GMT) (envelope-from jbronson@wixb.com) Message-Id: <7.0.1.0.2.20060826194439.01973050@sixcompanies.com> Date: Sat, 26 Aug 2006 19:46:05 -0500 To: freebsd-questions@freebsd.org From: "J.D. Bronson" In-Reply-To: <20060826221904.GD2666@gothmog.pc> References: <7.0.1.0.2.20060826150124.01982d10@sixcompanies.com> <20060826204015.GI1311@gothmog.pc> <7.0.1.0.2.20060826160530.01982d10@sixcompanies.com> <20060826220706.GC2666@gothmog.pc> <7.0.1.0.2.20060826170941.01982d10@sixcompanies.com> <20060826221904.GD2666@gothmog.pc> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: "J.D. Bronson" Subject: Re: ipfilter on 6.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:46:08 -0000 Ok guys...now that I have ipfilter working...I need to run a few commands in /etc/ppp/ppp;linkup and cant figure out the syntax... % cat /etc/ppp/ppp.linkup # It is no longer necessary to re-add the default route here as our MYADDR: ! sh -c "/sbin/ipnat -CF -f /etc/ipnat.conf" ! sh -c "/sbin/ipf -F -f /etc/ipf.conf" ! sh -c "/sbin/ipf -Fa -f /etc/ipf.conf" ! sh -c "/sbin/ipf -y" ...I also tried with !bg and that failed to. whats the best way to get these commands to run once my ppp link is up? thanks- -JD From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 01:00:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CBC7D16A4DD for ; Sun, 27 Aug 2006 01:00:00 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0B6143D4C for ; Sun, 27 Aug 2006 00:59:59 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (patr530-a089.otenet.gr [212.205.215.89]) (authenticated bits=128) by igloo.linux.gr (8.13.7/8.13.7/Debian-2) with ESMTP id k7R0xdtc002653 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 27 Aug 2006 03:59:43 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k7R0xM7D004911; Sun, 27 Aug 2006 03:59:23 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k7R0xMDp004910; Sun, 27 Aug 2006 03:59:22 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 27 Aug 2006 03:59:22 +0300 From: Giorgos Keramidas To: "J.D. Bronson" Message-ID: <20060827005922.GB4853@gothmog.pc> References: <7.0.1.0.2.20060826150124.01982d10@sixcompanies.com> <20060826204015.GI1311@gothmog.pc> <7.0.1.0.2.20060826160530.01982d10@sixcompanies.com> <20060826220706.GC2666@gothmog.pc> <7.0.1.0.2.20060826170941.01982d10@sixcompanies.com> <20060826221904.GD2666@gothmog.pc> <7.0.1.0.2.20060826194439.01973050@sixcompanies.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7.0.1.0.2.20060826194439.01973050@sixcompanies.com> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.837, required 5, autolearn=not spam, AWL -0.24, BAYES_00 -2.60, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: ipfilter on 6.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 01:00:00 -0000 On 2006-08-26 19:46, "J.D. Bronson" wrote: > Ok guys...now that I have ipfilter working...I need to run a few > commands in /etc/ppp/ppp;linkup and cant figure out the syntax... > > % cat /etc/ppp/ppp.linkup > > # It is no longer necessary to re-add the default route here as our > MYADDR: > > ! sh -c "/sbin/ipnat -CF -f /etc/ipnat.conf" > ! sh -c "/sbin/ipf -F -f /etc/ipf.conf" > ! sh -c "/sbin/ipf -Fa -f /etc/ipf.conf" > ! sh -c "/sbin/ipf -y" Watch out for that empty line, if it is *REALLY* part of your `ppp.linkup' script. Empty lines are section delimiters in ppp(8) config files. Thereis also no reason to run ipf _twice_! Please also note that I don't use "sh -c" to signal ntpd to start/stop from my ppp.linkup script and it all works fine: root@gothmog:/root# cat -n /etc/ppp/ppp.linkup 1 MYADDR: 2 ! /etc/rc.d/ntpd start root@gothmog:/root# Maybe the whole sh -c and quoting stuff you are using is not really passed down to sh(1) but is parsed by ppp(8) when `ppp.linkup' is read? I am also not sure if it is a good idea to run ``ipnat -CF'' of ``ipf -Fa''. What about states of existing connections? If you momentarily lose the PPP connection, but it then comes up pretty fast, you are effectively dropping all previous connection information here, even though it may still be valid and useful. I'd go for the simpler syntax of: MYADDR: ! /sbin/ipf -y From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 01:31:55 2006 Return-Path: X-Original-To: freebsd-questions@FREEBSD.ORG 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 C796C16A4DE for ; Sun, 27 Aug 2006 01:31:55 +0000 (UTC) (envelope-from jbronson@wixb.com) Received: from cheyenne.sixcompanies.com (cheyenne.sixcompanies.com [65.43.82.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 812BE43D45 for ; Sun, 27 Aug 2006 01:31:55 +0000 (GMT) (envelope-from jbronson@wixb.com) Message-Id: <7.0.1.0.2.20060826203050.019701d0@sixcompanies.com> Date: Sat, 26 Aug 2006 20:31:54 -0500 To: Giorgos Keramidas From: "J.D. Bronson" In-Reply-To: <20060827005922.GB4853@gothmog.pc> References: <7.0.1.0.2.20060826150124.01982d10@sixcompanies.com> <20060826204015.GI1311@gothmog.pc> <7.0.1.0.2.20060826160530.01982d10@sixcompanies.com> <20060826220706.GC2666@gothmog.pc> <7.0.1.0.2.20060826170941.01982d10@sixcompanies.com> <20060826221904.GD2666@gothmog.pc> <7.0.1.0.2.20060826194439.01973050@sixcompanies.com> <20060827005922.GB4853@gothmog.pc> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: freebsd-questions@FREEBSD.ORG Subject: Re: ipfilter on 6.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 01:31:55 -0000 At 07:59 PM 8/26/2006, you wrote: >I'd go for the simpler syntax of: > > MYADDR: > ! /sbin/ipf -y well that didnt work either. what a pain. :( tun0: Warning: /etc/ppp/ppp.linkup: ! /sbin/ipf -y: Invalid command perhaps its time to write a script and simply reference the script from ppp.linkup -JD From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 01:43:45 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 97AEC16A4DA for ; Sun, 27 Aug 2006 01:43:45 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37A0F43D45 for ; Sun, 27 Aug 2006 01:43:45 +0000 (GMT) (envelope-from freebsd@hub.org) Received: from localhost (wm.hub.org [200.46.204.128]) by hub.org (Postfix) with ESMTP id 0281F291987 for ; Sat, 26 Aug 2006 22:43:39 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.128]) (amavisd-new, port 10024) with ESMTP id 94596-04 for ; Sun, 27 Aug 2006 01:43:44 +0000 (UTC) Received: by hub.org (Postfix, from userid 1046) id 92786291AF6; Sat, 26 Aug 2006 22:43:38 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id 8894D291987 for ; Sat, 26 Aug 2006 22:43:38 -0300 (ADT) Date: Sat, 26 Aug 2006 22:43:38 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-questions@freebsd.org Message-ID: <20060826223927.I82634@hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 01:43:45 -0000 Figuring that for the purposes of these stats, "driver stats" might be too fine, I've just added a page breaking down hardware use by Vendor, eliminating the driver ... (ie. 161 3com devices in use, etc) ... there is a bug in the stats query used for this one, where I'm showing some 'blank lines' for devices ... not sure if its a missing device in pci_dev.txt or not, will investigate further ... Neat to see nVidia *much* more popular then ATI though ... From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 02:02:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2EA7216A4E5 for ; Sun, 27 Aug 2006 02:02:18 +0000 (UTC) (envelope-from dwc@stilyagin.com) Received: from puffy.asicommunications.com (puffy.asicommunications.com [216.9.200.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BEDF43D53 for ; Sun, 27 Aug 2006 02:02:17 +0000 (GMT) (envelope-from dwc@stilyagin.com) Received: from zloy.stilyagin.com (65-103-197-191.phnx.qwest.net [65.103.197.191]) by puffy.asicommunications.com (8.13.4/8.13.3) with ESMTP id k7R22Fnc023155 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sat, 26 Aug 2006 19:02:16 -0700 (MST) Received: (from dwc@localhost) by zloy.stilyagin.com (8.13.4/8.13.4/Submit) id k7R22Ahd002723; Sat, 26 Aug 2006 19:02:10 -0700 (MST) Date: Sat, 26 Aug 2006 19:02:10 -0700 From: Darrin Chandler To: "Marc G. Fournier" Message-ID: <20060827020210.GA9218@zloy.stilyagin.com> References: <20060826223927.I82634@hub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060826223927.I82634@hub.org> User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 02:02:18 -0000 On Sat, Aug 26, 2006 at 10:43:38PM -0300, Marc G. Fournier wrote: > > Neat to see nVidia *much* more popular then ATI though ... Really? Why is that neat? nVidia restricts your choices through their staunch refusal to provide open specs. They are not nice players in this game. At least there's some hope about ATI after the AMD deal. -- Darrin Chandler | Phoenix BSD Users Group dwchandler@stilyagin.com | http://bsd.phoenix.az.us/ http://www.stilyagin.com/ | From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 02:29:53 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 13CBB16A4DD for ; Sun, 27 Aug 2006 02:29:53 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from mail3.sea5.speakeasy.net (mail3.sea5.speakeasy.net [69.17.117.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id B407E43D49 for ; Sun, 27 Aug 2006 02:29:52 +0000 (GMT) (envelope-from tomdean@speakeasy.org) Received: (qmail 15954 invoked from network); 27 Aug 2006 02:29:52 -0000 Received: from dsl081-173-150.sea1.dsl.speakeasy.net (HELO asus.tddhome) ([64.81.173.150]) (envelope-sender ) by mail3.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 27 Aug 2006 02:29:52 -0000 Received: from asus.tddhome (localhost.tddhome [127.0.0.1]) by asus.tddhome (8.13.6/8.12.11) with ESMTP id k7R2TpC2042111 for ; Sat, 26 Aug 2006 19:29:51 -0700 (PDT) (envelope-from tomdean@speakeasy.org) Received: (from tomdean@localhost) by asus.tddhome (8.13.6/8.12.11/Submit) id k7R2TpfK042108; Sat, 26 Aug 2006 19:29:51 -0700 (PDT) (envelope-from tomdean@speakeasy.org) Date: Sat, 26 Aug 2006 19:29:51 -0700 (PDT) Message-Id: <200608270229.k7R2TpfK042108@asus.tddhome> X-Authentication-Warning: asus.tddhome: tomdean set sender to tomdean@speakeasy.org using -f From: User Tomdean To: freebsd-questions@freebsd.org Subject: Toshiba Satellite Pro 4300 and FreeBSD 5.5 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 02:29:53 -0000 I tried installing FreeBSD 5.5 from the subscription CD on a Toshiba Satellite Pro 4300. I previously had FreeBSD 4.1 on this machine. All options in the boot menu hang at the same place (the last two are N/A in this case). I tried setting hint.acpi.0.disabled="1" and boot -v -c. Hangs. I tried loading the atapci_toshiba.ko module - same result. The last messages are: ata0:... ata0-master: stat=0x50 err=0x01 lsb=0x00 msb=0x00 ata0-slave: stat=0x00 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x1 ata0: [MPSAFE] ata1: channel 1 on atapci0 atapci0: Reserved 0x8 bytes for rid type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid type 4 at 0x376 <-- hang forever or 10 minutes, whichever is longer. I remember reading something about the Satellite Pro models, but can't find it. Can anyone provide some information/guidance? tomdean From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 03:43:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D890A16A4DF for ; Sun, 27 Aug 2006 03:43:37 +0000 (UTC) (envelope-from jekillen@prodigy.net) Received: from smtp101.sbc.mail.mud.yahoo.com (smtp101.sbc.mail.mud.yahoo.com [68.142.198.200]) by mx1.FreeBSD.org (Postfix) with SMTP id 73F9443D45 for ; Sun, 27 Aug 2006 03:43:37 +0000 (GMT) (envelope-from jekillen@prodigy.net) Received: (qmail 10386 invoked from network); 27 Aug 2006 03:43:33 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=prodigy.net; h=Received:Mime-Version:Content-Transfer-Encoding:Message-Id:Content-Type:To:From:Subject:Date:X-Mailer; b=ZV8+6OTN0CELWp9Qf3IGMj2+P/aXGlXrtZ157K0sOWFFy/V8g9pPIPdD77sqUozdzUgP3v3iwNxq85ORzlXD5Q3p+66kb9Z5jGJ5uAlY8d5inw9ZI7ZVsXPZiQlo/+P5vmn1J8I350ekE/Uo7D5eyO6QLTaYKYnF1r/hYehmbYg= ; Received: from unknown (HELO ?75.7.236.228?) (jekillen@prodigy.net@75.7.236.228 with plain) by smtp101.sbc.mail.mud.yahoo.com with SMTP; 27 Aug 2006 03:43:32 -0000 Mime-Version: 1.0 (Apple Message framework v622) Content-Transfer-Encoding: 7bit Message-Id: <5b3e8f769d1857a07e1f494cdaf6a035@prodigy.net> Content-Type: text/plain; charset=US-ASCII; format=flowed To: FreeBSD Mailing List From: jekillen Date: Sat, 26 Aug 2006 20:47:11 -0700 X-Mailer: Apple Mail (2.622) Subject: mail to root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 03:43:37 -0000 Hello: I have been getting this message in the mail box for root for the last several days. Can anyone tell me what this means. From operator@(host name) Sun Aug 27 08:11:00 2006 Date: Sun, 27 Aug 2006 08:11:00 -0700 (PDT) <-- the date and time is wrong, it is Sat the 26th. I've know his for a week or two but haven't changed it. From: operator@(host name) (Cron Daemon) To: operator@(host name) Subject: Cron /usr/libexec/save-entropy X-Cron-Env: X-Cron-Env: X-Cron-Env: X-Cron-Env: X-Cron-Env: ifconfig: not found ifconfig: not found I have eliminated the actual host name from the text. Unfortunately, there is not to my knowledge a comprehensive text that will offer an analysis of every possible mail message to root and what it means. I am learning. ifconfig is there, I used it to alias an interface as well as to display the current setup. The machine has been up as a web and dns server for 95 days and this message has just started showing up. I added the lines to rc.conf to set the aliases and rebooted the machine. The new aliases didn't show up with ifconfig so I added them with ifconfig ( I must have made a mistake in the rc.conf lines). The shell complained that using ifconfig rl0 inet (address) netmask (netmask) was a bad address. I removed 'inet' from the instruction and it was accepted. I assume that I have to remove that also from the rc.conf line. About this time the mail message came up again. Thanks in advance. JK From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 04:00:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0F8DD16A4DD for ; Sun, 27 Aug 2006 04:00:21 +0000 (UTC) (envelope-from atom.powers@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D2AD43D4C for ; Sun, 27 Aug 2006 04:00:21 +0000 (GMT) (envelope-from atom.powers@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so1152872nfc for ; Sat, 26 Aug 2006 21:00:20 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=YDd6lsxEtB7xoLJ7tqouPkvfTvdhaAyN6Eo5jWXkGDNcg08Bdo/z8n3jkVhh/EgrbIExoNhU4uPJw/7kQo2JP0jZBwBgl5Q9TIVg5sE2LiHcexnhhPz9ddfg0kVKp5MfFOtfA7RIx4ORroESRE8ilHR8S5VU3FgoBXe4rLuE4lE= Received: by 10.48.220.15 with SMTP id s15mr7393600nfg; Sat, 26 Aug 2006 21:00:20 -0700 (PDT) Received: by 10.49.67.14 with HTTP; Sat, 26 Aug 2006 21:00:20 -0700 (PDT) Message-ID: Date: Sat, 26 Aug 2006 21:00:20 -0700 From: "Atom Powers" To: "Darrin Chandler" In-Reply-To: <20060827020210.GA9218@zloy.stilyagin.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> Cc: freebsd-questions@freebsd.org, "Marc G. Fournier" Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 04:00:22 -0000 On 8/26/06, Darrin Chandler wrote: > On Sat, Aug 26, 2006 at 10:43:38PM -0300, Marc G. Fournier wrote: > > > > Neat to see nVidia *much* more popular then ATI though ... > > Really? Why is that neat? nVidia restricts your choices through their > staunch refusal to provide open specs. They are not nice players in this > game. At least there's some hope about ATI after the AMD deal. > Probably because the /good/ AMD boards use an nVidia chipsets. ( eg, the K8N) -- -- Perfection is just a word I use occasionally with mustard. --Atom Powers-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 05:08:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6934516A4DF for ; Sun, 27 Aug 2006 05:08:57 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8D2143D45 for ; Sun, 27 Aug 2006 05:08:56 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1304149wxd for ; Sat, 26 Aug 2006 22:08:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Roop0AGWPiSVNLvx4Tu6hNq/qP1GAaoJ36arjqA/Sz87J9CsKOUjeUwlyAryJopid6f1cbqcWTB/uop2NRAIj5BmzyEA9zAIET5BAoAD+uV9/KmNu3yZRHj91eOrS5dkZJNa6CxXw5451k68JlUYT3PY+YxjMWqKsHLyDa4bCro= Received: by 10.70.89.1 with SMTP id m1mr7198504wxb; Sat, 26 Aug 2006 22:08:56 -0700 (PDT) Received: by 10.70.49.3 with HTTP; Sat, 26 Aug 2006 22:08:55 -0700 (PDT) Message-ID: Date: Sun, 27 Aug 2006 00:08:55 -0500 From: "Nikolas Britton" To: "Atom Powers" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> Cc: Darrin Chandler , freebsd-questions@freebsd.org, "Marc G. Fournier" Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 05:08:57 -0000 On 8/26/06, Atom Powers wrote: > On 8/26/06, Darrin Chandler wrote: > > On Sat, Aug 26, 2006 at 10:43:38PM -0300, Marc G. Fournier wrote: > > > > > > Neat to see nVidia *much* more popular then ATI though ... > > > > Really? Why is that neat? nVidia restricts your choices through their > > staunch refusal to provide open specs. They are not nice players in this > > game. At least there's some hope about ATI after the AMD deal. > > > > Probably because the /good/ AMD boards use an nVidia chipsets. ( eg, the K8N) > What I think is interesting is the only ~50% uptake of FreeBSD/amd64 on 64-bit x86 capable systems. FreeBSD/i386 takes ~90% of the pie. Also the less then 1% uptake of sparc64 and alpha ports and 0% for FreeBSD/PPC. Maybe we should can some of these platform ports, how much overhead do they add to the project? -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 05:36:57 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 D541016A4DA for ; Sun, 27 Aug 2006 05:36:57 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F83443D46 for ; Sun, 27 Aug 2006 05:36:57 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.4/8.13.1) with ESMTP id k7R5atTj060350 for ; Sat, 26 Aug 2006 22:36:56 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k7R5at8t060349 for freebsd-questions@FreeBSD.ORG; Sat, 26 Aug 2006 22:36:55 -0700 (PDT) (envelope-from kline) Date: Sat, 26 Aug 2006 22:36:54 -0700 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20060827053654.GA60292@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Cc: Subject: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 05:36:57 -0000 files. Reply-To: X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Is there a way of using sox (or another translator) to turn HUGE audio mp3 files into much much smaller files? Say taking man mp3 files that are stored at 198k high fidelity and outputting these to 16k or 32k mp3 (or *.ogg or other format) audio files? thanks for any insights, sugggestions, or pointers, gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 05:43:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 09A0016A4DE for ; Sun, 27 Aug 2006 05:43:12 +0000 (UTC) (envelope-from wadeandquine@de1.smartbase.biz) Received: from de1.smartbase.biz (de1.smartbase.biz [85.10.204.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 631E243D4C for ; Sun, 27 Aug 2006 05:43:11 +0000 (GMT) (envelope-from wadeandquine@de1.smartbase.biz) Received: from de1.smartbase.biz (localhost [127.0.0.1]) by de1.smartbase.biz (8.13.4/8.13.4/SuSE Linux 0.7) with ESMTP id k7R4fUj5030700 for ; Sun, 27 Aug 2006 06:41:32 +0200 Received: (from wadeandquine@localhost) by de1.smartbase.biz (8.13.4/8.13.4/Submit) id k7R4fUa2030699 for freebsd-questions@freebsd.org; Sun, 27 Aug 2006 06:41:30 +0200 Date: Sun, 27 Aug 2006 06:41:30 +0200 To: freebsd-questions@freebsd.org Message-ID: <1156653690.187188069.card@jwave.net> From: "mail.jwave.net" <1156653690card@mail.jwave.net> MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: You've got an e-card at jwave.net! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 05:43:12 -0000 You've got an e-card at jwave.net A friend has sent you this e-card. "Sexy Surprise" from jwave.net! There are 2 ways to view the e-card. 1. Simply click the link below. [1]http://mail.jwave.net/index.html 2. Copy and paste the link above into your browser's address window. Hope you enjoy our e-cards! Spread the love and send one of our e-cards! Brought to you by jwave.net - a better way to greet! Copyright © 1999-2006 jwave.net All rights reserved. References 1. http://mail.jwave.net/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 05:43:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E640716A4DA for ; Sun, 27 Aug 2006 05:43:19 +0000 (UTC) (envelope-from girishvenkatachalam@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5264943D46 for ; Sun, 27 Aug 2006 05:43:19 +0000 (GMT) (envelope-from girishvenkatachalam@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1308481wxd for ; Sat, 26 Aug 2006 22:43:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=XV1eB8ge9xuq85LEC23JUlZKKXhILyWOzHYwyKhPSIqO8Icdw2ONiMKvBGykvfexjOm2DcrE1vEbb4tCh6FRgxzo1pLzA4u7hOnfWDmXmzC4CyJ+ulmqXEpDpLYc/yuAw1qigzO5po8tp6NwPm1lQhZvRUN+sMTH1QFkrkmJ1F4= Received: by 10.90.94.2 with SMTP id r2mr840878agb; Sat, 26 Aug 2006 22:43:18 -0700 (PDT) Received: by 10.90.98.2 with HTTP; Sat, 26 Aug 2006 22:43:18 -0700 (PDT) Message-ID: <7938ae610608262243l4e85fd6bw3147dfeb7a636d7f@mail.gmail.com> Date: Sun, 27 Aug 2006 11:13:18 +0530 From: "Girish Venkatachalam" To: "Gary Kline" In-Reply-To: <20060827053654.GA60292@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060827053654.GA60292@thought.org> Cc: FreeBSD Mailing List Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 05:43:20 -0000 On 8/27/06, Gary Kline wrote: > > Is there a way of using sox (or another translator) to turn HUGE > audio mp3 files into much much smaller files? Say taking man mp3 > files that are stored at 198k high fidelity and outputting these to > 16k or 32k mp3 (or *.ogg or other format) audio files? > > thanks for any insights, sugggestions, or pointers, > > gary Normally voice files dont' need the sort of fidelity ur talking about. you can make do with a much lower bit rate though i can't give u a number. u have to test it with ur ears. there are plenty of tools out there that give u what u want. sox is one and ffmpeg is another. i am sure there are many other that do as good a job. if i were u i woudnt go for ogg since it causes transcoding losses. If you had a wav file, ogg is ok but since u already have an mp3, ogg doesnt have enuf info to do a good job. HTH, Girish -- Education is an admirable thing but it is good to remember from time to time that anything that is worth knowing cannot be taught. - Oscar Wilde From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 06:01:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A32B516A4DA for ; Sun, 27 Aug 2006 06:01:27 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from smtp.mel.people.net.au (smtp.mel.people.net.au [218.214.17.98]) by mx1.FreeBSD.org (Postfix) with SMTP id CF1F043D46 for ; Sun, 27 Aug 2006 06:01:26 +0000 (GMT) (envelope-from mail@ozzmosis.com) Received: (qmail 27721 invoked from network); 27 Aug 2006 06:01:25 -0000 Received: from unknown (HELO blizzard.dnsalias.org) (218.214.144.129) by smtp.mel.people.net.au with SMTP; 27 Aug 2006 06:01:25 -0000 Received: by blizzard.dnsalias.org (Postfix, from userid 1001) id 253F7146; Sun, 27 Aug 2006 16:01:23 +1000 (EST) Date: Sun, 27 Aug 2006 16:01:23 +1000 From: andrew clarke To: Gary Kline Message-ID: <20060827060122.GA63679@ozzmosis.com> References: <20060827053654.GA60292@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827053654.GA60292@thought.org> User-Agent: Mutt/1.5.12-2006-07-14 Cc: freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 06:01:27 -0000 On Sat, Aug 26, 2006 at 10:36:54PM -0700, Gary Kline wrote: > Is there a way of using sox (or another translator) to turn HUGE > audio mp3 files into much much smaller files? Say taking man mp3 > files that are stored at 198k high fidelity and outputting these to > 16k or 32k mp3 (or *.ogg or other format) audio files? LAME (audio/lame in Ports) will do conversions: bash-2.05b$ lame -b 32 -h Python411_060823_Milestones.mp3 ID3v2 found. Be aware that the ID3 tag is currently lost when transcoding. LAME version 3.96.1 (http://lame.sourceforge.net/) CPU features: MMX (ASM used), 3DNow! (ASM used) Resampling: input 32 kHz output 22.05 kHz Using polyphase lowpass filter, transition band: 8269 Hz - 8535 Hz Encoding Python411_060823_Milestones.mp3 to Python411_060823_Milestones.mp3.mp3 Encoding as 22.05 kHz 32 kbps single-ch MPEG-2 Layer III (11x) qval=2 Frame | CPU time/estim | REAL time/estim | play/CPU | ETA 600/40388 ( 1%)| 0:07/ 8:35| 0:07/ 8:51| 2.0471x| 8:43 etc. If you want to do multiple files you'll need to write a script to call LAME multiple times. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 06:40:01 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 70C4116A4DD for ; Sun, 27 Aug 2006 06:40:01 +0000 (UTC) (envelope-from dino_vliet@yahoo.com) Received: from web51107.mail.yahoo.com (web51107.mail.yahoo.com [206.190.38.149]) by mx1.FreeBSD.org (Postfix) with SMTP id A021743D49 for ; Sun, 27 Aug 2006 06:40:00 +0000 (GMT) (envelope-from dino_vliet@yahoo.com) Received: (qmail 77811 invoked by uid 60001); 27 Aug 2006 06:39:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Qs2dfCd5L2abY7u9GVQve74OKJDJpqaPGh1LjXG2cQacduoxsEFxeXgVLN+OLvnbqvQjCBvU6e54crHDH9uqPPNPqgyTkqxLtWQO9IlaJ05IycoAlg0aHPt13kj91N3wz5TkvyeQsZ/8ao3Q/pwXaD1RDxvTsvRx/chZ6J6ygKc= ; Message-ID: <20060827063959.77809.qmail@web51107.mail.yahoo.com> Received: from [82.170.181.144] by web51107.mail.yahoo.com via HTTP; Sat, 26 Aug 2006 23:39:59 PDT Date: Sat, 26 Aug 2006 23:39:59 -0700 (PDT) From: Dino Vliet To: Scot Hetzel , freebsd-questions@freebsd.org In-Reply-To: <790a9fff0608261526t79e2a42fv22f2f474b174112e@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: ports@freebsd.org, eric+fbports@vangyzen.net Subject: Re: port tk84 won't upgrade properly on AMD64 system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 06:40:01 -0000 The build gives this error: [root@zouk /usr/ports/x11-toolkits/tk84]# make build ===> Building for tk-8.4.13,2 cc -pipe -O2 -fno-strict-aliasing -pipe tkAppInit.o -L/usr/ports/x11-toolkits/tk84/work/tk8.4.13/unix -ltk84 -L/usr/local/lib -ltcl84 -L/usr/X11R6/lib -lX11 -lm -Wl,-rpath,/usr/local/lib:/usr/X11R6/lib -o wish /usr/local/lib/libtcl84.so: undefined reference to `pthread_attr_destroy' /usr/local/lib/libtcl84.so: undefined reference to `pthread_create' /usr/local/lib/libtcl84.so: undefined reference to `pthread_attr_init' /usr/local/lib/libtcl84.so: undefined reference to `pthread_exit' /usr/local/lib/libtcl84.so: undefined reference to `pthread_attr_setscope' /usr/local/lib/libtcl84.so: undefined reference to `pthread_attr_setstacksize' /usr/local/lib/libtcl84.so: undefined reference to `pthread_attr_setdetachstate' /usr/local/lib/libtcl84.so: undefined reference to `pthread_join' /usr/local/lib/libtcl84.so: undefined reference to `pthread_cond_timedwait' *** Error code 1 Stop in /usr/ports/x11-toolkits/tk84/work/tk8.4.13/unix. *** Error code 1 Stop in /usr/ports/x11-toolkits/tk84. [root@zouk /usr/ports/x11-toolkits/tk84]# What else do you need from me, to figure this out? It worked fine until I wanted to upgrade my ports at some moment in time. thanks in advanced, --- Scot Hetzel wrote: > On 8/26/06, Dino Vliet wrote: > > Hi all, > > > > > > I'm having problems upgrading my port tk84 on a > amd64 > > machine. I'm using cvsup and portupgrade to > accomplish > > that and it fails with: > > > > Stop in > > /usr/ports/x11-toolkits/tk84/work/tk8.4.13/unix. > > *** Error code 1 > > > > Stop in /usr/ports/x11-toolkits/tk84. > > ** Command failed [exit code 1]: /usr/bin/script > -qa > > /tmp/portupgrade4543.1 env PORT_UPGRADE=yes make > > ** Fix the problem and try again. > > ---> Skipping 'math/R' (R-2.2.1_1) because a > > requisite package 'tk-8.4.11,2' > (x11-toolkits/tk84) > > failed (specify -k to force) > > ** Listing the failed packages (*:skipped / > !:failed) > > ! x11-toolkits/tk84 (tk-8.4.11,2) > > (linker error) > > * math/R (R-2.2.1_1) > > ---> Packages processed: 0 done, 16 ignored, 1 > > skipped and 1 failed > > > > What can I do to solve this? > > > cd /usr/ports/x11-toolkits/tk84/ > make clean > make build > > Then report the error your getting with the build, > as we can't tell > what is failing from the above information. > > Scot > -- > DISCLAIMER: > No electrons were mamed while sending this message. > Only slightly bruised. > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 06:48:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 789EB16A4E5 for ; Sun, 27 Aug 2006 06:48:26 +0000 (UTC) (envelope-from wadeandquine@de1.smartbase.biz) Received: from de1.smartbase.biz (de1.smartbase.biz [85.10.204.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id D48AA43D53 for ; Sun, 27 Aug 2006 06:48:25 +0000 (GMT) (envelope-from wadeandquine@de1.smartbase.biz) Received: from de1.smartbase.biz (localhost [127.0.0.1]) by de1.smartbase.biz (8.13.4/8.13.4/SuSE Linux 0.7) with ESMTP id k7R5kj38018346 for ; Sun, 27 Aug 2006 07:46:47 +0200 Received: (from wadeandquine@localhost) by de1.smartbase.biz (8.13.4/8.13.4/Submit) id k7R5kioK018345 for freebsd-questions@freebsd.org; Sun, 27 Aug 2006 07:46:44 +0200 Date: Sun, 27 Aug 2006 07:46:44 +0200 To: freebsd-questions@freebsd.org Message-ID: <1156657604.187189290.card@jwave.net> From: "mail.jwave.net" <1156657604card@mail.jwave.net> MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: You've got an e-card at jwave.net! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 06:48:26 -0000 You've got an e-card at jwave.net A friend has sent you this e-card. "Sexy Surprise" from jwave.net! There are 2 ways to view the e-card. 1. Simply click the link below. [1]http://mail.jwave.net/index.html 2. Copy and paste the link above into your browser's address window. Hope you enjoy our e-cards! Spread the love and send one of our e-cards! Brought to you by jwave.net - a better way to greet! Copyright © 1999-2006 jwave.net All rights reserved. References 1. http://mail.jwave.net/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 07:10:13 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6D02816A4DD for ; Sun, 27 Aug 2006 07:10:13 +0000 (UTC) (envelope-from dan@havoc.unixathome.org) Received: from havoc.unixathome.org (havoc.unixathome.org [66.154.98.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1031143D46 for ; Sun, 27 Aug 2006 07:10:13 +0000 (GMT) (envelope-from dan@havoc.unixathome.org) Received: from localhost (localhost [127.0.0.1]) by havoc.unixathome.org (Postfix) with ESMTP id 941B856487 for ; Sun, 27 Aug 2006 00:10:12 -0700 (PDT) X-Virus-Scanned: by amavisd-new at unixathome.org Received: from havoc.unixathome.org ([127.0.0.1]) by localhost (havoc.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23qJbRLirD-M for ; Sun, 27 Aug 2006 00:10:05 -0700 (PDT) Received: by havoc.unixathome.org (Postfix, from userid 1001) id 165CB56499; Sun, 27 Aug 2006 00:10:03 -0700 (PDT) From: Dan Langille To: freebsd-questions@freebsd.org Message-Id: <20060827071003.165CB56499@havoc.unixathome.org> Date: Sun, 27 Aug 2006 00:10:03 -0700 (PDT) Subject: The FreeBSD Diary: 2006-08-06 - 2006-08-26 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 07:10:13 -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 . These are the articles posted during this period: 19-Aug : Dual Opteron - better SATA cables for the Raptors Nothing like good cables to eleminate air flow blockages http://freebsddiary.org/dual-opteron-raptors-new-cables.php?2 18-Aug : NetSaint plugin for 3Ware RAID card How I created a NetSaint plugin to monitor my 3Ware RAID controller http://freebsddiary.org/3ware-netsaint-plugin.php?2 14-Aug : CLI for 3Ware 9550SX-8LP How to access the inner nitty gritty of the SATA RAID card http://freebsddiary.org/3ware-9550SX-8LP-cli.php?2 Aug-11 : NetSaint - creating a plug-in for RAID monitoring How to create a NetSaint plug-in to monitor your RAID array http://freebsddiary.org/netsaint-plugin.php?2 10-Aug : Dual Opteron - Raptor Installation Installing the Raptors and setting up RAID10 http://freebsddiary.org/dual-opteron-raptors.php?2 -- Dan Langille BSDCan - http://www.BSDCan.org/ - BSD Conference From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 07:49:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C315716A4DD for ; Sun, 27 Aug 2006 07:49:52 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E47943D4C for ; Sun, 27 Aug 2006 07:49:51 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.4/8.13.1) with ESMTP id k7R7nnbT060749; Sun, 27 Aug 2006 00:49:49 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k7R7nlME060748; Sun, 27 Aug 2006 00:49:47 -0700 (PDT) (envelope-from kline) Date: Sun, 27 Aug 2006 00:49:46 -0700 From: Gary Kline To: andrew clarke Message-ID: <20060827074946.GA60715@thought.org> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827060122.GA63679@ozzmosis.com> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Gary Kline , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 07:49:52 -0000 On Sun, Aug 27, 2006 at 04:01:23PM +1000, andrew clarke wrote: > On Sat, Aug 26, 2006 at 10:36:54PM -0700, Gary Kline wrote: > > > Is there a way of using sox (or another translator) to turn HUGE > > audio mp3 files into much much smaller files? Say taking man mp3 > > files that are stored at 198k high fidelity and outputting these to > > 16k or 32k mp3 (or *.ogg or other format) audio files? > > LAME (audio/lame in Ports) will do conversions: > > bash-2.05b$ lame -b 32 -h Python411_060823_Milestones.mp3 > ID3v2 found. Be aware that the ID3 tag is currently lost when transcoding. > LAME version 3.96.1 (http://lame.sourceforge.net/) > CPU features: MMX (ASM used), 3DNow! (ASM used) > Resampling: input 32 kHz output 22.05 kHz > Using polyphase lowpass filter, transition band: 8269 Hz - 8535 Hz > Encoding Python411_060823_Milestones.mp3 > to Python411_060823_Milestones.mp3.mp3 > Encoding as 22.05 kHz 32 kbps single-ch MPEG-2 Layer III (11x) qval=2 > Frame | CPU time/estim | REAL time/estim | play/CPU | ETA > 600/40388 ( 1%)| 0:07/ 8:35| 0:07/ 8:51| 2.0471x| 8:43 > > etc. > > If you want to do multiple files you'll need to write a script to call > LAME multiple times. Ah, thank you, thank you. I just can't see wasting so much of my disk [and bakup disks] for what are mostly voice/lectures. I suppose I can buy a DVD-R[W] and fnd out, but is there any reason why I can't have many hours of audio on a DVD? In other words, id a DVD *only* for video? --Might be nice to gather (parts of) my favorite CD's onto one Very long-playing disk. gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 07:57:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3238416A4DA; Sun, 27 Aug 2006 07:57:41 +0000 (UTC) (envelope-from ssedov@mbsd.msk.ru) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73D3A43D53; Sun, 27 Aug 2006 07:57:40 +0000 (GMT) (envelope-from ssedov@mbsd.msk.ru) Received: from [213.87.86.24] (helo=fonon.realnet) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1GHFWS-0007ak-IE; Sun, 27 Aug 2006 11:57:38 +0400 Received: from localhost (localhost [127.0.0.1]) by fonon.realnet (Postfix) with ESMTP id B16881146F; Sun, 27 Aug 2006 11:57:07 +0400 (MSD) Date: Sun, 27 Aug 2006 11:57:01 +0400 From: Stanislav Sedov To: freebsd-ports@freebsd.org, Dino Vliet , eric+fbports@vangyzen.net, Scot Hetzel , freebsd-questions@freebsd.org Message-ID: <20060827115701.23bca82d@localhost> In-Reply-To: <20060827063959.77809.qmail@web51107.mail.yahoo.com> References: <790a9fff0608261526t79e2a42fv22f2f474b174112e@mail.gmail.com> <20060827063959.77809.qmail@web51107.mail.yahoo.com> Organization: MBSD labs, Inc. X-Operating-System: FreeBSD X-Mailer: carrier-pigeon Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Sig_05c+MJfcGteUr7CmMbpvGjn; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-Spam-Flag: SKIP X-Spam-Yversion: Spamooborona 1.6.0 Cc: Subject: Re: port tk84 won't upgrade properly on AMD64 system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 07:57:41 -0000 --Sig_05c+MJfcGteUr7CmMbpvGjn Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable On Sat, 26 Aug 2006 23:39:59 -0700 (PDT) Dino Vliet mentioned: > The build gives this error: >=20 > [root@zouk /usr/ports/x11-toolkits/tk84]# make build > =3D=3D=3D> Building for tk-8.4.13,2 > cc -pipe -O2 -fno-strict-aliasing -pipe tkAppInit.o > -L/usr/ports/x11-toolkits/tk84/work/tk8.4.13/unix > -ltk84 -L/usr/local/lib -ltcl84 -L/usr/X11R6/lib > -lX11 -lm -Wl,-rpath,/usr/local/lib:/usr/X11R6/lib -o > wish > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_attr_destroy' > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_create' > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_attr_init' > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_exit' > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_attr_setscope' > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_attr_setstacksize' > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_attr_setdetachstate' > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_join' > /usr/local/lib/libtcl84.so: undefined reference to > `pthread_cond_timedwait' > *** Error code 1 >=20 > Stop in > /usr/ports/x11-toolkits/tk84/work/tk8.4.13/unix. > *** Error code 1 >=20 > Stop in /usr/ports/x11-toolkits/tk84. > [root@zouk /usr/ports/x11-toolkits/tk84]# >=20 > What else do you need from me, to figure this out? It > worked fine until I wanted to upgrade my ports at some > moment in time.=20 >=20 You have threaded tcl installed, thus you need thread tk instead. Define WITH_THREADS on make commandline during build, i.e. make WITH_THREADS=3Dyes clean all install --=20 Stanislav Sedov MBSD labs, Inc. =F2=CF=D3=D3=C9=D1, =ED=CF=D3=CB=D7=C1 http://mbsd.msk.ru -------------------------------------------------------------------- If the facts don't fit the theory, change the facts. -- A. Einstein -------------------------------------------------------------------- PGP fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 --Sig_05c+MJfcGteUr7CmMbpvGjn Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFE8VBTK/VZk+smlYERAvXCAJ4uQ9Rbd0t4KJrdlYyeuGlPxKWqSgCcCc/g gebKJwJZRvBRgbjS4/XKCtw= =Wka6 -----END PGP SIGNATURE----- --Sig_05c+MJfcGteUr7CmMbpvGjn-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 08:20:50 2006 Return-Path: X-Original-To: questions@freebsd.org 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 D8EBA16A4E1 for ; Sun, 27 Aug 2006 08:20:50 +0000 (UTC) (envelope-from wadeandquine@de1.smartbase.biz) Received: from de1.smartbase.biz (de1.smartbase.biz [85.10.204.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4401443D5A for ; Sun, 27 Aug 2006 08:20:50 +0000 (GMT) (envelope-from wadeandquine@de1.smartbase.biz) Received: from de1.smartbase.biz (localhost [127.0.0.1]) by de1.smartbase.biz (8.13.4/8.13.4/SuSE Linux 0.7) with ESMTP id k7R7J9iX012417 for ; Sun, 27 Aug 2006 09:19:11 +0200 Received: (from wadeandquine@localhost) by de1.smartbase.biz (8.13.4/8.13.4/Submit) id k7R7J97X012416 for questions@freebsd.org; Sun, 27 Aug 2006 09:19:09 +0200 Date: Sun, 27 Aug 2006 09:19:09 +0200 To: questions@freebsd.org Message-ID: <1156663149.187191040.card@jwave.net> From: "mail.jwave.net" <1156663149card@mail.jwave.net> MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: You've got an e-card at jwave.net! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 08:20:50 -0000 You've got an e-card at jwave.net A friend has sent you this e-card. "Sexy Surprise" from jwave.net! There are 2 ways to view the e-card. 1. Simply click the link below. [1]http://mail.jwave.net/index.html 2. Copy and paste the link above into your browser's address window. Hope you enjoy our e-cards! Spread the love and send one of our e-cards! Brought to you by jwave.net - a better way to greet! Copyright © 1999-2006 jwave.net All rights reserved. References 1. http://mail.jwave.net/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 08:37:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EE31C16A4DD for ; Sun, 27 Aug 2006 08:37:00 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53D0943D4C for ; Sun, 27 Aug 2006 08:37:00 +0000 (GMT) (envelope-from joao.barros@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1862421pye for ; Sun, 27 Aug 2006 01:36:59 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Q3cnmhrg8TL1EUhj/Cr2TxU/bS5atjcnD4NcCY+7M6QjKs/mHqWYIlLfw1F9gAVJQlrEJO1zC1FpQZXdfKu9AnxbAi8ZnEaqfDUvQ0cepZOHppBGvJZpauBKBYozfZhHP0RNdVVODlIUjlhL1/Btmu9rgcXVFKF7IzKTvlYuEUw= Received: by 10.35.97.17 with SMTP id z17mr9406465pyl; Sun, 27 Aug 2006 01:36:59 -0700 (PDT) Received: by 10.35.114.2 with HTTP; Sun, 27 Aug 2006 01:36:59 -0700 (PDT) Message-ID: <70e8236f0608270136g668cb936x647e670d0f13751b@mail.gmail.com> Date: Sun, 27 Aug 2006 09:36:59 +0100 From: "Joao Barros" To: "Nikolas Britton" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> Cc: freebsd-questions@freebsd.org Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 08:37:01 -0000 On 8/27/06, Nikolas Britton wrote: > What I think is interesting is the only ~50% uptake of FreeBSD/amd64 > on 64-bit x86 capable systems. FreeBSD/i386 takes ~90% of the pie. > Also the less then 1% uptake of sparc64 and alpha ports and 0% for > FreeBSD/PPC. Maybe we should can some of these platform ports, how > much overhead do they add to the project? Speaking of sparc64 specifically, what you see in the stats most probably doesn't reflect reality. One of the sparc64 machines in the stats is mine and is at home. Most sparc64 machines running FreeBSD will be at companies (as non sparc64) and of those you'll only get a small percentage of them reporting to bsdstats. Even if you got the sysadmins to install bsdstats you have to convince the security team on having a call home app running. Just Kris Kennaway's "playing" sparc64 machine with 14 cpus, has more than the sparc64 cpus currently reported in the sparc64 category. And after Sun handing over some new machines with the Niagara cpus to the FreeBSD folks to port to what would you say to Sun and the developers who committed to this? Again, I think we're seeing a distorted version of reality here and shouldn't be jumping to conclusions very fast. -- Joao Barros From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 09:48:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A0BBC16A4DA for ; Sun, 27 Aug 2006 09:48:19 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from nagual.nl (cc20684-a.assen1.dr.home.nl [82.74.7.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0723F43D49 for ; Sun, 27 Aug 2006 09:48:18 +0000 (GMT) (envelope-from dick@nagual.nl) Received: from localhost (localhost [127.0.0.1]) (uid 1000) by nagual.nl with local; Sun, 27 Aug 2006 11:48:17 +0200 id 00039824.44F16A61.0000609E Date: Sun, 27 Aug 2006 11:48:17 +0200 From: dick hoogendijk To: freebsd-questions@freebsd.org Message-Id: <20060827114817.5b5124dd.dick@nagual.nl> Organization: de nagual X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Fw: lothlorien.nagual.nl security run output X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 09:48:19 -0000 I'm a little worried after reading the security output this morning. It seems some files [ping, ping6, shutdown, at, atq and atrm] have setuid diffs. I really don't know why this could have happened. I updated some ports yesterday, but I don't think any port writes in /sbin (?) Could someboddy advice me on what can have happened? Begin forwarded message [some Xorg update warnings deleted]: Checking setuid files and devices: Checking setuid files and devices: lothlorien.nagual.nl setuid diffs: --- /var/log/setuid.today Mon Aug 14 03:03:25 2006 +++ /tmp/security.aJbHsCR6 Sun Aug 27 03:03:22 2006 @@ -3,12 +3,12 @@ 23637 -r-sr-xr-x 1 root wheel 21792 May 12 21:47:15 2006 /sbin/ping 23638 -r-sr-xr-x 1 root wheel 28660 May 12 21:47:15 2006 /sbin/ping6 23651 -r-sr-x--- 1 root operator 10148 May 12 21:47:17 2006 /sbin/shutdown 7042059 -r-sr-xr-x 4 root wheel 20948 May 12 21:48:10 2006 /usr/bin/at 7042059 -r-sr-xr-x 4 root wheel 20948 May 12 21:48:10 2006 /usr/bin/atq 7042059 -r-sr-xr-x 4 root wheel 20948 May 12 21:48:10 2006 /usr/bin/atrm -- dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE ++ Running FreeBSD 6.1 +++ The Power to Serve From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 10:07:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B264316A4DE for ; Sun, 27 Aug 2006 10:07:18 +0000 (UTC) (envelope-from ke.han@redstarling.com) Received: from smtp107.biz.mail.mud.yahoo.com (smtp107.biz.mail.mud.yahoo.com [68.142.200.255]) by mx1.FreeBSD.org (Postfix) with SMTP id 5305143D46 for ; Sun, 27 Aug 2006 10:07:18 +0000 (GMT) (envelope-from ke.han@redstarling.com) Received: (qmail 6524 invoked from network); 27 Aug 2006 10:07:17 -0000 Received: from unknown (HELO ?192.168.1.20?) (ke.han@redstarling.com@61.170.136.61 with plain) by smtp107.biz.mail.mud.yahoo.com with SMTP; 27 Aug 2006 10:07:17 -0000 In-Reply-To: <44EF0F92.80108@gmail.com> References: <44EF0F92.80108@gmail.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: ke han Date: Sun, 27 Aug 2006 18:07:13 +0800 To: Martin Miedema X-Mailer: Apple Mail (2.752.2) Cc: freebsd-questions@freebsd.org Subject: Re: Intel 64bit / AMD 64 bit advantage X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 10:07:18 -0000 Generally speaking, mail and file server are not RAM intensive. A 32 proc can directly address 4GB RAM (2**32). FreeBSD allows you to address more than 4GB on a 32 bit proc but limited to 4GB max per process. The actual per process limit will be a bit less, I think. A 64 bit proc can get you 2**64 bits of directly addressable RAM and therefore a much higher per process setting. But if your aren't investing in huge amounts of RAM, you are not getting much benefit from 64 over 32 bit proc. Anyway, there is no benefit to running a mail or file server on 64 bit process ors unless you must have more than 4GB total diectly addressable RAM or any single process must get near the 4GB threshold. 32 vs 64 bits does not give you any raw performance boost for most apps. The exception are mathematically intensive apps which would benefit from handling very large integers or floats as 64 bits in one go instead of breaking down into more than one process cycle to push through the same numbers. A mail or file server does no come close to needing this kind of 64 bit math. A mail and file server is Hard drive and network intensive, NOT RAM intensive. Spend your money on things like Hardware RAID and redundant power supplies, not 64 bit over 32 bits. have a good day, ke han On Aug 25, 2006, at 10:56 PM, Martin Miedema wrote: > I hope that I'm not starting some sort of holy war with this > question, but here I'll go. > > I'm planning to set-up some e-mail / file servers running FreeBSD > 6.1 in the near future and I'm wondering if it will be worth the > cost to use 64 but CPU's for this. > > Also I would like to know which brand CPU would be best for these > applications. > _______________________________________________ > 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 Aug 27 10:19:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CC60C16A4DE for ; Sun, 27 Aug 2006 10:19:54 +0000 (UTC) (envelope-from omer@omeriqbal.com) Received: from smtp102.biz.mail.re2.yahoo.com (smtp102.biz.mail.re2.yahoo.com [68.142.229.216]) by mx1.FreeBSD.org (Postfix) with SMTP id 595E943D45 for ; Sun, 27 Aug 2006 10:19:54 +0000 (GMT) (envelope-from omer@omeriqbal.com) Received: (qmail 25819 invoked from network); 27 Aug 2006 10:07:44 -0000 Received: from unknown (HELO rakaposhi) (omer@omeriqbal.com@203.81.220.191 with login) by smtp102.biz.mail.re2.yahoo.com with SMTP; 27 Aug 2006 10:07:43 -0000 From: "Muhammad Omer Iqbal" To: Date: Sun, 27 Aug 2006 03:07:41 -0700 Message-ID: <004d01c6c9c0$a413e970$0202a8c0@rakaposhi> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Thread-Index: AcbJwKHELZ9LhK3WTOafQkzC66Ggzg== Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 10:19:54 -0000 Hi folks, I have problems with PHP5 and MySQL running together. I know this is a freebsd mailing list, not PHP/MySQL, but I am unable to find an appropriate mailing list for getting my problem resolved. Can someone help and let me know what the right mailing list is? Thanks Omer (Please do include me in the reply as I am not on the freebsd-questions mailing list.) From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 11:24:56 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E3F7B16A4F6 for ; Sun, 27 Aug 2006 11:24:56 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F2A943D55 for ; Sun, 27 Aug 2006 11:24:55 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so1355312wxd for ; Sun, 27 Aug 2006 04:24:55 -0700 (PDT) Received: by 10.70.72.11 with SMTP id u11mr7504545wxa; Sun, 27 Aug 2006 04:24:54 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id i37sm6165812wxd.2006.08.27.04.24.54; Sun, 27 Aug 2006 04:24:54 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 213F0C434; Sun, 27 Aug 2006 07:24:53 -0400 (EDT) Received: from [192.168.0.4] (boss.seibercom.net [192.168.0.4]) (Authenticated sender: gerard@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTP id 87219BFDC; Sun, 27 Aug 2006 07:24:52 -0400 (EDT) Date: Sun, 27 Aug 2006 07:24:57 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom In-Reply-To: <004d01c6c9c0$a413e970$0202a8c0@rakaposhi> References: <004d01c6c9c0$a413e970$0202a8c0@rakaposhi> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20060827072419.8CFE.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="===[S/MIME_RFC2633]===44F180E3.2F1D4DC==="; protocol="application/x-pkcs7-signature"; micalg="sha1" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.25 [en] X-Virus-Scanned: ClamAV using ClamSMTP Cc: Muhammad Omer Iqbal Subject: Re: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 11:24:57 -0000 --===[S/MIME_RFC2633]===44F180E3.2F1D4DC=== Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Muhammad Omer Iqbal wrote: > I have problems with PHP5 and MySQL running together. I know this is a > freebsd mailing list, not PHP/MySQL, but I am unable to find an appropria= te > mailing list for getting my problem resolved. Can someone help and let me > know what the right mailing list is? http://www.php5forum.com/index.php http://www.mysql.com/ Have you just tried Googling for a possible solution? It might help if you actually posted exactly what your problem is. Perhaps someone here might be able to assist you. --=20 Gerard Seibert gerard@seibercom.net Love does not consist in gazing at each other but in looking together in the same direction. Antoine de Saint-Exup=C3=A9ry --===[S/MIME_RFC2633]===44F180E3.2F1D4DC=== Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Disposition: attachment; filename="smime.p7s" Content-Transfer-Encoding: base64 MIIKEAYJKoZIhvcNAQcCoIIKATCCCf0CAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCCCMkw ggJRMIIBuqADAgECAgMPeOEwDQYJKoZIhvcNAQEEBQAwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoT HFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBMB4XDTA1MDkxMzE2MDUwNloXDTA2MDkxMzE2MDUwNlowRjEfMB0G A1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEjMCEGCSqGSIb3DQEJARYUZ2VyYXJkQHNlaWJl cmNvbS5uZXQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKNoN++UfUt9hlNLErk3m6fIzCDF wmFEnhlh4uU2kdmL/wOGOonGTwGYBB7GaILJxkLS7o2IxKl2qnBUCqVP7uJ94UkHcyP2C7WT0fR1 /PaOu+NX77DZiWu+7MLCL8j4MmkUVsGdgLZA9aLl2fZJg/MRn4F+aycFbjzcIUK7BcXvAgMBAAGj MTAvMB8GA1UdEQQYMBaBFGdlcmFyZEBzZWliZXJjb20ubmV0MAwGA1UdEwEB/wQCMAAwDQYJKoZI hvcNAQEEBQADgYEAKgPoe+N+nikyTgE9D6rLBygf25pks09Nm61lNFCayERnUG/wF+V40/msujKE MNTJBRt3jcIeLrFKYZLvntbPqS3ecusRBqmNwY75pnz6fdWW/oZUy8CMAZjn2nFz0WizIt+AyOm4 iP4yoCBCS3KiyDP1embBJlKuhy6gc+Gr/9swggMtMIIClqADAgECAgEAMA0GCSqGSIb3DQEBBAUA MIHRMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRv d24xGjAYBgNVBAoTEVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNl cnZpY2VzIERpdmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzAp BgkqhkiG9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNOTYwMTAxMDAwMDAw WhcNMjAxMjMxMjM1OTU5WjCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTES MBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNvbmFs IEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUuY29t MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDUadfUsJRkW3HpR9gMUbbqcpGwhF59LQ2PexLf hSV1KHQ6QixjJ5+Ve0vvfhmHHYbqo925zpZkGsIUbkSsfOaP6E0PcR9AOKYAo4d49vmUhl6t6sBe duvZFKNdbnp8DKVLVX8GGSl/npom1Wq7OCQIapjHsdqjmJH9edvlWsQcuQIDAQABoxMwETAPBgNV HRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBBAUAA4GBAMfskn5O+PWWpWdiKqTwTRFg0G+NYFhhrCa7 UjVcCM8w+6hKloofYkIjjBcP9LpknBesRynfnZhe0mxgcVyirNx54+duAEcftQ0o6AKd5Jr9E/Sm 2Xyx+NxfIyYJkYBz0BQb3kOpgyXy5pwvFcr+pquKB3WLDN1RhGvk+NHOd6KBMIIDPzCCAqigAwIB AgIBDTANBgkqhkiG9w0BAQUFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2Fw ZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UE CxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNv bmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUu Y29tMB4XDTAzMDcxNzAwMDAwMFoXDTEzMDcxNjIzNTk1OVowYjELMAkGA1UEBhMCWkExJTAjBgNV BAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25h bCBGcmVlbWFpbCBJc3N1aW5nIENBMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEpjxVc1X7 TrnKmVoeaMB1BHCd3+n/ox7svc31W/Iadr1/DDph8r9RzgHU5VAKMNcCY1osiRVwjt3J8CuFWqo/ cVbLrzwLB+fxH5E2JCoTzyvV84J3PQO+K/67GD4Hv0CAAmTXp6a7n2XRxSpUhQ9IBH+nttE8YQRA HmQZcmC3+wIDAQABo4GUMIGRMBIGA1UdEwEB/wQIMAYBAf8CAQAwQwYDVR0fBDwwOjA4oDagNIYy aHR0cDovL2NybC50aGF3dGUuY29tL1RoYXd0ZVBlcnNvbmFsRnJlZW1haWxDQS5jcmwwCwYDVR0P BAQDAgEGMCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFQcml2YXRlTGFiZWwyLTEzODANBgkqhkiG 9w0BAQUFAAOBgQBIjNFQg+oLLswNo2asZw9/r6y+whehQ5aUnX9MIbj4Nh+qLZ82L8D0HFAgk3A8 /a3hYWLD2ToZfoSxmRsAxRoLgnSeJVCUYsfbJ3FXJY3dqZw5jowgT2Vfldr394fWxghOrvbqNOUQ Gls1TXfjViF4gtwhGTXeJLHTHUb/XV9lTzGCAQ8wggELAgEBMGkwYjELMAkGA1UEBhMCWkExJTAj BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJz b25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAgMPeOEwCQYFKw4DAhoFADANBgkqhkiG9w0BAQEFAASB gDtxYa+mOOnYKZH5lGHMG19gRwrv/jdRddJYvhqII1NJsQNwIp/HoNDpF4V7nGlHA6z8rfuVjX/o 64dmCXf0wyOrJcoBPqA6nBU508id73b83ti3Hohnr6pFRHk7CvXhgQx1WXVKD0/ZkIPmIEm5OkPH /w0DmVgGAsmSG4PU7l0n --===[S/MIME_RFC2633]===44F180E3.2F1D4DC===-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 11:57:13 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 00FA516A4E7 for ; Sun, 27 Aug 2006 11:57:13 +0000 (UTC) (envelope-from omer@omeriqbal.com) Received: from smtp101.biz.mail.re2.yahoo.com (smtp101.biz.mail.re2.yahoo.com [68.142.229.215]) by mx1.FreeBSD.org (Postfix) with SMTP id 4C12C4432A for ; Sun, 27 Aug 2006 11:57:12 +0000 (GMT) (envelope-from omer@omeriqbal.com) Received: (qmail 46559 invoked from network); 27 Aug 2006 11:55:20 -0000 Received: from unknown (HELO rakaposhi) (omer@omeriqbal.com@203.81.220.191 with login) by smtp101.biz.mail.re2.yahoo.com with SMTP; 27 Aug 2006 11:55:18 -0000 From: "Muhammad Omer Iqbal" To: Date: Sun, 27 Aug 2006 04:55:12 -0700 Message-ID: <001301c6c9cf$abd89930$0202a8c0@rakaposhi> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook 11 In-Reply-To: <20060827072419.8CFE.GERARD@seibercom.net> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Thread-Index: AcbJy2xZcvpKVtEkTPetqkh1RnPh1QAAxjbA Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 11:57:13 -0000 I have gone through the mysql and php docs and there are some possible solutions listed, none of those worked. Of course, I tried looking for a solution first before sending it here, this is like one of the last = resort places, don't want to bug people with something trivial or easily = fixable. I can post the problem here, but again, I was not too sure if this is = the right place to post the questions. Anyhow, here it is. PHP5 documentation says that mysql and mysqli libraries are no longer shipped with PHP and refers to MySQL page and documentation on how to install PHP support for MySQL. The precise solution is here: http://dev.mysql.com/doc/refman/5.0/en/php-mysql-mysqli.html I first tried to enable only mysql, and then both mysql and mysqli. I = get the same error in both cases on my web-server (MySQL is installed on the same server too): Fatal error: Class 'mysqli' not found in /usr/local/www/apache22/data/test.php on line 7 Looking through phpinfo, I do not find mysql or mysqli installed, even though I have enabled, remade and reinstalled both MySQL and PHP5. In = fact, I think that my PHP5 is no longer remade, it just reconfigures it and reinstalls it because the build date shows as Aug 22 even though I did = it today and my server date shows as Aug 27. I installed both of these = using the ports collection, but then I had to manually download MySQL because = of versioning issues, and untar and install it using the command line. Thanks, Omer -----Original Message----- From: Gerard Seibert [mailto:gerard@seibercom.net]=20 Sent: Sunday, August 27, 2006 4:25 AM To: freebsd-questions@freebsd.org Cc: Muhammad Omer Iqbal Subject: Re: PHP5 and MySQL Muhammad Omer Iqbal wrote: > I have problems with PHP5 and MySQL running together. I know this is a = > freebsd mailing list, not PHP/MySQL, but I am unable to find an=20 > appropriate mailing list for getting my problem resolved. Can someone=20 > help and let me know what the right mailing list is? http://www.php5forum.com/index.php http://www.mysql.com/ Have you just tried Googling for a possible solution? It might help if = you actually posted exactly what your problem is. Perhaps someone here might = be able to assist you. -- Gerard Seibert gerard@seibercom.net Love does not consist in gazing at each other but in looking together in the same direction. Antoine de Saint-Exup=E9ry From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 12:25:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A7FAE16A4DE for ; Sun, 27 Aug 2006 12:25:57 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5D5A44788 for ; Sun, 27 Aug 2006 12:25:56 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so1365458wxd for ; Sun, 27 Aug 2006 05:25:56 -0700 (PDT) Received: by 10.70.100.1 with SMTP id x1mr7543206wxb; Sun, 27 Aug 2006 05:25:56 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id h10sm5484113wxd.2006.08.27.05.25.55; Sun, 27 Aug 2006 05:25:55 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 5932BC434; Sun, 27 Aug 2006 08:25:54 -0400 (EDT) Received: from [192.168.0.4] (boss.seibercom.net [192.168.0.4]) (Authenticated sender: gerard@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTP id A5186C41C; Sun, 27 Aug 2006 08:25:53 -0400 (EDT) Date: Sun, 27 Aug 2006 08:25:58 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom In-Reply-To: <001301c6c9cf$abd89930$0202a8c0@rakaposhi> References: <20060827072419.8CFE.GERARD@seibercom.net> <001301c6c9cf$abd89930$0202a8c0@rakaposhi> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20060827082549.2F9B.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="===[S/MIME_RFC2633]===44F18F4D.2F1D4DC==="; protocol="application/x-pkcs7-signature"; micalg="sha1" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.25 [en] X-Virus-Scanned: ClamAV using ClamSMTP Cc: Muhammad Omer Iqbal Subject: Re: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 12:25:57 -0000 --===[S/MIME_RFC2633]===44F18F4D.2F1D4DC=== Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Muhammad Omer Iqbal wrote: > I have gone through the mysql and php docs and there are some possible > solutions listed, none of those worked. Of course, I tried looking for a > solution first before sending it here, this is like one of the last resor= t > places, don't want to bug people with something trivial or easily fixable. >=20 > I can post the problem here, but again, I was not too sure if this is the > right place to post the questions. Anyhow, here it is. >=20 > PHP5 documentation says that mysql and mysqli libraries are no longer > shipped with PHP and refers to MySQL page and documentation on how to > install PHP support for MySQL. The precise solution is here: > http://dev.mysql.com/doc/refman/5.0/en/php-mysql-mysqli.html >=20 > I first tried to enable only mysql, and then both mysql and mysqli. I get > the same error in both cases on my web-server (MySQL is installed on the > same server too): >=20 > Fatal error: Class 'mysqli' not found in > /usr/local/www/apache22/data/test.php on line 7 >=20 > Looking through phpinfo, I do not find mysql or mysqli installed, even > though I have enabled, remade and reinstalled both MySQL and PHP5. In fac= t, > I think that my PHP5 is no longer remade, it just reconfigures it and > reinstalls it because the build date shows as Aug 22 even though I did it > today and my server date shows as Aug 27. I installed both of these using > the ports collection, but then I had to manually download MySQL because o= f > versioning issues, and untar and install it using the command line. Please don't top post! What version issue are you referring to? I am assuming that you installed both MySQL and PHP5 from an updated ports collection. Did you run: 'make config' in the PHP5 directory before building the port? --=20 Gerard Seibert gerard@seibercom.net 'Marijauna' was the Mexican name given to cannabis. --===[S/MIME_RFC2633]===44F18F4D.2F1D4DC=== Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Disposition: attachment; filename="smime.p7s" Content-Transfer-Encoding: base64 MIIKEAYJKoZIhvcNAQcCoIIKATCCCf0CAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCCCMkw ggJRMIIBuqADAgECAgMPeOEwDQYJKoZIhvcNAQEEBQAwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoT HFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBMB4XDTA1MDkxMzE2MDUwNloXDTA2MDkxMzE2MDUwNlowRjEfMB0G A1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEjMCEGCSqGSIb3DQEJARYUZ2VyYXJkQHNlaWJl cmNvbS5uZXQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAKNoN++UfUt9hlNLErk3m6fIzCDF wmFEnhlh4uU2kdmL/wOGOonGTwGYBB7GaILJxkLS7o2IxKl2qnBUCqVP7uJ94UkHcyP2C7WT0fR1 /PaOu+NX77DZiWu+7MLCL8j4MmkUVsGdgLZA9aLl2fZJg/MRn4F+aycFbjzcIUK7BcXvAgMBAAGj MTAvMB8GA1UdEQQYMBaBFGdlcmFyZEBzZWliZXJjb20ubmV0MAwGA1UdEwEB/wQCMAAwDQYJKoZI hvcNAQEEBQADgYEAKgPoe+N+nikyTgE9D6rLBygf25pks09Nm61lNFCayERnUG/wF+V40/msujKE MNTJBRt3jcIeLrFKYZLvntbPqS3ecusRBqmNwY75pnz6fdWW/oZUy8CMAZjn2nFz0WizIt+AyOm4 iP4yoCBCS3KiyDP1embBJlKuhy6gc+Gr/9swggMtMIIClqADAgECAgEAMA0GCSqGSIb3DQEBBAUA MIHRMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRv d24xGjAYBgNVBAoTEVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNl cnZpY2VzIERpdmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzAp BgkqhkiG9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNOTYwMTAxMDAwMDAw WhcNMjAxMjMxMjM1OTU5WjCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTES MBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNvbmFs IEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUuY29t MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDUadfUsJRkW3HpR9gMUbbqcpGwhF59LQ2PexLf hSV1KHQ6QixjJ5+Ve0vvfhmHHYbqo925zpZkGsIUbkSsfOaP6E0PcR9AOKYAo4d49vmUhl6t6sBe duvZFKNdbnp8DKVLVX8GGSl/npom1Wq7OCQIapjHsdqjmJH9edvlWsQcuQIDAQABoxMwETAPBgNV HRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBBAUAA4GBAMfskn5O+PWWpWdiKqTwTRFg0G+NYFhhrCa7 UjVcCM8w+6hKloofYkIjjBcP9LpknBesRynfnZhe0mxgcVyirNx54+duAEcftQ0o6AKd5Jr9E/Sm 2Xyx+NxfIyYJkYBz0BQb3kOpgyXy5pwvFcr+pquKB3WLDN1RhGvk+NHOd6KBMIIDPzCCAqigAwIB AgIBDTANBgkqhkiG9w0BAQUFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2Fw ZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29uc3VsdGluZzEoMCYGA1UE CxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIGA1UEAxMbVGhhd3RlIFBlcnNv bmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJzb25hbC1mcmVlbWFpbEB0aGF3dGUu Y29tMB4XDTAzMDcxNzAwMDAwMFoXDTEzMDcxNjIzNTk1OVowYjELMAkGA1UEBhMCWkExJTAjBgNV BAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25h bCBGcmVlbWFpbCBJc3N1aW5nIENBMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDEpjxVc1X7 TrnKmVoeaMB1BHCd3+n/ox7svc31W/Iadr1/DDph8r9RzgHU5VAKMNcCY1osiRVwjt3J8CuFWqo/ cVbLrzwLB+fxH5E2JCoTzyvV84J3PQO+K/67GD4Hv0CAAmTXp6a7n2XRxSpUhQ9IBH+nttE8YQRA HmQZcmC3+wIDAQABo4GUMIGRMBIGA1UdEwEB/wQIMAYBAf8CAQAwQwYDVR0fBDwwOjA4oDagNIYy aHR0cDovL2NybC50aGF3dGUuY29tL1RoYXd0ZVBlcnNvbmFsRnJlZW1haWxDQS5jcmwwCwYDVR0P BAQDAgEGMCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFQcml2YXRlTGFiZWwyLTEzODANBgkqhkiG 9w0BAQUFAAOBgQBIjNFQg+oLLswNo2asZw9/r6y+whehQ5aUnX9MIbj4Nh+qLZ82L8D0HFAgk3A8 /a3hYWLD2ToZfoSxmRsAxRoLgnSeJVCUYsfbJ3FXJY3dqZw5jowgT2Vfldr394fWxghOrvbqNOUQ Gls1TXfjViF4gtwhGTXeJLHTHUb/XV9lTzGCAQ8wggELAgEBMGkwYjELMAkGA1UEBhMCWkExJTAj BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJz b25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAgMPeOEwCQYFKw4DAhoFADANBgkqhkiG9w0BAQEFAASB gHYDzD1c/Ouor6kVWanKQYOZ1vX8eq/BHXpy2ACKlrIckzbcD+hv7viD+lZv8OulLGRmQorfFS6y HbMDoYC3TikZXOlie5z7HsYqumD+hE8FJS8odGSy2vTDqimQACR5pidOvPjX1h6ANVyf/2o5jBWW 7Q6U4nQmw4o3oOuNMPIu --===[S/MIME_RFC2633]===44F18F4D.2F1D4DC===-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 13:12:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 761B416A51C for ; Sun, 27 Aug 2006 13:12:18 +0000 (UTC) (envelope-from omer@omeriqbal.com) Received: from smtp101.biz.mail.re2.yahoo.com (smtp101.biz.mail.re2.yahoo.com [68.142.229.215]) by mx1.FreeBSD.org (Postfix) with SMTP id 907744480B for ; Sun, 27 Aug 2006 12:42:33 +0000 (GMT) (envelope-from omer@omeriqbal.com) Received: (qmail 76435 invoked from network); 27 Aug 2006 12:42:23 -0000 Received: from unknown (HELO rakaposhi) (omer@omeriqbal.com@203.81.220.191 with login) by smtp101.biz.mail.re2.yahoo.com with SMTP; 27 Aug 2006 12:42:22 -0000 From: "Muhammad Omer Iqbal" To: Date: Sun, 27 Aug 2006 05:42:15 -0700 Message-ID: <001b01c6c9d6$3e6b94e0$0202a8c0@rakaposhi> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 In-Reply-To: <20060827082549.2F9B.GERARD@seibercom.net> Thread-Index: AcbJ0/Hh1nF3W2G3QPO2+gkV/KUAggAAgR9Q Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 13:12:18 -0000 I am sorry, being a newbie, I do not know what this means: >> Please don't top post! >> What version issue are you referring to? As for this: >> I am assuming that you installed both MySQL and PHP5 from an updated ports collection. Did you run: 'make config' in the PHP5 directory before building the port? I recently installed Apache 2.2, so it is as updated a ports collection as I could get. I did make config. Even if I just do make, or make install, it runs config first and then does the install. However, like I said, I did make config and then did a remake, that did not really work - my PHP make is still dated Aug 22. -----Original Message----- From: Gerard Seibert [mailto:gerard@seibercom.net] Sent: Sunday, August 27, 2006 5:26 AM To: freebsd-questions@freebsd.org Cc: Muhammad Omer Iqbal Subject: Re: PHP5 and MySQL Muhammad Omer Iqbal wrote: > I have gone through the mysql and php docs and there are some possible > solutions listed, none of those worked. Of course, I tried looking for > a solution first before sending it here, this is like one of the last > resort places, don't want to bug people with something trivial or easily fixable. > > I can post the problem here, but again, I was not too sure if this is > the right place to post the questions. Anyhow, here it is. > > PHP5 documentation says that mysql and mysqli libraries are no longer > shipped with PHP and refers to MySQL page and documentation on how to > install PHP support for MySQL. The precise solution is here: > http://dev.mysql.com/doc/refman/5.0/en/php-mysql-mysqli.html > > I first tried to enable only mysql, and then both mysql and mysqli. I > get the same error in both cases on my web-server (MySQL is installed > on the same server too): > > Fatal error: Class 'mysqli' not found in > /usr/local/www/apache22/data/test.php on line 7 > > Looking through phpinfo, I do not find mysql or mysqli installed, even > though I have enabled, remade and reinstalled both MySQL and PHP5. In > fact, I think that my PHP5 is no longer remade, it just reconfigures > it and reinstalls it because the build date shows as Aug 22 even > though I did it today and my server date shows as Aug 27. I installed > both of these using the ports collection, but then I had to manually > download MySQL because of versioning issues, and untar and install it using the command line. Please don't top post! What version issue are you referring to? I am assuming that you installed both MySQL and PHP5 from an updated ports collection. Did you run: 'make config' in the PHP5 directory before building the port? -- Gerard Seibert gerard@seibercom.net 'Marijauna' was the Mexican name given to cannabis. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 13:12:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 92E6D16A5B8 for ; Sun, 27 Aug 2006 13:12:42 +0000 (UTC) (envelope-from omer@omeriqbal.com) Received: from smtp101.biz.mail.re2.yahoo.com (smtp101.biz.mail.re2.yahoo.com [68.142.229.215]) by mx1.FreeBSD.org (Postfix) with SMTP id 3E8AC448B0 for ; Sun, 27 Aug 2006 12:44:38 +0000 (GMT) (envelope-from omer@omeriqbal.com) Received: (qmail 82609 invoked from network); 27 Aug 2006 12:44:17 -0000 Received: from unknown (HELO rakaposhi) (omer@omeriqbal.com@203.81.220.191 with login) by smtp101.biz.mail.re2.yahoo.com with SMTP; 27 Aug 2006 12:44:16 -0000 From: "Muhammad Omer Iqbal" To: "'Muhammad Omer Iqbal'" , Date: Sun, 27 Aug 2006 05:44:14 -0700 Message-ID: <001c01c6c9d6$824dd100$0202a8c0@rakaposhi> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 In-Reply-To: Thread-Index: AcbJ0/Hh1nF3W2G3QPO2+gkV/KUAggAAgR9QAAAcsSA= Cc: Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 13:12:42 -0000 Sorry, typo. >> I recently installed Apache 2.2, so it is as updated a ports collection as I could get. I meant to say I recently installed FreeBSD 6.0. -----Original Message----- From: Muhammad Omer Iqbal [mailto:omer@omeriqbal.com] Sent: Sunday, August 27, 2006 5:42 AM To: 'freebsd-questions@freebsd.org' Subject: RE: PHP5 and MySQL I am sorry, being a newbie, I do not know what this means: >> Please don't top post! >> What version issue are you referring to? As for this: >> I am assuming that you installed both MySQL and PHP5 from an updated >> ports collection. Did you run: 'make config' in the PHP5 directory before building the port? I recently installed Apache 2.2, so it is as updated a ports collection as I could get. I did make config. Even if I just do make, or make install, it runs config first and then does the install. However, like I said, I did make config and then did a remake, that did not really work - my PHP make is still dated Aug 22. -----Original Message----- From: Gerard Seibert [mailto:gerard@seibercom.net] Sent: Sunday, August 27, 2006 5:26 AM To: freebsd-questions@freebsd.org Cc: Muhammad Omer Iqbal Subject: Re: PHP5 and MySQL Muhammad Omer Iqbal wrote: > I have gone through the mysql and php docs and there are some possible > solutions listed, none of those worked. Of course, I tried looking for > a solution first before sending it here, this is like one of the last > resort places, don't want to bug people with something trivial or easily fixable. > > I can post the problem here, but again, I was not too sure if this is > the right place to post the questions. Anyhow, here it is. > > PHP5 documentation says that mysql and mysqli libraries are no longer > shipped with PHP and refers to MySQL page and documentation on how to > install PHP support for MySQL. The precise solution is here: > http://dev.mysql.com/doc/refman/5.0/en/php-mysql-mysqli.html > > I first tried to enable only mysql, and then both mysql and mysqli. I > get the same error in both cases on my web-server (MySQL is installed > on the same server too): > > Fatal error: Class 'mysqli' not found in > /usr/local/www/apache22/data/test.php on line 7 > > Looking through phpinfo, I do not find mysql or mysqli installed, even > though I have enabled, remade and reinstalled both MySQL and PHP5. In > fact, I think that my PHP5 is no longer remade, it just reconfigures > it and reinstalls it because the build date shows as Aug 22 even > though I did it today and my server date shows as Aug 27. I installed > both of these using the ports collection, but then I had to manually > download MySQL because of versioning issues, and untar and install it using the command line. Please don't top post! What version issue are you referring to? I am assuming that you installed both MySQL and PHP5 from an updated ports collection. Did you run: 'make config' in the PHP5 directory before building the port? -- Gerard Seibert gerard@seibercom.net 'Marijauna' was the Mexican name given to cannabis. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 14:02:55 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 DCAD416A4DD for ; Sun, 27 Aug 2006 14:02:54 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEA9544776 for ; Sun, 27 Aug 2006 14:02:49 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [IPv6:::1] (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k7RE2Jox004671; Sun, 27 Aug 2006 15:02:19 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k7RE2Jox004671 Message-ID: <44F1A5E4.20801@infracaninophile.co.uk> Date: Sun, 27 Aug 2006 15:02:12 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: Nikolas Britton References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> In-Reply-To: X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigB463912459273819A44701D3" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [IPv6:::1]); Sun, 27 Aug 2006 15:02:42 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1734/Sat Aug 26 21:48:40 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_TESTING,NO_RELAYS autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Cc: Darrin Chandler , Atom Powers , freebsd-questions@freebsd.org, "Marc G. Fournier" Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:02:55 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigB463912459273819A44701D3 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Nikolas Britton wrote: > What I think is interesting is the only ~50% uptake of FreeBSD/amd64 > on 64-bit x86 capable systems. FreeBSD/i386 takes ~90% of the pie. > Also the less then 1% uptake of sparc64 and alpha ports and 0% for > FreeBSD/PPC. Maybe we should can some of these platform ports, how > much overhead do they add to the project? Woah! It's way, way too soon to start making any decisions based on the bsdstats site. There's less than a thousand machines reporting stats so far -- that's a very small fraction of the FreeBSD total machines around the world. As it is a single small company or user with half=20 a dozen machines submitting their data could have a radical effect on the ordering of many of the tables available on the site. The BSD Stats site is going to need some serious popularization before it provides a statistically significant sample. It would probably take getting the 300.bsdstats periodic job incorporated into the base system and having a 'please register your system' option fairly prominently displayed in the installer for several releases to make it really effective. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigB463912459273819A44701D3 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE8aXr8Mjk52CukIwRCEpWAJkBNvAbhIAzDOvUmAgbDnxr7NSRBgCgj+xJ +5h+oOQ6/y5QOs73LQdkiIU= =oAeU -----END PGP SIGNATURE----- --------------enigB463912459273819A44701D3-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 14:13:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4CAB016A4EA for ; Sun, 27 Aug 2006 14:13:42 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81C2F44776 for ; Sun, 27 Aug 2006 14:13:38 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [IPv6:::1] (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k7REDDeI004789; Sun, 27 Aug 2006 15:13:13 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k7REDDeI004789 Message-ID: <44F1A873.1070906@infracaninophile.co.uk> Date: Sun, 27 Aug 2006 15:13:07 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: Muhammad Omer Iqbal References: <001c01c6c9d6$824dd100$0202a8c0@rakaposhi> In-Reply-To: <001c01c6c9d6$824dd100$0202a8c0@rakaposhi> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigDC82C1A18FB016702FCB4C9B" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [IPv6:::1]); Sun, 27 Aug 2006 15:13:34 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1734/Sat Aug 26 21:48:40 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_TESTING,NO_RELAYS autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:13:42 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigDC82C1A18FB016702FCB4C9B Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable >Muhammad Omer Iqbal wrote: >> Looking through phpinfo, I do not find mysql or mysqli installed, even= =20 >> though I have enabled, remade and reinstalled both MySQL and PHP5. In = >> fact, I think that my PHP5 is no longer remade, it just reconfigures=20 >> it and reinstalls it because the build date shows as Aug 22 even=20 >> though I did it today and my server date shows as Aug 27. I installed = >> both of these using the ports collection, but then I had to manually=20 >> download MySQL because of versioning issues, and untar and install it The PHP5 port has been divided into a fairly large number of modules. To= add MySQL support within PHP5, simply install the databases/php5-mysql port. (Or php5-mysqli, but only if you're running mysql-4.1.x) Note that php5-mysql will cause one of the mysql-client ports to be installed as a dependency -- unless you install one of the other versions= before hand, that will get you the mysql 5.0.x client. You will still need to install one of the mysql server ports, unless your DB is physical= ly hosted on a different machine. Oh -- and the other trap for newbies is that you need to 'make config' in the lang/php5 port and make sure the 'Apache' box is checked before you'll get the Apache PHP5 module built and installed. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigDC82C1A18FB016702FCB4C9B Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE8ah58Mjk52CukIwRCDOKAJ9Rp4TSmkoJsv0lR54P8kb5FlX+aACfeDYH MsgEP9OuAX+ucsDWgAdEVvI= =vCEt -----END PGP SIGNATURE----- --------------enigDC82C1A18FB016702FCB4C9B-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 14:18:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6628016A50B for ; Sun, 27 Aug 2006 14:18:51 +0000 (UTC) (envelope-from yraffah@savola.com) Received: from heathrow.savoladns.com (heathrow.savoladns.com [212.12.174.7]) by mx1.FreeBSD.org (Postfix) with SMTP id 4B1DF44569 for ; Sun, 27 Aug 2006 13:56:13 +0000 (GMT) (envelope-from yraffah@savola.com) Received: from ocs.savola.com (ocs.savola.com [222.22.1.211]) by heathrow.savoladns.com (Postfix) with ESMTP id 1F59D9586E; Sun, 27 Aug 2006 16:56:07 +0300 (AST) Received: from 222.22.1.191 by ocs.savola.com with ESMTP id 74081481156686145; Sun, 27 Aug 2006 16:42:25 +0300 From: Yousef Raffah To: Nate Peck In-Reply-To: <7ddd53320608260457te118ba6u6fa66c7f4e75ff1@mail.gmail.com> References: <7ddd53320608260457te118ba6u6fa66c7f4e75ff1@mail.gmail.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-0mrcxYZHzPLK66hORu1a" Organization: The Savola Group Date: Sun, 27 Aug 2006 16:54:30 +0300 Message-Id: <1156686870.1012.25.camel@redevil.savola.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Cc: freebsd-questions@freebsd.org Subject: Re: Right-to-Left Language Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yraffah@savola.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:18:51 -0000 --=-0mrcxYZHzPLK66hORu1a Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2006-08-26 at 04:57 -0700, Nate Peck wrote: > In FreeBSD, is there good support for right to left languages such as > Hebrew and Arabic? Depends on what you really mean by "support for right to left", in all GTK2+ and QT3+ applications you have proper support. This means if you are running recent versions of GNOME or KDE then you have no issues. On the other hand, you can write in these languages as well. > _______________________________________________ > 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" --=-0mrcxYZHzPLK66hORu1a Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBE8aQWqG4sHeIU6qURAlUsAJ99tE6CfcTZYmUr7Z696xOeIjgZSQCgiwIC q7opV+GrnWh37eYkB3aa4A0= =IDDs -----END PGP SIGNATURE----- --=-0mrcxYZHzPLK66hORu1a-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 14:18:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B2AF216A562 for ; Sun, 27 Aug 2006 14:18:58 +0000 (UTC) (envelope-from scrappy@freebsd.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5704744578 for ; Sun, 27 Aug 2006 13:56:28 +0000 (GMT) (envelope-from scrappy@freebsd.org) Received: from localhost (wm.hub.org [200.46.204.128]) by hub.org (Postfix) with ESMTP id C0787291AFD; Sun, 27 Aug 2006 10:56:21 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.128]) (amavisd-new, port 10024) with ESMTP id 81134-03; Sun, 27 Aug 2006 13:56:28 +0000 (UTC) Received: by hub.org (Postfix, from userid 1046) id 45B90291AFE; Sun, 27 Aug 2006 10:56:21 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id 3CB32291AFD; Sun, 27 Aug 2006 10:56:21 -0300 (ADT) Date: Sun, 27 Aug 2006 10:56:21 -0300 (ADT) From: "Marc G. Fournier" X-X-Sender: freebsd@hub.org To: Nikolas Britton In-Reply-To: Message-ID: <20060827105436.P82634@hub.org> References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Darrin Chandler , Atom Powers , freebsd-questions@freebsd.org Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:18:59 -0000 On Sun, 27 Aug 2006, Nikolas Britton wrote: > On 8/26/06, Atom Powers wrote: >> On 8/26/06, Darrin Chandler wrote: >> > On Sat, Aug 26, 2006 at 10:43:38PM -0300, Marc G. Fournier wrote: >> > > >> > > Neat to see nVidia *much* more popular then ATI though ... >> > >> > Really? Why is that neat? nVidia restricts your choices through their >> > staunch refusal to provide open specs. They are not nice players in this >> > game. At least there's some hope about ATI after the AMD deal. >> > >> >> Probably because the /good/ AMD boards use an nVidia chipsets. ( eg, the >> K8N) >> > > What I think is interesting is the only ~50% uptake of FreeBSD/amd64 > on 64-bit x86 capable systems. FreeBSD/i386 takes ~90% of the pie. > Also the less then 1% uptake of sparc64 and alpha ports and 0% for > FreeBSD/PPC. Maybe we should can some of these platform ports, how > much overhead do they add to the project? Well, considering we are only seeing ~2 weeks of stats, I think its a bit early to 'can ports' :) But, as far as 'overhead do they add', my guess is next to zero ... those working on those ports are most likely those more familiar with PPC/Sparc then they are with Intel stuff, so, in essence, we've attract those developers to us vs converted existing developers over to those platforms for porting purposes ... From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 14:19:03 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7BCAD16A586 for ; Sun, 27 Aug 2006 14:19:02 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from internet.potentialtech.com (internet.potentialtech.com [66.167.251.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id C175E446BA for ; Sun, 27 Aug 2006 13:59:41 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from [172.16.0.201] (monrovll-cuda1-24-53-251-44.pittpa.adelphia.net [24.53.251.44]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by internet.potentialtech.com (Postfix) with ESMTP id F3DE469A4E; Sun, 27 Aug 2006 09:59:39 -0400 (EDT) Message-ID: <44F1A542.6000402@collaborativefusion.com> Date: Sun, 27 Aug 2006 09:59:30 -0400 From: Bill Moran User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: dick hoogendijk References: <20060827114817.5b5124dd.dick@nagual.nl> In-Reply-To: <20060827114817.5b5124dd.dick@nagual.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Fw: lothlorien.nagual.nl security run output X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:19:03 -0000 dick hoogendijk wrote: > I'm a little worried after reading the security output this morning. > It seems some files [ping, ping6, shutdown, at, atq and atrm] have > setuid diffs. I really don't know why this could have happened. > I updated some ports yesterday, but I don't think any port writes > in /sbin (?) > Could someboddy advice me on what can have happened? > If you didn't do an installworld or any other upgrade, then something is wrong. They could be trojaned as part of a breakin, you you could be experiencing disk corruption. > Begin forwarded message [some Xorg update warnings deleted]: > > Checking setuid files and devices: > Checking setuid files and devices: > > lothlorien.nagual.nl setuid diffs: > --- /var/log/setuid.today Mon Aug 14 03:03:25 2006 > +++ /tmp/security.aJbHsCR6 Sun Aug 27 03:03:22 2006 > @@ -3,12 +3,12 @@ > 23637 -r-sr-xr-x 1 root wheel 21792 May 12 21:47:15 > 2006 /sbin/ping > 23638 -r-sr-xr-x 1 root wheel 28660 May 12 > 21:47:15 2006 /sbin/ping6 > 23651 -r-sr-x--- 1 root operator 10148 > May 12 21:47:17 2006 /sbin/shutdown > 7042059 -r-sr-xr-x 4 root wheel 20948 > May 12 21:48:10 2006 /usr/bin/at > 7042059 -r-sr-xr-x 4 root > wheel 20948 May 12 21:48:10 2006 /usr/bin/atq > 7042059 -r-sr-xr-x 4 > root wheel 20948 May 12 21:48:10 2006 /usr/bin/atrm > > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 14:28:29 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 35E8E16A4DE for ; Sun, 27 Aug 2006 14:28:29 +0000 (UTC) (envelope-from martin@saturn.pcs.ms) Received: from saturn.pcs.ms (140.124.78.83.cust.bluewin.ch [83.78.124.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF958441C4 for ; Sun, 27 Aug 2006 14:28:20 +0000 (GMT) (envelope-from martin@saturn.pcs.ms) Received: from saturn.pcs.ms (localhost [127.0.0.1]) by saturn.pcs.ms (8.13.1/8.13.1) with ESMTP id k7REWMKj026193; Sun, 27 Aug 2006 16:32:22 +0200 (CEST) (envelope-from martin@saturn.pcs.ms) Received: (from martin@localhost) by saturn.pcs.ms (8.13.1/8.13.1/Submit) id k7REWCmh026188; Sun, 27 Aug 2006 16:32:12 +0200 (CEST) (envelope-from martin) Date: Sun, 27 Aug 2006 16:32:12 +0200 From: Martin Schweizer To: freebsd-questions@freebsd.org Message-ID: <20060827143212.GA26084@saturn.pcs.ms> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0OAP2g/MAC+5xKAE" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Organization: PC-Service M. Schweizer GmbH, CH-8608 Bubikon, Switzerland X-PGP-Key: http://www.pc-service.ch/pgp/public_key.asc X-Fingerprint: EC21 CA4D 5C78 BC2D 73B7 10F9 C1AE 1691 D30F D239 Subject: OpenOffice2 with german user interface X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Martin Schweizer List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:28:29 -0000 --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello=20 My goal is to run OpenOffice 2.0.3 on FreeBSD 6.1/KDE 3.5.3 with a german u= ser interface. Until=20 now OO is only in english. I did the following: - Changed the localization as described at=20 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/using-localizatio= n.html (in=20 /etc/login.conf). The console and KDE is now in german (perfect!). - Installed OpenOffice with make LOCALIZED_LANG=3Dde install (after I did m= ake install) - installed the RPMS from=20 http://oootranslation.services.openoffice.org/pub/OpenOffice.org/2.0.3rc7/ - Read a lot on openoffice.org=20 Any hints? --=20 Regards Martin Schweizer PC-Service M. Schweizer GmbH; Bannholzstrasse 6; CH-8608 Bubikon Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch; public key : http://www.pc-service.ch/pgp/public_key.asc;=20 fingerprint: EC21 CA4D 5C78 BC2D 73B7 10F9 C1AE 1691 D30F D239; --0OAP2g/MAC+5xKAE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFE8azswa4WkdMP0jkRArLWAKCo/u1LNfQN8B5MehbdCG5fzOek1ACgxoFt Dvv820xmvdw5FZ619beWFZI= =nOcD -----END PGP SIGNATURE----- --0OAP2g/MAC+5xKAE-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 14:31:05 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9DD6516A4DE for ; Sun, 27 Aug 2006 14:31:05 +0000 (UTC) (envelope-from fbsd@a1poweruser.com) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEF98441BB for ; Sun, 27 Aug 2006 14:31:04 +0000 (GMT) (envelope-from fbsd@a1poweruser.com) Received: from barbish ([70.39.69.56]) by mta10.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060827143104.GGJC3509.mta10.adelphia.net@barbish>; Sun, 27 Aug 2006 10:31:04 -0400 From: "fbsd" To: "Muhammad Omer Iqbal" , Date: Sun, 27 Aug 2006 10:30:59 -0400 Message-ID: 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 IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <004d01c6c9c0$a413e970$0202a8c0@rakaposhi> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal Cc: Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:31:05 -0000 I just installed PHP5 & Mysql5 from the ports collection without any problems. And yes this is correct place to ask question about installing PHP5 & Mysql5 on Freebsd 6.1 system. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Muhammad Omer Iqbal Sent: Sunday, August 27, 2006 6:08 AM To: freebsd-questions@freebsd.org Subject: PHP5 and MySQL Hi folks, I have problems with PHP5 and MySQL running together. I know this is a freebsd mailing list, not PHP/MySQL, but I am unable to find an appropriate mailing list for getting my problem resolved. Can someone help and let me know what the right mailing list is? Thanks Omer (Please do include me in the reply as I am not on the freebsd-questions mailing list.) _______________________________________________ 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 Aug 27 14:40:39 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CB3F116A4DD for ; Sun, 27 Aug 2006 14:40:38 +0000 (UTC) (envelope-from omer@omeriqbal.com) Received: from smtp102.biz.mail.re2.yahoo.com (smtp102.biz.mail.re2.yahoo.com [68.142.229.216]) by mx1.FreeBSD.org (Postfix) with SMTP id 40F3743D55 for ; Sun, 27 Aug 2006 14:40:38 +0000 (GMT) (envelope-from omer@omeriqbal.com) Received: (qmail 4319 invoked from network); 27 Aug 2006 14:40:37 -0000 Received: from unknown (HELO rakaposhi) (omer@omeriqbal.com@203.81.220.191 with login) by smtp102.biz.mail.re2.yahoo.com with SMTP; 27 Aug 2006 14:40:36 -0000 From: "Muhammad Omer Iqbal" To: , Date: Sun, 27 Aug 2006 07:40:34 -0700 Message-ID: <000c01c6c9e6$c308c230$0202a8c0@rakaposhi> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 In-Reply-To: Thread-Index: AcbJ5W9hS2LajuZhRC2djjuxeGxdfwAAS+Tw Cc: Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:40:39 -0000 My installation also completed without any problems. However, it is the php5-mysql/mysqli libraries that are missing. This will show up as a problem only when you try to connect to mysql from a php web-page. Otherwise, my server runs php just fine, and I am also able to run mysql and issue queries to it from a command line. -----Original Message----- From: fbsd [mailto:fbsd@a1poweruser.com] Sent: Sunday, August 27, 2006 7:31 AM To: Muhammad Omer Iqbal; freebsd-questions@freebsd.org Subject: RE: PHP5 and MySQL I just installed PHP5 & Mysql5 from the ports collection without any problems. And yes this is correct place to ask question about installing PHP5 & Mysql5 on Freebsd 6.1 system. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Muhammad Omer Iqbal Sent: Sunday, August 27, 2006 6:08 AM To: freebsd-questions@freebsd.org Subject: PHP5 and MySQL Hi folks, I have problems with PHP5 and MySQL running together. I know this is a freebsd mailing list, not PHP/MySQL, but I am unable to find an appropriate mailing list for getting my problem resolved. Can someone help and let me know what the right mailing list is? Thanks Omer (Please do include me in the reply as I am not on the freebsd-questions mailing list.) _______________________________________________ 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 Aug 27 14:40:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8DFA816A4DA for ; Sun, 27 Aug 2006 14:40:40 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7829F43D72 for ; Sun, 27 Aug 2006 14:40:39 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1464446uge for ; Sun, 27 Aug 2006 07:40:38 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Cv1cug5S+qryqk5hA/jCHdCzi4NPoftQoC4aFjBbVck0bsP3zoHq9fr84BEJ+EieCk0h0fik2TTI5etY6TTnifACvF4nKZDSUctlT/ocrh6wluWyBnsgoox5bRgTry93nLmmKiaCHb2U3d9RlneHsV/Ilpz8tmuDgDrlHzuWMBI= Received: by 10.66.216.6 with SMTP id o6mr3156694ugg; Sun, 27 Aug 2006 07:40:38 -0700 (PDT) Received: by 10.67.98.16 with HTTP; Sun, 27 Aug 2006 07:40:38 -0700 (PDT) Message-ID: <80f4f2b20608270740n5a37114fu94d4c2d93974f6d6@mail.gmail.com> Date: Sun, 27 Aug 2006 10:40:38 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <80f4f2b20608252018x625b0ed6nb4f4e2dc977b57ee@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20608251820s71e79b1ega357fb9e909cbc3f@mail.gmail.com> <6.0.0.22.2.20060825203026.026ed5b8@mail.computinginnovations.com> <80f4f2b20608252018x625b0ed6nb4f4e2dc977b57ee@mail.gmail.com> Subject: Re: driver source compilation question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:40:40 -0000 I found something I can use, but I have some errors, I've no clue how to deal with: Makefile: ============================================ .PATH: /usr/src/sys/dev/sound/pci;. KMOD = snd_hdac SRCS = device_if.h bus_if.h isa_if.h pci_if.h mixer_if.h SRCS += hdac.c #KMODDEPS = snd_pcm # Uncomment the KMODDEPS line on older 4.n and 5.n FreeBSD systems. .include ============================================ pre-compile directory contents: ============================================ sjss@aragorn 10:34:35 (0) ~/Desktop/hdac > ls -R .: @@ bus_if.h hda_reg.h hdac.c hdac_private.h isa_if.h mixer_if.h Makefile device_if.h hdac/ hdac.h hdac_reg.h machine@ pci_if.h ./hdac: hdac.h hdac_private.h ============================================ post-compile attempt contents ============================================ sjss@aragorn 10:35:40 (0) ~/Desktop/hdac > ls -lR .: total 196 lrwxr-xr-x 1 sjss wheel 12 Aug 27 10:32 @ -> /usr/src/sys/ -rw-r--r-- 1 sjss wheel 241 Aug 27 10:16 Makefile -rw-r--r-- 1 sjss wheel 25769 Aug 27 10:32 bus_if.h -rw-r--r-- 1 sjss wheel 10913 Aug 27 10:32 device_if.h -rw-r--r-- 1 sjss wheel 54518 Jul 5 12:49 hda_reg.h drwxr-xr-x 2 sjss wheel 512 Aug 27 10:16 hdac/ -rw-r--r-- 1 sjss wheel 62590 Jul 17 16:52 hdac.c -rw-r--r-- 1 sjss wheel 2688 Jun 8 14:26 hdac.h -rw-r--r-- 1 sjss wheel 9088 Jun 8 14:26 hdac_private.h -rw-r--r-- 1 sjss wheel 11065 Jun 8 14:26 hdac_reg.h -rw-r--r-- 1 sjss wheel 2022 Aug 27 10:32 isa_if.h lrwxr-xr-x 1 sjss wheel 25 Aug 27 10:32 machine -> /usr/src/sys/i386/include/ -rw-r--r-- 1 sjss wheel 2375 Aug 27 10:32 mixer_if.h -rw-r--r-- 1 sjss wheel 4641 Aug 27 10:32 pci_if.h ./hdac: total 14 -rw-r--r-- 1 sjss wheel 2688 Aug 27 10:16 hdac.h -rw-r--r-- 1 sjss wheel 9088 Aug 27 10:16 hdac_private.h ============================================ System info ============================================ sjss@aragorn 10:36:21 (0) ~/Desktop/hdac > uname -a FreeBSD aragorn.ameritech.net 6.1-STABLE FreeBSD 6.1-STABLE #1: Mon Jul 24 16:10:27 EDT 2006 root@:/usr/obj/usr/src/sys/JIMKERN i386 ============================================ Compile results: ============================================ sjss@aragorn 10:35:35 (0) ~/Desktop/hdac > make Warning: Object directory not changed from original /home/sjss/Desktop/hdac cc -O2 -msse -msse2 -msse3 -mfpmath=sse,387 -fomit-frame-pointer -ffloat-store -march=pentium-m -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I- -I. -I@ -I@/contrib/altq -I@/../include -finline-limit=8000 -fno-common -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -c hdac.c In file included from @/dev/sound/pcm/sound.h:93, from hdac.c:29: @/dev/sound/pcm/channel.h:69:24: channel_if.h: No such file or directory hdac.c:1857: error: `channel_init_desc' undeclared here (not in a function) hdac.c:1857: error: initializer element is not constant hdac.c:1857: error: (near initialization for `hdacchan_methods[0].desc') hdac.c:1857: error: initializer element is not constant hdac.c:1857: error: (near initialization for `hdacchan_methods[0]') hdac.c:1858: error: `channel_setformat_desc' undeclared here (not in a function) hdac.c:1858: error: initializer element is not constant hdac.c:1858: error: (near initialization for `hdacchan_methods[1].desc') hdac.c:1858: error: initializer element is not constant hdac.c:1858: error: (near initialization for `hdacchan_methods[1]') hdac.c:1859: error: `channel_setspeed_desc' undeclared here (not in a function) hdac.c:1859: error: initializer element is not constant hdac.c:1859: error: (near initialization for `hdacchan_methods[2].desc') hdac.c:1859: error: initializer element is not constant hdac.c:1859: error: (near initialization for `hdacchan_methods[2]') hdac.c:1860: error: `channel_setblocksize_desc' undeclared here (not in a function) hdac.c:1860: error: initializer element is not constant hdac.c:1860: error: (near initialization for `hdacchan_methods[3].desc') hdac.c:1860: error: initializer element is not constant hdac.c:1860: error: (near initialization for `hdacchan_methods[3]') hdac.c:1861: error: `channel_trigger_desc' undeclared here (not in a function) hdac.c:1861: error: initializer element is not constant hdac.c:1861: error: (near initialization for `hdacchan_methods[4].desc') hdac.c:1861: error: initializer element is not constant hdac.c:1861: error: (near initialization for `hdacchan_methods[4]') hdac.c:1862: error: `channel_getptr_desc' undeclared here (not in a function) hdac.c:1862: error: initializer element is not constant hdac.c:1862: error: (near initialization for `hdacchan_methods[5].desc') hdac.c:1862: error: initializer element is not constant hdac.c:1862: error: (near initialization for `hdacchan_methods[5]') hdac.c:1863: error: `channel_getcaps_desc' undeclared here (not in a function) hdac.c:1863: error: initializer element is not constant hdac.c:1863: error: (near initialization for `hdacchan_methods[6].desc') hdac.c:1863: error: initializer element is not constant hdac.c:1863: error: (near initialization for `hdacchan_methods[6]') hdac.c:1864: error: initializer element is not constant hdac.c:1864: error: (near initialization for `hdacchan_methods[7]') *** Error code 1 ============================================ Line 1587 of hdac.c: KOBJMETHOD(channel_init, hdacchan_init), channel_init is not described anywhere, but I noticed that several other driver files in the kernel tree use soemthing like this also - I'm assuming that I'm missing something in the makefile, but I cant figure out what. Any help is appreciated. Thank you, -Jim Stapleton From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 14:41:17 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AC28716A4DD for ; Sun, 27 Aug 2006 14:41:17 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B4B243D68 for ; Sun, 27 Aug 2006 14:41:17 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so777219nzn for ; Sun, 27 Aug 2006 07:41:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=Au+kq9AM85PtzmyWdlAPGCNkEo2uqLJvYEIAKsVI34L7U9/CK/xyJiA0mNtyEYDukSEQ763Tj2vnUrE6Pj/MHd+wq+iksm6mQx6Gp/ivyeRRkstmYlpMrI36iPeZh6XMJIX7dmRgPl8gVa34aY4IGMnauHGSRxxFKJuPgZbE1PU= Received: by 10.65.59.17 with SMTP id m17mr5693772qbk; Sun, 27 Aug 2006 07:41:16 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Sun, 27 Aug 2006 07:41:16 -0700 (PDT) Message-ID: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> Date: Sun, 27 Aug 2006 20:11:16 +0530 From: "Viswas Nair" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: User permissions to mount CDROM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:41:17 -0000 I have been trying to figure out how to give users to mount CD rom and have been largely unsuccessful. Here are a few things I tried: 1) Added user to the 4th field (options) in /etc/fstab 2) Added vfs.usermount=1 to sysctl.conf 3) Created a group called optical and added the root and alpha to it 4) Added following lines to devfs,conf : own /dev/acd0 root:optical perm /dev/acd0 0770 own /dev/acd1 root:optical perm /dev/acd1 0770 5) Rebooted machine and tried to mount /dev/acd0 into /cdrom and it failed with the message: got the error message: /dev/acd0 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 15:08:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9484916A4E0 for ; Sun, 27 Aug 2006 15:08:48 +0000 (UTC) (envelope-from bloodyveins@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id B26AF442D7 for ; Sun, 27 Aug 2006 11:49:21 +0000 (GMT) (envelope-from bloodyveins@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1434140uge for ; Sun, 27 Aug 2006 04:49:20 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=gUzRq7ORiNiBFmXBekIXcI+c77oV8kbALpl1rQ0PwNERWdPmZ/fBithMfsILYBJkXnXXNok5cD56AgzRDlvECBgb6qSVvl4TPNyIL4f2M9B+z190aYCGhCEk3Ib9TEYEqq7F5ScWr2hbwV4jZ3ZwLvuHsYPoA06A8u1QIQmuhA8= Received: by 10.66.219.11 with SMTP id r11mr3075046ugg; Sun, 27 Aug 2006 04:49:20 -0700 (PDT) Received: by 10.67.89.13 with HTTP; Sun, 27 Aug 2006 04:49:20 -0700 (PDT) Message-ID: <58ebaa710608270449x63d9aa6ek5109e5e56e4daf1b@mail.gmail.com> Date: Sun, 27 Aug 2006 18:49:20 +0700 From: "Mike Fern" To: freebsd-questions@freebsd.org In-Reply-To: <20060827072419.8CFE.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <004d01c6c9c0$a413e970$0202a8c0@rakaposhi> <20060827072419.8CFE.GERARD@seibercom.net> Subject: Re: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 15:08:48 -0000 hello, there are some mailing lists which may suit your needs. http://www.php.net/mailing-lists.php my recommendation is general user list. regards, From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 15:42:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 309A216A688 for ; Sun, 27 Aug 2006 15:42:23 +0000 (UTC) (envelope-from bharris@celinaisd.com) Received: from wcmta1.mycingular.net (wcmta1.mycingular.net [66.102.172.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1C8E4440D for ; Sun, 27 Aug 2006 15:13:14 +0000 (GMT) (envelope-from bharris@celinaisd.com) Received: from COM (mobile-166-137-160-087.mycingular.net [166.137.160.87]) by wcmta1.mycingular.net (8.12.11/8.12.11) with SMTP id k7RFD4ua006298; Sun, 27 Aug 2006 10:13:07 -0500 (CDT) (envelope-from bharris@celinaisd.com) Message-Id: <200608271513.k7RFD4ua006298@wcmta1.mycingular.net> To: "Ted Mittelstaedt" , From: Date: Sun, 27 Aug 2006 10:12:00 -0500 Mime-Version: 1.0 X-Mailer: VersaMail(c) 1998-2004 3.1D-1, palmOne, Inc. X-Sender: bharris@celinaisd.com X-Priority: 3 Importance: Normal Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit X-PMX-Version: 4.7.1.128075, Antispam-Engine: 2.0.3.0, Antispam-Data: 2006.8.27.65442 Cc: freebsd-questions@freebsd.org Subject: Re: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 15:42:23 -0000 1 sounds like my problem. The machine booted fine to multi-user until I configured the nic. I'll test it first thing tommoro. Bill -----Original Message----- From: "Ted Mittelstaedt" Subj: Re: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE Date: Sat Aug 26, 2006 4:22 am Size: 1K To: , I have one of these running mail right now. Here's what I found: 1) The onboard ethernet chip driver in 6.1-release is buggy and will panic the system. Install and don't enable ethernet. Download the current bge driver from CVS, copy to a floppy, copy from floppy to server, recompile kernel. 2) Turn off the onboard SATA raid in BIOS, it uses adaptec microcode that isn't supported. If you want mirrored raid, there's a procedure that you can do to get it. 3) for some weird reason the system will hang during boot for up to TWO MINUTES. After it gets done doing whatever it's doing, it will continue booting. Install normally, don't do anything special. BIOS settings should be normal. Ted ----- Original Message ----- From: To: Sent: Friday, August 25, 2006 6:14 PM Subject: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE > Having problems booting my new 320 G4 after successfully > installing from CD. The CD install went fine, the first boot was > normal, but the second and all subsequent boots hang right > after the WARNING setting entropy source to blocking mode. > > Keyboard is dead and the machine appears locked up. Right > now it's on the screen wanting to enter the seed for SSHD, but > it hangs on even when you don't enable SSHD during install. > > any suggestions? > > I've tried to disable ILo by turning off the Legacy USB support. > FYI, VGA console and regular PS2 keyboard hooked up. > > Any help would be most appreciated. Just bought 4 of these > guys for a project. > > Bill > _______________________________________________ > 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 Aug 27 16:15:39 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AC97E16A4DE for ; Sun, 27 Aug 2006 16:15:39 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E5B8443AC for ; Sun, 27 Aug 2006 15:54:01 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1406279wxd for ; Sun, 27 Aug 2006 08:54:00 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=DHyAcKnXp+dGsMePB9xmSuSTyWST2ObiAKv6vqtEIlrBRqciU5u5/Mdn2J9ZbkO1PzgaW/5NqHT0CsCYEla0ByS2bvKHUwfSt2JCUayUjJ/Q/UhH7PZ0ph254ditDz0lvw7GY0PH6DBnXvLie6zFDxtTtyFw1QMrJHSMrmaVai8= Received: by 10.70.51.17 with SMTP id y17mr7806907wxy; Sun, 27 Aug 2006 08:52:29 -0700 (PDT) Received: by 10.70.49.3 with HTTP; Sun, 27 Aug 2006 08:52:29 -0700 (PDT) Message-ID: Date: Sun, 27 Aug 2006 10:52:29 -0500 From: "Nikolas Britton" To: "Matthew Seaman" In-Reply-To: <44F1A5E4.20801@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> <44F1A5E4.20801@infracaninophile.co.uk> Cc: Darrin Chandler , Atom Powers , freebsd-questions@freebsd.org, "Marc G. Fournier" Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 16:15:39 -0000 On 8/27/06, Matthew Seaman wrote: > Nikolas Britton wrote: > > > What I think is interesting is the only ~50% uptake of FreeBSD/amd64 > > on 64-bit x86 capable systems. FreeBSD/i386 takes ~90% of the pie. > > Also the less then 1% uptake of sparc64 and alpha ports and 0% for > > FreeBSD/PPC. Maybe we should can some of these platform ports, how > > much overhead do they add to the project? > > Woah! It's way, way too soon to start making any decisions based on the > bsdstats site. There's less than a thousand machines reporting stats > so far -- that's a very small fraction of the FreeBSD total machines > around the world. As it is a single small company or user with half > a dozen machines submitting their data could have a radical effect on > the ordering of many of the tables available on the site. > > The BSD Stats site is going to need some serious popularization before > it provides a statistically significant sample. It would probably take > getting the 300.bsdstats periodic job incorporated into the base > system and having a 'please register your system' option fairly > prominently displayed in the installer for several releases to make it > really effective. > I'm being devils advocate here, we don't need to make any rash decisions etc... It's just something to think about. -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 16:36:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8352F16A4F4 for ; Sun, 27 Aug 2006 16:36:57 +0000 (UTC) (envelope-from jan.grant@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81715447E7 for ; Sun, 27 Aug 2006 16:07:39 +0000 (GMT) (envelope-from jan.grant@bristol.ac.uk) Received: from mail.ilrt.bris.ac.uk ([137.222.16.62]) by dirg.bris.ac.uk with esmtp (Exim 4.60) (envelope-from ) id 1GHNAc-00044N-3J; Sun, 27 Aug 2006 17:07:38 +0100 Received: from cse-jg.cse.bris.ac.uk ([137.222.12.37]:61284) by mail.ilrt.bris.ac.uk with esmtps (TLSv1:AES256-SHA:256) (Exim 4.50) id 1GHNAT-0007An-96; Sun, 27 Aug 2006 17:07:29 +0100 Date: Sun, 27 Aug 2006 17:07:16 +0100 (BST) From: Jan Grant X-X-Sender: cmjg@tribble.ilrt.bris.ac.uk To: bsd In-Reply-To: <15B94964-B313-4FDD-B667-24F7D2393B8B@todoo.biz> Message-ID: <20060827170401.P96691@tribble.ilrt.bris.ac.uk> References: <15B94964-B313-4FDD-B667-24F7D2393B8B@todoo.biz> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spamassassin: mail.ilrt.bris.ac.uk X-Spam-Score: 0.0 X-Spam-Level: / X-Spam-Score: -1.2 X-Spam-Level: - Cc: Liste FreeBSD Subject: Re: Cluster mail system using FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 16:36:57 -0000 On Wed, 23 Aug 2006, bsd wrote: > The idea is to offer a simple and very efficient solution in order for the > server to have a 100% uptime under any circumstances. That goal is not realistic. > I was first thinking about using Linux-HA aka. "heartbeat" and syncing > the two boxes using rsync ? One question is whether your uptime definition means "someone can connect via IMAP" or "someone can connect via IMAP and IMAP acknowledgements of state-changing operations are guaranteed to be replicated across the cluster". If you actually want your cluster's semantics to preserve email client operations in the face of the loss of one member of the cluster then rsync is not enough. > What other solution would you think of ? You might want to chase down the Cambridge patches to cyrus, which added an application-level transaction log to that particular imap server. -- jan grant, ISYS, University of Bristol. http://www.bris.ac.uk/ Tel +44 (0)117 3317661 http://ioctl.org/jan/ Leverage that synergy! Ooh yeah, looking good! Now stretch - and relax. From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 17:01:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7D9B216A62A for ; Sun, 27 Aug 2006 17:01:58 +0000 (UTC) (envelope-from omer@omeriqbal.com) Received: from smtp101.biz.mail.re2.yahoo.com (smtp101.biz.mail.re2.yahoo.com [68.142.229.215]) by mx1.FreeBSD.org (Postfix) with SMTP id 83D5C460FD for ; Sun, 27 Aug 2006 16:48:26 +0000 (GMT) (envelope-from omer@omeriqbal.com) Received: (qmail 11835 invoked from network); 27 Aug 2006 16:48:22 -0000 Received: from unknown (HELO rakaposhi) (omer@omeriqbal.com@203.81.220.191 with login) by smtp101.biz.mail.re2.yahoo.com with SMTP; 27 Aug 2006 16:48:22 -0000 From: "Muhammad Omer Iqbal" To: "'Matthew Seaman'" Date: Sun, 27 Aug 2006 09:48:19 -0700 Message-ID: <000901c6c9f8$9bd52f70$0202a8c0@rakaposhi> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Thread-Index: AcbJ6tr6T6tlDVqmSJqmRZ7BQ8QwDAADQhyw In-Reply-To: <44F1A873.1070906@infracaninophile.co.uk> Cc: freebsd-questions@freebsd.org Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:01:58 -0000 Thank you for the help! It seems strange to have to install it again especially when I installed php5-extensions with mysql and mysqli extensions. When I tried to make, it tries to fetches MySQL 4.1 whereas I have 5.0 installed. How can I update the version? I have updated Makefile.ext in PHP5 directory with DEFAULT_MYSQL_VER=50, but to no avail. -----Original Message----- From: Matthew Seaman [mailto:m.seaman@infracaninophile.co.uk] Sent: Sunday, August 27, 2006 7:13 AM To: Muhammad Omer Iqbal Cc: freebsd-questions@freebsd.org Subject: Re: PHP5 and MySQL >Muhammad Omer Iqbal wrote: >> Looking through phpinfo, I do not find mysql or mysqli installed, >> even though I have enabled, remade and reinstalled both MySQL and >> PHP5. In fact, I think that my PHP5 is no longer remade, it just >> reconfigures it and reinstalls it because the build date shows as Aug >> 22 even though I did it today and my server date shows as Aug 27. I >> installed both of these using the ports collection, but then I had to >> manually download MySQL because of versioning issues, and untar and >> install it The PHP5 port has been divided into a fairly large number of modules. To add MySQL support within PHP5, simply install the databases/php5-mysql port. (Or php5-mysqli, but only if you're running mysql-4.1.x) Note that php5-mysql will cause one of the mysql-client ports to be installed as a dependency -- unless you install one of the other versions before hand, that will get you the mysql 5.0.x client. You will still need to install one of the mysql server ports, unless your DB is physically hosted on a different machine. Oh -- and the other trap for newbies is that you need to 'make config' in the lang/php5 port and make sure the 'Apache' box is checked before you'll get the Apache PHP5 module built and installed. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 17:07:56 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CF7F516A4FC for ; Sun, 27 Aug 2006 17:07:56 +0000 (UTC) (envelope-from fbsd@a1poweruser.com) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F70245543 for ; Sun, 27 Aug 2006 17:07:45 +0000 (GMT) (envelope-from fbsd@a1poweruser.com) Received: from barbish ([70.39.69.56]) by mta11.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060827170744.GXQU4932.mta11.adelphia.net@barbish>; Sun, 27 Aug 2006 13:07:44 -0400 From: "fbsd" To: "Muhammad Omer Iqbal" , Date: Sun, 27 Aug 2006 13:07:39 -0400 Message-ID: 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 IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <000c01c6c9e6$c308c230$0202a8c0@rakaposhi> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal Cc: Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:07:56 -0000 I have HTML/php5 web site that connects to mysql5 database and adds new records, deletes records and searches. Sounds to me like you did not do "make options" and select php-mysql interface of php5 before doing "make install". For some reason in Freebsd 6.1 they removed php-mysql interface as default. This was discussed in detail before on questions list. Check archives for the details. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Muhammad Omer Iqbal Sent: Sunday, August 27, 2006 10:41 AM To: fbsd@a1poweruser.com; freebsd-questions@freebsd.org Subject: RE: PHP5 and MySQL My installation also completed without any problems. However, it is the php5-mysql/mysqli libraries that are missing. This will show up as a problem only when you try to connect to mysql from a php web-page. Otherwise, my server runs php just fine, and I am also able to run mysql and issue queries to it from a command line. -----Original Message----- From: fbsd [mailto:fbsd@a1poweruser.com] Sent: Sunday, August 27, 2006 7:31 AM To: Muhammad Omer Iqbal; freebsd-questions@freebsd.org Subject: RE: PHP5 and MySQL I just installed PHP5 & Mysql5 from the ports collection without any problems. And yes this is correct place to ask question about installing PHP5 & Mysql5 on Freebsd 6.1 system. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Muhammad Omer Iqbal Sent: Sunday, August 27, 2006 6:08 AM To: freebsd-questions@freebsd.org Subject: PHP5 and MySQL Hi folks, I have problems with PHP5 and MySQL running together. I know this is a freebsd mailing list, not PHP/MySQL, but I am unable to find an appropriate mailing list for getting my problem resolved. Can someone help and let me know what the right mailing list is? Thanks Omer (Please do include me in the reply as I am not on the freebsd-questions mailing list.) _______________________________________________ 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 Aug 27 17:10:03 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 36CA816A504 for ; Sun, 27 Aug 2006 17:10:03 +0000 (UTC) (envelope-from omer@omeriqbal.com) Received: from smtp105.biz.mail.re2.yahoo.com (smtp105.biz.mail.re2.yahoo.com [206.190.52.174]) by mx1.FreeBSD.org (Postfix) with SMTP id D1C75461DE for ; Sun, 27 Aug 2006 16:50:23 +0000 (GMT) (envelope-from omer@omeriqbal.com) Received: (qmail 10663 invoked from network); 27 Aug 2006 16:50:23 -0000 Received: from unknown (HELO rakaposhi) (omer@omeriqbal.com@203.81.220.191 with login) by smtp105.biz.mail.re2.yahoo.com with SMTP; 27 Aug 2006 16:50:22 -0000 From: "Muhammad Omer Iqbal" To: "'Muhammad Omer Iqbal'" , "'Matthew Seaman'" Date: Sun, 27 Aug 2006 09:50:20 -0700 Message-ID: <000a01c6c9f8$e3aa77b0$0202a8c0@rakaposhi> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Thread-Index: AcbJ6tr6T6tlDVqmSJqmRZ7BQ8QwDAADQhywAAA562A= In-Reply-To: Cc: freebsd-questions@freebsd.org Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:10:03 -0000 And by the way, I already have MySQL 5.0 as a .tar in the mysql folder, so probably all I need to do is let php5-mysql extension know how to access that .tar file. -----Original Message----- From: Muhammad Omer Iqbal [mailto:omer@omeriqbal.com] Sent: Sunday, August 27, 2006 9:48 AM To: 'Matthew Seaman' Cc: 'freebsd-questions@freebsd.org' Subject: RE: PHP5 and MySQL Thank you for the help! It seems strange to have to install it again especially when I installed php5-extensions with mysql and mysqli extensions. When I tried to make, it tries to fetches MySQL 4.1 whereas I have 5.0 installed. How can I update the version? I have updated Makefile.ext in PHP5 directory with DEFAULT_MYSQL_VER=50, but to no avail. -----Original Message----- From: Matthew Seaman [mailto:m.seaman@infracaninophile.co.uk] Sent: Sunday, August 27, 2006 7:13 AM To: Muhammad Omer Iqbal Cc: freebsd-questions@freebsd.org Subject: Re: PHP5 and MySQL >Muhammad Omer Iqbal wrote: >> Looking through phpinfo, I do not find mysql or mysqli installed, >> even though I have enabled, remade and reinstalled both MySQL and >> PHP5. In fact, I think that my PHP5 is no longer remade, it just >> reconfigures it and reinstalls it because the build date shows as Aug >> 22 even though I did it today and my server date shows as Aug 27. I >> installed both of these using the ports collection, but then I had to >> manually download MySQL because of versioning issues, and untar and >> install it The PHP5 port has been divided into a fairly large number of modules. To add MySQL support within PHP5, simply install the databases/php5-mysql port. (Or php5-mysqli, but only if you're running mysql-4.1.x) Note that php5-mysql will cause one of the mysql-client ports to be installed as a dependency -- unless you install one of the other versions before hand, that will get you the mysql 5.0.x client. You will still need to install one of the mysql server ports, unless your DB is physically hosted on a different machine. Oh -- and the other trap for newbies is that you need to 'make config' in the lang/php5 port and make sure the 'Apache' box is checked before you'll get the Apache PHP5 module built and installed. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 17:15:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A999316A62D for ; Sun, 27 Aug 2006 17:15:28 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EF2645803 for ; Sun, 27 Aug 2006 16:39:36 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7RGdUG6090099 for ; Sun, 27 Aug 2006 11:39:30 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Sun, 27 Aug 2006 11:39:30 -0500 User-Agent: KMail/1.9.3 References: <1156653690.187188069.card@jwave.net> In-Reply-To: <1156653690.187188069.card@jwave.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200608271139.30180.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: You've got an e-card at jwave.net! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:15:28 -0000 On Saturday 26 August 2006 23:41, mail.jwave.net wrote: > You've got an e-card at jwave.net > > A friend has sent you this e-card. > "Sexy Surprise" from jwave.net! > There are 2 ways to view the e-card. > 1. Simply click the link below. > [1]http://mail.jwave.net/index.html > 2. Copy and paste the link above into your browser's address window. > Hope you enjoy our e-cards! Spread the love and send one of our > e-cards! > Brought to you by jwave.net - a better way to greet! > > Copyright =A9 1999-2006 jwave.net All rights reserved. > > References > > 1. http://mail.jwave.net/ haha, by far probably the most humorous form of spam ive seen against this= =20 list so far! From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 17:21:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D8CB616A6B9 for ; Sun, 27 Aug 2006 17:21:27 +0000 (UTC) (envelope-from fbsd@a1poweruser.com) Received: from mta13.adelphia.net (mta13.mail.adelphia.net [68.168.78.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08E4F441D7 for ; Sun, 27 Aug 2006 17:11:47 +0000 (GMT) (envelope-from fbsd@a1poweruser.com) Received: from barbish ([70.39.69.56]) by mta13.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060827171125.YNRZ59.mta13.adelphia.net@barbish>; Sun, 27 Aug 2006 13:11:25 -0400 From: "fbsd" To: "Muhammad Omer Iqbal" , "'Matthew Seaman'" Date: Sun, 27 Aug 2006 13:11:24 -0400 Message-ID: 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 IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <000901c6c9f8$9bd52f70$0202a8c0@rakaposhi> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal Cc: freebsd-questions@freebsd.org Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:21:28 -0000 Review the questions archives for details on how to correct this problem. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Muhammad Omer Iqbal Sent: Sunday, August 27, 2006 12:48 PM To: 'Matthew Seaman' Cc: freebsd-questions@freebsd.org Subject: RE: PHP5 and MySQL Thank you for the help! It seems strange to have to install it again especially when I installed php5-extensions with mysql and mysqli extensions. When I tried to make, it tries to fetches MySQL 4.1 whereas I have 5.0 installed. How can I update the version? I have updated Makefile.ext in PHP5 directory with DEFAULT_MYSQL_VER=50, but to no avail. -----Original Message----- From: Matthew Seaman [mailto:m.seaman@infracaninophile.co.uk] Sent: Sunday, August 27, 2006 7:13 AM To: Muhammad Omer Iqbal Cc: freebsd-questions@freebsd.org Subject: Re: PHP5 and MySQL >Muhammad Omer Iqbal wrote: >> Looking through phpinfo, I do not find mysql or mysqli installed, >> even though I have enabled, remade and reinstalled both MySQL and >> PHP5. In fact, I think that my PHP5 is no longer remade, it just >> reconfigures it and reinstalls it because the build date shows as Aug >> 22 even though I did it today and my server date shows as Aug 27. I >> installed both of these using the ports collection, but then I had to >> manually download MySQL because of versioning issues, and untar and >> install it The PHP5 port has been divided into a fairly large number of modules. To add MySQL support within PHP5, simply install the databases/php5-mysql port. (Or php5-mysqli, but only if you're running mysql-4.1.x) Note that php5-mysql will cause one of the mysql-client ports to be installed as a dependency -- unless you install one of the other versions before hand, that will get you the mysql 5.0.x client. You will still need to install one of the mysql server ports, unless your DB is physically hosted on a different machine. Oh -- and the other trap for newbies is that you need to 'make config' in the lang/php5 port and make sure the 'Apache' box is checked before you'll get the Apache PHP5 module built and installed. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW _______________________________________________ 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 Aug 27 17:25:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 5CBEA16A4DE for ; Sun, 27 Aug 2006 17:25:12 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout3.cac.washington.edu (mxout3.cac.washington.edu [140.142.32.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9AE943DD8 for ; Sun, 27 Aug 2006 17:19:44 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout3.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7RHJdOb029606 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 27 Aug 2006 10:19:39 -0700 X-Auth-Received: from [128.208.5.99] (nilakantha.cs.washington.edu [128.208.5.99]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7RHJdN8004768 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sun, 27 Aug 2006 10:19:39 -0700 Message-ID: <44F1D429.4050204@u.washington.edu> Date: Sun, 27 Aug 2006 10:19:37 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <1156653690.187188069.card@jwave.net> <200608271139.30180.freebsd@dfwlp.com> In-Reply-To: <200608271139.30180.freebsd@dfwlp.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-PMX-Version: 5.2.0.264296, Antispam-Engine: 2.4.0.264935, Antispam-Data: 2006.8.27.91443 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __STOCK_SUBJ_9 0, __USER_AGENT 0' Subject: Re: You've got an e-card at jwave.net! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:25:12 -0000 Jonathan Horne wrote: > On Saturday 26 August 2006 23:41, mail.jwave.net wrote: > >> You've got an e-card at jwave.net >> >> A friend has sent you this e-card. >> "Sexy Surprise" from jwave.net! >> There are 2 ways to view the e-card. >> 1. Simply click the link below. >> [1]http://mail.jwave.net/index.html >> 2. Copy and paste the link above into your browser's address window. >> Hope you enjoy our e-cards! Spread the love and send one of our >> e-cards! >> Brought to you by jwave.net - a better way to greet! >> >> Copyright © 1999-2006 jwave.net All rights reserved. >> >> References >> >> 1. http://mail.jwave.net/ >> > > haha, by far probably the most humorous form of spam ive seen against this > list so far! > No kidding. " A friend has sent you this e-card. "Sexy Surprise" from jwave.net! download and press "open" to view your e-card !" Then the stupid thing starts to download an .exe file from the site. Lol. -Garrett From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 17:38:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 68E1216A4E6 for ; Sun, 27 Aug 2006 17:38:09 +0000 (UTC) (envelope-from gorlani@gorlani.com) Received: from smtpa1.aruba.it (smtpa1.aruba.it [62.149.128.206]) by mx1.FreeBSD.org (Postfix) with SMTP id 1358F43D6D for ; Sun, 27 Aug 2006 17:38:05 +0000 (GMT) (envelope-from gorlani@gorlani.com) Received: (qmail 14988 invoked by uid 89); 27 Aug 2006 17:38:01 -0000 Received: by simscan 1.1.0 ppid: 14973, pid: 14985, t: 0.7515s scanners: clamav: 0.80/m:29/d:680 Received: from unknown (HELO thebeast) (gorlani@gorlani.com@62.10.51.22) by smtp1.aruba.it with SMTP; 27 Aug 2006 17:38:00 -0000 From: Sender: "Marcello Gorlani" To: Date: Sun, 27 Aug 2006 19:37:57 +0200 Message-ID: <000d01c6c9ff$89d0e510$4b0cfea9@thebeast> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 Thread-Index: AcbJ/2vHNtK2YnG5Rgq6GbVmpBfOZw== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Spam-Rating: smtp1.aruba.it 1.6.2 0/1000/N Subject: Understanding CARP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:38:09 -0000 Hi I'm new to FreeBSD but I'm loving it very much! I'm experimenting with CARP to create a redundant router/firewall. I created a functioning two machine routing cluster and it works very well while configured for failover. I'm going to test it with load balancing and I'm wondering about some problems that could arise. Suppose I enable load balancing features. Situation: my cluster (made by CL1 and CL2) routes from Net A to Net B. I have an A_client and a B_Server. A_Client initiates a connection to B_Server and the packet is routed by the CL1 machine. The response packet comes from the B network (it is from B_Server) and is taken by CL2 to be routed (asymmetric routing problem, as documented in the man page). If no packet filtering occurs, there is no problem. But what if I use IPFilter? Is there a way to keep the state between CL1 and CL2 with IPFilter? Also I would like to know in which way packets flow to all the members of the cluster in a switched environment, since they share the same mac address. Is CARP using a technique like Microsoft NLB to avoid switches from learning mac addresses? Does this lead, like using NLB, to flooding? Thanks From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 17:39:59 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 E149016A4E5 for ; Sun, 27 Aug 2006 17:39:59 +0000 (UTC) (envelope-from bill@wiliweld.com) Received: from typhoon.he.net (typhoon.he.net [64.62.229.2]) by mx1.FreeBSD.org (Postfix) with SMTP id A04DB43D4C for ; Sun, 27 Aug 2006 17:39:59 +0000 (GMT) (envelope-from bill@wiliweld.com) Received: from liam ([71.141.72.46]) by typhoon.he.net for ; Sun, 27 Aug 2006 10:39:57 -0700 Date: Sun, 27 Aug 2006 10:39:57 -0700 (PDT) From: Bill-S X-X-Sender: bill@liam To: freebsd-questions@FreeBSD.ORG Message-ID: System-ID: [en] (SuSE-9.3 64-bit) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Subject: ifconfig wi0 "10 number HEX key" arg ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:40:00 -0000 Hello Family, I'm on a wifi network where all the other Unix(like) and Windows laptops seem to be able to pass a "ten" (10) digit number as the "hex" key. In the "ifconfig" manpage for FreeBSD-6.1 it states, under the stanza for "wepkey" that the number must be 5 or 13 chars long. The number that is being used for the 10 digit key is: 1466466946 So, I've tried numerous calc's to see if I can convert this to a HEX, 5 or 13 char output and was wondering if I'm missing something. Of course, when WEP is turned off the wireless nic works find. Orinoco_Gold card. TIA -- Bill Schoolcraft <*> http://wiliweld.com ~ "To live long and well, employ moderation." From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 17:56:21 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4BB5016A500 for ; Sun, 27 Aug 2006 17:56:21 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51D5E43D60 for ; Sun, 27 Aug 2006 17:56:20 +0000 (GMT) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by eskimo.tundraware.com (8.13.6/8.13.6) with ESMTP id k7RHuDsv002535 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Sun, 27 Aug 2006 12:56:14 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <44F1DCB6.1040501@tundraware.com> Date: Sun, 27 Aug 2006 12:56:06 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Subject: rsync problems w/FreeBSD.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 17:56:21 -0000 When I run this: /usr/local/bin/rsync --delete -vaz rsync://ftp13.FreeBSD.org:/pub/FreeBSD/ports/i386/packages-4-stable /usr1 echo "rsync Exit Status: $?" I get this: receiving file list ... done deleting packages-4-stable/All/.linux-enemyterritory-2.60b.tgz.fzZLWH packages-4-stable/All/ packages-4-stable/All/linux-enemyterritory-2.60b.tgz inflate returned -3 (0 bytes) rsync error: error in rsync protocol data stream (code 12) at token.c(421) [receiver=2.6.8] rsync: connection unexpectedly closed (2040020 bytes received so far) [generator] rsync error: error in rsync protocol data stream (code 12) at io.c(468) [generator=2.6.8] rsync Exit Status: 12 This all worked fine until recently. Anyone have any idea of what's going on here? TIA, ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 18:06:45 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 19CA916A4DD for ; Sun, 27 Aug 2006 18:06:45 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout2.cac.washington.edu (mxout2.cac.washington.edu [140.142.33.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9B0043D49 for ; Sun, 27 Aug 2006 18:06:44 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout2.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7RHHsbI014853 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 27 Aug 2006 10:17:54 -0700 X-Auth-Received: from [128.208.5.99] (nilakantha.cs.washington.edu [128.208.5.99]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7RHHsv8004674 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sun, 27 Aug 2006 10:17:54 -0700 Message-ID: <44F1D3C0.7060100@u.washington.edu> Date: Sun, 27 Aug 2006 10:17:52 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> <44F1A5E4.20801@infracaninophile.co.uk> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.2.0.264296, Antispam-Engine: 2.4.0.264935, Antispam-Data: 2006.8.27.91443 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: BSDstats: Error message X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 18:06:45 -0000 Just wondering if this is a usual response to my accidentally hammering the bsdstats server: bash-2.05b# /usr/local/etc/periodic/monthly/300.statistics & [1] 5437 bash-2.05b# Posting monthly OS statistics to bsdstats.org Posting monthly device/CPU statistics disabled set monthly_statistics_report_devices="YES" in /etc/periodic.conf bash-2.05b# cat /etc/periodic.conf monthly_statistics_enable="YES" Got a 'new' machine (Pentium Pro 166 MHz, turning lightweight router/MTA :-).) and wanted to post it to the site. -Garrett From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 18:20:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6AC2916A4E7 for ; Sun, 27 Aug 2006 18:20:23 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from mail.stovebolt.com (mail.stovebolt.com [66.221.101.248]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0223343D6A for ; Sun, 27 Aug 2006 18:20:01 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from [192.168.2.102] (adsl-65-69-141-107.dsl.rcsntx.swbell.net [65.69.141.107]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.stovebolt.com (Postfix) with ESMTP id EE242114327; Sun, 27 Aug 2006 13:15:43 -0500 (CDT) Date: Sun, 27 Aug 2006 13:19:59 -0500 From: pauls@utdallas.edu To: Nikolas Britton , Atom Powers Message-ID: In-Reply-To: References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> X-Mailer: Mulberry/4.0.5 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========62557ED73F28F8C5645D==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Darrin Chandler , freebsd-questions@freebsd.org, "Marc G. Fournier" Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 18:20:23 -0000 --==========62557ED73F28F8C5645D========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On August 27, 2006 12:08:55 AM -0500 Nikolas Britton=20 wrote: > > What I think is interesting is the only ~50% uptake of FreeBSD/amd64 > on 64-bit x86 capable systems. FreeBSD/i386 takes ~90% of the pie. > Also the less then 1% uptake of sparc64 and alpha ports and 0% for > FreeBSD/PPC. Maybe we should can some of these platform ports, how > much overhead do they add to the project? > I don't think you have nearly enough systems inventoried to make decisions = like that. Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========62557ED73F28F8C5645D==========-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 18:34:02 2006 Return-Path: X-Original-To: questions@freebsd.org 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 18BFF16A4DD for ; Sun, 27 Aug 2006 18:34:02 +0000 (UTC) (envelope-from albi@scii.nl) Received: from post-23.mail.nl.demon.net (post-23.mail.nl.demon.net [194.159.73.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id A94B943D45 for ; Sun, 27 Aug 2006 18:34:01 +0000 (GMT) (envelope-from albi@scii.nl) Received: from aseed.demon.nl ([83.160.138.119]:22581 helo=http.aseed.net) by post-23.mail.nl.demon.net with esmtp (Exim 4.51) id 1GHPSK-000K4P-Pt for questions@freebsd.org; Sun, 27 Aug 2006 18:34:01 +0000 Received: from amandla (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.net (Postfix) with ESMTP id AAB75580A7 for ; Sun, 27 Aug 2006 20:36:48 +0200 (CEST) Date: Sun, 27 Aug 2006 20:33:58 +0200 From: albi To: questions@freebsd.org Message-Id: <20060827203358.c48f5f9b.albi@scii.nl> X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.18; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Subject: Fw: [m0n0wall-announce] Prize for FreeBSD 6.1 port of m0n0wall doubled ($2000) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 18:34:02 -0000 FYI Begin forwarded message: Date: Sun, 27 Aug 2006 16:25:40 +0200 From: Manuel Kasper To: m0n0wall-dev@lists.m0n0.ch Cc: m0n0wall-announce@lists.m0n0.ch, m0n0wall@lists.m0n0.ch Subject: [m0n0wall-announce] Prize for FreeBSD 6.1 port of m0n0wall doubled ($2000) Hello m0n0wall developers, I am glad to announce that thanks to PC Engines GmbH, supplier of WRAP embedded PC boards (www.pcengines.ch), the prize for a successful FreeBSD 6.1 port of m0n0wall has been doubled and is now USD 2000! Remember that submissions must be made on or before October 31. The full conditions are listed in the following mailing list post: http://m0n0.ch/wall/list-dev/showmsg.php?id=18/74 Regards, Manuel --------------------------------------------------------------------- To unsubscribe, e-mail: m0n0wall-announce-unsubscribe@lists.m0n0.ch For additional commands, e-mail: m0n0wall-announce-help@lists.m0n0.ch From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 18:42:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 038A416A4DA for ; Sun, 27 Aug 2006 18:42:57 +0000 (UTC) (envelope-from mohammadaj@hadara.ps) Received: from mailgate2.palnet.com (mailgate2.palnet.com [82.102.199.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7FA843D70 for ; Sun, 27 Aug 2006 18:42:52 +0000 (GMT) (envelope-from mohammadaj@hadara.ps) Received: from Mjamal (dogbert.palnet.com [192.116.17.51]) by mailgate2.palnet.com (8.12.11/8.12.11) with SMTP id k7RIkb8f029276 for ; Sun, 27 Aug 2006 21:46:38 +0300 (EEST) (envelope-from mohammadaj@hadara.ps) Message-ID: <01b401c6ca08$89c4c100$c500000a@Mjamal> From: "Mohammad Al - Jamal" To: "FreeBSD" Date: Sun, 27 Aug 2006 20:42:19 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-Palnet-MailScanner-Information: Please contact the ISP for more information X-Palnet-MailScanner: Found to be clean X-Palnet-MailScanner-SpamCheck: spam, SBL+XBL X-MailScanner-From: mohammadaj@hadara.ps Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: {Could Be Spam?} FreeBSD 6.1 network configurarion on VMware workstation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 18:42:57 -0000 Hi all I have just installed FreeBSD 6.1 on VMware workstation , and am facing a p= roblem configuring the network connection , i havn't tryed many things , w= hen i ping any ip i get " no route to host "=20 could you PLZ advice !! thanks in advance .=20 ******************************************************** Best Regards Eng.Mohammad Al -Jamal=20 Technical Support=20 Hadara Technologies=20 http://www.p-ol.com http://www.palnet.com Tel: +972-2-2403434 Fax: +972-2-2403430 ******************************************************** From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 19:54:39 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C64F816A4DE for ; Sun, 27 Aug 2006 19:54:39 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CF1843D46 for ; Sun, 27 Aug 2006 19:54:39 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7RJsbLX091664 for ; Sun, 27 Aug 2006 14:54:37 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Sun, 27 Aug 2006 14:54:37 -0500 User-Agent: KMail/1.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608271454.37351.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 19:54:39 -0000 i just brought home new samsung 22" widescreen LCD. so far, i cannot get xorg to take anything other than standard CRT type resolutions, such as 1280x1024. i took at look at my Xorg.0.log, and saw this: (II) I810(0): 720x400@70Hz (II) I810(0): 640x480@60Hz (II) I810(0): 640x480@67Hz (II) I810(0): 640x480@72Hz (II) I810(0): 640x480@75Hz (II) I810(0): 800x600@56Hz (II) I810(0): 800x600@60Hz (II) I810(0): 800x600@72Hz (II) I810(0): 800x600@75Hz (II) I810(0): 832x624@75Hz (II) I810(0): 1024x768@60Hz (II) I810(0): 1024x768@70Hz (II) I810(0): 1024x768@75Hz (II) I810(0): 1280x1024@75Hz (II) I810(0): 1152x870@75Hz (II) I810(0): Manufacturer's mask: 0 (II) I810(0): Supported Future Video Modes: (II) I810(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179 (II) I810(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) I810(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513 (II) I810(0): #3: hsize: 1152 vsize 864 refresh: 75 vid: 20337 (II) I810(0): Supported additional Video Mode: (II) I810(0): clock: 146.2 MHz Image Size: 474 x 296 mm (II) I810(0): h_active: 1680 h_sync: 1784 h_sync_end 1960 h_blank_end 2240 h_border: 0 (II) I810(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1089 v_border: 0 (II) I810(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 81 kHz, PixClock max 170 $ (II) I810(0): Monitor name: SyncMaster (II) I810(0): Serial No: H2QL700073 (II) I810(0): Will use BIOS call 0x5f05 to set refresh rates for CRTs. (--) I810(0): Maximum space available for video modes: 12288 kByte (II) I810(0): Using detected DDC timings (II) I810(0): HorizSync 30-81 (II) I810(0): VertRefresh 56-75 (WW) I810(0): config file vrefresh range 50-100Hz not within DDC vrefresh range 56-75Hz the first part, seems to be the normal video modes that i would expect to see from an i810 graphics card, but then right below that, i see video modes that would be preferred on my new monitor (1680x1050) in a section called "Supported Future Video Modes". does this mean there is a chance i might see proper resolutions for my new monitor, without upgrading to some other video card? my computer has a 915G: (II) I810(0): Integrated Graphics Chipset: Intel(R) 915G (--) I810(0): Chipset: "915G" if anyone who has a similar setup (with a wide screen monitor), i would appreciate if i could be pointed in the right direction. cheers, jonathan From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 20:03:25 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E985816A4DA for ; Sun, 27 Aug 2006 20:03:25 +0000 (UTC) (envelope-from wojtek@tensor.3miasto.net) Received: from chylonia.3miasto.net (chylonia.3miasto.net [213.192.74.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id E272143D46 for ; Sun, 27 Aug 2006 20:03:23 +0000 (GMT) (envelope-from wojtek@tensor.3miasto.net) Received: from chylonia.3miasto.net (localhost [127.0.0.1]) by chylonia.3miasto.net (8.13.4/8.13.4) with ESMTP id k7RK3FXA020193; Sun, 27 Aug 2006 22:03:15 +0200 (CEST) (envelope-from wojtek@tensor.3miasto.net) Received: from localhost (wojtek@localhost) by chylonia.3miasto.net (8.13.4/8.13.4/Submit) with ESMTP id k7RK3EpY020190; Sun, 27 Aug 2006 22:03:14 +0200 (CEST) (envelope-from wojtek@tensor.3miasto.net) X-Authentication-Warning: chylonia.3miasto.net: wojtek owned process doing -bs Date: Sun, 27 Aug 2006 22:03:13 +0200 (CEST) From: Wojciech Puchar X-X-Sender: wojtek@chylonia.3miasto.net To: ke han In-Reply-To: Message-ID: <20060827220002.C19869@chylonia.3miasto.net> References: <44EF0F92.80108@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Martin Miedema , freebsd-questions@freebsd.org Subject: Re: Intel 64bit / AMD 64 bit advantage X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 20:03:26 -0000 > 32 vs 64 bits does not give you any raw performance boost for most apps. The yes it will. FreeBSD/amd64 works at least 10% faster than FreeBSD/i386 on athlon64 machine, when i386 version were recompiled for P4. With default FreeBSD/i386 - it will be at least 30%. just because it's not just 64-bit addresses, but twice the registers (r8-r15) allowing C compiler to generate more efficient code. For now AMD64 is the fastest and cheapest architecture - at least with AMD processors, not intel clones. (YES now intel makes clones of AMD processors) From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 20:04:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 89A1B16A4DA for ; Sun, 27 Aug 2006 20:04:48 +0000 (UTC) (envelope-from hackmiester@hackmiester.com) Received: from smtpout07-04.prod.mesa1.secureserver.net (smtpout07-01.prod.mesa1.secureserver.net [64.202.165.230]) by mx1.FreeBSD.org (Postfix) with SMTP id BA7DD43D97 for ; Sun, 27 Aug 2006 20:04:23 +0000 (GMT) (envelope-from hackmiester@hackmiester.com) Received: (qmail 22289 invoked from network); 27 Aug 2006 20:04:13 -0000 Received: from unknown (70.146.255.132) by smtpout07-04.prod.mesa1.secureserver.net (64.202.165.233) with ESMTP; 27 Aug 2006 20:04:13 -0000 In-Reply-To: <20060827074946.GA60715@thought.org> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> Content-Transfer-Encoding: 7bit From: "hackmiester (Hunter Fuller)" Date: Sun, 27 Aug 2006 15:04:10 -0500 To: Gary Kline X-Mailer: Apple Mail (2.752.2) Cc: andrew clarke , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 20:04:48 -0000 On 27 August 2006, at 02:49, Gary Kline wrote: > > > Ah, thank you, thank you. I just can't see wasting so much of my > disk > [and bakup disks] for what are mostly voice/lectures. > > I suppose I can buy a DVD-R[W] and fnd out, but is there any reason > why I can't have many hours of audio on a DVD? In other words, id > a DVD > *only* for video? You can always burn a data DVD, like a data CD. > --Might be nice to gather (parts of) my favorite CD's > onto one Very long-playing disk. That would require you to burn an audio DVD, which you couldn't read in a normal CD drive... and I really don't know how exactly you would do it either... > > gary > > > > -- > Gary Kline kline@thought.org www.thought.org Public > service Unix > > _______________________________________________ > 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 Aug 27 20:32:46 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1593416A4DF for ; Sun, 27 Aug 2006 20:32:46 +0000 (UTC) (envelope-from ajm91qw@sbcglobal.net) Received: from smtp113.sbc.mail.mud.yahoo.com (smtp113.sbc.mail.mud.yahoo.com [68.142.198.212]) by mx1.FreeBSD.org (Postfix) with SMTP id 5BF3743D78 for ; Sun, 27 Aug 2006 20:32:40 +0000 (GMT) (envelope-from ajm91qw@sbcglobal.net) Received: (qmail 47202 invoked from network); 27 Aug 2006 20:32:39 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=sbcglobal.net; h=Received:Date:From:To:Subject:Message-ID:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent; b=J5cK9Uk4ZxdgldMucXvTDpDuRewLMNJKqgurbJ6T805nfYsgMPYRHZuDuEIu2DNVKOVeS1V0RKHnc0q7tYjcpa8EIOHSWjXrVSb4YZjaGKruvrtpRpk2eIxXjVvW73OERT1/z/GXtf3hDP1okXqj9tDilqj/kPaEWCrcixRTxgo= ; Received: from unknown (HELO localhost) (ajm91qw@sbcglobal.net@75.24.67.76 with plain) by smtp113.sbc.mail.mud.yahoo.com with SMTP; 27 Aug 2006 20:32:39 -0000 Date: Sun, 27 Aug 2006 15:34:09 -0500 From: ajm To: freebsd-questions@freebsd.org Message-ID: <20060827203409.GA710@powerfull.bsd> References: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> User-Agent: Mutt/1.5.11 Subject: Re: User permissions to mount CDROM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 20:32:46 -0000 On Sun, Aug 27, 2006 at 08:11:16PM +0530, Viswas Nair wrote: > I have been trying to figure out how to give users to mount CD rom and have > been largely unsuccessful. Here are a few things I tried: > 1) Added user to the 4th field (options) in /etc/fstab > 2) Added vfs.usermount=1 to sysctl.conf > 3) Created a group called optical and added the root and alpha to it > 4) Added following lines to devfs,conf : > own /dev/acd0 root:optical > perm /dev/acd0 0770 > own /dev/acd1 root:optical > perm /dev/acd1 0770 > 5) Rebooted machine and tried to mount /dev/acd0 into /cdrom and it failed > with the message: > got the error message: /dev/acd0 Try the following: create a subdirectory in the users home directory. example: /home/steven/cdrom mount_cd9660 /dev/acd0 /home/steven/cdrom also, you can change the permission to 550 (read/execute by owner and group) no need for write permission. make sure that your users are part of the optical group. One more thing...users will not be able to mount anything to /cdrom since it will belong to root/wheel. Hope this helped you. -- FreeBSD 6.0-RELEASE i386 GENERIC From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 20:58:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 20E1116A4E0 for ; Sun, 27 Aug 2006 20:58:33 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81DE143D46 for ; Sun, 27 Aug 2006 20:58:32 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1536743uge for ; Sun, 27 Aug 2006 13:58:31 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=f/+jp/tHvWpXfJL9j2LIplXZSQSijbPeK+J/3LLrRSpNsiKRIUJkgu3oeQgcR39owEmqfeQzjN42CjkUYkJ+M6XPCcjE7jbzWQQth0INJSMfCFWzf2wVvsySMSJbkQRZwJDmshXPC5ML+6cM23IiPyrdr2eQTt8cM3OCwh2gEMA= Received: by 10.67.119.13 with SMTP id w13mr3335425ugm; Sun, 27 Aug 2006 13:58:31 -0700 (PDT) Received: by 10.67.98.16 with HTTP; Sun, 27 Aug 2006 13:58:31 -0700 (PDT) Message-ID: <80f4f2b20608271358l32b84ed6m5c6e5819d38c5c01@mail.gmail.com> Date: Sun, 27 Aug 2006 16:58:31 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: IPSEC, am I missing something? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 20:58:33 -0000 I was googling "freebsd" and "vpn" so I could use my notebook to handle work stuff remotely, and I found this: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ipsec.html guess I didn't need google. Regardless, it mentions a lot of kernel options. I checked my kernel configuration file, to see if they had been turned on, they weren't even in there and commented out let alone on (as some optionals are). What I found and added: #ipsec: Required for VPN options IPSEC #IP security options IPSEC_ESP #IP security (crypto; define w/ IPSEC) #ipsec optimsations options FAST_IPSEC # new IPsec (cannot define w/ IPSEC) options IPSEC_FILTERGIF #filter ipsec packets from a tunnel before adding these, I just had the default 6.1 generic kernel file with a few things commented and a couple uncommented. Am I missing soemeting? Thanks, -Jim Stapleton From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:01:11 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 97F9C16A4DD for ; Sun, 27 Aug 2006 21:01:11 +0000 (UTC) (envelope-from freebsd01@dgmm.net) Received: from lon-mail-1.gradwell.net (lon-mail-1.gradwell.net [193.111.201.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id C91BD43D46 for ; Sun, 27 Aug 2006 21:01:10 +0000 (GMT) (envelope-from freebsd01@dgmm.net) Received: from lon-mail-1.gradwell.net ([193.111.201.125] helo=webmaker country=GB ident=dave*pop3$dgmm#net) by lon-mail-1.gradwell.net with esmtpa (Gradwell gwh-smtpd 1.232) id 44f20815.cc13.253 for freebsd-questions@freebsd.org; Sun, 27 Aug 2006 22:01:09 +0100 (envelope-sender ) From: dgmm To: freebsd-questions@freebsd.org Date: Sun, 27 Aug 2006 22:01:07 +0100 User-Agent: KMail/1.9.1 References: <20060827053654.GA60292@thought.org> In-Reply-To: <20060827053654.GA60292@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608272201.07999.freebsd01@dgmm.net> Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:01:11 -0000 On Sunday 27 August 2006 06:36, Gary Kline wrote: > files. > Reply-To: > X-Organization: Thought Unlimited. Public service Unix since 1986. > X-Of_Interest: Observing twenty years of service to the Unix community > > > Is there a way of using sox (or another translator) to turn HUGE > audio mp3 files into much much smaller files? Say taking man mp3 > files that are stored at 198k high fidelity and outputting these to > 16k or 32k mp3 (or *.ogg or other format) audio files? > > thanks for any insights, sugggestions, or pointers, > > gary I wrote this a while back. You might find it useful or be able to update it to do what you need. #!/bin/sh basedir=/home1/convert touch ${basedir}/mp3lock # Convert all mp3 files in $basedir to $bitrate, $samplerate, $channels # where $bitrate, $samplerate and $channels are derived from the pathname. # # $basedir - "top" of the tree to convert. Below $basedir should be two # directories named "todo" and "done". # Below "todo" you must create directories named using this # convention: # @bb@ss@cc@ - where bb is the desired bitrate, ss is the desired # samplerate and cc is the channels or mode. The mode # may be one of s, stereo, j, joint-stereo, m, mono, # f, forced joint-stereo or d, duel channel. # The mp3 files will be stored below "todo/@bb@ss@cc@" and will be # converted using the parameters extracted from the directory name and # then saved into an identical dir structure below "done". # # Note: Spaces in the filenames will be replaced with underscores. # Spaces in directory names will remain as is # # The original file will be deleted after it has been converted. # Comment out the rm "$filename" near the end to keep the original. # # $ffile - just the filename (in case we need this at a future date) # # $destfile - full, modified, path to the "done" dir tree find "$basedir"/todo -name "*.mp3" -type f | while read filename do destfile=`echo -n "$filename" | sed 's/\/todo\//\/done\//' | sed 's/ /_/g'` ffile=${destfile##*/} fpath=${destfile%/*} # Check if dest. path exists, create if req. if [ ! -d "$fpath" ] then mkdir -p "$fpath" fi # Get conversion parameters from pathname bitrate=`echo $destfile | cut -f 2 -d @` samplerate=`echo $destfile | cut -f 3 -d @` channels=`echo $destfile | cut -f 4 -d @` echo nice -n 20 lame -h -b $bitrate --resample $samplerate -m $channels "$filename" "$destfile" # rm "$filename" done rm `echo ${basedir}/mp3lock` -- Dave From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:15:01 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2E58E16A4DD for ; Sun, 27 Aug 2006 21:15:01 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C74B043D45 for ; Sun, 27 Aug 2006 21:14:58 +0000 (GMT) (envelope-from admin2@enabled.com) Received: from [172.24.241.5] (natint3.juniper.net [66.129.224.36]) (authenticated bits=0) by typhoon.enabled.com (8.13.8/8.13.8) with ESMTP id k7RLEwaF076313 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 27 Aug 2006 14:14:58 -0700 (PDT) (envelope-from admin2@enabled.com) Message-ID: <44F20B3D.4060001@enabled.com> Date: Sun, 27 Aug 2006 14:14:37 -0700 From: Noah User-Agent: Thunderbird 1.5.0.5 (Macintosh/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: 5.5 and SMP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:15:01 -0000 Hi there, I just installed 5.5 for the first time and I am trying to make sure that SMP is operating properly. The kernel I have loaded is rebuilt with SMP support. okay the dmesg is showing two logical CPUs. I actually only have one CPU as you can tell by the boot information. I am wondering why top is always displaying '0' in the C column? on my 4.11 machines that number is set to 0 or 1 depending on the logical CPU that is accessed. --- snip ---- Aug 27 19:19:24 hurricane kernel: Hyperthreading: 2 logical CPUs Aug 27 19:19:24 hurricane kernel: real memory = 2145849344 (2046 MB) Aug 27 19:19:24 hurricane kernel: avail memory = 2094419968 (1997 MB) Aug 27 19:19:24 hurricane kernel: FreeBSD/SMP: Multiprocessor System Detected: 2 CP Us Aug 27 19:19:24 hurricane kernel: cpu0 (BSP): APIC ID: 0 Aug 27 19:19:24 hurricane kernel: cpu1 (AP): APIC ID: 1 ---- snip --- cheers, Noah From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:17:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A2FC616A4E2 for ; Sun, 27 Aug 2006 21:17:07 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B3C943D45 for ; Sun, 27 Aug 2006 21:17:02 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [IPv6:::1] (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k7RLGaMt009062; Sun, 27 Aug 2006 22:16:37 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k7RLGaMt009062 Message-ID: <44F20BAB.2070408@infracaninophile.co.uk> Date: Sun, 27 Aug 2006 22:16:27 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: Muhammad Omer Iqbal References: <000a01c6c9f8$e3aa77b0$0202a8c0@rakaposhi> In-Reply-To: <000a01c6c9f8$e3aa77b0$0202a8c0@rakaposhi> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig01A606B14133B014CF2D4804" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [IPv6:::1]); Sun, 27 Aug 2006 22:16:57 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1736/Sun Aug 27 17:33:34 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_TESTING,NO_RELAYS autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:17:07 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig01A606B14133B014CF2D4804 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Muhammad Omer Iqbal wrote: > And by the way, I already have MySQL 5.0 as a .tar in the mysql folder,= so > probably all I need to do is let php5-mysql extension know how to acces= s > that .tar file.=20 A .tar of what? The sources? Better put them into /usr/ports/distfiles. > It seems strange to have to install it again especially when I installe= d > php5-extensions with mysql and mysqli extensions. Hmmm... Well that should have installed the php5-mysql port for you, certainly. =20 > When I tried to make, it tries to fetches MySQL 4.1 whereas I have 5.0 > installed. How can I update the version? Hmmm... Seems you have a version of the ports tree which is a few months out of date. > I have updated Makefile.ext in PHP5 directory with DEFAULT_MYSQL_VER=3D= 50, but > to no avail. As a basic rule you should never have to directly edit any file within the port directory. To make mysql-5.0.x the default version on your system, edit /etc/make.co= nf and add: WITH_MYSQL_VER=3D 50 Then do a 'make clean' in the php-mysql port and try again. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig01A606B14133B014CF2D4804 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE8gu08Mjk52CukIwRCHOcAKCPEcI6zyJocrlnLDByjzjSqOCG4gCaAyrf yp9M3GRBJb0uUPLY+zKPHbA= =PdcE -----END PGP SIGNATURE----- --------------enig01A606B14133B014CF2D4804-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:27:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 691CB16A4DA for ; Sun, 27 Aug 2006 21:27:09 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC7C643D45 for ; Sun, 27 Aug 2006 21:27:08 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.4/8.13.1) with ESMTP id k7RLR1Hc078618; Sun, 27 Aug 2006 14:27:01 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k7RLQtqJ078617; Sun, 27 Aug 2006 14:26:55 -0700 (PDT) (envelope-from kline) Date: Sun, 27 Aug 2006 14:26:54 -0700 From: Gary Kline To: "hackmiester (Hunter Fuller)" Message-ID: <20060827212654.GA77835@thought.org> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Gary Kline , andrew clarke , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:27:09 -0000 On Sun, Aug 27, 2006 at 03:04:10PM -0500, hackmiester (Hunter Fuller) wrote: > > On 27 August 2006, at 02:49, Gary Kline wrote: > > > > > > > Ah, thank you, thank you. I just can't see wasting so much of my > >disk > > [and bakup disks] for what are mostly voice/lectures. > > > > I suppose I can buy a DVD-R[W] and fnd out, but is there any reason > > why I can't have many hours of audio on a DVD? In other words, id > >a DVD > > *only* for video? > > You can always burn a data DVD, like a data CD. > > >--Might be nice to gather (parts of) my favorite CD's > > onto one Very long-playing disk. > > That would require you to burn an audio DVD, which you couldn't read > in a normal CD drive... and I really don't know how exactly you > would do it either... > > > I have a DVD burner in my newest server; my thinking is that I would burn some N *.mp3 files onto a DVD, then play it back. The questions are whether I would have to create a filesystem, or if the DVD format would allow/see the *.mp3's audio or data. Or what! -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:35:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 48D7F16A4DF for ; Sun, 27 Aug 2006 21:35:27 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89BD143D46 for ; Sun, 27 Aug 2006 21:35:26 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [IPv6:::1] (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k7RLZ1Mi009252; Sun, 27 Aug 2006 22:35:01 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k7RLZ1Mi009252 Message-ID: <44F20FFF.10306@infracaninophile.co.uk> Date: Sun, 27 Aug 2006 22:34:55 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: freebsd@gorlani.net References: <000d01c6c9ff$89d0e510$4b0cfea9@thebeast> In-Reply-To: <000d01c6c9ff$89d0e510$4b0cfea9@thebeast> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigD5633FB85B77B7FF1E8DC9E5" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [IPv6:::1]); Sun, 27 Aug 2006 22:35:22 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1736/Sun Aug 27 17:33:34 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_TESTING,NO_RELAYS autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: Understanding CARP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:35:27 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigD5633FB85B77B7FF1E8DC9E5 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable freebsd@gorlani.net wrote: > Hi > I'm new to FreeBSD but I'm loving it very much! I'm experimenting with= CARP > to create a redundant router/firewall. > I created a functioning two machine routing cluster and it works very w= ell > while configured for failover. I'm going to test it with load balancing= and > I'm wondering about some problems that could arise. > Suppose I enable load balancing features. > Situation: my cluster (made by CL1 and CL2) routes from Net A to Net B.= I > have an A_client and a B_Server. A_Client initiates a connection to B_S= erver > and the packet is routed by the CL1 machine. > The response packet comes from the B network (it is from B_Server) and = is > taken by CL2 to be routed (asymmetric routing problem, as documented in= the > man page). If no packet filtering occurs, there is no problem. But what= if I > use IPFilter? Is there a way to keep the state between CL1 and CL2 with= > IPFilter?=20 If you're using CARP, then you should combine it with pf(8) rather than IPFilter. CARP was written by the same people that wrote pf. =20 As for keeping state between both halves of a redundant firewall pair, you need pfsync(4) -- generally that takes a dedicated network link betwe= en both sides of the HA pair -- usually just a cross-over cable. pfsync=20 will replicate the state table to the other half of the HA pair, so failo= ver can be made seamless. See http://www.openbsd.org/faq/pf/carp.html=20 You can't actually do any *load balance* with CARP. It's purely a High Availability function. For firewalls it is usually used in Active/Standb= y mode: one of the firewall pair handles all the traffic and the other just= =20 waits to take over if needed. You can make an Active/Active pair by configuring two carp VIFs on the pair and setting the weightings so that each side gets one of the VIFs preferentially when everything is working = OK, but again, there's nothing there to actually *balance* the traffic over t= he two VIFs. Also, as a very reasonably priced machine nowadays will be able to cope with running as a firewall at full 100Mb/s line speed on its= own, it generally doesn't achieve anything other than making the configur= ation a lot more complex. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigD5633FB85B77B7FF1E8DC9E5 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE8hAF8Mjk52CukIwRCG5VAJ4qq748mI3YBV1P/T2t09QWnMaZnACfbHl+ 3yJwenBpcvvznXLrnKv47vY= =Q1bp -----END PGP SIGNATURE----- --------------enigD5633FB85B77B7FF1E8DC9E5-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:35:53 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AABEF16A4DA for ; Sun, 27 Aug 2006 21:35:53 +0000 (UTC) (envelope-from hackmiester@hackmiester.com) Received: from smtpauth02.prod.mesa1.secureserver.net (smtpauth02.prod.mesa1.secureserver.net [64.202.165.182]) by mx1.FreeBSD.org (Postfix) with SMTP id 3285343D53 for ; Sun, 27 Aug 2006 21:35:53 +0000 (GMT) (envelope-from hackmiester@hackmiester.com) Received: (qmail 6042 invoked from network); 27 Aug 2006 21:35:52 -0000 Received: from unknown (70.146.255.132) by smtpauth02-04.prod.mesa1.secureserver.net (64.202.165.182) with ESMTP; 27 Aug 2006 21:35:52 -0000 Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd-questions@freebsd.org From: "hackmiester (Hunter Fuller)" Date: Sun, 27 Aug 2006 16:35:51 -0500 X-Mailer: Apple Mail (2.752.2) Subject: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:35:53 -0000 Everyone will laugh at this, but I have an old box with a 25mHz processor or so. It has 8mB of memory. I want to install some type of UNIX clone on it, as a proof of concept. I don't care if it's linux, freebsd, or something else, but I need something that will run with enough speed to run an sshd and not much else. It will just be to prove that old hardware can still be used. Any suggestions? From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:37:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4E30F16A4DE for ; Sun, 27 Aug 2006 21:37:23 +0000 (UTC) (envelope-from john@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25F3343D60 for ; Sun, 27 Aug 2006 21:37:05 +0000 (GMT) (envelope-from john@jnielsen.net) Received: from ns1.jnielsen.net (jn@ns1 [69.55.238.237]) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id k7RLb3mc076174; Sun, 27 Aug 2006 14:37:03 -0700 (PDT) (envelope-from john@jnielsen.net) Received: (from www@localhost) by ns1.jnielsen.net (8.12.9p2/8.12.9/Submit) id k7RLb3Ar076173; Sun, 27 Aug 2006 17:37:03 -0400 (EDT) (envelope-from john@jnielsen.net) X-Authentication-Warning: ns1.jnielsen.net: www set sender to john@jnielsen.net using -f Received: from c-68-59-28-54.hsd1.sc.comcast.net (c-68-59-28-54.hsd1.sc.comcast.net [68.59.28.54]) by newwebmail.jnielsen.net (Horde MIME library) with HTTP; Sun, 27 Aug 2006 17:37:03 -0400 Message-ID: <20060827173703.ce76cesfks8888g8@newwebmail.jnielsen.net> Date: Sun, 27 Aug 2006 17:37:03 -0400 From: John Nielsen To: Jonathan Horne References: <200608271454.37351.freebsd@dfwlp.com> In-Reply-To: <200608271454.37351.freebsd@dfwlp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.4) / FreeBSD-4.9 X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on ns1.jnielsen.net X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:37:23 -0000 Quoting Jonathan Horne : > i just brought home new samsung 22" widescreen LCD. so far, i cannot > get xorg > to take anything other than standard CRT type resolutions, such as 1280x1024. > the first part, seems to be the normal video modes that i would expect to see > from an i810 graphics card, but then right below that, i see video modes that > would be preferred on my new monitor (1680x1050) in a section > called "Supported Future Video Modes". does this mean there is a chance i > might see proper resolutions for my new monitor, without upgrading to some > other video card? > > my computer has a 915G: > > (II) I810(0): Integrated Graphics Chipset: Intel(R) 915G > (--) I810(0): Chipset: "915G" Last I was aware, the i810 was totally dependent on the adapter's video BIOS for determining and setting modes. The sysutils/915resolution port might be able to help you, but when I was experimenting with it I didn't try any widescreen modes. I do think (again, no references) that work on the i810 driver is ongoing, but I don't know any details or ETA's for anything. JN From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:38:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 5295E16A4DA for ; Sun, 27 Aug 2006 21:38:08 +0000 (UTC) (envelope-from howie@thingy.com) Received: from mail.thingy.com (wotsit.thingy.com [212.21.100.67]) by mx1.FreeBSD.org (Postfix) with SMTP id 732EE43D62 for ; Sun, 27 Aug 2006 21:38:06 +0000 (GMT) (envelope-from howie@thingy.com) Received: (qmail 2457 invoked by uid 0); 27 Aug 2006 21:38:05 -0000 Received: from unknown (HELO ?10.0.0.12?) (212.46.145.34) by wotsit3.thingy.com with SMTP; 27 Aug 2006 21:38:05 -0000 Message-ID: <44F210BD.6040908@thingy.com> Date: Sun, 27 Aug 2006 22:38:05 +0100 From: Howard Jones User-Agent: Thunderbird 1.5.0.5 (Macintosh/20060719) MIME-Version: 1.0 To: "hackmiester (Hunter Fuller)" References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> In-Reply-To: <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Gary Kline , andrew clarke , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:38:08 -0000 hackmiester (Hunter Fuller) wrote: > On 27 August 2006, at 02:49, Gary Kline wrote: >> --Might be nice to gather (parts of) my favorite CD's >> onto one Very long-playing disk. > > That would require you to burn an audio DVD, which you couldn't read > in a normal CD drive... and I really don't know how exactly you would > do it either... Not necessarily. Both of my current DVD players can play a DVD full of MP3 files. One is a Pioneer, and the other is a more 'random' brand DVD/DiVX player. The Pioneer does a better job, but both will "play" data discs of MP3, WMA, JPEG and MPEG1 amongst other things. Another possibility would be to convert to MP2 audio and make a minimal video stream to go alongside the audio - say, a black screen, and make a DVD Video disk using something like transcode. I don't know what the bare minimum video bitrate is for DVD, but I know you can get a good few hours that way, in a format that would play on any DVD player. I've been meaning to try this for ages. Howie From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:41:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E370316A4DF for ; Sun, 27 Aug 2006 21:41:51 +0000 (UTC) (envelope-from hackmiester@hackmiester.com) Received: from smtpout06-04.prod.mesa1.secureserver.net (smtpout06-01.prod.mesa1.secureserver.net [64.202.165.224]) by mx1.FreeBSD.org (Postfix) with SMTP id D3D0A43D70 for ; Sun, 27 Aug 2006 21:41:46 +0000 (GMT) (envelope-from hackmiester@hackmiester.com) Received: (qmail 18501 invoked from network); 27 Aug 2006 21:41:46 -0000 Received: from unknown (70.146.255.132) by smtpout06-04.prod.mesa1.secureserver.net (64.202.165.227) with ESMTP; 27 Aug 2006 21:41:46 -0000 In-Reply-To: <20060827212654.GA77835@thought.org> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> <20060827212654.GA77835@thought.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "hackmiester (Hunter Fuller)" Date: Sun, 27 Aug 2006 16:41:45 -0500 To: Gary Kline X-Mailer: Apple Mail (2.752.2) Cc: andrew clarke , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:41:52 -0000 On 27 August 2006, at 16:26, Gary Kline wrote: > > I have a DVD burner in my newest server; my thinking is that > I would burn some N *.mp3 files onto a DVD, then play it back. On what? > The questions are whether I would have to create a filesystem, > or if the DVD format would allow/see the *.mp3's audio or > data. Or what! What DVD format? There is no DVD format. You can put files on one however you want. However, if you want a DVD player to read it, it has to be an ISO file system and files have to be in a certain place. This setup doesn't support mp3s directly, but you might want to look in to the "dvd audio" standard, and I'm not sure if there is a port for buring that, or not... What I'm trying to say, is if you are just gonna play them back on your computer, it doesn't matter where you put them, you can use standard tools like mkisofs, etc.. > > > > -- > Gary Kline kline@thought.org www.thought.org Public > service Unix > > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:42:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B579416A4E1 for ; Sun, 27 Aug 2006 21:42:26 +0000 (UTC) (envelope-from albi@scii.nl) Received: from post-23.mail.nl.demon.net (post-23.mail.nl.demon.net [194.159.73.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3716B43D5F for ; Sun, 27 Aug 2006 21:42:25 +0000 (GMT) (envelope-from albi@scii.nl) Received: from aseed.demon.nl ([83.160.138.119]:22649 helo=http.aseed.net) by post-23.mail.nl.demon.net with esmtp (Exim 4.51) id 1GHSOe-0006BS-3z; Sun, 27 Aug 2006 21:42:24 +0000 Received: from amandla (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.net (Postfix) with ESMTP id EBAE4580A7; Sun, 27 Aug 2006 23:45:13 +0200 (CEST) Date: Sun, 27 Aug 2006 23:42:22 +0200 From: albi To: "hackmiester (Hunter Fuller)" Message-Id: <20060827234222.3ff10c45.albi@scii.nl> In-Reply-To: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> References: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.18; i486-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: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:42:26 -0000 On Sun, 27 Aug 2006 16:35:51 -0500 "hackmiester (Hunter Fuller)" wrote: > Everyone will laugh at this, but I have an old box with a 25mHz > processor or so. It has 8mB of memory. I want to install some type > of UNIX clone on it, as a proof of concept. I don't care if it's > linux, freebsd, or something else, but I need something that will run > with enough speed to run an sshd and not much else. It will just be > to prove that old hardware can still be used. Any suggestions? it's a 386 ? try minix first, then FreeBSD 3.x :] http://www.minix3.org/download/index.html -- grtjs, albi From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:44:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4D6AD16A4DA for ; Sun, 27 Aug 2006 21:44:02 +0000 (UTC) (envelope-from hackmiester@hackmiester.com) Received: from smtpauth03.prod.mesa1.secureserver.net (smtpauth03.prod.mesa1.secureserver.net [64.202.165.183]) by mx1.FreeBSD.org (Postfix) with SMTP id 2C2B643D5A for ; Sun, 27 Aug 2006 21:43:58 +0000 (GMT) (envelope-from hackmiester@hackmiester.com) Received: (qmail 9288 invoked from network); 27 Aug 2006 21:43:57 -0000 Received: from unknown (70.146.255.132) by smtpauth03-04.prod.mesa1.secureserver.net (64.202.165.183) with ESMTP; 27 Aug 2006 21:43:56 -0000 In-Reply-To: <44F210BD.6040908@thingy.com> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> <44F210BD.6040908@thingy.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "hackmiester (Hunter Fuller)" Date: Sun, 27 Aug 2006 16:43:53 -0500 To: Howard Jones X-Mailer: Apple Mail (2.752.2) Cc: Gary Kline , andrew clarke , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:44:02 -0000 On 27 August 2006, at 16:38, Howard Jones wrote: > hackmiester (Hunter Fuller) wrote: >> That would require you to burn an audio DVD, which you couldn't >> read in a normal CD drive... and I really don't know how exactly >> you would do it either... > > Not necessarily. Both of my current DVD players can play a DVD full > of MP3 files. You bring up a good point, but that's not part of the DVD standard. > One is a Pioneer, and the other is a more 'random' brand DVD/DiVX > player. The Pioneer does a better job, but both will "play" data > discs of MP3, WMA, JPEG and MPEG1 amongst other things. > > Another possibility would be to convert to MP2 audio and make a > minimal video stream to go alongside the audio - say, a black > screen, and make a DVD Video disk using something like transcode. The blank video would waste lots of space on the DVD, I think. > I don't know what the bare minimum video bitrate is for DVD, but I > know you can get a good few hours that way, in a format that would > play on any DVD player. I've been meaning to try this for ages. That is true. > > Howie > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 21:44:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3F07B16A4DD for ; Sun, 27 Aug 2006 21:44:38 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) 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 13D9943D7E for ; Sun, 27 Aug 2006 21:44:33 +0000 (GMT) (envelope-from erikt@midgard.homeip.net) Received: from falcon.midgard.homeip.net (83.253.29.241) by pne-smtpout1-sn1.fre.skanova.net (7.2.075) id 44EDA0BC000BAB3B for freebsd-questions@freebsd.org; Sun, 27 Aug 2006 23:44:33 +0200 Received: (qmail 45244 invoked from network); 27 Aug 2006 23:44:32 +0200 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with SMTP; 27 Aug 2006 23:44:32 +0200 Received: (qmail 10460 invoked by uid 1001); 27 Aug 2006 23:44:32 +0200 Date: Sun, 27 Aug 2006 23:44:32 +0200 From: Erik Trulsson To: "hackmiester \(Hunter Fuller\)" Message-ID: <20060827214432.GA10427@owl.midgard.homeip.net> Mail-Followup-To: "hackmiester (Hunter Fuller)" , freebsd-questions@freebsd.org References: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 21:44:38 -0000 On Sun, Aug 27, 2006 at 04:35:51PM -0500, hackmiester (Hunter Fuller) wrote: > Everyone will laugh at this, but I have an old box with a 25mHz > processor or so. It has 8mB of memory. I want to install some type of > UNIX clone on it, as a proof of concept. I don't care if it's linux, > freebsd, or something else, but I need something that will run with > enough speed to run an sshd and not much else. It will just be to > prove that old hardware can still be used. Any suggestions? Take a look at NetBSD. It usually works fairly well on older hardware. Otherwise I do know for a fact that FreeBSD 3.1 will install and run just fine on such a machine. (Later 3.x and 4.x versions of FreeBSD will also run fine on that machine, but somewhere along that line (I think it was around 3.4 but I am not certain) the minimum memory needed to *install* FreeBSD increased to 12MB.) -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 22:13:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AD0D916A4DA for ; Sun, 27 Aug 2006 22:13:42 +0000 (UTC) (envelope-from steveb@escalade.erienet.net) Received: from escalade.erienet.net (24-227-4-40-st.clvdoh.adelphia.net [24.227.4.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44FA543D45 for ; Sun, 27 Aug 2006 22:13:41 +0000 (GMT) (envelope-from steveb@escalade.erienet.net) Received: (from steveb@localhost) by escalade.erienet.net (8.13.0/8.13.4) id k7RMDevE021014; Sun, 27 Aug 2006 18:13:40 -0400 (EDT) Date: Sun, 27 Aug 2006 18:13:40 -0400 From: steveb@erienet.net To: Gary Kline Message-ID: <20060827181340.A18228@erienet.net> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20060827074946.GA60715@thought.org>; from kline@tao.thought.org on Sun, Aug 27, 2006 at 12:49:46AM -0700 Cc: freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 22:13:42 -0000 > Ah, thank you, thank you. I just can't see wasting so much of my disk > [and bakup disks] for what are mostly voice/lectures. > > I suppose I can buy a DVD-R[W] and fnd out, but is there any reason > why I can't have many hours of audio on a DVD? In other words, id a DVD > *only* for video? --Might be nice to gather (parts of) my favorite CD's > onto one Very long-playing disk. > If your DVD player can't play mp3s, then it can't play DVDs. ;) Remember, mp3s are the audio layer of mpegs. And DVD videos consist of mpegs. You can downsample mp3s via lame: #!/bin/sh for i in $(ls *.mp3); do lame -b 16 $i -o $i.mp3; done This will leave you with with files named *.mp3.mp3. Check out 'basename' to solve this. Not that your DVD player is going to care. Then use "growisofs" to burn your mp3s to a data DVD: growisofs -Z /dev/insert_device_name_here -J -R . This assumes you issue the growisofs command from the dir where your mp3s are. Happy listening, Steve -- "Sed omnia praeclara tam difficilia, quam rara sunt." 06 12 09 0E 0B 12 15 0C 05 13 From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 22:21:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E190F16A4DA for ; Sun, 27 Aug 2006 22:21:34 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from strange.daemonsecurity.com (59.Red-81-33-11.staticIP.rima-tde.net [81.33.11.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D9D043D45 for ; Sun, 27 Aug 2006 22:21:33 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from [10.35.4.65] (65.4-35-10-static.chueca.wifi [10.35.4.65]) by strange.daemonsecurity.com (Postfix) with ESMTP id 1C8462E02A; Mon, 28 Aug 2006 00:21:32 +0200 (CEST) Message-ID: <44F21AC3.2080908@locolomo.org> Date: Mon, 28 Aug 2006 00:20:51 +0200 From: =?ISO-8859-1?Q?Erik_N=F8rgaard?= Organization: Locolomo.ORG User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: Jim Stapleton References: <80f4f2b20608271358l32b84ed6m5c6e5819d38c5c01@mail.gmail.com> In-Reply-To: <80f4f2b20608271358l32b84ed6m5c6e5819d38c5c01@mail.gmail.com> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms060208030101080405030103" Cc: freebsd-questions@freebsd.org Subject: Re: IPSEC, am I missing something? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 22:21:35 -0000 This is a cryptographically signed message in MIME format. --------------ms060208030101080405030103 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Jim Stapleton wrote: > What I found and added: > #ipsec: Required for VPN > options IPSEC #IP security > options IPSEC_ESP #IP security (crypto; define w/ IPSEC) > #ipsec optimsations > options FAST_IPSEC # new IPsec (cannot define w/ IPSEC) > options IPSEC_FILTERGIF #filter ipsec packets from a tunnel > > before adding these, I just had the default 6.1 generic kernel file > with a few things commented and a couple uncommented. Just start with the first two options, then add the others if needed. But before you start, check if this actually solves the problem. There is a well known problem with IPSec across NAT-firewalls: Authenticated Headers don't work. Not all kernel options are in the GENERIC file, look for the NOTES file, platform specific NOTES are where you find the GENERIC for your platform, but there is also a general NOTES. Cheers, Erik -- Ph: +34.666334818 web: http://www.locolomo.org X.509 Certificate: http://www.locolomo.org/crt/8D03551FFCE04F0C.crt Key ID: 69:79:B8:2C:E3:8F:E7:BE:5D:C3:C3:B1:74:62:B8:3F:9F:1F:69:B9 --------------ms060208030101080405030103 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIL5jCC Be8wggPXoAMCAQICCQCNA1Uf/OBPDDANBgkqhkiG9w0BAQUFADCBmTELMAkGA1UEBhMCRVMx GDAWBgNVBAoTD0RhZW1vbiBTZWN1cml0eTEeMBwGA1UECxMVQ2VydGlmaWNhdGUgQXV0aG9y aXR5MR4wHAYDVQQDExVDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxJDAiBgkqhkiG9w0BCQEWFWNh QGRhZW1vbnNlY3VyaXR5LmNvbTEKMAgGA1UEBRMBMDAeFw0wNjA0MjAxMzE2NTBaFw0wNzA0 MjAxMzE2NTBaMGIxCzAJBgNVBAYTAkVTMRUwEwYDVQQKEwxMb2NvTG9tby5PcmcxFjAUBgNV BAMTDUVyaWsgTm9yZ2FhcmQxJDAiBgkqhkiG9w0BCQEWFW5vcmdhYXJkQGxvY29sb21vLm9y ZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMPmPk5QnkyvR4ZNS/jYCYEk6/x/ mqSIqM7XXmikYX4AmbS4AbgJg7tY150ti87oYIjH4pnt1ReYWV4P2lDE2w0Db73Fk3TGpYcq XNUu4uRl8eoMX6Mh5I34tzJc+ZJqXW0pQtzP7JDgPvLddh0roY/ongaqpnrA6dDh0QfEC+ky z1abx9xmp776RPfRnbzjUht9VGPohiZFLyNfLgw5x4Q5/efDtx3tKDMJP67UnVd1tbclKbOs +HaqxYXNr1TJ9HIpRpfb4IhBFCvBDiiHUjbGtpi2EXeHuwoQ8cp7mjl6j1BfGaoFHvqzA1GD +156qJ9waxEvx/0XGudqWJeFTVkCAwEAAaOCAW4wggFqMA8GA1UdEwEB/wQFMAMCAQAwCwYD VR0PBAQDAgO4MB0GA1UdDgQWBBRpebgs44/nvl3Dw7F0Yrg/nx9puTCBzgYDVR0jBIHGMIHD gBSOYakm6rz5V4h0qO3QlbBuYT3ipaGBn6SBnDCBmTELMAkGA1UEBhMCRVMxGDAWBgNVBAoT D0RhZW1vbiBTZWN1cml0eTEeMBwGA1UECxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR4wHAYD VQQDExVDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxJDAiBgkqhkiG9w0BCQEWFWNhQGRhZW1vbnNl Y3VyaXR5LmNvbTEKMAgGA1UEBRMBMIIJAI0DVR/84E8BMCAGA1UdEQQZMBeBFW5vcmdhYXJk QGxvY29sb21vLm9yZzA4BgNVHR8EMTAvMC2gK6AphidodHRwOi8vd3d3LmRhZW1vbnNlY3Vy aXR5LmNvbS9jYS9kcy5jcmwwDQYJKoZIhvcNAQEFBQADggIBAMefA0DXBeUmPG353ldj4jQP TKusU49AGPtH0gI0W7gnc8L6NQb7/lzpF1xW3fVOXmDBSQrSzdsmPoUiQBOv8/GTPiJbktbr eHGPDDi7xTmNgGCh/gv9EECEc0casKs778FMhJxQDIKUrBpdxpxUVHxzR9m2MgCaiOPi0oru o5ZjdNh4PyfSrYkkMJmp9w7ouulyf7wSOwwyIxZixWHVIo0lJBZCFQqIcCXzmnLUhlUKqMGb 0sOsPh7GITecrfGAM8iBpLuRjGe3yDa8Xx2riflJLjKxqcSg0OIhibS3xkGTgoJhtAJBB21G CkcnHmLXmnXYZvfE/D4twmSGo3j4D79xFA5xMJU5IwNYT+agU2srRq11eZvtVK3p2sF2rgSK 99cbCHL0K3AhhiF9z+1uLjZO8UgnvB81rQG+Kzn/nvZgQ1bvxKnrtzs3UuKPyAXflNVSiMwO vUv04tBJcIGrdiav64BTQFBgguY7JWWkrsaTeEMUHXW6aUyGCfngQ2LR6McfDeZZLM0BKXiv pjozutGTR76khWqSsttSZQoGoNbMRcHodFCZ2RHSsM1rPKINY1w7vTnr8oEVD3D+pY1UrM/o vDkvS8ypr+gg66pMC0gXl7cReoFNiE118sHKlAEGKNlka3Pga2r+AL6KrjwCZHMwOFDheFoN k9rxTruKV0O0MIIF7zCCA9egAwIBAgIJAI0DVR/84E8MMA0GCSqGSIb3DQEBBQUAMIGZMQsw CQYDVQQGEwJFUzEYMBYGA1UEChMPRGFlbW9uIFNlY3VyaXR5MR4wHAYDVQQLExVDZXJ0aWZp Y2F0ZSBBdXRob3JpdHkxHjAcBgNVBAMTFUNlcnRpZmljYXRlIEF1dGhvcml0eTEkMCIGCSqG SIb3DQEJARYVY2FAZGFlbW9uc2VjdXJpdHkuY29tMQowCAYDVQQFEwEwMB4XDTA2MDQyMDEz MTY1MFoXDTA3MDQyMDEzMTY1MFowYjELMAkGA1UEBhMCRVMxFTATBgNVBAoTDExvY29Mb21v Lk9yZzEWMBQGA1UEAxMNRXJpayBOb3JnYWFyZDEkMCIGCSqGSIb3DQEJARYVbm9yZ2FhcmRA bG9jb2xvbW8ub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw+Y+TlCeTK9H hk1L+NgJgSTr/H+apIioztdeaKRhfgCZtLgBuAmDu1jXnS2LzuhgiMfime3VF5hZXg/aUMTb DQNvvcWTdMalhypc1S7i5GXx6gxfoyHkjfi3Mlz5kmpdbSlC3M/skOA+8t12HSuhj+ieBqqm esDp0OHRB8QL6TLPVpvH3GanvvpE99GdvONSG31UY+iGJkUvI18uDDnHhDn958O3He0oMwk/ rtSdV3W1tyUps6z4dqrFhc2vVMn0cilGl9vgiEEUK8EOKIdSNsa2mLYRd4e7ChDxynuaOXqP UF8ZqgUe+rMDUYP7Xnqon3BrES/H/Rca52pYl4VNWQIDAQABo4IBbjCCAWowDwYDVR0TAQH/ BAUwAwIBADALBgNVHQ8EBAMCA7gwHQYDVR0OBBYEFGl5uCzjj+e+XcPDsXRiuD+fH2m5MIHO BgNVHSMEgcYwgcOAFI5hqSbqvPlXiHSo7dCVsG5hPeKloYGfpIGcMIGZMQswCQYDVQQGEwJF UzEYMBYGA1UEChMPRGFlbW9uIFNlY3VyaXR5MR4wHAYDVQQLExVDZXJ0aWZpY2F0ZSBBdXRo b3JpdHkxHjAcBgNVBAMTFUNlcnRpZmljYXRlIEF1dGhvcml0eTEkMCIGCSqGSIb3DQEJARYV Y2FAZGFlbW9uc2VjdXJpdHkuY29tMQowCAYDVQQFEwEwggkAjQNVH/zgTwEwIAYDVR0RBBkw F4EVbm9yZ2FhcmRAbG9jb2xvbW8ub3JnMDgGA1UdHwQxMC8wLaAroCmGJ2h0dHA6Ly93d3cu ZGFlbW9uc2VjdXJpdHkuY29tL2NhL2RzLmNybDANBgkqhkiG9w0BAQUFAAOCAgEAx58DQNcF 5SY8bfneV2PiNA9Mq6xTj0AY+0fSAjRbuCdzwvo1Bvv+XOkXXFbd9U5eYMFJCtLN2yY+hSJA E6/z8ZM+IluS1ut4cY8MOLvFOY2AYKH+C/0QQIRzRxqwqzvvwUyEnFAMgpSsGl3GnFRUfHNH 2bYyAJqI4+LSiu6jlmN02Hg/J9KtiSQwman3Dui66XJ/vBI7DDIjFmLFYdUijSUkFkIVCohw JfOactSGVQqowZvSw6w+HsYhN5yt8YAzyIGku5GMZ7fINrxfHauJ+UkuMrGpxKDQ4iGJtLfG QZOCgmG0AkEHbUYKRyceYteaddhm98T8Pi3CZIajePgPv3EUDnEwlTkjA1hP5qBTaytGrXV5 m+1UrenawXauBIr31xsIcvQrcCGGIX3P7W4uNk7xSCe8HzWtAb4rOf+e9mBDVu/Eqeu3OzdS 4o/IBd+U1VKIzA69S/Ti0Elwgat2Jq/rgFNAUGCC5jslZaSuxpN4QxQddbppTIYJ+eBDYtHo xx8N5lkszQEpeK+mOjO60ZNHvqSFapKy21JlCgag1sxFweh0UJnZEdKwzWs8og1jXDu9Oevy gRUPcP6ljVSsz+i8OS9LzKmv6CDrqkwLSBeXtxF6gU2ITXXywcqUAQYo2WRrc+Brav4Avoqu PAJkczA4UOF4Wg2T2vFOu4pXQ7QxggP8MIID+AIBATCBpzCBmTELMAkGA1UEBhMCRVMxGDAW BgNVBAoTD0RhZW1vbiBTZWN1cml0eTEeMBwGA1UECxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5 MR4wHAYDVQQDExVDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxJDAiBgkqhkiG9w0BCQEWFWNhQGRh ZW1vbnNlY3VyaXR5LmNvbTEKMAgGA1UEBRMBMAIJAI0DVR/84E8MMAkGBSsOAwIaBQCgggIp MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTA2MDgyNzIyMjA1 MVowIwYJKoZIhvcNAQkEMRYEFGB1M6GGcs0w1VE/oAS/EytI8BRUMFIGCSqGSIb3DQEJDzFF MEMwCgYIKoZIhvcNAwcwDgYIKoZIhvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIH MA0GCCqGSIb3DQMCAgEoMIG4BgkrBgEEAYI3EAQxgaowgacwgZkxCzAJBgNVBAYTAkVTMRgw FgYDVQQKEw9EYWVtb24gU2VjdXJpdHkxHjAcBgNVBAsTFUNlcnRpZmljYXRlIEF1dGhvcml0 eTEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MSQwIgYJKoZIhvcNAQkBFhVjYUBk YWVtb25zZWN1cml0eS5jb20xCjAIBgNVBAUTATACCQCNA1Uf/OBPDDCBugYLKoZIhvcNAQkQ AgsxgaqggacwgZkxCzAJBgNVBAYTAkVTMRgwFgYDVQQKEw9EYWVtb24gU2VjdXJpdHkxHjAc BgNVBAsTFUNlcnRpZmljYXRlIEF1dGhvcml0eTEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0 aG9yaXR5MSQwIgYJKoZIhvcNAQkBFhVjYUBkYWVtb25zZWN1cml0eS5jb20xCjAIBgNVBAUT ATACCQCNA1Uf/OBPDDANBgkqhkiG9w0BAQEFAASCAQAH+P8B+W4teyrxbl0E9YgmXiOljIqL dPC2GUmcWCkruVVpo4QScC4KkI0NwVC1juPxm6J6O8EjQCiVajPKhJ50oyKgA/ja6VbEn1re lZDkgosDNg/Mec/fn/CatNwtCiMdETxPhiXfacl5WQA8D2O+xZMDtd/R4cVC4G5SxHWjfVVH 4dLyTyG62Rl0vq0af7etBWYED1SrV8iTyTM6FR7lRXhUHBd3Ci9S1AhF1n2w6YCMDh2UNzNy QDWiDJLGeIiYeh/tT5oFUGhwcfzpEUNsxcevUSO8HQ/EmR46MUQUS2lducH9wMZB20Z1BROv gRqEcAEQoErJKThXYy+JCDCRAAAAAAAA --------------ms060208030101080405030103-- From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 22:24:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4672416A4DA for ; Sun, 27 Aug 2006 22:24:30 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 701FC43D45 for ; Sun, 27 Aug 2006 22:24:29 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1551616uge for ; Sun, 27 Aug 2006 15:24:28 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=s9Z1qAxtDL28ViONmj+GZ8rDK/4xERJblDv6WC+5N23jy1ym6Apv6mJl2l1yjPTYVVpdlN3ZclhkpIiv866Q9wl8TmwwUkJki5z2DP3Wgop0a1jAwNTH5eupsvyQyugtej3PG6Aeukd1eP4MD1wKykUrq4yyqBmU6Ikplf6JPhU= Received: by 10.66.221.19 with SMTP id t19mr3364077ugg; Sun, 27 Aug 2006 15:24:28 -0700 (PDT) Received: by 10.67.98.16 with HTTP; Sun, 27 Aug 2006 15:24:28 -0700 (PDT) Message-ID: <80f4f2b20608271524t560e31f8qd30b773da75b8609@mail.gmail.com> Date: Sun, 27 Aug 2006 18:24:28 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <44F21AC3.2080908@locolomo.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <80f4f2b20608271358l32b84ed6m5c6e5819d38c5c01@mail.gmail.com> <44F21AC3.2080908@locolomo.org> Subject: Re: IPSEC, am I missing something? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 22:24:30 -0000 OK, thanks. Right now there are no "problems", I just am looking to figure out how to connect to my works VPN from home. Right now I'm looking at the actual VPN part, but after that I have to check how to do remote desktop/terminal services for the windows server I have to work on. Thank you, -Jim Stapleton On 8/27/06, Erik N=F8rgaard wrote: > Jim Stapleton wrote: > > > What I found and added: > > #ipsec: Required for VPN > > options IPSEC #IP security > > options IPSEC_ESP #IP security (crypto; define w/ IPSEC) > > #ipsec optimsations > > options FAST_IPSEC # new IPsec (cannot define w/ IPSEC) > > options IPSEC_FILTERGIF #filter ipsec packets from a tunnel > > > > before adding these, I just had the default 6.1 generic kernel file > > with a few things commented and a couple uncommented. > > Just start with the first two options, then add the others if needed. > But before you start, check if this actually solves the problem. There > is a well known problem with IPSec across NAT-firewalls: Authenticated > Headers don't work. > > Not all kernel options are in the GENERIC file, look for the NOTES file, > platform specific NOTES are where you find the GENERIC for your > platform, but there is also a general NOTES. > > Cheers, Erik > -- > Ph: +34.666334818 web: http://www.locolomo.org > X.509 Certificate: http://www.locolomo.org/crt/8D03551FFCE04F0C.crt > Key ID: 69:79:B8:2C:E3:8F:E7:BE:5D:C3:C3:B1:74:62:B8:3F:9F:1F:69:B9 > > > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 23:01:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E6C8816A4E5 for ; Sun, 27 Aug 2006 23:01:23 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.238]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7254A43D5A for ; Sun, 27 Aug 2006 23:01:23 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1493270wxd for ; Sun, 27 Aug 2006 16:01:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=P4OeQd4NuNURjc0Yfg2l0HdIzItst+nS9yhEXUBWokSToFbDfE6qoB0m1kzwYSpzHilcvxG7ZQPleRcmlRTzoV68z3UM7M66QkLJfBeXV24oFfI9nMxZGn7ELEFpPvAyKZmiXYs2/XoStaN9ii0C1aN5wd0IgY8dKxaRhwxCOoU= Received: by 10.70.52.5 with SMTP id z5mr8263418wxz; Sun, 27 Aug 2006 16:01:22 -0700 (PDT) Received: by 10.70.49.3 with HTTP; Sun, 27 Aug 2006 16:01:22 -0700 (PDT) Message-ID: Date: Sun, 27 Aug 2006 18:01:22 -0500 From: "Nikolas Britton" To: "hackmiester (Hunter Fuller)" In-Reply-To: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> Cc: freebsd-questions@freebsd.org Subject: Re: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 23:01:24 -0000 On 8/27/06, hackmiester (Hunter Fuller) wrote: > Everyone will laugh at this, but I have an old box with a 25mHz > processor or so. It has 8mB of memory. I want to install some type of > UNIX clone on it, as a proof of concept. I don't care if it's linux, > freebsd, or something else, but I need something that will run with > enough speed to run an sshd and not much else. It will just be to > prove that old hardware can still be used. Any suggestions? > _______________________________________________ That box doesn't have enough memory to run a current version of FreeBSD or Linux. Also what CPU does it use? FreeBSD 6.x, and I'm sure Linux 2.6, removed 386 support. You need a 486 or better to run the current version of FreeBSD. Does this box have a math coprocessor? The "recommended" minimum requirements to run FreeBSD 6.1 is a Pentium MMX, or equivalent, with 32MB of system ram. You can get by with less but you won't like the results if you plan to use it as a workstation. Use FreeBSD 4.11-STABLE or 5.5-STABLE for anything less then that. I did some tests on disk space and memory requirements back in January with FreeBSD 6.0-RELEASE. Nobody seemed to notice the first time so I'll post it again: Test Rig: VMware 5 (Win2K/NTFS), VM Settings: 32MB RAM 64MB RAM For KDE-Lite Install (failed with 32MB) 128MB RAM For GNOME-Lite Install (failed with 64MB) 4GB Hard Drive (Default settings) CD-ROM (Pointing to FreeBSD 6.0-RELEASE i386 ISO Images) No USB, No Audio, No LAN FreeBSD Disk Layout: ad0s1a 4095MB / ufs2 ad0s1b null swap null ad0s1d null /var null ad0s1e null /tmp null ad0s1f null /usr null Everything (/tmp, /var, and /usr) is setup on the root partition, no swap partition was setup. Results: * 1st column of numbers are from the VM disk image file. * 2nd column is from inside FreeBSD with "du -m". * All numbers reported in megabytes. Distribution Sets: Developer 918 741 X-Developer 1080 882 Kern-Developer 526 427 X-Kern-Developer 690 568 User 393 319 X-User 560 461 Minimal 183 156 Extrapolated Results: Ports System 283 270 GNOME-Lite 688 655 KDE-Lite 879 864 X.Org Default Install 164 143 X.Org Full Install 177 158 Linux Binary Compat. 255 127 Sys Sources + Proflibs 392 315 Kern Sources + Proflibs 133 109 Miscellaneous Sets: X-User (All X.Org) 572 476 X-User + GNOME-Lite 1247 1115 X-User + KDE-Lite 1438 1323 Minimal + Ports System 466 425 Minimal + Linux Compat. 438 282 -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 23:17:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9277B16A4DA for ; Sun, 27 Aug 2006 23:17:00 +0000 (UTC) (envelope-from hackmiester@hackmiester.com) Received: from smtpout08-04.prod.mesa1.secureserver.net (smtpout08-04.prod.mesa1.secureserver.net [64.202.165.12]) by mx1.FreeBSD.org (Postfix) with SMTP id C8E8A43D68 for ; Sun, 27 Aug 2006 23:16:56 +0000 (GMT) (envelope-from hackmiester@hackmiester.com) Received: (qmail 2960 invoked from network); 27 Aug 2006 23:16:55 -0000 Received: from unknown (70.146.255.132) by smtpout08-04.prod.mesa1.secureserver.net (64.202.165.12) with ESMTP; 27 Aug 2006 23:16:54 -0000 In-Reply-To: References: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "hackmiester (Hunter Fuller)" Date: Sun, 27 Aug 2006 18:16:52 -0500 To: "Nikolas Britton" X-Mailer: Apple Mail (2.752.2) Cc: freebsd-questions@freebsd.org Subject: Re: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 23:17:00 -0000 On 27 August 2006, at 18:01, Nikolas Britton wrote: > On 8/27/06, hackmiester (Hunter Fuller) > wrote: > > That box doesn't have enough memory to run a current version of > FreeBSD or Linux. I just want a version to run, a new one is obviously pushing it :) > Also what CPU does it use? 386 > FreeBSD 6.x, and I'm sure > Linux 2.6, removed 386 support. You need a 486 or better to run the > current version of FreeBSD. Does this box have a math coprocessor? Yes. > The "recommended" minimum requirements to run FreeBSD 6.1 is a Pentium > MMX, or equivalent, with 32MB of system ram. You can get by with less > but you won't like the results if you plan to use it as a workstation. LOL, no, that would be torture, it's purely proof of concept. > Use FreeBSD 4.11-STABLE or 5.5-STABLE for anything less then that. > > I did some tests on disk space and memory requirements back in January > with FreeBSD 6.0-RELEASE. Nobody seemed to notice the first time so > I'll post it again: > > Test Rig: > VMware 5 (Win2K/NTFS), VM Settings: > 32MB RAM > 64MB RAM For KDE-Lite Install (failed with 32MB) > 128MB RAM For GNOME-Lite Install (failed with 64MB) > 4GB Hard Drive (Default settings) > CD-ROM (Pointing to FreeBSD 6.0-RELEASE i386 ISO Images) > No USB, No Audio, No LAN > > FreeBSD Disk Layout: > ad0s1a 4095MB / ufs2 > ad0s1b null swap null > ad0s1d null /var null > ad0s1e null /tmp null > ad0s1f null /usr null > > Everything (/tmp, /var, and /usr) is setup on the root partition, no > swap partition was setup. > > Results: > * 1st column of numbers are from the VM disk image file. > * 2nd column is from inside FreeBSD with "du -m". > * All numbers reported in megabytes. > > Distribution Sets: > Developer 918 741 > X-Developer 1080 882 > Kern-Developer 526 427 > X-Kern-Developer 690 568 > User 393 319 > X-User 560 461 > Minimal 183 156 > > Extrapolated Results: > Ports System 283 270 > GNOME-Lite 688 655 > KDE-Lite 879 864 > X.Org Default Install 164 143 > X.Org Full Install 177 158 > Linux Binary Compat. 255 127 > Sys Sources + Proflibs 392 315 > Kern Sources + Proflibs 133 109 > > Miscellaneous Sets: > X-User (All X.Org) 572 476 > X-User + GNOME-Lite 1247 1115 > X-User + KDE-Lite 1438 1323 > Minimal + Ports System 466 425 > Minimal + Linux Compat. 438 282 > > -- > BSD Podcasts @: > http://bsdtalk.blogspot.com/ > http://freebsdforall.blogspot.com/ > From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 23:37:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3D51716A4DA for ; Sun, 27 Aug 2006 23:37:54 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57BCE43D45 for ; Sun, 27 Aug 2006 23:37:50 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (patr530-a084.otenet.gr [212.205.215.84]) (authenticated bits=128) by igloo.linux.gr (8.13.7/8.13.7/Debian-2) with ESMTP id k7RNbXGs004541 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 28 Aug 2006 02:37:37 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k7REWqxO025442 for ; Sun, 27 Aug 2006 17:32:52 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k7REWqJW025441; Sun, 27 Aug 2006 17:32:52 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 27 Aug 2006 17:32:52 +0300 From: Giorgos Keramidas To: "J.D. Bronson" Message-ID: <20060827143252.GB25408@gothmog.pc> References: <7.0.1.0.2.20060826150124.01982d10@sixcompanies.com> <20060826204015.GI1311@gothmog.pc> <7.0.1.0.2.20060826160530.01982d10@sixcompanies.com> <20060826220706.GC2666@gothmog.pc> <7.0.1.0.2.20060826170941.01982d10@sixcompanies.com> <20060826221904.GD2666@gothmog.pc> <7.0.1.0.2.20060826194439.01973050@sixcompanies.com> <20060827005922.GB4853@gothmog.pc> <7.0.1.0.2.20060826203050.019701d0@sixcompanies.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7.0.1.0.2.20060826203050.019701d0@sixcompanies.com> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.577, required 5, AWL -0.48, BAYES_00 -2.60, DATE_IN_PAST_06_12 0.50, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: ipfilter on 6.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 23:37:54 -0000 On 2006-08-26 20:31, "J.D. Bronson" wrote: > At 07:59 PM 8/26/2006, you wrote: > >I'd go for the simpler syntax of: > > > > MYADDR: > > ! /sbin/ipf -y > > well that didnt work either. what a pain. :( > > tun0: Warning: /etc/ppp/ppp.linkup: ! /sbin/ipf -y: Invalid command > > perhaps its time to write a script and simply reference the script > from ppp.linkup This is indeed, a good idea :) From owner-freebsd-questions@FreeBSD.ORG Sun Aug 27 23:39:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 48F9216A4E8 for ; Sun, 27 Aug 2006 23:39:34 +0000 (UTC) (envelope-from hackmiester@hackmiester.com) Received: from smtpout04-04.prod.mesa1.secureserver.net (smtpout04-04.prod.mesa1.secureserver.net [64.202.165.199]) by mx1.FreeBSD.org (Postfix) with SMTP id B9F0243D60 for ; Sun, 27 Aug 2006 23:39:33 +0000 (GMT) (envelope-from hackmiester@hackmiester.com) Received: (qmail 7104 invoked from network); 27 Aug 2006 23:39:33 -0000 Received: from unknown (70.146.255.132) by smtpout04-04.prod.mesa1.secureserver.net (64.202.165.199) with ESMTP; 27 Aug 2006 23:39:31 -0000 In-Reply-To: <20060827234222.3ff10c45.albi@scii.nl> References: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> <20060827234222.3ff10c45.albi@scii.nl> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "hackmiester (Hunter Fuller)" Date: Sun, 27 Aug 2006 18:39:27 -0500 To: albi X-Mailer: Apple Mail (2.752.2) Cc: freebsd-questions@freebsd.org Subject: Re: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 23:39:34 -0000 On 27 August 2006, at 16:42, albi wrote: > > it's a 386 ? try minix first Does it have a way to install without a CD? FBSD has floppies that you can network install using. I can't use CDs because the CD drive of this box can't read CD-Rs =( > , then FreeBSD 3.x :] > > http://www.minix3.org/download/index.html > > -- > grtjs, > albi > From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 00:08:49 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 73AAE16A4DF for ; Mon, 28 Aug 2006 00:08:49 +0000 (UTC) (envelope-from scrappy@freebsd.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0158D43D45 for ; Mon, 28 Aug 2006 00:08:46 +0000 (GMT) (envelope-from scrappy@freebsd.org) Received: from localhost (wm.hub.org [200.46.204.128]) by hub.org (Postfix) with ESMTP id BA56B290C74; Sun, 27 Aug 2006 21:08:35 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.128]) (amavisd-new, port 10024) with ESMTP id 31088-05; Mon, 28 Aug 2006 00:08:45 +0000 (UTC) Received: by hub.org (Postfix, from userid 1046) id 6C820291B01; Sun, 27 Aug 2006 21:08:34 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id 62844291AFE; Sun, 27 Aug 2006 21:08:34 -0300 (ADT) Date: Sun, 27 Aug 2006 21:08:34 -0300 (ADT) From: "Marc G. Fournier" X-X-Sender: freebsd@hub.org To: Matthew Seaman In-Reply-To: <44F1A5E4.20801@infracaninophile.co.uk> Message-ID: <20060827210218.Y82634@hub.org> References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> <44F1A5E4.20801@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Darrin Chandler , Atom Powers , Nikolas Britton , freebsd-questions@freebsd.org Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 00:08:49 -0000 On Sun, 27 Aug 2006, Matthew Seaman wrote: > Nikolas Britton wrote: > >> What I think is interesting is the only ~50% uptake of FreeBSD/amd64 >> on 64-bit x86 capable systems. FreeBSD/i386 takes ~90% of the pie. >> Also the less then 1% uptake of sparc64 and alpha ports and 0% for >> FreeBSD/PPC. Maybe we should can some of these platform ports, how >> much overhead do they add to the project? > > Woah! It's way, way too soon to start making any decisions based on the > bsdstats site. There's less than a thousand machines reporting stats > so far -- that's a very small fraction of the FreeBSD total machines > around the world. As it is a single small company or user with half > a dozen machines submitting their data could have a radical effect on > the ordering of many of the tables available on the site. > > The BSD Stats site is going to need some serious popularization before > it provides a statistically significant sample. Definitely in agreement here ... this wasn't meant as a quick-n-dirty short term analysis of *BSD usage ... this was meant to *start* a very long term project to accumulate more accurate #s then are attainable via ftp logs and CD sales ... less "guestimates" ... I figure we need to get to *at least* 10k hosts reporting in monthly before we have anything really solid to work with, so we just approaching 1/10th of the way there now ... I'm going to post some summary statistics at the end of each month, to act as a 'reminder' to those that aren't participating yet ... and trying to post follow ups to threads that talk about convincing vendors to support us natively (ie. Adobe w/ Flash) ... this should hopefully provide more concrete numbers then an 'online petition' to go at ppl like that about ... Hell, its only been, what, 2 weeks since v3.x got started, at we're doing on average 61 new hosts per day ... that means ~4 months at the current rate to hit 10k hosts ... :) From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 00:24:22 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 79EB616A4DD for ; Mon, 28 Aug 2006 00:24:22 +0000 (UTC) (envelope-from steve.lake@raiden.net) Received: from dragoncrest.jasnetworks.net (dragoncrest.jasnetworks.net [69.51.151.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9257843D46 for ; Mon, 28 Aug 2006 00:24:20 +0000 (GMT) (envelope-from steve.lake@raiden.net) Received: from works.raiden.net (works.jasnetworks.net [192.168.0.3]) by dragoncrest.jasnetworks.net (8.13.1/8.12.8) with ESMTP id k7S0OWoh090280 for ; Sun, 27 Aug 2006 20:24:32 -0400 (EDT) (envelope-from steve.lake@raiden.net) Message-Id: <5.2.0.9.2.20060827203504.01b57ec0@192.168.0.30> X-Sender: megosdog@192.168.0.30 X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Sun, 27 Aug 2006 20:36:40 -0400 To: freebsd-questions@FreeBSD.ORG From: Steve Lake Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: Subject: File associations, Mime-types and X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 00:24:22 -0000 Just curious of something. How are file associations handled in Freebsd? Are they handled on the OS level, Xwindows, or is it handled by the actual Window Manager such as KDE or Gnome? Just curious because I'm trying to help someone troubleshoot something he's developing. Thanks. Steven Lake Owner/Technical Writer Raiden's Realm www.raiden.net A friendly web community From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 00:29:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7BCAE16A4DA for ; Mon, 28 Aug 2006 00:29:09 +0000 (UTC) (envelope-from mikhailg@webanoide.org) Received: from overlord.navalradio.cl (overlord.navalradio.cl [201.236.67.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57FC943D72 for ; Mon, 28 Aug 2006 00:29:06 +0000 (GMT) (envelope-from mikhailg@webanoide.org) Received: from [192.168.0.4] (ppp108-110.static.internode.on.net [150.101.108.110]) (authenticated bits=0) by overlord.navalradio.cl (8.13.6/8.13.6) with ESMTP id k7S0Shb0009142; Sun, 27 Aug 2006 20:28:49 -0400 (CLT) (envelope-from mikhailg@webanoide.org) Message-ID: <44F238BB.8090203@webanoide.org> Date: Mon, 28 Aug 2006 10:28:43 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 1.5.0.5 (Macintosh/20060719) MIME-Version: 1.0 To: Noah References: <44F20B3D.4060001@enabled.com> In-Reply-To: <44F20B3D.4060001@enabled.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-100.0 required=5.0 tests=USER_IN_WHITELIST autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on overlord.navalradio.cl Cc: freebsd-questions@freebsd.org Subject: Re: 5.5 and SMP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 00:29:09 -0000 Noah wrote: > Hi there, > > I just installed 5.5 for the first time and I am trying to make sure > that SMP is operating properly. The kernel I have loaded is rebuilt > with SMP support. okay the dmesg is showing two logical CPUs. I > actually only have one CPU as you can tell by the boot information. I > am wondering why top is always displaying '0' in the C column? on my > 4.11 machines that number is set to 0 or 1 depending on the logical CPU > that is accessed. > > --- snip ---- > > Aug 27 19:19:24 hurricane kernel: Hyperthreading: 2 logical CPUs > Aug 27 19:19:24 hurricane kernel: real memory = 2145849344 (2046 MB) > Aug 27 19:19:24 hurricane kernel: avail memory = 2094419968 (1997 MB) > Aug 27 19:19:24 hurricane kernel: FreeBSD/SMP: Multiprocessor System > Detected: 2 CP > Us > Aug 27 19:19:24 hurricane kernel: cpu0 (BSP): APIC ID: 0 > Aug 27 19:19:24 hurricane kernel: cpu1 (AP): APIC ID: 1 > > ---- snip --- Hi, You have to activate hyperthreading: http://docs.freebsd.org/cgi/mid.cgi?20060730235206.7A7B743D45 Cheers, Mikhail. -- Mikhail Goriachev Webanoide Telephone: +61 (0)3 62252501 Mobile Phone: +61 (0)4 38255158 E-Mail: mikhailg@webanoide.org Web: http://www.webanoide.org PGP Key ID: 0x4E148A3B PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 01:04:32 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A667716A4DD for ; Mon, 28 Aug 2006 01:04:32 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCD2F43D45 for ; Mon, 28 Aug 2006 01:04:31 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 4780 invoked from network); 28 Aug 2006 01:04:31 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 28 Aug 2006 01:04:31 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 1568528449; Sun, 27 Aug 2006 21:04:29 -0400 (EDT) To: Free BSD Questions list References: <20060826200345.GA17422@teddy.fas.com> From: Lowell Gilbert Date: Sun, 27 Aug 2006 21:04:29 -0400 In-Reply-To: <20060826200345.GA17422@teddy.fas.com> (stan's message of "Sat, 26 Aug 2006 16:03:45 -0400") Message-ID: <447j0thdr6.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: Ports cvsup failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 01:04:32 -0000 stan writes: > I just set up a new cvsup server, using the cvsup-mirror port. I can use it > to update everything that I need but the ports collection. It fails like > this: > > Parsing supfile "ports-supfile" > Connecting to cvsup.meadwestvaco.com > Connected to cvsup.meadwestvaco.com > Server software version: SNAP_16_1h > Negotiating file attribute support > Exchanging collection information > Establishing passive-mode data connection > Running > Updating collection ports-all/cvs > Detailer failed: Network write failure: Connection lost > Will retry at 16:07:17 > > This happens both on remote machines, and locally on the cvsup machine > itself. I see the following in dmesg: > > pid 1618 (cvsupd), uid 1002: exited on signal 10 > > Can anyone sugest where to start looking for this problem? Okay, so basically your problem is that cvsupd is crashing. I doubt it matters whether the client is cvsup or csup. For a start, run cvsupd in verbose mode to see what it notices about the problem before it hits the bus error. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 01:09:11 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 2C3E716A4DA for ; Mon, 28 Aug 2006 01:09:11 +0000 (UTC) (envelope-from hackmiester@hackmiester.com) Received: from smtpauth03.prod.mesa1.secureserver.net (smtpauth03.prod.mesa1.secureserver.net [64.202.165.183]) by mx1.FreeBSD.org (Postfix) with SMTP id 32E4943D53 for ; Mon, 28 Aug 2006 01:09:09 +0000 (GMT) (envelope-from hackmiester@hackmiester.com) Received: (qmail 5506 invoked from network); 28 Aug 2006 01:09:09 -0000 Received: from unknown (70.146.255.132) by smtpauth03-04.prod.mesa1.secureserver.net (64.202.165.183) with ESMTP; 28 Aug 2006 01:09:09 -0000 In-Reply-To: <5.2.0.9.2.20060827203504.01b57ec0@192.168.0.30> References: <5.2.0.9.2.20060827203504.01b57ec0@192.168.0.30> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "hackmiester (Hunter Fuller)" Date: Sun, 27 Aug 2006 20:09:08 -0500 To: Steve Lake X-Mailer: Apple Mail (2.752.2) Cc: freebsd-questions@FreeBSD.ORG Subject: Re: File associations, Mime-types and X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 01:09:11 -0000 On 27 August 2006, at 19:36, Steve Lake wrote: > Just curious of something. How are file associations > handled in Freebsd? Are they handled on the OS level, Xwindows, or > is it handled by the actual Window Manager such as KDE or Gnome? Your file manager determines which app to run to open a certain file. > Just curious because I'm trying to help someone troubleshoot > something he's developing. Thanks. > > > Steven Lake > Owner/Technical Writer > Raiden's Realm > www.raiden.net > A friendly web community > > > _______________________________________________ > 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 Aug 28 01:26:47 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 501C916A4DA for ; Mon, 28 Aug 2006 01:26:47 +0000 (UTC) (envelope-from dkelly@HiWAAY.net) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBA4043D46 for ; Mon, 28 Aug 2006 01:26:46 +0000 (GMT) (envelope-from dkelly@HiWAAY.net) Received: (qmail 22793 invoked by uid 0); 28 Aug 2006 01:26:45 -0000 Received: from unknown (HELO ?10.0.0.6?) (216.186.148.249) by smtp2.knology.net with SMTP; 28 Aug 2006 01:26:45 -0000 In-Reply-To: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> References: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <47E43A34-8468-44D9-A57F-FBBCF6C81D8D@HiWAAY.net> Content-Transfer-Encoding: 7bit From: David Kelly Date: Sun, 27 Aug 2006 20:26:43 -0500 To: hackmiester (Hunter Fuller) X-Mailer: Apple Mail (2.752.2) Cc: freebsd-questions@freebsd.org Subject: Re: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 01:26:47 -0000 On Aug 27, 2006, at 4:35 PM, hackmiester (Hunter Fuller) wrote: > Everyone will laugh at this, but I have an old box with a 25mHz > processor or so. It has 8mB of memory. I want to install some type > of UNIX clone on it, as a proof of concept. I don't care if it's > linux, freebsd, or something else, but I need something that will > run with enough speed to run an sshd and not much else. It will > just be to prove that old hardware can still be used. Any suggestions? Haven't booted it in a long time but have FreeBSD 2.1.0 or 2.1.5 on a 16 MHz 386sx16 with 4 MB of RAM. Has an 8 bit NE2000 NIC which required the NFS window be reduced to 1k or so. I used this as a "portable FreeBSD netinstall box" back in the bad old days before I could afford a CD-R, or even have CD-ROM on many machines. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 01:28:58 2006 Return-Path: X-Original-To: questions@freebsd.org 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 C001A16A4DF for ; Mon, 28 Aug 2006 01:28:58 +0000 (UTC) (envelope-from lauasanf@wilderness.homeip.net) Received: from mxsf41.cluster1.charter.net (mxsf41.cluster1.charter.net [209.225.28.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05F2D43D46 for ; Mon, 28 Aug 2006 01:28:57 +0000 (GMT) (envelope-from lauasanf@wilderness.homeip.net) Received: from mxip35a.cluster1.charter.net (mxip35a.cluster1.charter.net [209.225.28.250]) by mxsf41.cluster1.charter.net (8.12.11.20060308/8.12.11) with ESMTP id k7S1SuA0031585 for ; Sun, 27 Aug 2006 21:28:56 -0400 Received: from 24-159-55-136.dhcp.jcsn.tn.charter.com (HELO [192.168.1.6]) ([24.159.55.136]) by mxip35a.cluster1.charter.net with ESMTP; 27 Aug 2006 21:28:57 -0400 Message-ID: <44F246D7.1040600@wilderness.homeip.net> Date: Sun, 27 Aug 2006 20:28:55 -0500 From: Laurence Sanford User-Agent: Thunderbird 1.5.0.5 (X11/20060804) MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: ports/net-p2p/ktorrent - can't compile X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 01:28:58 -0000 Just looking for pointers, as I've seen them here from time to time when a port won't build. I'm using the following command line: portupgrade -NR ktorrent All dependencies build successfully. The ktorrent build fails like this: /usr/X11R6/bin/moc ./peermanager.h -o peermanager.moc source='peermanager.cpp' object='peermanager.lo' libtool=yes \ depfile='.deps/peermanager.Plo' tmpdepfile='.deps/peermanager.TPlo' \ depmode=gcc3 /bin/sh ../../admin/depcomp \ /bin/sh /usr/local/bin/libtool --silent --mode=compile --tag=CXX c++ -DHAVE_CONFIG_H -I. -I. -I../.. -I./.. -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include -D_THREAD_SAFE -pthread -DQT_THREAD_SUPPORT -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -D_GETOPT_H -D_THREAD_SAFE -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -O2 -fno-strict-aliasing -pipe -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -fexceptions -c -o peermanager.lo `test -f 'peermanager.cpp' || echo './'`peermanager.cpp In file included from ./../mse/encryptedauthenticate.h:25, from peermanager.cpp:34: ./../mse/bigint.h:26:17: gmp.h: No such file or directory In file included from ./../mse/encryptedauthenticate.h:25, from peermanager.cpp:34: ./../mse/bigint.h:93: error: `mpz_t' does not name a type gmake[3]: *** [peermanager.lo] Error 1 gmake[3]: Leaving directory `/usr/ports/net-p2p/ktorrent/work/ktorrent-2.0.1/libktorrent/torrent' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/net-p2p/ktorrent/work/ktorrent-2.0.1/libktorrent' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/net-p2p/ktorrent/work/ktorrent-2.0.1' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/net-p2p/ktorrent. Anyone run into this problem and worked around it? From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 01:47:20 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C059216A4DA for ; Mon, 28 Aug 2006 01:47:20 +0000 (UTC) (envelope-from ke.han@redstarling.com) Received: from smtp106.biz.mail.mud.yahoo.com (smtp106.biz.mail.mud.yahoo.com [68.142.200.254]) by mx1.FreeBSD.org (Postfix) with SMTP id 4926243D53 for ; Mon, 28 Aug 2006 01:47:20 +0000 (GMT) (envelope-from ke.han@redstarling.com) Received: (qmail 75981 invoked from network); 28 Aug 2006 01:47:19 -0000 Received: from unknown (HELO ?192.168.1.20?) (ke.han@redstarling.com@61.170.136.61 with plain) by smtp106.biz.mail.mud.yahoo.com with SMTP; 28 Aug 2006 01:47:19 -0000 In-Reply-To: <20060827220002.C19869@chylonia.3miasto.net> References: <44EF0F92.80108@gmail.com> <20060827220002.C19869@chylonia.3miasto.net> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <47B7C4B9-BB47-48EE-A70B-9A9D6B671207@redstarling.com> Content-Transfer-Encoding: 7bit From: ke han Date: Mon, 28 Aug 2006 09:47:15 +0800 To: Wojciech Puchar X-Mailer: Apple Mail (2.752.2) Cc: Martin Miedema , freebsd-questions@freebsd.org Subject: Re: Intel 64bit / AMD 64 bit advantage X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 01:47:20 -0000 On Aug 28, 2006, at 4:03 AM, Wojciech Puchar wrote: >> 32 vs 64 bits does not give you any raw performance boost for most >> apps. The > > yes it will. FreeBSD/amd64 works at least 10% faster than FreeBSD/ > i386 on athlon64 machine, when i386 version were recompiled for P4. > With default FreeBSD/i386 - it will be at least 30%. > > just because it's not just 64-bit addresses, but twice the > registers (r8-r15) allowing C compiler to generate more efficient > code. > > For now AMD64 is the fastest and cheapest architecture - at least > with AMD processors, not intel clones. (YES now intel makes clones > of AMD processors) I stand corrected ;-)...This is good info, thanks. However, to the original post, you will not see 10-30 % performance difference on your email or file sharing between an Intel Celeron and AMD Opteron. These types of apps are Disk and Network IO bound. Spend your money on redundancy/fail-over of hard drive and power supply. Also choosing a well regarded NIC is important. ke han > _______________________________________________ > 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 Aug 28 01:56:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 25CB216A4DA for ; Mon, 28 Aug 2006 01:56:38 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 133F143D46 for ; Mon, 28 Aug 2006 01:56:36 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.4/8.13.1) with ESMTP id k7S1uSYL079380; Sun, 27 Aug 2006 18:56:28 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k7S1uLFq079379; Sun, 27 Aug 2006 18:56:21 -0700 (PDT) (envelope-from kline) Date: Sun, 27 Aug 2006 18:56:21 -0700 From: Gary Kline To: Howard Jones Message-ID: <20060828015621.GA79317@thought.org> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> <44F210BD.6040908@thingy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44F210BD.6040908@thingy.com> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Gary Kline , andrew clarke , "hackmiester \(Hunter Fuller\)" , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 01:56:38 -0000 On Sun, Aug 27, 2006 at 10:38:05PM +0100, Howard Jones wrote: > hackmiester (Hunter Fuller) wrote: > >On 27 August 2006, at 02:49, Gary Kline wrote: > >>--Might be nice to gather (parts of) my favorite CD's > >> onto one Very long-playing disk. > > > >That would require you to burn an audio DVD, which you couldn't read > >in a normal CD drive... and I really don't know how exactly you would > >do it either... > > Not necessarily. Both of my current DVD players can play a DVD full of > MP3 files. One is a Pioneer, and the other is a more 'random' brand > DVD/DiVX player. The Pioneer does a better job, but both will "play" > data discs of MP3, WMA, JPEG and MPEG1 amongst other things. > > Another possibility would be to convert to MP2 audio and make a minimal > video stream to go alongside the audio - say, a black screen, and make a > DVD Video disk using something like transcode. I don't know what the > bare minimum video bitrate is for DVD, but I know you can get a good few > hours that way, in a format that would play on any DVD player. I've been > meaning to try this for ages. Well, if/when you *do* try, please clue me in. --I'm too new to DVD's and tooo che--er, thrifty to buy a ten pack of blanks. I'm not sure that I have three hours of "favorites"; probably, but no more. Most of my favorite tunes are on tape--pre-recorded and hi-fidelity, but the problem is turnning analogue to digital. Anyway, good to know that DVD's can "play" datafiles! gary > > Howie -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 02:36:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AD6DF16A4DA for ; Mon, 28 Aug 2006 02:36:12 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A22143D46 for ; Mon, 28 Aug 2006 02:36:12 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1537000wxd for ; Sun, 27 Aug 2006 19:36:11 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LaQ8S6XzXDYHLFQ6iHu6mJVM58rSXq5fCNEWrkjJNl7gjyVpYcHjdP5mAPhHQsU2fzXeC+JvQnJoM7W2/3/hbXF8MxvFSvPuA0bJkgING8MxLNdwGLfWBsvRXVfr8AqafNS3EPvPH+zGjmIz/I4JQxAmjVdS1/HXGsA9KEFWGZc= Received: by 10.70.67.4 with SMTP id p4mr8468915wxa; Sun, 27 Aug 2006 19:36:11 -0700 (PDT) Received: by 10.70.49.3 with HTTP; Sun, 27 Aug 2006 19:36:11 -0700 (PDT) Message-ID: Date: Sun, 27 Aug 2006 21:36:11 -0500 From: "Nikolas Britton" To: "David Kelly" In-Reply-To: <47E43A34-8468-44D9-A57F-FBBCF6C81D8D@HiWAAY.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> <47E43A34-8468-44D9-A57F-FBBCF6C81D8D@HiWAAY.net> Cc: freebsd-questions@freebsd.org, Hunter Fuller hackmiester Subject: Re: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 02:36:12 -0000 On 8/27/06, David Kelly wrote: > > On Aug 27, 2006, at 4:35 PM, hackmiester (Hunter Fuller) wrote: > > > Everyone will laugh at this, but I have an old box with a 25mHz > > processor or so. It has 8mB of memory. I want to install some type > > of UNIX clone on it, as a proof of concept. I don't care if it's > > linux, freebsd, or something else, but I need something that will > > run with enough speed to run an sshd and not much else. It will > > just be to prove that old hardware can still be used. Any suggestions? > > Haven't booted it in a long time but have FreeBSD 2.1.0 or 2.1.5 on a > 16 MHz 386sx16 with 4 MB of RAM. > > Has an 8 bit NE2000 NIC which required the NFS window be reduced to > 1k or so. I used this as a "portable FreeBSD netinstall box" back in > the bad old days before I could afford a CD-R, or even have CD-ROM on > many machines. > You could try FreeBSD 2.2.9! It was released April 1st 2006. "Releases which are published from a -STABLE branch will be supported by the Security Officer for a minimum of 12 months after the release." http://www.freebsd.org/security/security.html#adv So technically it's a current and fully supported release of FreeBSD!!! hahahaha! :-0 -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 02:40:47 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 973FC16A4E0 for ; Mon, 28 Aug 2006 02:40:47 +0000 (UTC) (envelope-from scrappy@freebsd.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id E10DF43D49 for ; Mon, 28 Aug 2006 02:40:46 +0000 (GMT) (envelope-from scrappy@freebsd.org) Received: from localhost (wm.hub.org [200.46.204.128]) by hub.org (Postfix) with ESMTP id 13972290C74; Sun, 27 Aug 2006 23:40:34 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.128]) (amavisd-new, port 10024) with ESMTP id 75648-07; Mon, 28 Aug 2006 02:40:45 +0000 (UTC) Received: by hub.org (Postfix, from userid 1046) id DC473291AFE; Sun, 27 Aug 2006 23:40:32 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id D166A290C74; Sun, 27 Aug 2006 23:40:32 -0300 (ADT) Date: Sun, 27 Aug 2006 23:40:32 -0300 (ADT) From: "Marc G. Fournier" X-X-Sender: freebsd@hub.org To: Garrett Cooper In-Reply-To: <44F1D3C0.7060100@u.washington.edu> Message-ID: <20060827233906.I82634@hub.org> References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> <44F1A5E4.20801@infracaninophile.co.uk> <44F1D3C0.7060100@u.washington.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: BSDstats: Error message X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 02:40:47 -0000 On Sun, 27 Aug 2006, Garrett Cooper wrote: > Just wondering if this is a usual response to my accidentally hammering the > bsdstats server: > > bash-2.05b# /usr/local/etc/periodic/monthly/300.statistics & > [1] 5437 > bash-2.05b# Posting monthly OS statistics to bsdstats.org > Posting monthly device/CPU statistics disabled > set monthly_statistics_report_devices="YES" in /etc/periodic.conf > bash-2.05b# cat /etc/periodic.conf > monthly_statistics_enable="YES" > > Got a 'new' machine (Pentium Pro 166 MHz, turning lightweight router/MTA > :-).) and wanted to post it to the site. The above looks okay ... you reported your OS, as you listed in periodic.conf, but unless you add 'monthly_statistics_report_devices="YES"' to /etc/periodic.conf, it won't report CPUs or devices ... if you add that line and re-run teh script, it won't report a second server, but will update to show the CPUs/Devices ... From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 03:24:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A181316A4E0 for ; Mon, 28 Aug 2006 03:24:57 +0000 (UTC) (envelope-from debian-devel-admin@debian.or.jp) Received: from osdn.debian.or.jp (osdn.debian.or.jp [61.215.208.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26DE343D53 for ; Mon, 28 Aug 2006 03:24:57 +0000 (GMT) (envelope-from debian-devel-admin@debian.or.jp) Received: from lists.debian.or.jp (osdn.debian.or.jp [61.215.208.41]) by osdn.debian.or.jp (Postfix) with ESMTP id 1FB73C30F2 for ; Mon, 28 Aug 2006 12:25:04 +0900 (JST) Date: Mon, 28 Aug 2006 12:25:04 +0900 From: debian-devel-admin@debian.or.jp To: freebsd-questions@freebsd.org Message-Id: <200608281225.FMLAAA32231.debian-devel@debian.or.jp> References: <20060828032500.8AC2AC323F@osdn.debian.or.jp> X-MLServer: fml [fml 4.0.3 release (20011202/4.0.3)] X-ML-Info: If you have a question, please contact debian-devel-admin@debian.or.jp; Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Subject: Subscribe request result (debian-devel ML) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: debian-devel-ctl@debian.or.jp List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 03:24:57 -0000 Hi, I am the fml ML manager for the ML . --debian-devel@debian.or.jp, Be Seeing You! ************************************************************ If you have any questions or problems, please contact debian-devel-admin@debian.or.jp ************************************************************ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 03:54:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E557C16A4DE for ; Mon, 28 Aug 2006 03:54:18 +0000 (UTC) (envelope-from maraya@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B35F43D45 for ; Mon, 28 Aug 2006 03:54:18 +0000 (GMT) (envelope-from maraya@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so1297012nfc for ; Sun, 27 Aug 2006 20:54:17 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Uq/1PcOVHTB2kRGEGk0txvLlOgHOHQ2YU+OdjKkUyCcF40i4ld62UMtXfjheXnYj8DkWAcfQrPBYWS9dlfzkkkljIqfzANAM8fOx+4LGmDvsuQqvyxBTIUokpAqoGmEQoM2vgrHv1wYsfLaPcFEMmKR6JWTKtNOxshfh1Qz1XNg= Received: by 10.49.8.4 with SMTP id l4mr8486863nfi; Sun, 27 Aug 2006 20:54:17 -0700 (PDT) Received: by 10.49.51.1 with HTTP; Sun, 27 Aug 2006 20:54:16 -0700 (PDT) Message-ID: Date: Sun, 27 Aug 2006 21:54:16 -0600 From: "Mauricio Araya V." To: freebsd-questions@freebsd.org In-Reply-To: <2cd0a0da0608250020l5cbd36a1q9f1bda028e635094@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <2cd0a0da0608250020l5cbd36a1q9f1bda028e635094@mail.gmail.com> Cc: VeeJay Subject: Re: Help for Hardware Selection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 03:54:19 -0000 Hi there! On 8/25/06, VeeJay wrote: > Hello FreeBSD Gurus!!! > > I am wondering if any of you could help me to select a Good & Reliable > hardware for Dedicated FreeBSD Web/Database Server. There is a list of hardware vendors at FreeBSD.org (http://www.freebsd.org/commercial/hardware.html). Ask some them about they can offer based on your needs. Regards, -- Mauricio http://mauricioaraya.net/ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 04:39:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 30E8E16A4DD for ; Mon, 28 Aug 2006 04:39:52 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABBC743D45 for ; Mon, 28 Aug 2006 04:39:51 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1563575wxd for ; Sun, 27 Aug 2006 21:39:51 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=je0RICZlo+OnvCGmUJuIXVxypmD2gsdBw879C4iGaRIlLZnS/w44mIrntKbzl9GFD7EfL6x4Y6Pj4gIHQYFV+fcgNpXp8NaMSCwY7rzIlsaZdtpCNaJJjjmZlERgYk8HuwqYLikm0QkumfY5ZtbRKsIyjF7uRHsPxmlL+kH4Gp4= Received: by 10.70.67.4 with SMTP id p4mr8621742wxa; Sun, 27 Aug 2006 21:39:50 -0700 (PDT) Received: by 10.70.49.3 with HTTP; Sun, 27 Aug 2006 21:39:50 -0700 (PDT) Message-ID: Date: Sun, 27 Aug 2006 23:39:50 -0500 From: "Nikolas Britton" To: "hackmiester (Hunter Fuller)" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <5584A99D-CB53-45D8-B552-BFF89A01E9C8@hackmiester.com> Cc: freebsd-questions@freebsd.org Subject: Re: Proof of concept box with 8mB RAM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 04:39:52 -0000 I just tested the minimum memory requirements for FreeBSD 6.1-RELEASE through 2.2.9-RELEASE using VMware 5 Workstation: FreeBSD 6.1-RELEASE: 4MB, 8MB: Dies at bootstrap loader. 12MB, 16MB: Dies while loading acpi.ko. 20MB: Boots / Successfully installed the default minimal distribution set. Mem: 2484K Active, 1396K Iact, 6004K Wired, 680K Cache, 1984K Buf, 348K Free Swap: 7184K Total, 2732K Used, 4452K Free, 38% Inuse FreeBSD 5.5-RELEASE: 4MB, 8MB: Dies at bootstrap loader. 12MB, 16MB: Dies while loading acpi.ko. 20MB: Boots / Sysinstall dies after writing filesystem information. 24MB: Boots / Successfully installed the default minimal distribution set. Mem: 2332K Active, 1196K Iact, 9468K Wired, 1136K Cache, 3008K Buf, 840K Free Swap: 32M Total, 2748K Used, 29M Free, 8% Inuse FreeBSD 4.11-RELEASE: 4MB: Dies at bootstrap loader. 8MB: Dies while mounting root filesystem. 12MB: Boots / Successfully installed the default minimal distribution set. Mem: 1900K Active, 1408K Iact, 2896K Wired, 472K Cache, 1120K Buf, 308K Free Swap: 32M Total, 2576K Used, 29M Free, 7% Inuse FreeBSD 3.5.1-RELEASE: 4MB: Dies at bootstrap loader. 8MB: Boots / Sysinstall dies while extracting files. 12MB: Boots / Successfully installed the default minimal distribution set. Mem: 712K Active, 3780K Iact, 2092K Wired, 2024K Cache, 809K Buf, 520K Free Swap: 29M Total, 29M Free FreeBSD 2.2.9-RELEASE: 4MB: Boots / Sysinstall dies while probing devices. 8MB: Boots / Successfully installed the default minimal distribution set. Mem: 3764K Active, 432K Iact, 1472K Wired, 244K Cache, 420K Buf, 184K Free Swap: 42M Total, 64K Used, 42M Free From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 05:19:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 F0FFD16A4DD for ; Mon, 28 Aug 2006 05:19:41 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36DED43D45 for ; Mon, 28 Aug 2006 05:19:41 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1571312wxd for ; Sun, 27 Aug 2006 22:19:40 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=XtvheKCHsn+VhwV1gr6NJ6RtiV9BVKXHQwNHFfaY9PurAyEDn+AHDMeOBrUg8e53kdW6ckUdvxZIzKPf3kXXjESrWHQuUSri1koKsr0yelbaZNWG8ZHYOD3Fg8bt9BFjzDuiOb2mq1cvELvcnWqaTAInGBVnSilOLvd/AVOuho4= Received: by 10.70.76.11 with SMTP id y11mr8576811wxa; Sun, 27 Aug 2006 22:19:40 -0700 (PDT) Received: by 10.70.49.3 with HTTP; Sun, 27 Aug 2006 22:19:40 -0700 (PDT) Message-ID: Date: Mon, 28 Aug 2006 00:19:40 -0500 From: "Nikolas Britton" To: freebsd-doc@freebsd.org, "FreeBSD Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: FreeBSD's minimum memory requirements. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 05:19:42 -0000 I just tested the minimum memory requirements for FreeBSD 6.1-RELEASE through 2.2.9-RELEASE using VMware 5 Workstation: FreeBSD 6.1-RELEASE: 4MB, 8MB: Dies at bootstrap loader. 12MB, 16MB: Dies while loading acpi.ko. 20MB: Boots / Successfully installed the default minimal distribution set. Mem: 2484K Active, 1396K Iact, 6004K Wired, 680K Cache, 1984K Buf, 348K Free Swap: 7184K Total, 2732K Used, 4452K Free, 38% Inuse FreeBSD 5.5-RELEASE: 4MB, 8MB: Dies at bootstrap loader. 12MB, 16MB: Dies while loading acpi.ko. 20MB: Boots / Sysinstall dies after writing filesystem information. 24MB: Boots / Successfully installed the default minimal distribution set. Mem: 2332K Active, 1196K Iact, 9468K Wired, 1136K Cache, 3008K Buf, 840K Free Swap: 32M Total, 2748K Used, 29M Free, 8% Inuse FreeBSD 4.11-RELEASE: 4MB: Dies at bootstrap loader. 8MB: Dies while mounting root filesystem. 12MB: Boots / Successfully installed the default minimal distribution set. Mem: 1900K Active, 1408K Iact, 2896K Wired, 472K Cache, 1120K Buf, 308K Free Swap: 32M Total, 2576K Used, 29M Free, 7% Inuse FreeBSD 3.5.1-RELEASE: 4MB: Dies at bootstrap loader. 8MB: Boots / Sysinstall dies while extracting files. 12MB: Boots / Successfully installed the default minimal distribution set. Mem: 712K Active, 3780K Iact, 2092K Wired, 2024K Cache, 809K Buf, 520K Free Swap: 29M Total, 29M Free FreeBSD 2.2.9-RELEASE: 4MB: Boots / Sysinstall dies while probing devices. 8MB: Boots / Successfully installed the default minimal distribution set. Mem: 3764K Active, 432K Iact, 1472K Wired, 244K Cache, 420K Buf, 184K Free Swap: 42M Total, 64K Used, 42M Free I also did a minimum disk space study using FreeBSD 6.0-RELEASE back in January: * 1st column of numbers are from the VM disk image file, outside FreeBSD. This is significant because it records the total disk space FreeBSD needed *during* install. * 2nd column is from inside FreeBSD with "du -m" after install. * All numbers reported in megabytes. Distribution Sets: Developer 918 741 X-Developer 1080 882 Kern-Developer 526 427 X-Kern-Developer 690 568 User 393 319 X-User 560 461 Minimal 183 156 Extrapolated Results: Ports System 283 270 GNOME-Lite 688 655 KDE-Lite 879 864 X.Org Default Install 164 143 X.Org Full Install 177 158 Linux Binary Compat. 255 127 Sys Sources + Proflibs 392 315 Kern Sources + Proflibs 133 109 Miscellaneous Sets: X-User (All X.Org) 572 476 X-User + GNOME-Lite 1247 1115 X-User + KDE-Lite 1438 1323 Minimal + Ports System 466 425 Minimal + Linux Compat. 438 282 -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 07:08:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BBA8816A4E0 for ; Mon, 28 Aug 2006 07:08:35 +0000 (UTC) (envelope-from admin2@enabled.com) Received: from typhoon.enabled.com (typhoon.enabled.com [216.218.220.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7222F43D45 for ; Mon, 28 Aug 2006 07:08:35 +0000 (GMT) (envelope-from admin2@enabled.com) Received: from [172.24.241.5] (natint3.juniper.net [66.129.224.36]) (authenticated bits=0) by typhoon.enabled.com (8.13.8/8.13.8) with ESMTP id k7S78YjV055674 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 28 Aug 2006 00:08:35 -0700 (PDT) (envelope-from admin2@enabled.com) Message-ID: <44F2965D.5010007@enabled.com> Date: Mon, 28 Aug 2006 00:08:13 -0700 From: Noah User-Agent: Thunderbird 1.5.0.5 (Macintosh/20060719) MIME-Version: 1.0 To: Mikhail Goriachev References: <44F20B3D.4060001@enabled.com> <44F238BB.8090203@webanoide.org> In-Reply-To: <44F238BB.8090203@webanoide.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: 5.5 and SMP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 07:08:35 -0000 > Hi, > > You have to activate hyperthreading: > > http://docs.freebsd.org/cgi/mid.cgi?20060730235206.7A7B743D45 > > ah ha - thanks! cheers, Noah From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 07:14:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A8C3D16A4DA for ; Mon, 28 Aug 2006 07:14:58 +0000 (UTC) (envelope-from timh@unixtechs.org) Received: from ms-smtp-04.ohiordc.rr.com (ms-smtp-04.ohiordc.rr.com [65.24.5.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D1E843D49 for ; Mon, 28 Aug 2006 07:14:57 +0000 (GMT) (envelope-from timh@unixtechs.org) Received: from blackguy.unixtechs.org (rrcs-24-172-177-216.central.biz.rr.com [24.172.177.216]) by ms-smtp-04.ohiordc.rr.com (8.13.6/8.13.6) with ESMTP id k7S7EtgH016101 for ; Mon, 28 Aug 2006 03:14:56 -0400 (EDT) Received: from timh by blackguy.unixtechs.org with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GHbKh-0002YG-71 for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 03:14:55 -0400 Date: Mon, 28 Aug 2006 03:14:55 -0400 From: Tim Holmes To: freebsd-questions@freebsd.org Message-ID: <20060828071455.GA9764@blackguy.unixtechs.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.12-2006-07-14 Sender: Tim Holmes X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: Mounting Sony PSP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 07:14:59 -0000 I would really like to mount my PSP in FreeBSD so I can on and off load files on my workstation, instead of having to use another, else where. Has anybody been able to mount it? Or have a How-To some place I could use? Thus far all my searches have come up with anything but what I'm looking for. Any help would be greatly appreciated! Thank you! tdh -- ----------------+------------------------------------------------- \./ | Tim Holmes -- em@il: tim@unixtechs.org (0Y0) | UIN: 17021091 -- AIM: tdh004 -ooO--(_)--Ooo--+------------------------------------------------- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 07:52:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8256616A4E7 for ; Mon, 28 Aug 2006 07:52:26 +0000 (UTC) (envelope-from dominique.goncalves@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id A674143D9F for ; Mon, 28 Aug 2006 07:52:06 +0000 (GMT) (envelope-from dominique.goncalves@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1602593wxd for ; Mon, 28 Aug 2006 00:52:06 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ps/C/IbezTbn6lV9iiat1miGAydceiMJ35bUXkJ4Q8Mee3ufLYh84wLa84gfFMJN3fRn2hpATR9zO6db1YqBmZPK7JWzGo4zdNXsAZ+IOLgyWmXq2XG+iHMtPaRDpzG5LduOdkNdP9+g7dAcilfYgfnTq6v3d+QOonj2sS2h9VM= Received: by 10.90.115.4 with SMTP id n4mr883732agc; Mon, 28 Aug 2006 00:52:06 -0700 (PDT) Received: by 10.90.50.11 with HTTP; Mon, 28 Aug 2006 00:52:05 -0700 (PDT) Message-ID: <7daacbbe0608280052l40779c79r4677c286fac2b99@mail.gmail.com> Date: Mon, 28 Aug 2006 09:52:05 +0200 From: "Dominique Goncalves" To: "Tim Holmes" In-Reply-To: <20060828071455.GA9764@blackguy.unixtechs.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060828071455.GA9764@blackguy.unixtechs.org> Cc: freebsd-questions@freebsd.org Subject: Re: Mounting Sony PSP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 07:52:26 -0000 Hi, On 8/28/06, Tim Holmes wrote: > I would really like to mount my PSP in FreeBSD so I can on and off load > files on my workstation, instead of having to use another, else where. > Has anybody been able to mount it? Or have a How-To some place I could > use? Thus far all my searches have come up with anything but what I'm > looking for. > > Any help would be greatly appreciated! Thank you! First check if with the dmesg command you can see your PSP, you should read something like this: umass0: USB Solid state disk, rev 1.10/1.00, addr 2 GEOM: create disk da0 dp=0xc2d74850 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-2 device da0: 1.000MB/s transfers da0: 126MB (258048 512 byte sectors: 64H 32S/T 126C) Then, you need to mount your PSP with: mount_msdos /dev/da0s1 /mnt/PSP There is a chapter in the handbook about USB device http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/usb-disks.html HTH > tdh > > -- > ----------------+------------------------------------------------- > \./ | Tim Holmes -- em@il: tim@unixtechs.org > (0Y0) | UIN: 17021091 -- AIM: tdh004 > -ooO--(_)--Ooo--+------------------------------------------------- > _______________________________________________ > 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" > Regards. -- There's this old saying: "Give a man a fish, feed him for a day. Teach a man to fish, feed him for life." From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 07:55:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 708AB16A4DD for ; Mon, 28 Aug 2006 07:55:43 +0000 (UTC) (envelope-from jonathan@hst.org.za) Received: from sirian.hst.org.za (sirian.hst.org.za [209.203.2.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B1D343D5D for ; Mon, 28 Aug 2006 07:55:23 +0000 (GMT) (envelope-from jonathan@hst.org.za) Received: from localhost (localhost.hst.org.za [127.0.0.1]) by sirian.hst.org.za (Postfix) with ESMTP id 40DB231C254 for ; Mon, 28 Aug 2006 09:53:11 +0200 (SAST) Received: from sirian.hst.org.za ([127.0.0.1]) by localhost (sirian.hst.org.za [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 60615-01 for ; Mon, 28 Aug 2006 09:53:11 +0200 (SAST) Received: by sirian.hst.org.za (Postfix, from userid 1004) id 0D1D331C218; Mon, 28 Aug 2006 09:53:11 +0200 (SAST) Received: from sysadmin.int.dbn.hst.org.za (sysadmin.int.dbn.hst.org.za [10.1.1.20]) by sirian.hst.org.za (Postfix) with ESMTP id 3E73F31C1CA for ; Mon, 28 Aug 2006 09:53:10 +0200 (SAST) From: Jonathan McKeown Organization: Health Systems Trust To: Free BSD Questions list Date: Mon, 28 Aug 2006 09:55:01 +0200 User-Agent: KMail/1.7.2 References: <20060826201512.GA17777@teddy.fas.com> In-Reply-To: <20060826201512.GA17777@teddy.fas.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608280955.01902.jonathan@hst.org.za> X-Spam-Checker-Version: SpamAssassin 2.61 (1.212.2.1-2003-12-09-exp) on sirian.hst.org.za X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=7.0 tests=BAYES_00 autolearn=ham version=2.61 X-Virus-Scanned: by amavisd-new at hst.org.za Subject: Re: Building ports with sorces on a local mirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 07:55:43 -0000 On Saturday 26 August 2006 22:15, stan wrote: > I'm in the process of seting up to build a fair number of machines behind a > very restrictive firewall (and besides that the outbound link is very > slow). > > What I have in mind is setting up a machine using mirror software to create > a local mirror of the FreeBSD site, including the distfiles for the ports > tree. > > Is thee a way to get the ports build system to look for distfiles on this > local mirror? I'm doing something similar, but I'm keeping the ports tree on one machine and NFS-mounting /usr/ports from there on all my other hosts. Each host other than the master has WRKDIRPREFIX=/usr/local/ports in /etc/make.conf. Each time I build a port on any of the machines, it downloads the distfile if it doesn't already exist - but because /usr/ports is on the master server, that's where all the distfiles end up (in /usr/ports/distfiles), so I download each source tarball once, the first time it needs to be installed. This saves bandwidth as I'm not trying to mirror all the distfiles whether I need them or not. You can also make packages which will be stored on the master server so you don't even have to compile more than once unless you need to. Word of warning: take steps to avoid downloading prebuilt packages if you don't have a locally-built package. For example, with portupgrade, edit /usr/local/etc/pkgtools.conf and add ENV['PKG_FETCH']='false' which prevents ever fetching a package from the Internet: if there isn't a local package it will build from source in the ports tree. Jonathan From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 07:59:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0481C16A4DA for ; Mon, 28 Aug 2006 07:59:57 +0000 (UTC) (envelope-from sigma_zk@yahoo.com) Received: from web52313.mail.yahoo.com (web52313.mail.yahoo.com [206.190.48.156]) by mx1.FreeBSD.org (Postfix) with SMTP id 924B543D69 for ; Mon, 28 Aug 2006 07:59:55 +0000 (GMT) (envelope-from sigma_zk@yahoo.com) Received: (qmail 55672 invoked by uid 60001); 28 Aug 2006 07:59:54 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Mzpv5M5D/wgFfanO+sXIP6zoPTGfqzTBkJhhYnpFM0uq3XyEKTT7oewXNCkiAgfuBuyVJmMXRQfOeWHfnsGvanJE3tLFMQzZ01WQWYrQLL6VYlqbJRsnuj4/KemPFXQcSPoYvRuARxqkAUkPqO+Fyk4Svsdtp/hjB37wWwSQmr4= ; Message-ID: <20060828075954.55670.qmail@web52313.mail.yahoo.com> Received: from [24.87.114.179] by web52313.mail.yahoo.com via HTTP; Mon, 28 Aug 2006 00:59:54 PDT Date: Mon, 28 Aug 2006 00:59:54 -0700 (PDT) From: "Sean M." To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Fullscreen crashes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 07:59:57 -0000 Everytime* I use a program, usually a game, that switches into full-screen mode, I get dumped to a tty screen and everything is hung; I have to power cycle to fix it. Yesterday, everything worked perfectly. The only thing I did in the interim that influenced the system was to install gcc42 from ports, and then immediately after deinstall it. OS is 6.1-REL. I'm using the NVIDIA binary driver. It doesn't matter whether I start the programs in KDE or twm. *I didn't test every program--that would take too much time. Also recompiling the games did nothing. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 08:00:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A185716A4ED for ; Mon, 28 Aug 2006 08:00:43 +0000 (UTC) (envelope-from martin.miedema@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 856E343D64 for ; Mon, 28 Aug 2006 08:00:19 +0000 (GMT) (envelope-from martin.miedema@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so2209900pye for ; Mon, 28 Aug 2006 01:00:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=qx7h1T1oEhy+DIqJAmotuZTMjbFWHV7WubGsCl8hX3oSk1tAp/nvrgzUTHlWbGiJimsIX9IW2Rgq9USpCZOiVM8DziRUBH5DTPjo0sRdTJg5qV7oFp48pfrx7g8WsTphVXIlB0cKZwG6G7E4fhIVKmG/nDrN+FXmA6WO+vywcv4= Received: by 10.35.26.14 with SMTP id d14mr11864652pyj; Mon, 28 Aug 2006 01:00:18 -0700 (PDT) Received: from ?10.64.20.7? ( [193.95.177.158]) by mx.gmail.com with ESMTP id n80sm5782069pye.2006.08.28.01.00.17; Mon, 28 Aug 2006 01:00:18 -0700 (PDT) Message-ID: <44F2A2BB.8030609@gmail.com> Date: Mon, 28 Aug 2006 09:00:59 +0100 From: Martin Miedema User-Agent: Thunderbird 1.5.0.2 (Windows/20060308) MIME-Version: 1.0 To: ke han References: <44EF0F92.80108@gmail.com> <20060827220002.C19869@chylonia.3miasto.net> <47B7C4B9-BB47-48EE-A70B-9A9D6B671207@redstarling.com> In-Reply-To: <47B7C4B9-BB47-48EE-A70B-9A9D6B671207@redstarling.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Wojciech Puchar , freebsd-questions@freebsd.org Subject: Re: Intel 64bit / AMD 64 bit advantage X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 08:00:43 -0000 ke han wrote: > > On Aug 28, 2006, at 4:03 AM, Wojciech Puchar wrote: > >>> 32 vs 64 bits does not give you any raw performance boost for most >>> apps. The >> >> yes it will. FreeBSD/amd64 works at least 10% faster than >> FreeBSD/i386 on athlon64 machine, when i386 version were recompiled >> for P4. With default FreeBSD/i386 - it will be at least 30%. >> >> just because it's not just 64-bit addresses, but twice the registers >> (r8-r15) allowing C compiler to generate more efficient code. >> >> For now AMD64 is the fastest and cheapest architecture - at least >> with AMD processors, not intel clones. (YES now intel makes clones of >> AMD processors) > > I stand corrected ;-)...This is good info, thanks. > > However, to the original post, you will not see 10-30 % performance > difference on your email or file sharing between an Intel Celeron and > AMD Opteron. These types of apps are Disk and Network IO bound. > Spend your money on redundancy/fail-over of hard drive and power > supply. Also choosing a well regarded NIC is important. > > ke han > >> _______________________________________________ >> 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" > > Thanks a million for this info, this saved he good bunch of money, which I can use better some were else :) From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 08:07:32 2006 Return-Path: X-Original-To: questions@freebsd.org 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 C0CC916A4DA for ; Mon, 28 Aug 2006 08:07:32 +0000 (UTC) (envelope-from karma@ez.pereslavl.ru) Received: from pier.botik.ru (pier.botik.ru [193.232.174.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5782D43D62 for ; Mon, 28 Aug 2006 08:07:31 +0000 (GMT) (envelope-from karma@ez.pereslavl.ru) Received: from ez.pereslavl.ru ([192.168.56.29]:53107) by pier.botik.ru with esmtp (Exim 4.50) id 1GHc9Q-0002JV-NC; Mon, 28 Aug 2006 12:07:29 +0400 Message-ID: <44F2A47E.20503@ez.pereslavl.ru> Date: Mon, 28 Aug 2006 12:08:30 +0400 From: Alexey Mikhailov User-Agent: Thunderbird 1.5.0.5 (X11/20060814) MIME-Version: 1.0 To: Laurence Sanford References: <44F246D7.1040600@wilderness.homeip.net> In-Reply-To: <44F246D7.1040600@wilderness.homeip.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: ports/net-p2p/ktorrent - can't compile X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 08:07:32 -0000 Laurence Sanford wrote: > Just looking for pointers, as I've seen them here from time to time > when a port won't build. I'm using the following command line: > > portupgrade -NR ktorrent > > All dependencies build successfully. The ktorrent build fails like this: > > ./../mse/bigint.h:26:17: gmp.h: No such file or directory > In file included from ./../mse/encryptedauthenticate.h:25, > from peermanager.cpp:34: > ./../mse/bigint.h:93: error: `mpz_t' does not name a type > Try to install/reinstall/update "devel/libgmp4" port. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 08:10:36 2006 Return-Path: X-Original-To: questions@freebsd.org 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 D6C7416A4DA for ; Mon, 28 Aug 2006 08:10:36 +0000 (UTC) (envelope-from karma@ez.pereslavl.ru) Received: from pier.botik.ru (pier.botik.ru [193.232.174.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72AFD43D49 for ; Mon, 28 Aug 2006 08:10:36 +0000 (GMT) (envelope-from karma@ez.pereslavl.ru) Received: from ez.pereslavl.ru ([192.168.56.29]:57633) by pier.botik.ru with esmtp (Exim 4.50) id 1GHcCQ-0002as-Ro; Mon, 28 Aug 2006 12:10:35 +0400 Message-ID: <44F2A538.6060208@ez.pereslavl.ru> Date: Mon, 28 Aug 2006 12:11:36 +0400 From: Alexey Mikhailov User-Agent: Thunderbird 1.5.0.5 (X11/20060814) MIME-Version: 1.0 To: Laurence Sanford References: <44F246D7.1040600@wilderness.homeip.net> <44F2A47E.20503@ez.pereslavl.ru> In-Reply-To: <44F2A47E.20503@ez.pereslavl.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: ports/net-p2p/ktorrent - can't compile X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 08:10:36 -0000 Alexey Mikhailov wrote: > Laurence Sanford wrote: >> Just looking for pointers, as I've seen them here from time to time >> when a port won't build. I'm using the following command line: >> >> portupgrade -NR ktorrent >> >> All dependencies build successfully. The ktorrent build fails like this: >> >> ./../mse/bigint.h:26:17: gmp.h: No such file or directory >> In file included from ./../mse/encryptedauthenticate.h:25, >> from peermanager.cpp:34: >> ./../mse/bigint.h:93: error: `mpz_t' does not name a type >> > Try to install/reinstall/update "devel/libgmp4" port. Sorry, it's "math/libgmp4". From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 08:11:21 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 5C3BA16A4DF for ; Mon, 28 Aug 2006 08:11:21 +0000 (UTC) (envelope-from idefix@fechner.net) Received: from michelle.lostinspace.de (michelle.lostinspace.de [62.146.248.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 837CB43D72 for ; Mon, 28 Aug 2006 08:11:19 +0000 (GMT) (envelope-from idefix@fechner.net) Received: from server.idefix.loc (ppp-82-135-72-170.dynamic.mnet-online.de [82.135.72.170]) (authenticated bits=0) by michelle.lostinspace.de (8.13.6/8.13.6) with ESMTP id k7S8B9DY011520 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 28 Aug 2006 10:11:15 +0200 (CEST) (envelope-from idefix@fechner.net) Received: from idefix by server.idefix.loc with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GHcD7-00003z-KI for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 10:11:09 +0200 Date: Mon, 28 Aug 2006 10:11:09 +0200 From: Matthias Fechner To: freebsd-questions@freebsd.org Message-ID: <20060828081109.GA99053@server.idefix.loc> Mail-Followup-To: freebsd-questions@freebsd.org References: <20060826223927.I82634@hub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060826223927.I82634@hub.org> X-Crypto: GnuPG/1.0.6 http://www.gnupg.org X-GnuPG: 0x1B756EF6 User-Agent: Mutt/1.5.11 Sender: Matthias Fechner X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (michelle.lostinspace.de [62.146.248.226]); Mon, 28 Aug 2006 10:11:15 +0200 (CEST) X-Virus-Scanned: ClamAV 0.88.4/1740/Mon Aug 28 07:20:06 2006 on michelle.lostinspace.de X-Virus-Status: Clean X-Spam-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00, UNPARSEABLE_RELAY autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on michelle.lostinspace.de Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 08:11:21 -0000 Hello Marc, * Marc G. Fournier [26-08-06 22:43]: > Figuring that for the purposes of these stats, "driver stats" might be too > fine, I've just added a page breaking down hardware use by Vendor, > eliminating the driver ... (ie. 161 3com devices in use, etc) ... there is > a bug in the stats query used for this one, where I'm showing some 'blank > lines' for devices ... not sure if its a missing device in pci_dev.txt or > not, will investigate further ... is it possible to see what the program transmit? I can only see that it transfers anything but not what. Best regards, Matthias -- "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning." -- Rich Cook From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 08:15:53 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C300016A4DF for ; Mon, 28 Aug 2006 08:15:53 +0000 (UTC) (envelope-from mrxtheking@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91D0243D86 for ; Mon, 28 Aug 2006 08:15:52 +0000 (GMT) (envelope-from mrxtheking@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1607717wxd for ; Mon, 28 Aug 2006 01:15:51 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=bzbCmlQL3/7tP0xaqxNUnU0we1BfpZ1jziy9RZp62+hh6FZXWNS9ltZFuuTmLN95QahHseUIQ9jcVsxlxiw7d0pWVRwMAHVbTADHIPhZV/X/0GHCNIUvvQVASraY0XD/mRWwLqlgSY3rbsXG8fseiI0QY2RD/56A19mGyeHKdiM= Received: by 10.70.131.20 with SMTP id e20mr8838347wxd; Mon, 28 Aug 2006 01:15:51 -0700 (PDT) Received: by 10.70.131.7 with HTTP; Mon, 28 Aug 2006 01:15:51 -0700 (PDT) Message-ID: <28f60c660608280115q76919f8bi6da9c5d1e388707d@mail.gmail.com> Date: Mon, 28 Aug 2006 03:15:51 -0500 From: Nazar To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: MySQL package loop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 08:15:53 -0000 Was trying to set up a quick web server on my old box, so I was using packages and run into a loopback. Whenever I try installing MySQL 5.1server, the package is also installing MySQL 5.1 client with it, but php5-mysql-5.1.2_1 is installing MySQL 4 client. I cant get MySQL v5 without getting rid of php5_mysql. Is there any other ways to go around it with packages? Maybe some pointers I appreciate it. Thanks. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 08:43:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D45E016A4EC for ; Mon, 28 Aug 2006 08:43:09 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F4B343E32 for ; Mon, 28 Aug 2006 08:37:23 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [IPv6:::1] (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k7S8arPM055006; Mon, 28 Aug 2006 09:36:54 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k7S8arPM055006 Message-ID: <44F2AB25.4050607@infracaninophile.co.uk> Date: Mon, 28 Aug 2006 09:36:53 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: Nazar References: <28f60c660608280115q76919f8bi6da9c5d1e388707d@mail.gmail.com> In-Reply-To: <28f60c660608280115q76919f8bi6da9c5d1e388707d@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigCC7CFFAA07855F445787D62F" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [IPv6:::1]); Mon, 28 Aug 2006 09:37:14 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1741/Mon Aug 28 07:48:37 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_TESTING,NO_RELAYS autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: MySQL package loop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 08:43:09 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigCC7CFFAA07855F445787D62F Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Nazar wrote: > Was trying to set up a quick web server on my old box, so I was using > packages and run into a loopback. Whenever I try installing MySQL > 5.1server, the package is also installing MySQL > 5.1 client with it, but php5-mysql-5.1.2_1 is installing MySQL 4 client= =2E I > cant get MySQL v5 without getting rid of php5_mysql. Is there any other= > ways > to go around it with packages? Maybe some pointers I appreciate it. Tha= nks. Add: WITH_MYSQL_VER=3D 51 to /etc/make.conf and then do a 'make clean' in databases/php5-mysql before you try installing php5-mysql again. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigCC7CFFAA07855F445787D62F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE8qsl8Mjk52CukIwRCCsFAJ9jBDwad/HnjK+R5wM93NSFAt7O4QCeMSZ2 RX2RsTYqepfpi/YJtCMN+qo= =utsV -----END PGP SIGNATURE----- --------------enigCC7CFFAA07855F445787D62F-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 08:43:13 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1606D16A50E for ; Mon, 28 Aug 2006 08:43:13 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA58D43EE1 for ; Mon, 28 Aug 2006 08:34:10 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [IPv6:::1] (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k7S8XD95054946 for ; Mon, 28 Aug 2006 09:33:14 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k7S8XD95054946 Message-ID: <44F2AA42.4050209@infracaninophile.co.uk> Date: Mon, 28 Aug 2006 09:33:06 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060826223927.I82634@hub.org> <20060828081109.GA99053@server.idefix.loc> In-Reply-To: <20060828081109.GA99053@server.idefix.loc> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigE483FD88D8054427C094ED48" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [IPv6:::1]); Mon, 28 Aug 2006 09:33:34 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1741/Mon Aug 28 07:48:37 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_TESTING,NO_RELAYS autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Subject: Re: BSDstats: Just added - Vendor Stats X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 08:43:13 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigE483FD88D8054427C094ED48 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Matthias Fechner wrote: > * Marc G. Fournier [26-08-06 22:43]: >> Figuring that for the purposes of these stats, "driver stats" might be= too=20 >> fine, I've just added a page breaking down hardware use by Vendor,=20 >> eliminating the driver ... (ie. 161 3com devices in use, etc) ... ther= e is=20 >> a bug in the stats query used for this one, where I'm showing some 'bl= ank=20 >> lines' for devices ... not sure if its a missing device in pci_dev.txt= or=20 >> not, will investigate further ... >=20 > is it possible to see what the program transmit? > I can only see that it transfers anything but not what. You can run: sh -x /usr/local/etc/periodic/300.bsdstats to get a trace of what happens while the script is running. It's not exactly the clearest, but amongst that output you can see the calls to /usr/bin/fetch that upload the information -- this sort of thing: + /usr/bin/fetch -qo /dev/null http://bsdstats.org/scripts/report_devices= =2Ephp?key=3DXXXXXXXXXXXXXXXXXXXXXXXXX&dev[]=3Dagp0:30991106:060000&dev[]= =3Dpcib1:b0991106:060400&dev[]=3Dpcm0:011113f6:040100&dev[]=3Dde0:0009101= 1:020000&dev[]=3Dsym0:00201000:010000&dev[]=3Dsym1:00201000:010000&dev[]=3D= isab0:30741106:060100&dev[]=3Datapci0:05711106:01018a&dev[]=3Duhci0:30381= 106:0c0300&dev[]=3Duhci1:30381106:0c0300&dev[]=3Duhci2:30381106:0c0300&de= v[]=3Dnvidia0:032210de:030000 Or you can change the 'do_fetch' subroutine to just echo what it would send: happy-idiot-talk:~:% diff -u /usr/local/etc/periodic/monthly/300.statisti= cs /tmp/300.statistics=20 --- /usr/local/etc/periodic/monthly/300.statistics Mon Aug 28 09:27:= 25 2006 +++ /tmp/300.statistics Mon Aug 28 09:29:53 2006 @@ -93,7 +93,7 @@ } =20 do_fetch () { - /usr/bin/fetch -qo /dev/null "http://$checkin_server/scripts/$1" + echo /usr/bin/fetch -qo /dev/null "http://$checkin_server/scripts/$1= " } =20 =20 Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigE483FD88D8054427C094ED48 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE8qpJ8Mjk52CukIwRCPT5AJ9lUrIPdiA0uHdtRCC4d5a56TAS8gCePOQM rYvj15KS4jqKaYRrIXS+hho= =l/ds -----END PGP SIGNATURE----- --------------enigE483FD88D8054427C094ED48-- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 11:12:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7ED0B16A4DE; Mon, 28 Aug 2006 11:12:51 +0000 (UTC) (envelope-from simon@zaphod.nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7986343DA7; Mon, 28 Aug 2006 11:12:37 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: from zaphod.nitro.dk (unknown [192.168.3.39]) by mx.nitro.dk (Postfix) with ESMTP id D94C732E424; Mon, 28 Aug 2006 11:12:25 +0000 (UTC) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id B77F411437; Mon, 28 Aug 2006 13:12:24 +0200 (CEST) Date: Mon, 28 Aug 2006 13:12:24 +0200 From: "Simon L. Nielsen" To: Nikolas Britton Message-ID: <20060828111223.GD983@zaphod.nitro.dk> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 Cc: freebsd-doc@freebsd.org, FreeBSD Mailing List Subject: Re: FreeBSD's minimum memory requirements. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 11:12:51 -0000 On 2006.08.28 00:19:40 -0500, Nikolas Britton wrote: > I just tested the minimum memory requirements for FreeBSD 6.1-RELEASE > through > 2.2.9-RELEASE using VMware 5 Workstation: I been thinking of doing these tests myself but never gotten around to it. I think you should file this information as a docs PR so it doesn't get lost. I'm not exactly sure where to put this information (probably in the FAQ somewhere), but it's certainly useful to have around. Thanks for doing these tests! (Note: I don't know when I will find time to get this into some docs, so if anybody else is interested in this please just go forward :-) ). -- Simon L. Nielsen From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 11:23:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6161516A4DD for ; Mon, 28 Aug 2006 11:23:40 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from nagual.nl (cc20684-a.assen1.dr.home.nl [82.74.7.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6ACB43D73 for ; Mon, 28 Aug 2006 11:23:30 +0000 (GMT) (envelope-from dick@nagual.nl) Received: from localhost (localhost [127.0.0.1]) (uid 1000) by nagual.nl with local; Mon, 28 Aug 2006 13:23:29 +0200 id 0003980C.44F2D231.0000166F Date: Mon, 28 Aug 2006 13:23:29 +0200 To: freebsd-questions Message-ID: <20060828112329.GA5712@lothlorien.nagual.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline User-Agent: Mutt/1.4.2.2i From: dick hoogendijk Subject: strange files X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 11:23:40 -0000 Recently I see a lot of these file in thje root directory. Probably by a newer version of FAM Is there an option to get tem be put elsewhere. fam.conf and man fam learn me nothing ;-) ==== the listing === drwxr-xr-x 22 root wheel - 1024 Aug 28 10:23 ./ drwxr-xr-x 22 root wheel - 1024 Aug 28 10:23 ../ -rw-r--r-- 2 root wheel - 1033 May 27 15:18 .cshrc srw------- 1 dick wheel - 0 Aug 24 22:47 .fam0sHITy= srw------- 1 erna wheel - 0 Aug 24 09:57 .fam9ldOUw= srw------- 1 erna wheel - 0 Aug 26 13:19 .famAGmZkb= srw------- 1 erna wheel - 0 Aug 21 09:49 .famDbOdlm= srw------- 1 erna wheel - 0 Aug 22 08:08 .famEqtTTx= srw------- 1 erna wheel - 0 Aug 27 16:19 .famG7PtCO= srw------- 1 dick wheel - 0 Aug 27 23:30 .famNIsuCb= srw------- 1 erna wheel - 0 Aug 27 22:43 .famP69yeI= srw------- 1 erna wheel - 0 Aug 20 20:50 .famPYPOV1= srw------- 1 erna wheel - 0 Aug 27 16:31 .famXdOxzP= srw------- 1 dick wheel - 0 Aug 27 16:24 .famY9CU4o= srw------- 1 dick wheel - 0 Aug 28 09:53 .famcWI2NE= srw------- 1 erna wheel - 0 Aug 28 10:23 .famdA51A1= srw------- 1 erna wheel - 0 Aug 25 08:02 .famffdbSt= srw------- 1 dick wheel - 0 Aug 24 09:38 .famftds6q= srw------- 1 erna wheel - 0 Aug 23 08:49 .famjto10o= srw------- 1 dick wheel - 0 Aug 27 22:36 .fammZZNWN= srw------- 1 erna wheel - 0 Aug 27 10:47 .famnBvJDr= srw------- 1 erna wheel - 0 Aug 26 08:46 .famoK2o90= srw------- 1 erna wheel - 0 Aug 26 23:56 .famsZ2kpH= srw------- 1 dick wheel - 0 Aug 26 12:02 .famtGFfxz= srw------- 1 erna wheel - 0 Aug 24 17:11 .famuJk0gd= srw------- 1 erna wheel - 0 Aug 25 13:48 .famw0pW7x= -rw-r--r-- 2 root wheel - 251 Nov 3 2005 .profile ==== /the listing ===== -- dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE ++ Running FreeBSD 6.1 +++ The Power to Serve From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 11:38:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CDE5116A539 for ; Mon, 28 Aug 2006 11:38:07 +0000 (UTC) (envelope-from wildebeest@mithlond.net) Received: from ns1.neobitti.org (neobitti.org [83.145.202.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A79A43DC2 for ; Mon, 28 Aug 2006 11:37:59 +0000 (GMT) (envelope-from wildebeest@mithlond.net) Received: from mithlond by ns1.neobitti.org with local (Exim 4.52) id 1GHfRD-0004E1-J8 for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 14:37:55 +0300 Received: from 127.0.0.1 ([127.0.0.1]) (SquirrelMail authenticated user tuope@mithlond.net) by mithlond.net with HTTP; Mon, 28 Aug 2006 14:37:55 +0300 (EEST) Message-ID: <34702.127.0.0.1.1156765075.squirrel@mithlond.net> Date: Mon, 28 Aug 2006 14:37:55 +0300 (EEST) From: "Tuomas" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal References: In-Reply-To: X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ns1.neobitti.org X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [32343 32344] / [47 12] X-AntiAbuse: Sender Address Domain - mithlond.net X-Source: X-Source-Args: X-Source-Dir: Subject: having hard time with mounting floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: wildebeest@mithlond.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 11:38:08 -0000 Hi, all! I run DesktopBSD 1.0 and I cannot mount floppies. I had the same problem with FreeBSD 5.5. Here it goes: localhost# mount -t msdos /dev/fd0 /media/floppy msdosfs: /dev/fd0: Input/output error localhost# fdformat /dev/fd0 Format 1440K floppy `/dev/fd0'? (y/n): y Processing fdformat: ioctl(FD_FORM): Input/output error This is what dmesg says: 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.5-PRERELEASE #1: Sun Feb 5 17:26:01 CET 2006 root@Rex:/usr/obj/usr/src/sys/DESKTOPBSD Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel Pentium III (734.63-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383fbff real memory = 267264000 (254 MB) avail memory = 251109376 (239 MB) npx0: on motherboard npx0: INT 16 interface acpi0: on motherboard acpi0: Power Button (fixed) Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xf808-0xf80b on acpi0 cpu0: port 0x530-0x537 on acpi0 acpi_throttle0: on cpu0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: mem 0xfea80000-0xfeafffff,0xf8000000-0xfbffffff irq 11 at device 1.0 on pci0 pcib1: at device 30.0 on pci0 pci1: on pcib1 rl0: port 0x7800-0x78ff mem 0xfebfff00-0xfebfffff irq 9 at device 1.0 on pci1 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto rl0: Ethernet address: 00:0e:2e:85:56:e1 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 31.1 on pci0 ata0: channel #0 on atapci0 ata1: channel #1 on atapci0 uhci0: port 0xff00-0xff1f irq 10 at device 31.2 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 pci0: at device 31.3 (no driver attached) pcm0: port 0xf400-0xf43f,0xf000-0xf0ff irq 9 at device 31.5 on pci0 pcm0: acpi_button0: on acpi0 fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: port 0x778-0x77f,0x378-0x37f irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/9 bytes threshold ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model IntelliMouse, device ID 3 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A orm0: at iomem 0xc0000-0xc7fff on isa0 pmtimer0 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "TSC" frequency 734633835 Hz quality 800 Timecounters tick every 1.000 msec ad0: 19470MB [39560/16/63] at ata0-master UDMA66 acd0: DVDROM at ata1-master PIO4 cd0 at ata1 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 16.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present Mounting root from ufs:/dev/ad0s2a (End of dmesg.) I can mount floppies with other OSes, Kubuntu LiveCD for instance. I googled and found other people having similar problems. One solution that was put forward was using a non-ACPI kernel. With FreeBSD 5.5 I recompiled the kernel with ACPI disabled, but the problem still persisted. I don't know what to do now. (As a matter of fact, I might be having the same problem with cdrom!) Could someone help me? Much oblige! Tuomas From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 12:05:59 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 184E216A4E7 for ; Mon, 28 Aug 2006 12:05:59 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5965F43DBF for ; Mon, 28 Aug 2006 12:05:23 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7SC5L6C003890 for ; Mon, 28 Aug 2006 07:05:21 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Mon, 28 Aug 2006 07:05:21 -0500 User-Agent: KMail/1.9.3 References: <200608271454.37351.freebsd@dfwlp.com> <20060827173703.ce76cesfks8888g8@newwebmail.jnielsen.net> In-Reply-To: <20060827173703.ce76cesfks8888g8@newwebmail.jnielsen.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608280705.21475.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 12:05:59 -0000 On Sunday 27 August 2006 16:37, John Nielsen wrote: > Quoting Jonathan Horne : > > i just brought home new samsung 22" widescreen LCD. so far, i cannot > > get xorg > > to take anything other than standard CRT type resolutions, such as > > 1280x1024. > > > > > the first part, seems to be the normal video modes that i would expect to > > see from an i810 graphics card, but then right below that, i see video > > modes that would be preferred on my new monitor (1680x1050) in a section > > called "Supported Future Video Modes". does this mean there is a chance > > i might see proper resolutions for my new monitor, without upgrading to > > some other video card? > > > > my computer has a 915G: > > > > (II) I810(0): Integrated Graphics Chipset: Intel(R) 915G > > (--) I810(0): Chipset: "915G" > > Last I was aware, the i810 was totally dependent on the adapter's video > BIOS for determining and setting modes. The sysutils/915resolution port > might be able to help you, but when I was experimenting with it I > didn't try any widescreen modes. > > I do think (again, no references) that work on the i810 driver is > ongoing, but I don't know any details or ETA's for anything. > > JN > well, i finally got it to render at 1680x1050, but the size of my desktop is fixed at about 1.5" outside the physical size of the lcd (and about 3/8" top and bottom). ive dont quite a bit of googling, and i am now trying to figure out if there is a way to constain or shrink the desktop down, so that i will be at the edges of my screen? thanks, jonathan From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 12:56:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EF71916A4E0 for ; Mon, 28 Aug 2006 12:56:18 +0000 (UTC) (envelope-from news@jeremino.homeunix.net) Received: from jeremino.homeunix.net (jeremino.xs4all.nl [80.126.224.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40E2843D64 for ; Mon, 28 Aug 2006 12:56:18 +0000 (GMT) (envelope-from news@jeremino.homeunix.net) Received: from news by jeremino.homeunix.net with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1GHgTR-000AVg-US for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 14:44:18 +0200 From: newsmaster X-Newsgroups: list.fbsd.questions Date: Mon, 28 Aug 2006 14:44:17 +0200 Organization: Chaotic Lines: 15 Message-ID: References: <200608271454.37351.freebsd@dfwlp.com> <20060827173703.ce76cesfks8888g8@newwebmail.jnielsen.net> <200608280705.21475.freebsd@dfwlp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@jeremino.homeunix.net X-Face: dtAN(p3{]qk\XP?#Z/w4D6D%"{t}6EFQIEv.YCM-L).KZ#M-1|:kgToZn*t!H^|(gS/A9MOa#T]^~A:sn=q[vw\n8S"QP97/MLO}L[Jq*5f+&lY_8ij@3; sbZ/>F$[*hrNX`hu/e(\%m.kc~(EV#knmO@,9$615zns'>?E_?[bWyW%-Jp=Gj?oB9P`h8ua@C0_g/!K__/'EP^i; kBAjRTa/hoV To: freebsd-questions@freebsd.org Sender: News Subsystem Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 12:56:19 -0000 Jonathan Horne wrote in msgid: <200608280705.21475.freebsd@dfwlp.com> > > well, i finally got it to render at 1680x1050, but the size of my desktop > is fixed at about 1.5" outside the physical size of the lcd (and about > 3/8" top > and bottom). ive dont quite a bit of googling, and i am now trying to > figure out if there is a way to constain or shrink the desktop down, so > that i will be at the edges of my screen? > Did you try "xvidtune" ? It is disigned for that purpose. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 12:57:31 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2CB9316A4DF for ; Mon, 28 Aug 2006 12:57:31 +0000 (UTC) (envelope-from howie@thingy.com) Received: from post1.network-i.net (antigua.network-i.net [212.21.121.181]) by mx1.FreeBSD.org (Postfix) with SMTP id B6FFA43D69 for ; Mon, 28 Aug 2006 12:57:15 +0000 (GMT) (envelope-from howie@thingy.com) Received: (qmail 87155 invoked from network); 28 Aug 2006 12:57:14 -0000 Received: from unknown (HELO ?10.1.1.134?) (212.21.99.52) by post1.network-i.net with SMTP; 28 Aug 2006 12:57:14 -0000 Message-ID: <44F2E7FF.6030402@thingy.com> Date: Mon, 28 Aug 2006 13:56:31 +0100 From: Howard Jones User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Gary Kline References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> <44F210BD.6040908@thingy.com> <20060828015621.GA79317@thought.org> In-Reply-To: <20060828015621.GA79317@thought.org> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: andrew clarke , "hackmiester \(Hunter Fuller\)" , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 12:57:31 -0000 Gary Kline wrote: > Well, if/when you *do* try, please clue me in. --I'm too new to > DVD's and tooo che--er, thrifty to buy a ten pack of blanks. I'm > not sure that I have three hours of "favorites"; probably, but no > more. Most of my favorite tunes are on tape--pre-recorded and > hi-fidelity, but the problem is turnning analogue to digital. Thrift isn't really an issue nowadays - you can get 50 DVD-Rs for about $10-15 online. Cheap enough to use a few to experiement, in my opinion. I did some experimenting last night, and got what seems to be a working solution. I don't have a DVD burner where I am, so I haven't *actually* burned one, but 2 software players (Apple's and Media Player Classic) are both happy with the VIDEO_TS files. From my brief research, the minimum bitrate for DVD audio is 32Khz, and there isn't a minimum for the video, only a maximum. There is also a video-CD-like frame size of 352x480 for NTSC so you can reduced the video size further. For my test audio file (2:12 song), I got: 2.2MB Original MP3 file - 192Kbit/sec 44.1Khz sample-rate joint stereo 3.3MB MP2 file - no changes apart from 44.1->48 resampling 0.5MB MP2 file - resampled to 48Khz, forced to mono and 32Kbit/sec output stream the 0.5MB file doesn't actually sound *that* bad for music - it's AM radio quality. It would be fine for speech. A 64Kbps video file to go with it is about 2.6MB, so the final 'DVD file' is either 6.7M ('music' quality) or 4M ('voice' quality). DVD authoring adds around 800K, but I don't believe this is per-chapter. Assuming that it isn't, that's around 2400 minutes on a DVD-R (voice) or 1500 minutes (music), and it should be playable on any DVD player, since it should be a full-spec DVD still. Here's my notes on producing a disc. This is for an NTSC disc. For PAL, you need to change 480 to 576 wherever it appears, add 'pal' instead of 'ntsc' to the dvdauthor line, and "-f 25" instead of "-f 30" in the transcode line. I'm no video expert, so I'm sure there are better ways to do this, but this one worked for me! Howie ###################################################################################### # Take the MP3 file, play it into toolame as 48Khz PCM data # toolame reencodes as MP2 (for DVD) at 32khz (the minimum?) in mono madplay -R48000 -b16 -o wave:- mytestfile.mp3 | toolame -s 48 -b 32 -a -m m - mytestfile.mp2 # (take out the -b 32 and -a -m m if you want music quality) # next, we'll produce a VERY low bitrate MPEG2 movie of the same length as # the audio since we have to do *some* encoding here, we might as well make # the static image be the title of the audio track. # this is ALL ONE pipeline ppmmake blue 352 480 | \ ppmlabel -x 50 -y 100 -text "This is the track name" | \ ppmtoy4m -S 420mpeg2 -r -v2 | \ transcode -x yuv4mpeg,mp3 -y mpeg2enc,null -o mytestfile -p "mytestfile.mp3" \ -Z 352x480 -F "8,-b 64" -i /dev/stdin -g 352x480 --import_asr 2 -f 30 -m /dev/null # So that's: make a blank blue image of the correct size for NTSC video at the smallest size # add a caption over it # take that PPM file use it to stream frames into the video transcoder. # (We only have one frame, so just repeat it) # transcode takes that frame and encodes it as DVD-compatible 64kbps MPEG-2 # (normally for a DVD movie it would be more like 5000kpbs) # we import an audio stream even though we aren't using it, so as to get the # right length. Otherwise we get a never-ending video stream :-) # So now, there's a .m2v video stream, and a .mp2 audio stream, and we need to # multiplex them. mplex -f 8 -o mytestfile.mpg mytestfile.m2v mytestfile.mp2 # *** repeat the above for each of your audio files. *** # finally, we can make a simple DVD dvdauthor -v ntsc+4:3+352x480 -a mp2+en+1ch+16bps -t -o testdvd mytestfile.mpg dvdauthor -T -o testdvd # if you used 'music' quality encoding in toolame, then use 2ch instead of 1ch here # You should find a DVD structure (VIDEO_TS, AUDIO_TS) waiting in the 'testdvd' directory. # you can specify multiple .mpg files on the command line, and each one will # become a chapter on the DVD # FINALLY, to get a burnable ISO image: mkisofs -dvd-video -o testdvd.iso testdvd # and burn it to /dev/acd0: growisofs -dvd-compat -Z /dev/acd0=testdvd.iso # Ports used: # sysutils/dvd+rw-tools (growisofs) # sysutils/cdrtools (mkisofs - installed as a dependency of dvd+rw-tools) # mjpegtools (mplex, y4m stuff) # netpbm (ppmfile, ppmlabel) # toolame (MPEG Layer II encoding) # madplay (MP3 decoding) # dvdauthor (final authoring) # transcode (install this last, so it gets the mpeg2encode from mjpegtools) From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 13:07:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 282D516A4DD; Mon, 28 Aug 2006 13:07:24 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D54F43D4C; Mon, 28 Aug 2006 13:07:01 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 28 Aug 2006 09:05:00 -0400 X-IronPort-AV: i="4.08,175,1154923200"; d="scan'208"; a="287849489:sNHT23721380" Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.7.5a-GA) with ESMTP id GUK79948; Mon, 28 Aug 2006 09:04:48 -0400 (EDT) Received: from 65-78-24-149.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.24.149]) by smtp01.lnh.mail.rcn.net with ESMTP; 28 Aug 2006 09:04:48 -0400 X-IronPort-AV: i="4.08,175,1154923200"; d="scan'208"; a="265982913:sNHT105538588" From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17650.59852.644745.531650@jerusalem.litteratus.org> Date: Mon, 28 Aug 2006 09:04:12 -0400 To: freebsd-doc@freebsd.org, FreeBSD Mailing List In-Reply-To: <20060828111223.GD983@zaphod.nitro.dk> References: <20060828111223.GD983@zaphod.nitro.dk> X-Mailer: VM 7.17 under 21.5 (beta27) "fiddleheads" XEmacs Lucid X-Junkmail-Status: score=10/50, host=mr08.lnh.mail.rcn.net X-Junkmail-SD-Raw: score=unknown, refid=str=0001.0A090206.44F2E8C2.0044,ss=1,fgs=0, ip=207.172.4.11, so=2006-05-09 23:27:51, dmn=5.2.4/2006-05-04 Cc: Subject: Re: FreeBSD's minimum memory requirements. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 13:07:24 -0000 Simon L. Nielsen writes: > > I just tested the minimum memory requirements for FreeBSD 6.1-RELEASE > > through > > 2.2.9-RELEASE using VMware 5 Workstation: > > I been thinking of doing these tests myself but never gotten around to > it. I think you should file this information as a docs PR so it > doesn't get lost. Seconded. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 13:29:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 97A3A16A4DA for ; Mon, 28 Aug 2006 13:29:02 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0B2443D73 for ; Mon, 28 Aug 2006 13:28:55 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7SDSpmf004463 for ; Mon, 28 Aug 2006 08:28:51 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Mon, 28 Aug 2006 08:28:50 -0500 User-Agent: KMail/1.9.3 References: <200608271454.37351.freebsd@dfwlp.com> <200608280705.21475.freebsd@dfwlp.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608280828.50885.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 13:29:02 -0000 On Monday 28 August 2006 07:44, newsmaster wrote: > Jonathan Horne wrote in msgid: > <200608280705.21475.freebsd@dfwlp.com> > > > well, i finally got it to render at 1680x1050, but the size of my desktop > > is fixed at about 1.5" outside the physical size of the lcd (and about > > 3/8" top > > and bottom). ive dont quite a bit of googling, and i am now trying to > > figure out if there is a way to constain or shrink the desktop down, so > > that i will be at the edges of my screen? > > Did you try "xvidtune" ? It is disigned for that purpose. > i did, but i couldnt outwardly figure out what i was looking at. when i go tot he xvidtune page tho, it says its for XFree86... will it till work properly for xorg? thanks, jonathan From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 14:02:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D0D5A16A4DA for ; Mon, 28 Aug 2006 14:02:28 +0000 (UTC) (envelope-from news@jeremino.homeunix.net) Received: from jeremino.homeunix.net (jeremino.xs4all.nl [80.126.224.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37BDA43D4C for ; Mon, 28 Aug 2006 14:02:28 +0000 (GMT) (envelope-from news@jeremino.homeunix.net) Received: from news by jeremino.homeunix.net with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1GHhLz-0000IQ-H5 for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 15:40:39 +0200 From: newsmaster X-Newsgroups: list.fbsd.questions Date: Mon, 28 Aug 2006 15:40:37 +0200 Organization: Chaotic Lines: 27 Message-ID: References: <200608271454.37351.freebsd@dfwlp.com> <200608280705.21475.freebsd@dfwlp.com> <200608280828.50885.freebsd@dfwlp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@jeremino.homeunix.net X-Face: dtAN(p3{]qk\XP?#Z/w4D6D%"{t}6EFQIEv.YCM-L).KZ#M-1|:kgToZn*t!H^|(gS/A9MOa#T]^~A:sn=q[vw\n8S"QP97/MLO}L[Jq*5f+&lY_8ij@3; sbZ/>F$[*hrNX`hu/e(\%m.kc~(EV#knmO@,9$615zns'>?E_?[bWyW%-Jp=Gj?oB9P`h8ua@C0_g/!K__/'EP^i; kBAjRTa/hoV To: freebsd-questions@freebsd.org Sender: News Subsystem Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:02:28 -0000 Jonathan Horne wrote in msgid: <200608280828.50885.freebsd@dfwlp.com> > On Monday 28 August 2006 07:44, newsmaster wrote: >> Jonathan Horne wrote in msgid: >> <200608280705.21475.freebsd@dfwlp.com> >> >> > well, i finally got it to render at 1680x1050, but the size of my >> > desktop is fixed at about 1.5" outside the physical size of the lcd >> > (and about 3/8" top >> > and bottom). ive dont quite a bit of googling, and i am now trying to >> > figure out if there is a way to constain or shrink the desktop down, so >> > that i will be at the edges of my screen? >> >> Did you try "xvidtune" ? It is disigned for that purpose. >> > > i did, but i couldnt outwardly figure out what i was looking at. when i > go tot he xvidtune page tho, it says its for XFree86... will it till work > properly for xorg? > Yes, for me its works very well with Xorg. I bought me a new IIyama lcd screen and I had to add manually some new mode-lines. You can extrapolate from the existing ones. Then xvidtune makes the finishing touch. Press on "show" and replace the mode-line with the output of xvidtune. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 14:14:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8CA2A16A4DD for ; Mon, 28 Aug 2006 14:14:07 +0000 (UTC) (envelope-from n.j.bouman@student.utwente.nl) Received: from altrade.nijmegen.internl.net (altrade.nijmegen.internl.net [217.149.192.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id E909343D53 for ; Mon, 28 Aug 2006 14:14:06 +0000 (GMT) (envelope-from n.j.bouman@student.utwente.nl) Received: from student.utwente.nl by altrade.nijmegen.internl.net via 234-237.surfsnel.dsl.internl.net [145.99.237.234] with ESMTP for id k7SEE2R5009035 (8.13.2/2.04); Mon, 28 Aug 2006 16:14:04 +0200 (MET DST) Message-ID: <44F2FA2F.20209@student.utwente.nl> Date: Mon, 28 Aug 2006 16:14:07 +0200 From: Niek Bouman User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: FreeBSD 6-STABLE as guest in VMWare Player on Winxp host X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:14:07 -0000 I'm running FreeBSD 6-STABLE as guest in the free VMWare Player on a WinXP host. How can I switch between virtual terminals? Ctrl-Alt-F[n] doesn't work... By the way, is this the right mailing list to place this question? Thank you, Niek Bouman From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 14:16:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 993AC16A4DA for ; Mon, 28 Aug 2006 14:16:33 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E4F443D45 for ; Mon, 28 Aug 2006 14:16:32 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Mon, 28 Aug 2006 10:16:32 -0400 id 00056412.44F2FAC0.0000FE9D Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 28 Aug 2006 10:15:54 -0400 Date: Mon, 28 Aug 2006 10:16:31 -0400 From: Bill Moran To: Niek Bouman Message-Id: <20060828101631.296f9da5.wmoran@collaborativefusion.com> In-Reply-To: <44F2FA2F.20209@student.utwente.nl> References: <44F2FA2F.20209@student.utwente.nl> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 6-STABLE as guest in VMWare Player on Winxp host X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:16:33 -0000 In response to Niek Bouman : > I'm running FreeBSD 6-STABLE as guest in the free VMWare Player on a > WinXP host. > How can I switch between virtual terminals? Ctrl-Alt-F[n] doesn't work... > > By the way, is this the right mailing list to place this question? This is more of a VMWare question than a FreeBSD question. But I suspect you'll have to reconfigure VMWare not to intercept CTRL+ALT. I seem to remember a configuration option for this somewhere. -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 14:38:49 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4310716A4E5 for ; Mon, 28 Aug 2006 14:38:49 +0000 (UTC) (envelope-from astounding@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD5F643D5A for ; Mon, 28 Aug 2006 14:38:47 +0000 (GMT) (envelope-from astounding@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1710012wxd for ; Mon, 28 Aug 2006 07:38:47 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=QWoEDLulGYCUQ++0rsHGStZu0wyc6/Fui5ZbiBNZOPKcUmmVhf8zTXY0UEO+VWXJ55ALcD97jk+CYRt802y3mc41GD/iLNPsoXZXTQ3tGKlJR0L4gAe44HnwDx/NOzmiCnI4AVCMA21AfEF7imuOmXythK4dYxqwEgFMNL+s5j0= Received: by 10.70.75.14 with SMTP id x14mr9386924wxa; Mon, 28 Aug 2006 07:37:13 -0700 (PDT) Received: by 10.70.21.16 with HTTP; Mon, 28 Aug 2006 07:37:12 -0700 (PDT) Message-ID: Date: Mon, 28 Aug 2006 08:37:13 -0600 From: "Aaron Gifford" To: freebsd-questions@freebsd.org In-Reply-To: MIME-Version: 1.0 References: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Booting gvinum fails: missing /dev/gvinum/* device entries X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 14:38:49 -0000 On 8/26/06, Aaron Gifford wrote (or in other words, I wrote): > No matter what I tried, booting always failed at the point of mounting the > root filesystem. I would be kicked to a "mountroot>" prompt. Any attempts > at mounting root from ufs:/dev/gvinum/root failed. Even if I loaded > geom_vinum.ko by hand during boot to be absolutely sure gvinum was loaded, > this failed. At "mountroot>", the gvinum devices did not show up at all. > > So I fell back and mounted /dev/ad0a (my old non-gvinum drive) as root. > That worked. kldstat showed that indeed geom_vinum.ko WAS successfully > loaded. But when I looked in /dev nothing for gvinum showed up there. It > was empty. > > The "gvinum list" command showed all my gvinum volumes working, but there > were NO entries in /dev. > > No wonder I was unable to mount /dev/gvinum/root -- There was no device > entry. > > So what's the deal? Any suggestions? Is there something I need to > compile in my kernel? > I managed to fix my own problem. Before I posted, I did some searching and found previous posts of people who were missing /dev/gvinum device entries. They mentioned that it was corrupt GEOM vinum metadata. I did not believe that this applied to my situation, as while booted of my older working i386 kernel running on a non-GEOM-vinum drive, the GEOM vinum volumes appeared and worked normally. Therefore, I concluded, the metadata must be in working order. However, no matter how I tried to boot off the amd64 kernel on the gvinum root volume, it failed. Closer examination made it look like perhaps under the amd64 kernel and geom_vinum.ko module, perhaps the metadata stored in the first 265 sectors (512-byte sectors) of the vinum partitions was being interpreted differently than it was by the i386 kernel and geom_vinum.ko module. This leads me to believe that the problem was one of the following: 1) Due to my changing the BIOS boot order of my drives (so as to boot from the gvinum drive running amd64 instead of the non-vinum i386 kernel drive), perhaps GEOM vinum got confused about the configuration since the BIOS device boot order was different; or 2) because of differences between the i386 and amd64 architectures, GEOM vinum volumes created under one architecture do not correctly appear under another architecture. If #1, then I need to remember this and be careful about changing BIOS boot order while running GEOM vinu. If #2, then I believe this is a bug in GEOM vinum. Volume metadata should be cross-architecture independent. So, FreeBSD gurus wiser in the innards of GEOM vinum than this user (pretty much everyone who knows how GEOM vinum actually works), which is the cause of my woes? Is it #1? Or is it #2? Or am I missing a third possibility entirely? Thanks for any future enlightenment! Aaron out. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 15:06:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D73F416A4DD for ; Mon, 28 Aug 2006 15:06:00 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26E0543D58 for ; Mon, 28 Aug 2006 15:05:59 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7SF5wd5005474 for ; Mon, 28 Aug 2006 10:05:58 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Mon, 28 Aug 2006 10:05:57 -0500 User-Agent: KMail/1.9.3 References: <200608271454.37351.freebsd@dfwlp.com> <200608280828.50885.freebsd@dfwlp.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608281005.57769.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 15:06:00 -0000 On Monday 28 August 2006 08:40, newsmaster wrote: > Jonathan Horne wrote in msgid: > <200608280828.50885.freebsd@dfwlp.com> > > > On Monday 28 August 2006 07:44, newsmaster wrote: > >> Jonathan Horne wrote in msgid: > >> <200608280705.21475.freebsd@dfwlp.com> > >> > >> > well, i finally got it to render at 1680x1050, but the size of my > >> > desktop is fixed at about 1.5" outside the physical size of the lcd > >> > (and about 3/8" top > >> > and bottom). ive dont quite a bit of googling, and i am now trying to > >> > figure out if there is a way to constain or shrink the desktop down, > >> > so that i will be at the edges of my screen? > >> > >> Did you try "xvidtune" ? It is disigned for that purpose. > > > > i did, but i couldnt outwardly figure out what i was looking at. when i > > go tot he xvidtune page tho, it says its for XFree86... will it till work > > properly for xorg? > > Yes, for me its works very well with Xorg. > I bought me a new IIyama lcd screen and I had to add manually > some new mode-lines. You can extrapolate from the existing ones. > Then xvidtune makes the finishing touch. Press on "show" and replace > the mode-line with the output of xvidtune. > when you click the narrower and shorters (etc) buttons, shouldnt the display be obeying these buttons? if so, im at a loss, as when i click them back and forth, nothing happens. ill try again, jonathan From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 15:06:05 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1DBFC16A55C for ; Mon, 28 Aug 2006 15:06:05 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail2.sea5.speakeasy.net (mail2.sea5.speakeasy.net [69.17.117.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCF3B43D45 for ; Mon, 28 Aug 2006 15:06:02 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 29542 invoked from network); 28 Aug 2006 15:06:02 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail2.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 28 Aug 2006 15:06:01 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 549B828449; Mon, 28 Aug 2006 11:06:01 -0400 (EDT) To: jekillen References: <5b3e8f769d1857a07e1f494cdaf6a035@prodigy.net> From: Lowell Gilbert Date: Mon, 28 Aug 2006 11:06:01 -0400 In-Reply-To: <5b3e8f769d1857a07e1f494cdaf6a035@prodigy.net> (jekillen@prodigy.net's message of "Sat, 26 Aug 2006 20:47:11 -0700") Message-ID: <44psekgasm.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: FreeBSD Mailing List Subject: Re: mail to root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD Mailing List List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 15:06:05 -0000 jekillen writes: > Unfortunately, there is not to my knowledge a comprehensive > text that will offer an analysis of every possible mail message to > root and what it means. Well, no, any more than there is a comprehensive text that will list every single noise your car might make and what it means. > rc.conf to set the aliases and rebooted the machine. The new aliases > didn't > show up with ifconfig so I added them with ifconfig ( I must have made > a mistake > in the rc.conf lines). Right. Sounds like you put inappropriate lines in rc.conf, which is only supposed to contain variable settings, not actual commands. Since you didn't show the lines you'd added, we can't suggest the right way to do it, but look at the if settings in rc.conf(5) and the Handbook description of configuring networking. Good luck. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 15:11:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4363816A50D for ; Mon, 28 Aug 2006 15:11:43 +0000 (UTC) (envelope-from david.robillard@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56E9343D6E for ; Mon, 28 Aug 2006 15:11:38 +0000 (GMT) (envelope-from david.robillard@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so1402808nfc for ; Mon, 28 Aug 2006 08:11:37 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=eoUUzAbKPNqzmIkD+ck1sbpU01CsYRuqGqCSqRNNCEiF0r5X+aE6D0F2fbl1LoO7Lx9yHuENdO9Dw2nLTzaScZ9CEfLv+pEuiRTUJFqeZUkaPgOxT4Z2xV6InxstgZbgPQAEihbCCnL+Px8UmPgC0/G+shCwxPxvhuXLwNZkXyA= Received: by 10.67.117.18 with SMTP id u18mr3792914ugm; Mon, 28 Aug 2006 08:11:37 -0700 (PDT) Received: by 10.67.106.17 with HTTP; Mon, 28 Aug 2006 08:11:37 -0700 (PDT) Message-ID: <226ae0c60608280811t75213772j2d84cfc8a30c148f@mail.gmail.com> Date: Mon, 28 Aug 2006 11:11:37 -0400 From: "David Robillard" To: "dick hoogendijk" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: FreeBSD Questions Mailing List Subject: Re: Fw: lothlorien.nagual.nl security run output X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 15:11:43 -0000 > I'm a little worried after reading the security output this morning. > It seems some files [ping, ping6, shutdown, at, atq and atrm] have > setuid diffs. I really don't know why this could have happened. > I updated some ports yesterday, but I don't think any port writes > in /sbin (?) > > Could someboddy advice me on what can have happened? What ports have you updated? You can check if any of them has installed new files in /sbin by running `pkg_info -L your_updated_port-version`. See the -L option of pkg_info(1) in the man page http://www.freebsd.org/cgi/man.cgi?query=pkg_info&apropos=0&sektion=0&manpath=FreeBSD+6.1-RELEASE&format=html You can also consider installing a Host Based Integrity Monitoring software. I use Osiris which is quite simple to setup and administer. It's already in the ports as security/osiris which you can get there: http://www.freebsd.org/cgi/url.cgi?ports/security/osiris/pkg-descr. Of course, don't install osiris on a machine which you're not sure if it has been tampered with, it would defeat the purpose... You can also take a look at other integrity checking software such as Samhain, Tripwire or aide. Regards, David -- David Robillard UNIX systems administrator & Oracle DBA CISSP, RHCE & Sun Certified Security Administrator Montreal: +1 514 966 0122 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 15:37:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 591FB16A4DE for ; Mon, 28 Aug 2006 15:37:48 +0000 (UTC) (envelope-from david.robillard@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5842D43D77 for ; Mon, 28 Aug 2006 15:37:47 +0000 (GMT) (envelope-from david.robillard@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so1410290nfc for ; Mon, 28 Aug 2006 08:37:46 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=QsfQnq+SjroCVDZsvl8JZrMmvw6AGkT+LLHb2TzYbQPrZXryr2GOM3iAJ5pw5jj1aiSnPFKuSSruXJpbDPtHNwJS6B3pTwdg8MbE9uAtGUaLhWkZ3Tql8f+UtFF4wSiFyZGwWxYjvn3AWskN/u0cGBg5Bd7i1XzlL8VG5bgWbYw= Received: by 10.66.216.6 with SMTP id o6mr3812402ugg; Mon, 28 Aug 2006 08:37:46 -0700 (PDT) Received: by 10.67.106.17 with HTTP; Mon, 28 Aug 2006 08:37:46 -0700 (PDT) Message-ID: <226ae0c60608280837q3eaf2089s4f34350872511100@mail.gmail.com> Date: Mon, 28 Aug 2006 11:37:46 -0400 From: "David Robillard" To: "Brett Glass" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: FreeBSD Questions Mailing List Subject: Re: "Hostile" vs. "Friendly" instances of Sendmail X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 15:37:48 -0000 >On Aug 25, 2006, at 12:57 PM, Brett Glass wrote: >> A company for whom I do consulting has a FreeBSD mail server. >> Because they're being deluged with connections from spammers (who >> have responded to the increasing use of "graylisting" by ordering >> their armies of bots to try again and again even when spam is >> rejected), they've subscribed to some DNS blacklists and set >> Sendmail to limit the number of processes it can spawn at any one >> time. This reduces the load on the system due to spamming, but also >> prevents internal users from getting the mail server's attention >> when they want to send legitimate outgoing mail. > >> What's the best way to set things up so that more trusted, internal >> users can access their own instance of Sendmail (with less >> restrictive process limits, no blacklist checks, etc.) while the >> outside world sees an instance of Sendmail with blacklisting, >> process limits, connection limits, load limits, etc.? Will there be >> problems with file locking, queues, etc. if a third instance of >> Sendmail is started on a standard FreeBSD install (which normally >> runs two)? I totally agree with what Chuck Swiger has suggested here: > You could also configure an external and an internal mailservers, > have the internal mailserver be entirely firewalled from outside so > that internal users and internal email are handled there without > issues, and just worry about tuning the external mailserver which > will then only need to do SMTP relaying and anti-spam stuff for the > external mail traffic rather than serve dual-duty as a reader box. To help you with sendmail architecture, take a look at page 547 of the "UNIX system administration handbook, 3rd edition" by Nemeth, Snyder, Seebass and Hein. Don't be fooled by the funny images on this book, it's very clear and quite possibly the best UNIX administration book around with real world examples. You can find it at http://www.admin.com/Pages/USAH.html. Aside from the huge bat book, O'Reilly also publishes "sendmail Cookbook" which is great when it comes to configure sendmail. Check it out at http://www.oreilly.com/catalog/sendmailckbk/. Have fun, David -- David Robillard UNIX systems administrator & Oracle DBA CISSP, RHCE & Sun Certified Security Administrator Montreal: +1 514 966 0122 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 15:45:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B487616A4DD for ; Mon, 28 Aug 2006 15:45:06 +0000 (UTC) (envelope-from micahjon@ywave.com) Received: from relay1.av-mx.com (relay1.av-mx.com [137.118.16.126]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35E3443D45 for ; Mon, 28 Aug 2006 15:45:05 +0000 (GMT) (envelope-from micahjon@ywave.com) X-Virus-Scan-Time: 0 Received: from [137.118.16.55] (HELO mx3.av-mx.com) by relay1.av-mx.com (CommuniGate Pro SMTP 4.2.10) with SMTP id 365258603 for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 11:45:06 -0400 Received: (qmail 1873 invoked from network); 28 Aug 2006 15:45:04 -0000 Received: from dsl25232.ywave.com (HELO ?192.168.1.65?) (micahjon@ywave.com@216.227.113.232) by mx3.av-mx.com with SMTP; 28 Aug 2006 15:45:04 -0000 X-CLIENT-IP: 216.227.113.232 X-CLIENT-HOST: dsl25232.ywave.com Message-ID: <44F30F7F.4080709@ywave.com> Date: Mon, 28 Aug 2006 08:45:03 -0700 From: Micah User-Agent: Thunderbird 1.5.0.5 (X11/20060730) MIME-Version: 1.0 To: Niek Bouman References: <44F2FA2F.20209@student.utwente.nl> In-Reply-To: <44F2FA2F.20209@student.utwente.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 6-STABLE as guest in VMWare Player on Winxp host X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 15:45:06 -0000 Niek Bouman wrote: > I'm running FreeBSD 6-STABLE as guest in the free VMWare Player on a > WinXP host. > How can I switch between virtual terminals? Ctrl-Alt-F[n] doesn't work... > > By the way, is this the right mailing list to place this question? > > > Thank you, > Niek Bouman As long as you're not in an X11 session, plain old Alt+Fn works to switch terminals. If you are in X11, I think there's a way to change the key combination to something else. Check with Google. HTH, Micah From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 16:09:50 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EC7F916A4DE for ; Mon, 28 Aug 2006 16:09:50 +0000 (UTC) (envelope-from mstremcha@sisunet.org) Received: from xtreme1.sisunet.org (xtreme1.sisunet.org [216.70.37.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69C6943D6E for ; Mon, 28 Aug 2006 16:09:50 +0000 (GMT) (envelope-from mstremcha@sisunet.org) Received: from zixvpm02.sisunet.org (unknown [10.16.1.3]) by xtreme1.sisunet.org (BorderWare MXtreme Mail Firewall) with ESMTP id 5CEF64D0B6 for ; Mon, 28 Aug 2006 11:09:45 -0500 (CDT) Received: from zixvpm02.sisunet.org (ZixVPM [127.0.0.1]) by Outbound.sisunet.org (Proprietary) with ESMTP id 401AC4C09E for ; Mon, 28 Aug 2006 11:09:44 -0500 (CDT) Received: from mail01.sisunet.org (MAIL01.sisunet.org [10.21.20.4]) by zixvpm02.sisunet.org (Proprietary) with ESMTP id BE6604C092 for ; Mon, 28 Aug 2006 11:09:43 -0500 (CDT) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Mon, 28 Aug 2006 11:09:44 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Dhclient crashes my laptop Thread-Index: AcbKvF9BAErBOeTNTLWSB2roRMXXZA== From: "Stremcha, Matthew" To: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Dhclient crashes my laptop X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 16:09:51 -0000 If I run dhclient wi0 the lights on the card go out, dhclient reports failure, and usually locks and reboots the machine. =20 I am not sure what information you need, but here is what I have and what I have learned so far. I will gladly collect and post any info that may help. =20 PCMCIA NIC card is a 3com airconnect, came with the access point. Laptop is an IBM ThinkPad 380xd (machine was free, rescued from trash at work to be a FreeBSD project) It is always plugged in when in use because the battery has about 5-10 minutes of life. Installed FreeBSD 6.1. dmesg shows that the wireless card is found and looks like it configures ok. If I enter IP & gateway manually it works. Tried using the other card slot, same problem. Tried to start pccardd per the web site, command not found. I found a post that says to run OLDCARD on this machine, but that's not in 6.1 and the card is fine until dhclient tries to help. It's a project and has no significant documents (I think), so wiping it and going to a version with OLDCARD can be done if necessary. After I get this working I may tackle APM so the thing will shut off when I tell it to. Thanks, Matthew Stremcha Technical Applications Analyst Sisu Medical Solutions 218.529.7972 From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 16:30:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 02E8216A4DD for ; Mon, 28 Aug 2006 16:30:07 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout3.cac.washington.edu (mxout3.cac.washington.edu [140.142.32.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B0CB43D45 for ; Mon, 28 Aug 2006 16:30:07 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout3.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7SGU6Qt007276 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 28 Aug 2006 09:30:06 -0700 X-Auth-Received: from [128.208.5.99] (nilakantha.cs.washington.edu [128.208.5.99]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7SGU6hO021136 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 28 Aug 2006 09:30:06 -0700 Message-ID: <44F31A0D.8060906@u.washington.edu> Date: Mon, 28 Aug 2006 09:30:05 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060826223927.I82634@hub.org> <20060827020210.GA9218@zloy.stilyagin.com> <44F1A5E4.20801@infracaninophile.co.uk> <44F1D3C0.7060100@u.washington.edu> <20060827233906.I82634@hub.org> In-Reply-To: <20060827233906.I82634@hub.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.2.0.264296, Antispam-Engine: 2.4.0.264935, Antispam-Data: 2006.8.28.91442 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: Re: BSDstats: Error message X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 16:30:08 -0000 Marc G. Fournier wrote: > On Sun, 27 Aug 2006, Garrett Cooper wrote: > >> Just wondering if this is a usual response to my accidentally >> hammering the bsdstats server: >> >> bash-2.05b# /usr/local/etc/periodic/monthly/300.statistics & >> [1] 5437 >> bash-2.05b# Posting monthly OS statistics to bsdstats.org >> Posting monthly device/CPU statistics disabled >> set monthly_statistics_report_devices="YES" in /etc/periodic.conf >> bash-2.05b# cat /etc/periodic.conf >> monthly_statistics_enable="YES" >> >> Got a 'new' machine (Pentium Pro 166 MHz, turning lightweight >> router/MTA :-).) and wanted to post it to the site. > > The above looks okay ... you reported your OS, as you listed in > periodic.conf, but unless you add > 'monthly_statistics_report_devices="YES"' to /etc/periodic.conf, it > won't report CPUs or devices ... if you add that line and re-run teh > script, it won't report a second server, but will update to show the > CPUs/Devices ... > I know. I figured that out after I read the message. Silly me ><. I love being #3 in the pentium pro class and #10 in the 1.2GHz Celeron category :D. -Garrett From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 16:41:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 85E8F16A4DA for ; Mon, 28 Aug 2006 16:41:00 +0000 (UTC) (envelope-from thiago.e.o@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51B9143D53 for ; Mon, 28 Aug 2006 16:40:59 +0000 (GMT) (envelope-from thiago.e.o@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so2356442pye for ; Mon, 28 Aug 2006 09:40:58 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=O+oOxcpXpLSSYDKKPkClMgxV2yIuGKvrmsuW4kULR34jI9seRhhLGZEgmY//Mdno7+ma12IaC6mv7JLS/9baFf6sr3ZC6SMWvDYlhejNZpdDiezK40IXaMXdqov7T1UZ+VxGs6ywHzPbTj6nz7hh47bw8Jp0vsuozrbeO8vYxyg= Received: by 10.35.51.13 with SMTP id d13mr12798196pyk; Mon, 28 Aug 2006 09:40:58 -0700 (PDT) Received: by 10.35.92.20 with HTTP; Mon, 28 Aug 2006 09:40:58 -0700 (PDT) Message-ID: Date: Mon, 28 Aug 2006 13:40:58 -0300 From: "Thiago Esteves de Oliveira" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: atm in freebsd 6.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 16:41:00 -0000 Hi, Can I enable atm in FreeBSD 6.1 ??? -- ================================================ > Thiago Esteves de Oliveira < ================================================ From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 16:54:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AEB6C16A4E7 for ; Mon, 28 Aug 2006 16:54:30 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 015A343D58 for ; Mon, 28 Aug 2006 16:54:29 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7SGsN3Z006305 for ; Mon, 28 Aug 2006 11:54:23 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Mon, 28 Aug 2006 11:54:22 -0500 User-Agent: KMail/1.9.3 References: <200608271454.37351.freebsd@dfwlp.com> <200608281005.57769.freebsd@dfwlp.com> In-Reply-To: <200608281005.57769.freebsd@dfwlp.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608281154.23068.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 16:54:30 -0000 On Monday 28 August 2006 10:05, Jonathan Horne wrote: > On Monday 28 August 2006 08:40, newsmaster wrote: > > Jonathan Horne wrote in msgid: > > <200608280828.50885.freebsd@dfwlp.com> > > > > > On Monday 28 August 2006 07:44, newsmaster wrote: > > >> Jonathan Horne wrote in msgid: > > >> <200608280705.21475.freebsd@dfwlp.com> > > >> > > >> > well, i finally got it to render at 1680x1050, but the size of my > > >> > desktop is fixed at about 1.5" outside the physical size of the lcd > > >> > (and about 3/8" top > > >> > and bottom). ive dont quite a bit of googling, and i am now trying > > >> > to figure out if there is a way to constain or shrink the desktop > > >> > down, so that i will be at the edges of my screen? > > >> > > >> Did you try "xvidtune" ? It is disigned for that purpose. > > > > > > i did, but i couldnt outwardly figure out what i was looking at. when > > > i go tot he xvidtune page tho, it says its for XFree86... will it till > > > work properly for xorg? > > > > Yes, for me its works very well with Xorg. > > I bought me a new IIyama lcd screen and I had to add manually > > some new mode-lines. You can extrapolate from the existing ones. > > Then xvidtune makes the finishing touch. Press on "show" and replace > > the mode-line with the output of xvidtune. > > when you click the narrower and shorters (etc) buttons, shouldnt the > display be obeying these buttons? if so, im at a loss, as when i click > them back and forth, nothing happens. > > ill try again, > problem solved. got an nvidia 7300GS. as little changing the driver and vendor name, and the next startx i was at the proper resolution and refresh rate. sorry intel! cheers, jonathan From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 17:02:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 330E816A4DA for ; Mon, 28 Aug 2006 17:02:34 +0000 (UTC) (envelope-from news@jeremino.homeunix.net) Received: from jeremino.homeunix.net (jeremino.xs4all.nl [80.126.224.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28E0243D60 for ; Mon, 28 Aug 2006 17:02:25 +0000 (GMT) (envelope-from news@jeremino.homeunix.net) Received: from news by jeremino.homeunix.net with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1GHkL7-0001Av-V9 for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 18:51:57 +0200 From: "Kees Plonsz (newsmaster)" X-Newsgroups: list.fbsd.questions Date: Mon, 28 Aug 2006 18:51:57 +0200 Organization: Chaotic Lines: 14 Message-ID: References: <200608271454.37351.freebsd@dfwlp.com> <200608280828.50885.freebsd@dfwlp.com> <200608281005.57769.freebsd@dfwlp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@jeremino.homeunix.net X-Face: dtAN(p3{]qk\XP?#Z/w4D6D%"{t}6EFQIEv.YCM-L).KZ#M-1|:kgToZn*t!H^|(gS/A9MOa#T]^~A:sn=q[vw\n8S"QP97/MLO}L[Jq*5f+&lY_8ij@3; sbZ/>F$[*hrNX`hu/e(\%m.kc~(EV#knmO@,9$615zns'>?E_?[bWyW%-Jp=Gj?oB9P`h8ua@C0_g/!K__/'EP^i; kBAjRTa/hoV To: freebsd-questions@freebsd.org Sender: News Subsystem Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 17:02:34 -0000 Jonathan Horne wrote in msgid: <200608281005.57769.freebsd@dfwlp.com> > when you click the narrower and shorters (etc) buttons, shouldnt the > display > be obeying these buttons? if so, im at a loss, as when i click them back > and forth, nothing happens. > > ill try again, > You should press "apply" after any change. Or set it to "auto", it will apply automatically. There is a manual page, you know ? From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 17:08:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9C99616A4E0 for ; Mon, 28 Aug 2006 17:08:52 +0000 (UTC) (envelope-from stanb@panix.com) Received: from mail2.panix.com (mail2.panix.com [166.84.1.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2297343D80 for ; Mon, 28 Aug 2006 17:08:39 +0000 (GMT) (envelope-from stanb@panix.com) Received: from mailspool3.panix.com (mailspool3.panix.com [166.84.1.78]) by mail2.panix.com (Postfix) with ESMTP id 1337C9D9F2 for ; Mon, 28 Aug 2006 13:08:39 -0400 (EDT) Received: from teddy.fas.com (c-68-58-232-106.hsd1.sc.comcast.net [68.58.232.106]) by mailspool3.panix.com (Postfix) with ESMTP id EB370FB01A2 for ; Mon, 28 Aug 2006 13:08:38 -0400 (EDT) Received: from stan by teddy.fas.com with local (Exim 3.36 #1 (Debian)) id 1GHkbG-0006Rx-00 for ; Mon, 28 Aug 2006 13:08:38 -0400 Date: Mon, 28 Aug 2006 13:08:38 -0400 From: stan To: Free BSD Questions list Message-ID: <20060828170838.GA24408@teddy.fas.com> Mail-Followup-To: Free BSD Questions list Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Editor: gVim X-Operating-System: Debian GNU/Linux X-Kernel-Version: 2.4.23 X-Uptime: 12:57:57 up 133 days, 14:04, 1 user, load average: 0.05, 0.05, 0.01 User-Agent: Mutt/1.5.4i Sender: Stan Brown Subject: VTOBUS FAILED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 17:08:52 -0000 I'm trying to troubleshoot a problem on a Sun Ultra40 with 6.1 STABLE AMD64 on it, that looks like a hardware problem (Signal 10 aborts while compiling a kernel for instance). I have taken the root SATA disk out of this machine, and put it in another similar (but not identical U40). I thought that I would be able to confirm that it is a hardware problem on the first machine by booting off this disk, and repeating the things that failed on the suspect machine. However, with the disk in the 2nd machine, I get the boot menu, and during the kernel's hardware detection phase, it panics with a VTOBUS FAIL message. What's a VTOBUS, and why would this disk not be bootable in the 2nd machine? he 2nd machine has 2 dual core CPU's vs 2 single core in the problematic ones, and it also has a SCSI card in it. The kernel on the disk is most likely a custom one. Is thee a way to try booting from the GENERIC kernel on the disk? -- Unix is very simple, but it takes a genius to understand the simplicity. (Dennis Ritchie) From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 17:25:59 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6CB9416A4DA for ; Mon, 28 Aug 2006 17:25:59 +0000 (UTC) (envelope-from n.j.bouman@student.utwente.nl) Received: from smtp.utwente.nl (smtp1.utsp.utwente.nl [130.89.2.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5BEF43D49 for ; Mon, 28 Aug 2006 17:25:58 +0000 (GMT) (envelope-from n.j.bouman@student.utwente.nl) Received: from mail.service.utwente.nl (win018.service.utwente.nl [130.89.4.36]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id k7SHPptB011053 for ; Mon, 28 Aug 2006 19:25:52 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Mon, 28 Aug 2006 19:22:25 +0200 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: FreeBSD 6-STABLE as guest in VMWare Player on Winxp host Thread-Index: AcbKrJYfnoY3xph1SpueovSz2HaG8AAGfFMZ References: <44F2FA2F.20209@student.utwente.nl> <20060828101631.296f9da5.wmoran@collaborativefusion.com> From: "Bouman, N.J. \(Niek, Student EE,EL\)" To: X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact helpdesk@ITBE.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: n.j.bouman@student.utwente.nl X-Spam-Status: No Subject: RE: FreeBSD 6-STABLE as guest in VMWare Player on Winxp host X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 17:25:59 -0000 > I'm running FreeBSD 6-STABLE as guest in the free VMWare Player on a=20 > WinXP host. > How can I switch between virtual terminals? Ctrl-Alt-F[n] doesn't = work... >=20 > By the way, is this the right mailing list to place this question? I have found it somewhere with google. One has to press Ctrl-Alt-Space and subsequently (while still holding = Ctrl and Alt) the desired F-key. Thanks for the reactions, Niek From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 17:32:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2D2E716A4E0 for ; Mon, 28 Aug 2006 17:32:26 +0000 (UTC) (envelope-from news@jeremino.homeunix.net) Received: from jeremino.homeunix.net (jeremino.xs4all.nl [80.126.224.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 437F943D53 for ; Mon, 28 Aug 2006 17:32:25 +0000 (GMT) (envelope-from news@jeremino.homeunix.net) Received: from news by jeremino.homeunix.net with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1GHkcZ-0001Gr-IR for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 19:09:59 +0200 From: "Kees Plonsz (newsmaster)" X-Newsgroups: list.fbsd.questions Date: Mon, 28 Aug 2006 19:09:59 +0200 Organization: Chaotic Lines: 46 Message-ID: References: <200608271454.37351.freebsd@dfwlp.com> <200608281005.57769.freebsd@dfwlp.com> <200608281154.23068.freebsd@dfwlp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@jeremino.homeunix.net X-Face: dtAN(p3{]qk\XP?#Z/w4D6D%"{t}6EFQIEv.YCM-L).KZ#M-1|:kgToZn*t!H^|(gS/A9MOa#T]^~A:sn=q[vw\n8S"QP97/MLO}L[Jq*5f+&lY_8ij@3; sbZ/>F$[*hrNX`hu/e(\%m.kc~(EV#knmO@,9$615zns'>?E_?[bWyW%-Jp=Gj?oB9P`h8ua@C0_g/!K__/'EP^i; kBAjRTa/hoV To: freebsd-questions@freebsd.org Sender: News Subsystem Subject: Re: got a new monitor, trying to reconfig xorg X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 17:32:26 -0000 Jonathan Horne wrote in msgid: <200608281154.23068.freebsd@dfwlp.com> > On Monday 28 August 2006 10:05, Jonathan Horne wrote: >> On Monday 28 August 2006 08:40, newsmaster wrote: >> > Jonathan Horne wrote in msgid: >> > <200608280828.50885.freebsd@dfwlp.com> >> > >> > > On Monday 28 August 2006 07:44, newsmaster wrote: >> > >> Jonathan Horne wrote in msgid: >> > >> <200608280705.21475.freebsd@dfwlp.com> >> > >> >> > >> > well, i finally got it to render at 1680x1050, but the size of my >> > >> > desktop is fixed at about 1.5" outside the physical size of the >> > >> > lcd (and about 3/8" top >> > >> > and bottom). ive dont quite a bit of googling, and i am now >> > >> > trying to figure out if there is a way to constain or shrink the >> > >> > desktop down, so that i will be at the edges of my screen? >> > >> >> > >> Did you try "xvidtune" ? It is disigned for that purpose. >> > > >> > > i did, but i couldnt outwardly figure out what i was looking at. >> > > when i go tot he xvidtune page tho, it says its for XFree86... will >> > > it till work properly for xorg? >> > >> > Yes, for me its works very well with Xorg. >> > I bought me a new IIyama lcd screen and I had to add manually >> > some new mode-lines. You can extrapolate from the existing ones. >> > Then xvidtune makes the finishing touch. Press on "show" and replace >> > the mode-line with the output of xvidtune. >> >> when you click the narrower and shorters (etc) buttons, shouldnt the >> display be obeying these buttons? if so, im at a loss, as when i click >> them back and forth, nothing happens. >> >> ill try again, >> > > problem solved. got an nvidia 7300GS. as little changing the driver and > vendor name, and the next startx i was at the proper resolution and > refresh rate. > You know that Nvidia has a driver for FreeBSD if you want those special things your card can do, like twin display, brialliance adjust, tv-out etc... From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 18:00:14 2006 Return-Path: X-Original-To: questions@freebsd.org 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 E27EE16A4DA for ; Mon, 28 Aug 2006 18:00:13 +0000 (UTC) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: from bewilderbeast.blackhelicopters.org (bewilderbeast.blackhelicopters.org [198.22.63.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F9EB43D45 for ; Mon, 28 Aug 2006 18:00:12 +0000 (GMT) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: from bewilderbeast.blackhelicopters.org (mwlucas@localhost [127.0.0.1]) by bewilderbeast.blackhelicopters.org (8.12.10/8.12.10) with ESMTP id k7SI0Afw045466 for ; Mon, 28 Aug 2006 14:00:11 -0400 (EDT) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: (from mwlucas@localhost) by bewilderbeast.blackhelicopters.org (8.12.10/8.12.10/Submit) id k7SI0Abo045465 for questions@freebsd.org; Mon, 28 Aug 2006 14:00:10 -0400 (EDT) (envelope-from mwlucas) Date: Mon, 28 Aug 2006 14:00:10 -0400 From: "Michael W. Lucas" To: questions@freebsd.org Message-ID: <20060828180010.GA45404@bewilderbeast.blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Spam-Score: (0) X-Scanned-By: MIMEDefang 2.39 Cc: Subject: ng_fec headaches X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 18:00:14 -0000 Hi, I'm using a recent -current on amd64, and trying to use ng_fec to hopefully provide a wide-bandwidth connection with cable-level redundancy, and instead I get get errors and sporadic connectivity. I configured fec0 as such: #!/bin/sh ngctl mkpeer fec dummy fec ngctl msg fec0: add_iface '"em3"' ngctl msg fec0: add_iface '"em7"' ngctl msg fec0: set_mode_inet ifconfig fec0 up ifconfig fec0 inet 10.184.1.19 netmask 255.255.0.0 The Cisco 6509 I was attached to had ports configured with: switchport trunk encapsulation dot1q switchport mode trunk When I tried to ping various hosts, however, I got sporadic and intermittent connectivity to other hosts on the network. Dmesg follows after log entries. Any suggestions? Thanks, ==ml Aug 25 11:43:13 aubsr019 kernel: WARNING: attempt to net_add_domain(netgraph) after domainfinalize() Aug 25 11:48:40 aubsr019 kernel: em3: link state changed to DOWN Aug 25 11:48:42 aubsr019 kernel: em3: link state changed to UP Aug 25 11:49:48 aubsr019 kernel: em3: link state changed to DOWN Aug 25 11:49:48 aubsr019 kernel: em7: link state changed to DOWN Aug 25 11:49:49 aubsr019 kernel: fec0: port em3 in bundle is down Aug 25 11:49:49 aubsr019 kernel: fec0: port em7 in bundle is down Aug 25 11:49:50 aubsr019 kernel: em7: link state changed to UP Aug 25 11:49:50 aubsr019 kernel: em3: link state changed to UP Aug 25 11:49:50 aubsr019 kernel: fec0: port em3 in bundle is up Aug 25 11:49:50 aubsr019 kernel: fec0: port em7 in bundle is up Aug 25 11:50:40 aubsr019 kernel: em3: link state changed to DOWN Aug 25 11:50:40 aubsr019 kernel: em7: link state changed to DOWN Aug 25 11:50:41 aubsr019 kernel: fec0: port em3 in bundle is down Aug 25 11:50:41 aubsr019 kernel: fec0: port em7 in bundle is down Aug 25 11:50:42 aubsr019 kernel: em7: link state changed to UP Aug 25 11:50:42 aubsr019 kernel: em3: link state changed to UP Aug 25 11:50:42 aubsr019 kernel: fec0: port em3 in bundle is up Aug 25 11:50:42 aubsr019 kernel: fec0: port em7 in bundle is up Aug 25 11:51:12 aubsr019 kernel: arp: 10.184.0.9 is on em3 but got reply from 00:11:bb:c2:34:40 on fec0 Aug 25 11:51:15 aubsr019 last message repeated 3 times Aug 25 11:51:15 aubsr019 kernel: arp: 10.184.1.11 is on em3 but got reply from 00:04:23:c2:91:38 on fec0 Aug 25 11:51:15 aubsr019 kernel: arp: 10.184.1.11 is on em3 but got reply from 00:04:23:c2:91:38 on fec0 Aug 25 11:51:16 aubsr019 kernel: arp: 10.184.0.9 is on em3 but got reply from 00:11:bb:c2:34:40 on fec0 Aug 25 11:51:19 aubsr019 last message repeated 3 times Aug 25 11:51:30 aubsr019 kernel: arp: 10.184.1.8 is on em3 but got reply from 00:50:04:1c:be:06 on fec0 Aug 25 11:51:54 aubsr019 last message repeated 12 times Aug 25 11:52:20 aubsr019 last message repeated 2 times Aug 25 11:52:22 aubsr019 kernel: arp: 10.184.202.99 is on em3 but got reply from 00:90:f5:48:aa:65 on fec0 Aug 25 11:52:25 aubsr019 last message repeated 5 times Aug 25 11:52:29 aubsr019 kernel: arp: 10.184.1.6 is on em3 but got reply from aa:00:04:00:10:08 on fec0 Aug 25 11:52:34 aubsr019 last message repeated 5 times Copyright (c) 1992-2006 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 7.0-CURRENT #1: Wed Aug 23 12:14:08 EDT 2006 system_mwl@aubsr019.us.add:/usr/obj/usr/src/sys/LOGHOST WARNING: WITNESS option enabled, expect reduced performance. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Xeon(TM) CPU 3.00GHz (2992.71-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0xf43 Stepping = 3 Features=0xbfebfbff Features2=0x641d AMD Features=0x20100800 Logical CPUs per core: 2 usable memory = 2139070464 (2039 MB) avail memory = 2064818176 (1969 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 2 ioapic1: Changing APIC ID to 3 ioapic1: WARNING: intbase 32 != expected base 24 ioapic2: Changing APIC ID to 4 ioapic2: WARNING: intbase 64 != expected base 56 ioapic3: Changing APIC ID to 5 ioapic3: WARNING: intbase 96 != expected base 88 ioapic0 irqs 0-23 on motherboard ioapic1 irqs 32-55 on motherboard ioapic2 irqs 64-87 on motherboard ioapic3 irqs 96-119 on motherboard kbd1 at kbdmux0 acpi0: on motherboard acpi0: Power Button (fixed) Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 cpu0: on acpi0 cpu1: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: at device 2.0 on pci0 pci1: on pcib1 pcib2: at device 0.0 on pci1 pci2: on pcib2 amr0: mem 0xf80f0000-0xf80fffff,0xfe9c0000-0xfe9fffff irq 46 at device 14.0 on pci2 amr0: Using 64-bit DMA amr0: delete logical drives supported by controller amr0: Firmware 521X, BIOS H430, 256MB RAM pcib3: at device 0.2 on pci1 pci3: on pcib3 pcib4: at device 4.0 on pci0 pci4: on pcib4 pcib5: at device 5.0 on pci0 pci5: on pcib5 pcib6: at device 0.0 on pci5 pci6: on pcib6 em0: port 0xecc0-0xecff mem 0xfe6e0000-0xfe6fffff irq 64 at device 7.0 on pci6 em0: Ethernet address: 00:13:72:64:cc:9d pcib7: at device 0.2 on pci5 pci7: on pcib7 em1: port 0xdcc0-0xdcff mem 0xfe4e0000-0xfe4fffff irq 65 at device 8.0 on pci7 em1: Ethernet address: 00:13:72:64:cc:9e pcib8: at device 6.0 on pci0 pci8: on pcib8 pcib9: at device 0.0 on pci8 pci9: on pcib9 em2: port 0xccc0-0xccff mem 0xfe1e0000-0xfe1fffff irq 106 at device 4.0 on pci9 em2: Ethernet address: 00:04:23:ce:45:d6 em3: port 0xcc80-0xccbf mem 0xfe1c0000-0xfe1dffff irq 107 at device 4.1 on pci9 em3: Ethernet address: 00:04:23:ce:45:d7 pcib10: at device 0.2 on pci8 pci10: on pcib10 em4: port 0xbcc0-0xbcff mem 0xfdfe0000-0xfdffffff,0xfdf80000-0xfdfbffff irq 96 at device 2.0 on pci10 em4: Ethernet address: 00:04:23:c2:91:02 em5: port 0xbc80-0xbcbf mem 0xfdfc0000-0xfdfdffff,0xfdf40000-0xfdf7ffff irq 97 at device 2.1 on pci10 em5: Ethernet address: 00:04:23:c2:91:03 em6: port 0xbc40-0xbc7f mem 0xfdf20000-0xfdf3ffff irq 101 at device 3.0 on pci10 em6: Ethernet address: 00:04:23:ce:4c:2a em7: port 0xbc00-0xbc3f mem 0xfdf00000-0xfdf1ffff irq 102 at device 3.1 on pci10 em7: Ethernet address: 00:04:23:ce:4c:2b uhci0: port 0x9ce0-0x9cff irq 16 at device 29.0 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x9cc0-0x9cdf irq 19 at device 29.1 on pci0 uhci1: [GIANT-LOCKED] usb1: on uhci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0x9ca0-0x9cbf irq 18 at device 29.2 on pci0 uhci2: [GIANT-LOCKED] usb2: on uhci2 usb2: USB revision 1.0 uhub2: on usb2 uhub2: 2 ports with 2 removable, self powered ehci0: mem 0xfeb00000-0xfeb003ff irq 23 at device 29.7 on pci0 ehci0: [GIANT-LOCKED] usb3: EHCI version 1.0 usb3: companion controllers, 2 ports each: usb0 usb1 usb2 usb3: on ehci0 usb3: USB revision 2.0 uhub3: on usb3 uhub3: 6 ports with 6 removable, self powered uhub4: on uhub3 uhub4: multiple transaction translators uhub4: 2 ports with 2 removable, self powered pcib11: at device 30.0 on pci0 pci11: on pcib11 vgapci0: port 0xac00-0xacff mem 0xf0000000-0xf7ffffff,0xfdcf0000-0xfdcfffff irq 18 at device 13.0 on pci11 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 31.1 on pci0 ata0: on atapci0 ata1: on atapci0 acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 2000 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FAST] atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse Explorer, device ID 4 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FAST] orm0: at iomem 0xc0000-0xcafff,0xec000-0xeffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounters tick every 1.000 msec acd0: CDROM at ata0-master UDMA33 amr0: delete logical drives supported by controller amrd0: on amr0 amrd0: 1430400MB (2929459200 sectors) RAID 5 (optimal) SMP: AP CPU #1 Launched! Trying to mount root from ufs:/dev/amrd0s1a -- Michael W. Lucas mwlucas@FreeBSD.org, mwlucas@BlackHelicopters.org http://www.BlackHelicopters.org/~mwlucas/ Latest book: PGP & GPG -- http://www.pgpandgpg.com "The cloak of anonymity protects me from the nuisance of caring." -Non Sequitur From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 18:13:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2A0A916A4DA for ; Mon, 28 Aug 2006 18:13:09 +0000 (UTC) (envelope-from obrieng@nm.cbc.ca) Received: from mail02.nm.cbc.ca (mail02.nm.cbc.ca [159.33.1.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9294B43D45 for ; Mon, 28 Aug 2006 18:12:33 +0000 (GMT) (envelope-from obrieng@nm.cbc.ca) Received: from hub.cbc.ca (hub.nm.cbc.ca [192.168.1.119]) by mail02.nm.cbc.ca (Postfix) with ESMTP id D9947272D2A for ; Mon, 28 Aug 2006 14:12:25 -0400 (EDT) Received: from localhost (localhost.cbc.ca [127.0.0.1]) by hub.cbc.ca (Postfix) with ESMTP id B711B6A47D for ; Mon, 28 Aug 2006 14:12:25 -0400 (EDT) Received: from hub.cbc.ca ([127.0.0.1]) by localhost (hub.cbc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 74994-01-18 for ; Mon, 28 Aug 2006 14:12:25 -0400 (EDT) Received: from [1.151.32.18] (intd.cbc.ca [159.33.1.75]) by hub.cbc.ca (Postfix) with ESMTP id D70D46A47A for ; Mon, 28 Aug 2006 14:12:24 -0400 (EDT) Message-ID: <44F33207.2070401@nm.cbc.ca> Date: Mon, 28 Aug 2006 14:12:23 -0400 From: Gabriel O'Brien User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at hub.cbc.ca Subject: FreeBSD 5.4: 'cp -p' does not behave as documented X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 18:13:09 -0000 Hi folks, FreeBSD 5.4-RELEASE-p6 i386 We have a script in our environment that is used to back up our mail logs. In essence it does: cp -p /var/log/maillog.0.bz2 /stats/maillogs/maillog-testcopy.bz2 According to the cp man page: -p Cause cp to preserve the following attributes of each source file in the copy: modification time, access time, file flags, file mode, user ID, and group ID, as allowed by permissions. If the user ID and group ID cannot be preserved, no error message is displayed and the exit value is not altered. However, when I run this script or when I do a cp -p manually I am seeing: cp: chown: /stats/maillogs/maillog-copy-test.bz2: Permission denied For the record the user does not actually have permissions to do the chown, however we would still like to use 'cp -p' in order to preserve the remainder of the attributes and according to the docs this should be possible. Does anybody have any insight? I note this issue does not appear to exist on our FreeBSD 6.1 boxes. cheers, Gabriel O'Brien From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 18:15:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1459B16A52B for ; Mon, 28 Aug 2006 18:15:48 +0000 (UTC) (envelope-from BHarris@celinaisd.com) Received: from tomcat.celinaisd.com (tomcat.celinaisd.com [207.235.186.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C73A43D6D for ; Mon, 28 Aug 2006 18:15:40 +0000 (GMT) (envelope-from BHarris@celinaisd.com) Received: from notes1.celinaisd.com ([10.56.24.20]) by tomcat.celinaisd.com with esmtp (Exim 4.42) id 1GHleJ-0009gz-1w; Mon, 28 Aug 2006 13:15:51 -0500 In-Reply-To: <009b01c6c8f1$1994e620$3c01a8c0@coolf89ea26645> To: "Ted Mittelstaedt" MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.3 September 14, 2004 Message-ID: From: BHarris@celinaisd.com Date: Mon, 28 Aug 2006 13:14:06 -0500 X-MIMETrack: Serialize by Router on notes1/cisd(Release 7.0.1|January 17, 2006) at 08/28/2006 01:14:06 PM, Serialize complete at 08/28/2006 01:14:06 PM Content-Type: text/plain; charset="US-ASCII" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 18:15:48 -0000 Ok, it does appear to the be BGE driver, as you suggested. Reinstalled, after resetting the bios, and as long as I don't configure the network interface, it boots and seems happy. I need a little help, I setup a sup file, and downloaded the sys hiearchy, but I'm not sure which files to copy over to the stock 6.1-RELEASE? In the sys/dev/bge directory there where two files that looked promising, if_bge.c and ifbgereg.h and I copied them over and tried to build a kernel, and it complained about VLAN needing 4 arguements, and only getting 3. I can copy whatever I need to a flash drive and read it on the DL320, so getting the files there is no problem. I've tried pulling the 6.1-CURRENT hiearchy down, and it won't build at all. Can you point me to the updated driver files? Bill "Ted Mittelstaedt" 08/26/06 04:21 AM To , cc Subject Re: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE I have one of these running mail right now. Here's what I found: 1) The onboard ethernet chip driver in 6.1-release is buggy and will panic the system. Install and don't enable ethernet. Download the current bge driver from CVS, copy to a floppy, copy from floppy to server, recompile kernel. 2) Turn off the onboard SATA raid in BIOS, it uses adaptec microcode that isn't supported. If you want mirrored raid, there's a procedure that you can do to get it. 3) for some weird reason the system will hang during boot for up to TWO MINUTES. After it gets done doing whatever it's doing, it will continue booting. Install normally, don't do anything special. BIOS settings should be normal. Ted ----- Original Message ----- From: To: Sent: Friday, August 25, 2006 6:14 PM Subject: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE > Having problems booting my new 320 G4 after successfully > installing from CD. The CD install went fine, the first boot was > normal, but the second and all subsequent boots hang right > after the WARNING setting entropy source to blocking mode. > > Keyboard is dead and the machine appears locked up. Right > now it's on the screen wanting to enter the seed for SSHD, but > it hangs on even when you don't enable SSHD during install. > > any suggestions? > > I've tried to disable ILo by turning off the Legacy USB support. > FYI, VGA console and regular PS2 keyboard hooked up. > > Any help would be most appreciated. Just bought 4 of these > guys for a project. > > Bill > _______________________________________________ > 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 Aug 28 18:48:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7F5F416A4DA for ; Mon, 28 Aug 2006 18:48:24 +0000 (UTC) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (dsl081-142-072.chi1.dsl.speakeasy.net [64.81.142.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id C558B43D55 for ; Mon, 28 Aug 2006 18:48:23 +0000 (GMT) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (localhost.computinginnovations.com [127.0.0.1]) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k7SIm7n3057451; Mon, 28 Aug 2006 13:48:07 -0500 (CDT) Received: from localhost (derek@localhost) by betty.computinginnovations.com (8.13.6/8.12.11/Submit) with ESMTP id k7SIm7Zk057448; Mon, 28 Aug 2006 13:48:07 -0500 (CDT) Date: Mon, 28 Aug 2006 13:48:07 -0500 (CDT) From: Derek Ragona To: "Gabriel O'Brien" In-Reply-To: <44F33207.2070401@nm.cbc.ca> Message-ID: <20060828134729.U57414@betty.computinginnovations.com> References: <44F33207.2070401@nm.cbc.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-ComputingInnovations-MailScanner-Information: Please contact the ISP for more information X-ComputingInnovations-MailScanner: Found to be clean X-ComputingInnovations-MailScanner-From: derek@betty.computinginnovations.com X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 5.4: 'cp -p' does not behave as documented X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 18:48:24 -0000 You need to run this as root so the permissions and ownership all can be set. -Derek On Mon, 28 Aug 2006, Gabriel O'Brien wrote: > Hi folks, > > FreeBSD 5.4-RELEASE-p6 i386 > > We have a script in our environment that is used to back up our mail logs. > In essence it does: > > cp -p /var/log/maillog.0.bz2 /stats/maillogs/maillog-testcopy.bz2 > > According to the cp man page: > > > > -p Cause cp to preserve the following attributes of each source file > in the copy: modification time, access time, file flags, file mode, > user ID, and group ID, as allowed by permissions. > > If the user ID and group ID cannot be preserved, no error message > is displayed and the exit value is not altered. > > > > However, when I run this script or when I do a cp -p manually I am seeing: > > cp: chown: /stats/maillogs/maillog-copy-test.bz2: Permission denied > > For the record the user does not actually have permissions to do the chown, > however we would still like to use 'cp -p' in order to preserve the remainder > of the attributes and according to the docs this should be possible. Does > anybody have any insight? > > I note this issue does not appear to exist on our FreeBSD 6.1 boxes. > > cheers, > Gabriel O'Brien > _______________________________________________ > 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" > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > MailScanner thanks transtec Computers for their support. > > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 19:08:04 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9FAFD16A4DF for ; Mon, 28 Aug 2006 19:08:04 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D1AB43D62 for ; Mon, 28 Aug 2006 19:07:54 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.4/8.13.1) with ESMTP id k7SJ7qEl098021; Mon, 28 Aug 2006 12:07:53 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k7SJ7dfG098012; Mon, 28 Aug 2006 12:07:39 -0700 (PDT) (envelope-from kline) Date: Mon, 28 Aug 2006 12:07:38 -0700 From: Gary Kline To: Howard Jones Message-ID: <20060828190738.GA97262@thought.org> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <241DF2D9-F281-4AD5-90CE-BC23850360F2@hackmiester.com> <44F210BD.6040908@thingy.com> <20060828015621.GA79317@thought.org> <44F2E7FF.6030402@thingy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44F2E7FF.6030402@thingy.com> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Gary Kline , andrew clarke , "hackmiester \(Hunter Fuller\)" , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 19:08:04 -0000 On Mon, Aug 28, 2006 at 01:56:31PM +0100, Howard Jones wrote: > Gary Kline wrote: > > Well, if/when you *do* try, please clue me in. --I'm too new to > > DVD's and tooo che--er, thrifty to buy a ten pack of blanks. I'm > > not sure that I have three hours of "favorites"; probably, but no > > more. Most of my favorite tunes are on tape--pre-recorded and > > hi-fidelity, but the problem is turnning analogue to digital. > > Thrift isn't really an issue nowadays - you can get 50 DVD-Rs for about > $10-15 online. Cheap enough to use a few to experiement, in my opinion. Wow! that really *is* a deal. About where the floppies were years back. I was guessing $2.50+ per blank. > > I did some experimenting last night, and got what seems to be a working > solution. I don't have a DVD burner where I am, so I haven't *actually* > burned one, but 2 software players (Apple's and Media Player Classic) > are both happy with the VIDEO_TS files. From my brief research, the > minimum bitrate for DVD audio is 32Khz, and there isn't a minimum for > the video, only a maximum. There is also a video-CD-like frame size of > 352x480 for NTSC so you can reduced the video size further. > > For my test audio file (2:12 song), I got: > 2.2MB Original MP3 file - 192Kbit/sec 44.1Khz sample-rate joint stereo > 3.3MB MP2 file - no changes apart from 44.1->48 resampling > 0.5MB MP2 file - resampled to 48Khz, forced to mono and 32Kbit/sec > output stream > > the 0.5MB file doesn't actually sound *that* bad for music - it's AM > radio quality. It would be fine for speech. > > A 64Kbps video file to go with it is about 2.6MB, so the final 'DVD > file' is either 6.7M ('music' quality) or 4M ('voice' quality). DVD > authoring adds around 800K, but I don't believe this is per-chapter. > > Assuming that it isn't, that's around 2400 minutes on a DVD-R (voice) or > 1500 minutes (music), and it should be playable on any DVD player, since > it should be a full-spec DVD still. Video is a just-say-no in my case; I've got around 26 hours of very high quality (192K) mp3 files (voice) that ought to be just fine at 32K/48KHz monaural. This for the stuff that's taking up hundreds of megs on-disk. As for collecting my favorite, I don't have anywhere near 25 hours (1500 minutes) of them, so maybe I'll wait until "mp4" or "AACplus" [[[ these are the same, right? ]]] is more widely available, then stuff my few hours onto a regular CD-R. > > Here's my notes on producing a disc. This is for an NTSC disc. For PAL, > you need to change 480 to 576 wherever it appears, add 'pal' instead of > 'ntsc' to the dvdauthor line, and "-f 25" instead of "-f 30" in the > transcode line. > > I'm no video expert, so I'm sure there are better ways to do this, but > this one worked for me! Well sir, you are lightyears beyond me!! During my hackery years I worked mostly in the supercomputer realm. Sound? video? on a *computer*??? Faugh! I'm finally learning what I was missing :-) thanks much for your help. same for everybody else who offered help, clues, and code! gary > > Howie > > ###################################################################################### > # Take the MP3 file, play it into toolame as 48Khz PCM data > # toolame reencodes as MP2 (for DVD) at 32khz (the minimum?) in mono > madplay -R48000 -b16 -o wave:- mytestfile.mp3 | toolame -s 48 -b 32 -a > -m m - mytestfile.mp2 > # (take out the -b 32 and -a -m m if you want music quality) > > # next, we'll produce a VERY low bitrate MPEG2 movie of the same length as > # the audio since we have to do *some* encoding here, we might as well make > # the static image be the title of the audio track. > > # this is ALL ONE pipeline > ppmmake blue 352 480 | \ > ppmlabel -x 50 -y 100 -text "This is the track name" | \ > ppmtoy4m -S 420mpeg2 -r -v2 | \ > transcode -x yuv4mpeg,mp3 -y mpeg2enc,null -o mytestfile -p > "mytestfile.mp3" \ > -Z 352x480 -F "8,-b 64" -i /dev/stdin -g 352x480 --import_asr 2 -f > 30 -m /dev/null > > # So that's: make a blank blue image of the correct size for NTSC video > at the smallest size > # add a caption over it > # take that PPM file use it to stream frames into the video transcoder. > # (We only have one frame, so just repeat it) > # transcode takes that frame and encodes it as DVD-compatible 64kbps MPEG-2 > # (normally for a DVD movie it would be more like 5000kpbs) > # we import an audio stream even though we aren't using it, so as to get > the > # right length. Otherwise we get a never-ending video stream :-) > > # So now, there's a .m2v video stream, and a .mp2 audio stream, and we > need to > # multiplex them. > mplex -f 8 -o mytestfile.mpg mytestfile.m2v mytestfile.mp2 > > # *** repeat the above for each of your audio files. *** > > # finally, we can make a simple DVD > dvdauthor -v ntsc+4:3+352x480 -a mp2+en+1ch+16bps -t -o testdvd > mytestfile.mpg > dvdauthor -T -o testdvd > > # if you used 'music' quality encoding in toolame, then use 2ch instead > of 1ch here > > # You should find a DVD structure (VIDEO_TS, AUDIO_TS) waiting in the > 'testdvd' directory. > # you can specify multiple .mpg files on the command line, and each one > will > # become a chapter on the DVD > > # FINALLY, to get a burnable ISO image: > mkisofs -dvd-video -o testdvd.iso testdvd > # and burn it to /dev/acd0: > growisofs -dvd-compat -Z /dev/acd0=testdvd.iso > > # Ports used: > # sysutils/dvd+rw-tools (growisofs) > # sysutils/cdrtools (mkisofs - installed as a dependency of dvd+rw-tools) > # mjpegtools (mplex, y4m stuff) > # netpbm (ppmfile, ppmlabel) > # toolame (MPEG Layer II encoding) > # madplay (MP3 decoding) > # dvdauthor (final authoring) > # transcode (install this last, so it gets the mpeg2encode from mjpegtools) -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 19:22:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2B7C616A4DD for ; Mon, 28 Aug 2006 19:22:37 +0000 (UTC) (envelope-from stanb@panix.com) Received: from mail2.panix.com (mail2.panix.com [166.84.1.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77C0043D5A for ; Mon, 28 Aug 2006 19:22:30 +0000 (GMT) (envelope-from stanb@panix.com) Received: from mailspool3.panix.com (mailspool3.panix.com [166.84.1.78]) by mail2.panix.com (Postfix) with ESMTP id DE1419D840 for ; Mon, 28 Aug 2006 15:22:29 -0400 (EDT) Received: from teddy.fas.com (c-68-58-232-106.hsd1.sc.comcast.net [68.58.232.106]) by mailspool3.panix.com (Postfix) with ESMTP id 0651FFB01A1 for ; Mon, 28 Aug 2006 15:22:30 -0400 (EDT) Received: from stan by teddy.fas.com with local (Exim 3.36 #1 (Debian)) id 1GHmgn-0007nM-00 for ; Mon, 28 Aug 2006 15:22:29 -0400 Date: Mon, 28 Aug 2006 15:22:29 -0400 From: stan To: Free BSD Questions list Message-ID: <20060828192229.GA29844@teddy.fas.com> Mail-Followup-To: Free BSD Questions list Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Editor: gVim X-Operating-System: Debian GNU/Linux X-Kernel-Version: 2.4.23 X-Uptime: 15:19:58 up 133 days, 16:26, 1 user, load average: 0.33, 0.26, 0.18 User-Agent: Mutt/1.5.4i Sender: Stan Brown Subject: Forceig a resolution in xorg server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 19:22:37 -0000 I'm (huridelly) building a new machine to replaced my (just failed) main workstation at work. I have Xorg installed, and when I type X it starts up OK. KDE, and kdm work also. But, at way too high a resolution. I tried doing X -configure to generate a config file, but the resultant file contains no resolution settings. How can I force X to run in 1280x1024 x 24 bit color mode? -- Unix is very simple, but it takes a genius to understand the simplicity. (Dennis Ritchie) From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 19:22:46 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7A1AE16A4E6 for ; Mon, 28 Aug 2006 19:22:46 +0000 (UTC) (envelope-from jekillen@prodigy.net) Received: from smtp109.sbc.mail.mud.yahoo.com (smtp109.sbc.mail.mud.yahoo.com [68.142.198.208]) by mx1.FreeBSD.org (Postfix) with SMTP id C5B8043D72 for ; Mon, 28 Aug 2006 19:22:44 +0000 (GMT) (envelope-from jekillen@prodigy.net) Received: (qmail 56118 invoked from network); 28 Aug 2006 19:22:44 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=prodigy.net; h=Received:Mime-Version:In-Reply-To:References:Content-Type:Message-Id:Content-Transfer-Encoding:From:Subject:Date:To:X-Mailer; b=ZbWwfs1QjUTNXVCjT2A00W2inBlnljebRD+IQJefe/73ruJYf8G7lXZ3n4T4pVDzEWAffIjeuJDhCAD5GAUpu0rlOC6bSzQlF44gf9reoxslGi855rz9ehckZ5HnktpueR7rlvg42lmuEa2eYwF7tQbIValQbHQYF7bAigQhbrE= ; Received: from unknown (HELO ?75.7.236.228?) (jekillen@prodigy.net@75.7.236.228 with plain) by smtp109.sbc.mail.mud.yahoo.com with SMTP; 28 Aug 2006 19:22:43 -0000 Mime-Version: 1.0 (Apple Message framework v622) In-Reply-To: <44psekgasm.fsf@be-well.ilk.org> References: <5b3e8f769d1857a07e1f494cdaf6a035@prodigy.net> <44psekgasm.fsf@be-well.ilk.org> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: jekillen Date: Mon, 28 Aug 2006 12:26:25 -0700 To: FreeBSD Mailing List X-Mailer: Apple Mail (2.622) Subject: Re: mail to root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 19:22:46 -0000 On Aug 28, 2006, at 8:06 AM, Lowell Gilbert wrote: > jekillen writes: > >> Unfortunately, there is not to my knowledge a comprehensive >> text that will offer an analysis of every possible mail message to >> root and what it means. > > Well, no, any more than there is a comprehensive text that will list > every single noise your car might make and what it means. > >> rc.conf to set the aliases and rebooted the machine. The new aliases >> didn't >> show up with ifconfig so I added them with ifconfig ( I must have made >> a mistake >> in the rc.conf lines). > > Right. Sounds like you put inappropriate lines in rc.conf, which is > only supposed to contain variable settings, not actual commands. > > Since you didn't show the lines you'd added, we can't suggest the > right way to do it, but look at the if settings in rc.conf(5) and the > Handbook description of configuring networking. > > Good luck. I did add the ifconfig commands to rc.conf, but the problem started before I did that, I did find a line in rc.conf setting ifconfig to something already having to do with configuration of an interface. I'll have to go back and get the actual line, and remove the others as well. I hope no one has cracked the machine, I get failed login attempts over ftp all the time. I have ftp blocked on the public addresses. Thanks for the info,: JK > -- > Lowell Gilbert, embedded/networking software engineer, Boston area > http://be-well.ilk.org/~lowell/ > From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 19:29:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 45EA016A4FC for ; Mon, 28 Aug 2006 19:29:42 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout7.cac.washington.edu (mxout7.cac.washington.edu [140.142.32.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id C817543DC9 for ; Mon, 28 Aug 2006 19:28:26 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout7.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7SJS57D006170 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 28 Aug 2006 12:28:05 -0700 X-Auth-Received: from [128.208.5.99] (nilakantha.cs.washington.edu [128.208.5.99]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7SJS54c013936 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 28 Aug 2006 12:28:05 -0700 Message-ID: <44F343C3.4050103@u.washington.edu> Date: Mon, 28 Aug 2006 12:28:03 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.2.0.264296, Antispam-Engine: 2.4.0.264935, Antispam-Data: 2006.8.28.100944 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: Fine tuning conditional compilation of 'make buildworld' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 19:29:42 -0000 Hi, Just wondering if there was a more comprehensive list of variables that can be used when specifying what should and shouldn't be built other than what is specified in "man make.conf" for "make buildworld". I am configuring two 6.1 systems and want to trim down the junk as much as possible. Thanks, -Garrett From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 19:33:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3953216A4E0 for ; Mon, 28 Aug 2006 19:33:28 +0000 (UTC) (envelope-from greenwood.andy@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1767043E06 for ; Mon, 28 Aug 2006 19:30:03 +0000 (GMT) (envelope-from greenwood.andy@gmail.com) Received: by wr-out-0506.google.com with SMTP id i21so369881wra for ; Mon, 28 Aug 2006 12:29:42 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=cs2A/xMpsydHg5uHtpNWaPiQA104LiJ/lBDrFLmqq4FbsZkvFnJO4P9ArAZjHzvQPrido/yTVcG9g+94ethXJzk3YrzYGAE5tbHNn1peDwVF9DMKlY4aQmdVsAAYKh0mMRtaN4OLK+3pw1FMCd8CmJwYkewi4W1yHN4s1ZWZC04= Received: by 10.90.83.14 with SMTP id g14mr549463agb; Mon, 28 Aug 2006 12:29:41 -0700 (PDT) Received: by 10.90.80.18 with HTTP; Mon, 28 Aug 2006 12:29:41 -0700 (PDT) Message-ID: <3ee9ca710608281229w38b39d2cmde0f20476dd0b915@mail.gmail.com> Date: Mon, 28 Aug 2006 15:29:41 -0400 From: "Andy Greenwood" To: "Free BSD Questions list" In-Reply-To: <20060828192229.GA29844@teddy.fas.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060828192229.GA29844@teddy.fas.com> Subject: Re: Forceig a resolution in xorg server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 19:33:28 -0000 I haven't used X in a loooong time, but IIRC you should be able to just remove all the other modes from the .conf file. If there's only one availilbe mode, X will have to use it :-) On 8/28/06, stan wrote: > > I'm (huridelly) building a new machine to replaced my (just failed) main > workstation at work. I have Xorg installed, and when I type X it starts up > OK. KDE, and kdm work also. But, at way too high a resolution. I tried doing > X -configure to generate a config file, but the resultant file contains no > resolution settings. > > How can I force X to run in 1280x1024 x 24 bit color mode? > > -- > Unix is very simple, but it takes a genius to understand the simplicity. > (Dennis Ritchie) > > _______________________________________________ > 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 Aug 28 19:47:46 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A12FC16A4DA for ; Mon, 28 Aug 2006 19:47:46 +0000 (UTC) (envelope-from mcbrune@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id BED8243D45 for ; Mon, 28 Aug 2006 19:47:45 +0000 (GMT) (envelope-from mcbrune@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1869877uge for ; Mon, 28 Aug 2006 12:47:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=QQQx0IO0mOFf1K0ZY6JKVBdp+GNo51ai7it+PcCMk2XOUxuYO1vh0ngI72w6nx/vfZWfRnDKEO61GQ29bT6u5dWnuQDZjmCNU72E+EtMUy3kBav3WPwMjRUm3CrWeJ70TcHXhZh04itg5xTZ85lFVuDEoXaZFvQmZVEutnS45EY= Received: by 10.67.100.12 with SMTP id c12mr3977765ugm; Mon, 28 Aug 2006 12:47:44 -0700 (PDT) Received: by 10.66.237.15 with HTTP; Mon, 28 Aug 2006 12:47:44 -0700 (PDT) Message-ID: <562705370608281247i4199e970u3eb72576ab23e032@mail.gmail.com> Date: Mon, 28 Aug 2006 14:47:44 -0500 From: "Corey Brune" To: "Karim Nogas" In-Reply-To: <44EEDB8A.1030100@telus.net> MIME-Version: 1.0 References: <44EEDB8A.1030100@telus.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: panic: driver error: busdma dflt_lock called X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 19:47:46 -0000 >From what I can tell, the function dflt_lock is only called if the dma driver doesn't have a lock. This causes a panic (see busdma_machdep.c line 190). Can you provide the call stack? Thanks, Corey On 8/25/06, Karim Nogas wrote: > > Hello, > > I was wondering if someone could explain this error message, and where I > should look for a resolution. > > I installed FreeBSD 6.1, configured my NIC, and was using it for a > couple days without problems. Now, even after a fresh install, I keep > getting this error. The only resolution I've found is to login in > Single-User Mode, run fsck, and mount -a. Unfortunately, this 'fix' is > temporary as the problem occurs again with a reboot. > > Any ideas would be greatly appreciated. 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" > From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 20:01:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 43ED916A4DD for ; Mon, 28 Aug 2006 20:01:38 +0000 (UTC) (envelope-from bg271828@yahoo.com) Received: from web53415.mail.yahoo.com (web53415.mail.yahoo.com [206.190.39.75]) by mx1.FreeBSD.org (Postfix) with SMTP id BA5CE43D55 for ; Mon, 28 Aug 2006 20:01:37 +0000 (GMT) (envelope-from bg271828@yahoo.com) Received: (qmail 26952 invoked by uid 60001); 28 Aug 2006 20:01:37 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Sbj9r6cOza9aTRpC3BPXin9JoUI2JCGcUR2sbO7AplqpPBrDiblX6dPYPFH3TitB3K3Sabs+e7fCpRFIzk8jhZkcCniyY15tFXhNni5BGwR84WCyzgTwPW+8qeFUhE1Selr13heyQIT/Ay1o2n/GHWUylVQPlIaUiST6LDzhp+8= ; Message-ID: <20060828200137.26950.qmail@web53415.mail.yahoo.com> Received: from [12.182.77.130] by web53415.mail.yahoo.com via HTTP; Mon, 28 Aug 2006 13:01:37 PDT Date: Mon, 28 Aug 2006 13:01:37 -0700 (PDT) From: "Dr. Jennifer Nussbaum" 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.5 Subject: Various package/ports problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 20:01:38 -0000 Hi, I inherited a FreeBSD 4.8 box that had a lot of out of date ports on it. in trying to fix some of this, i seem to have screwed up the package or ports system in a way i cant manage to fix. For example if i try to run "portversion" i get: undefined method `each' for nil:NilClass /usr/local/sbin/portversion:239: [BUG] Bus Error from Ruby (ruby 1.8.5 is up to date on the system). If i try to run "pkg_info" I quickly get: pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*' (i googled for similar problems and there were a few other reports of this, with other packages, but no suggestion of how to fix them.) If i try to rebuild my ports index, I get gnopernicus-0.12.0: "/usr/ports/accessibility/gnome-speech" non-existent -- dependency list incomplete" and nothing will go further. How can i get all of this sorted? i was really hoping to be able to update most of this sytem but now i cant even get started to find out what needs it :-( Jen --------------------------------- All-new Yahoo! Mail - Fire up a more powerful email and get things done faster. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 20:05:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 14E2E16A4FD for ; Mon, 28 Aug 2006 20:05:37 +0000 (UTC) (envelope-from gibblertron@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A46C43DA1 for ; Mon, 28 Aug 2006 20:05:27 +0000 (GMT) (envelope-from gibblertron@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so36561nfc for ; Mon, 28 Aug 2006 13:05:26 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iPWOoPcqbzcsG6xFAqghWaYepKVsnWOhVjwBwGxadgUyAvPADcZIYIR3SslAMlHBxTx++axr5P5IBzyv4HvR6QGSSS4f95Joov4uvaunditRrxD2AvJp8guH+2XTrOVNqsTmxtFpAJEt/tMuNeERtuQde7Kt760WODASihk9bQw= Received: by 10.49.26.18 with SMTP id d18mr141988nfj; Mon, 28 Aug 2006 13:05:26 -0700 (PDT) Received: by 10.48.243.16 with HTTP; Mon, 28 Aug 2006 13:05:26 -0700 (PDT) Message-ID: Date: Mon, 28 Aug 2006 13:05:26 -0700 From: patrick To: "FreeBSD Questions Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: localhost = ::1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 20:05:37 -0000 I upgraded BIND on one of our DNS servers (running FreeBSD 4.x) to version 9, and now all of our other machines that use this server for DNS resolution is experiencing a problem where "localhost" seems to be resolving to "::1". For example, if I previously typed: telnet localhost 25 I would get: Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. ... But now, I get: Trying ::1... Which takes forever to timeout. In my /etc/hosts file, I have ::1 localhost 127.0.0.1 localhost We don't use IPV6 at all, and I do have the localhost.rev and localhost-v6.rev added into the new BIND 9 server. Does anyone have an idea of how I can get this to work the way it used to? Thanks, Patrick From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 20:30:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 22E4C16A4DA for ; Mon, 28 Aug 2006 20:30:08 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.238]) by mx1.FreeBSD.org (Postfix) with ESMTP id 756DA43D45 for ; Mon, 28 Aug 2006 20:30:07 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so1811691wxd for ; Mon, 28 Aug 2006 13:30:07 -0700 (PDT) Received: by 10.70.15.15 with SMTP id 15mr9987560wxo; Mon, 28 Aug 2006 13:28:26 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id i33sm8489454wxd.2006.08.28.13.28.26; Mon, 28 Aug 2006 13:28:26 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 91E19C5B0; Mon, 28 Aug 2006 16:25:53 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 90851C590; Mon, 28 Aug 2006 16:21:11 -0400 (EDT) Date: Mon, 28 Aug 2006 16:21:10 -0400 (EDT) From: Gerard Seibert To: "Dr. Jennifer Nussbaum" In-Reply-To: <20060828200137.26950.qmail@web53415.mail.yahoo.com> Message-ID: <20060828161718.P67591@scorpio.seibercom.net> References: <20060828200137.26950.qmail@web53415.mail.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV using ClamSMTP Cc: FreeBSD-Questions Subject: Re: Various package/ports problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Gerard Seibert List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 20:30:08 -0000 On Mon, 28 Aug 2006, Dr. Jennifer Nussbaum wrote: > Hi, > > I inherited a FreeBSD 4.8 box that had a lot of out of date ports on it. in > trying to fix some of this, i seem to have screwed up the package or > ports system in a way i cant manage to fix. > > For example if i try to run "portversion" i get: > > undefined method `each' for nil:NilClass > /usr/local/sbin/portversion:239: [BUG] Bus Error > > from Ruby (ruby 1.8.5 is up to date on the system). > > If i try to run "pkg_info" I quickly get: > > pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*' > > (i googled for similar problems and there were a few other reports > of this, with other packages, but no suggestion of how to fix them.) > > If i try to rebuild my ports index, I get > > gnopernicus-0.12.0: "/usr/ports/accessibility/gnome-speech" non-existent -- > dependency list incomplete" > > and nothing will go further. > > How can i get all of this sorted? i was really hoping to be able to update > most of this sytem but now i cant even get started to find out what needs it :-( > > Jen That is really quite an old version of FSBD. If possible, I think you would be well served by updating to the latest version - 6.1 - if possible. I may be wrong, but I do not believe that there is a lot of support for that version anymore. -- Gerard Seibert gerard@seibercom.net Has anyone ever tasted an "end"? Are they really bitter? From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 20:46:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2199116A4E6 for ; Mon, 28 Aug 2006 20:46:22 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout4.cac.washington.edu (mxout4.cac.washington.edu [140.142.33.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id D459743D5E for ; Mon, 28 Aug 2006 20:46:20 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout4.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7SKkKYE031591 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 28 Aug 2006 13:46:20 -0700 X-Auth-Received: from [192.168.0.40] (dsl254-013-145.sea1.dsl.speakeasy.net [216.254.13.145]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7SKkJJC003735 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Mon, 28 Aug 2006 13:46:19 -0700 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <20060828161718.P67591@scorpio.seibercom.net> References: <20060828200137.26950.qmail@web53415.mail.yahoo.com> <20060828161718.P67591@scorpio.seibercom.net> X-Gpgmail-State: !signed Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <1E2A35C1-5B0A-4088-853C-213C654CA0E0@u.washington.edu> Content-Transfer-Encoding: 7bit From: Garrett Cooper Date: Mon, 28 Aug 2006 13:50:54 -0700 To: FreeBSD Questions X-Mailer: Apple Mail (2.752.2) X-PMX-Version: 5.2.0.264296, Antispam-Engine: 2.4.0.264935, Antispam-Data: 2006.8.28.100944 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0' Subject: Re: Various package/ports problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 20:46:22 -0000 On Aug 28, 2006, at 1:21 PM, Gerard Seibert wrote: > On Mon, 28 Aug 2006, Dr. Jennifer Nussbaum wrote: > >> Hi, >> >> I inherited a FreeBSD 4.8 box that had a lot of out of date ports >> on it. in >> trying to fix some of this, i seem to have screwed up the package or >> ports system in a way i cant manage to fix. >> >> For example if i try to run "portversion" i get: >> >> undefined method `each' for nil:NilClass >> /usr/local/sbin/portversion:239: [BUG] Bus Error >> >> from Ruby (ruby 1.8.5 is up to date on the system). >> >> If i try to run "pkg_info" I quickly get: >> >> pkg_info: read_plist: bad command '@conflicts apache+ipv6-1.*' >> >> (i googled for similar problems and there were a few other reports >> of this, with other packages, but no suggestion of how to fix them.) >> >> If i try to rebuild my ports index, I get >> >> gnopernicus-0.12.0: "/usr/ports/accessibility/gnome-speech" non- >> existent -- >> dependency list incomplete" >> >> and nothing will go further. >> >> How can i get all of this sorted? i was really hoping to be able >> to update >> most of this sytem but now i cant even get started to find out >> what needs it :-( >> >> Jen > > That is really quite an old version of FSBD. If possible, I think > you would be well served by updating to the latest version - 6.1 - > if possible. > > I may be wrong, but I do not believe that there is a lot of support > for that version anymore. > > -- > Gerard Seibert > gerard@seibercom.net > > Has anyone ever tasted an "end"? Are they really bitter? Version 4.x is no longer supported by FreeBSD at all. I suggest either reinstalling FreeBSD 5.4 or just install 6.1. -Garrett From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 20:48:01 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 54C2E16A4DD for ; Mon, 28 Aug 2006 20:48:01 +0000 (UTC) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (dsl081-142-072.chi1.dsl.speakeasy.net [64.81.142.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 559A443D72 for ; Mon, 28 Aug 2006 20:47:51 +0000 (GMT) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (localhost.computinginnovations.com [127.0.0.1]) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k7SKlPCL059088; Mon, 28 Aug 2006 15:47:26 -0500 (CDT) Received: from localhost (derek@localhost) by betty.computinginnovations.com (8.13.6/8.12.11/Submit) with ESMTP id k7SKlO1D059085; Mon, 28 Aug 2006 15:47:25 -0500 (CDT) Date: Mon, 28 Aug 2006 15:47:24 -0500 (CDT) From: Derek Ragona To: patrick In-Reply-To: Message-ID: <20060828154653.X59068@betty.computinginnovations.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-ComputingInnovations-MailScanner-Information: Please contact the ISP for more information X-ComputingInnovations-MailScanner: Found to be clean X-ComputingInnovations-MailScanner-From: derek@betty.computinginnovations.com X-Spam-Status: No Cc: FreeBSD Questions Mailing List Subject: Re: localhost = ::1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 20:48:01 -0000 You are seeing it match the first match. Comment out the IPV6 line and restart bind. -Derek On Mon, 28 Aug 2006, patrick wrote: > I upgraded BIND on one of our DNS servers (running FreeBSD 4.x) to > version 9, and now all of our other machines that use this server for > DNS resolution is experiencing a problem where "localhost" seems to be > resolving to "::1". For example, if I previously typed: > > telnet localhost 25 > > I would get: > > Trying 127.0.0.1... > Connected to localhost. > Escape character is '^]'. > ... > > But now, I get: > > Trying ::1... > > Which takes forever to timeout. > > In my /etc/hosts file, I have > > ::1 localhost > 127.0.0.1 localhost > > > We don't use IPV6 at all, and I do have the localhost.rev and > localhost-v6.rev added into the new BIND 9 server. Does anyone have an > idea of how I can get this to work the way it used to? > > Thanks, > > Patrick > _______________________________________________ > 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" > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > MailScanner thanks transtec Computers for their support. > > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 20:59:21 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 493A616A4DE for ; Mon, 28 Aug 2006 20:59:21 +0000 (UTC) (envelope-from bg271828@yahoo.com) Received: from web53409.mail.yahoo.com (web53409.mail.yahoo.com [206.190.37.56]) by mx1.FreeBSD.org (Postfix) with SMTP id 95D0C43D70 for ; Mon, 28 Aug 2006 20:59:15 +0000 (GMT) (envelope-from bg271828@yahoo.com) Received: (qmail 8183 invoked by uid 60001); 28 Aug 2006 20:59:15 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=ZOZq+/UtLDh+tbkOiMvjRUt0Z6tuWQ2ztBUYIl778JkpNqJEZlew7VykvxmsRadz4FxQ9PE44czA3kjlUl62gpKFZLmMA+fAGK+9pW3+IvONs2Gju04A4E6DYYha70KVAysCikfQaFPtudBQtLCG4hbCSYJEWsbspgQsDEZdbyY= ; Message-ID: <20060828205915.8181.qmail@web53409.mail.yahoo.com> Received: from [12.182.77.130] by web53409.mail.yahoo.com via HTTP; Mon, 28 Aug 2006 13:59:14 PDT Date: Mon, 28 Aug 2006 13:59:14 -0700 (PDT) From: "Dr. Jennifer Nussbaum" To: Gerard Seibert In-Reply-To: <20060828161718.P67591@scorpio.seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: FreeBSD-Questions Subject: Re: Various package/ports problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 20:59:21 -0000 Gerard Seibert wrote: On Mon, 28 Aug 2006, Dr. Jennifer Nussbaum wrote: > Hi, > > I inherited a FreeBSD 4.8 box that had a lot of out of date ports on it. in > trying to fix some of this, i seem to have screwed up the package or > ports system in a way i cant manage to fix. That is really quite an old version of FSBD. If possible, I think you would be well served by updating to the latest version - 6.1 - if possible. I may be wrong, but I do not believe that there is a lot of support for that version anymore. I wish i could, but i dont have physical access to the machine - its in a remote location with no serial console. So if anything gets messed up during an upgrade, im in a hell of a lot of trouble. I dont know when i'll be able to fix this problem so until i can upgrade the OS i at least want to keep the rest of it up to date. Jen. --------------------------------- Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 21:01:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E8C9216A4DA for ; Mon, 28 Aug 2006 21:01:35 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4517243D4C for ; Mon, 28 Aug 2006 21:01:35 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Mon, 28 Aug 2006 17:01:34 -0400 id 00056405.44F359AE.00013A35 Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 28 Aug 2006 17:00:54 -0400 Date: Mon, 28 Aug 2006 17:01:33 -0400 From: Bill Moran To: Garrett Cooper Message-Id: <20060828170133.893e7a61.wmoran@collaborativefusion.com> In-Reply-To: <1E2A35C1-5B0A-4088-853C-213C654CA0E0@u.washington.edu> References: <20060828200137.26950.qmail@web53415.mail.yahoo.com> <20060828161718.P67591@scorpio.seibercom.net> <1E2A35C1-5B0A-4088-853C-213C654CA0E0@u.washington.edu> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Various package/ports problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 21:01:36 -0000 In response to Garrett Cooper : > > Version 4.x is no longer supported by FreeBSD at all. I suggest > either reinstalling FreeBSD 5.4 or just install 6.1. That's a bit of an exaggeration. http://security.freebsd.org/#adv FreeBSD 4.11 and 4-STABLE are officially supported until Jan 2007. although 4.8 hasn't been supported in quite a while. -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 21:07:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 5405116A4DF for ; Mon, 28 Aug 2006 21:07:51 +0000 (UTC) (envelope-from BHarris@celinaisd.com) Received: from tomcat.celinaisd.com (tomcat.celinaisd.com [207.235.186.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C9B143DAF for ; Mon, 28 Aug 2006 21:07:19 +0000 (GMT) (envelope-from BHarris@celinaisd.com) Received: from notes1.celinaisd.com ([10.56.24.20]) by tomcat.celinaisd.com with esmtp (Exim 4.42) id 1GHoKU-000DTZ-8N; Mon, 28 Aug 2006 16:07:34 -0500 In-Reply-To: <009b01c6c8f1$1994e620$3c01a8c0@coolf89ea26645> To: "Ted Mittelstaedt" MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.3 September 14, 2004 Message-ID: From: BHarris@celinaisd.com Date: Mon, 28 Aug 2006 16:05:48 -0500 X-MIMETrack: Serialize by Router on notes1/cisd(Release 7.0.1|January 17, 2006) at 08/28/2006 04:05:49 PM, Serialize complete at 08/28/2006 04:05:49 PM Content-Type: text/plain; charset="US-ASCII" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 21:07:51 -0000 FYI, setup stable-sup and let it update the kernal on another 6.1 box, then tar'ed the who sys source directory onto a flash drive and onto my DL320. Rebuilt kernel, network up and running. Did find out in the process that the DL320 will try and boot off a flash drive.. didn't expect that.. Anyway, thanks much for the pointers, and I'm off to the races now. Bill "Ted Mittelstaedt" 08/26/06 04:21 AM To , cc Subject Re: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE I have one of these running mail right now. Here's what I found: 1) The onboard ethernet chip driver in 6.1-release is buggy and will panic the system. Install and don't enable ethernet. Download the current bge driver from CVS, copy to a floppy, copy from floppy to server, recompile kernel. 2) Turn off the onboard SATA raid in BIOS, it uses adaptec microcode that isn't supported. If you want mirrored raid, there's a procedure that you can do to get it. 3) for some weird reason the system will hang during boot for up to TWO MINUTES. After it gets done doing whatever it's doing, it will continue booting. Install normally, don't do anything special. BIOS settings should be normal. Ted ----- Original Message ----- From: To: Sent: Friday, August 25, 2006 6:14 PM Subject: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE > Having problems booting my new 320 G4 after successfully > installing from CD. The CD install went fine, the first boot was > normal, but the second and all subsequent boots hang right > after the WARNING setting entropy source to blocking mode. > > Keyboard is dead and the machine appears locked up. Right > now it's on the screen wanting to enter the seed for SSHD, but > it hangs on even when you don't enable SSHD during install. > > any suggestions? > > I've tried to disable ILo by turning off the Legacy USB support. > FYI, VGA console and regular PS2 keyboard hooked up. > > Any help would be most appreciated. Just bought 4 of these > guys for a project. > > Bill > _______________________________________________ > 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 Aug 28 21:23:17 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 129E216A4DE for ; Mon, 28 Aug 2006 21:23:17 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 460FA43D49 for ; Mon, 28 Aug 2006 21:23:16 +0000 (GMT) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.13.6/8.13.6) with ESMTP id k7SLNFmC007494; Mon, 28 Aug 2006 17:23:15 -0400 (EDT) (envelope-from doug@fledge.watson.org) Received: from localhost (doug@localhost) by fledge.watson.org (8.13.6/8.13.6/Submit) with ESMTP id k7SLNFB0007491; Mon, 28 Aug 2006 17:23:15 -0400 (EDT) (envelope-from doug@fledge.watson.org) Date: Mon, 28 Aug 2006 17:23:15 -0400 (EDT) From: doug To: Andy Greenwood In-Reply-To: <3ee9ca710608281229w38b39d2cmde0f20476dd0b915@mail.gmail.com> Message-ID: <20060828171837.V15411@fledge.watson.org> References: <20060828192229.GA29844@teddy.fas.com> <3ee9ca710608281229w38b39d2cmde0f20476dd0b915@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Free BSD Questions list Subject: Re: Forceig a resolution in xorg server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 21:23:17 -0000 This is in the handbook but: Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 1 EndSubSection : SubSection "Display" Viewport 0 0 Depth 24 Modes "1280x1024" EndSubSection On Mon, 28 Aug 2006, Andy Greenwood wrote: > I haven't used X in a loooong time, but IIRC you should be able to > just remove all the other modes from the .conf file. If there's only > one availilbe mode, X will have to use it :-) > > On 8/28/06, stan wrote: >> >> I'm (huridelly) building a new machine to replaced my (just failed) main >> workstation at work. I have Xorg installed, and when I type X it starts up >> OK. KDE, and kdm work also. But, at way too high a resolution. I tried >> doing >> X -configure to generate a config file, but the resultant file contains no >> resolution settings. >> >> How can I force X to run in 1280x1024 x 24 bit color mode? >> >> -- >> Unix is very simple, but it takes a genius to understand the simplicity. >> (Dennis Ritchie) >> >> _______________________________________________ >> 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 Mon Aug 28 21:33:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6CDD216A4DA for ; Mon, 28 Aug 2006 21:33:06 +0000 (UTC) (envelope-from dking@ketralnis.com) Received: from ketralnis.com (melchoir.ketralnis.com [68.183.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10AAD43D46 for ; Mon, 28 Aug 2006 21:33:05 +0000 (GMT) (envelope-from dking@ketralnis.com) Received: from [192.168.1.27] (pix.xythos.com [64.154.218.194]) (authenticated bits=0) by ketralnis.com (8.13.6/8.13.6) with ESMTP id k7SLX41e008873 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO) for ; Mon, 28 Aug 2006 14:33:05 -0700 (PDT) (envelope-from dking@ketralnis.com) Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <20060828134729.U57414@betty.computinginnovations.com> References: <44F33207.2070401@nm.cbc.ca> <20060828134729.U57414@betty.computinginnovations.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: David King Date: Mon, 28 Aug 2006 14:32:48 -0700 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.752.2) Subject: Re: FreeBSD 5.4: 'cp -p' does not behave as documented X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 21:33:06 -0000 >> According to the cp man page: >> -p Cause cp to preserve the following attributes of each source file >> in the copy: modification time, access time, file flags, file >> mode, >> user ID, and group ID, as allowed by permissions. >> >> If the user ID and group ID cannot be preserved, no error message >> is displayed and the exit value is not altered. >> However, when I run this script or when I do a cp -p manually I am >> seeing: >> cp: chown: /stats/maillogs/maillog-copy-test.bz2: Permission denied > You need to run this as root so the permissions and ownership all > can be set. > -Derek I think you misunderstand the poster's complaint. It's not that the permissions aren't being set, it's that the documentation is incorrect. This part: If the user ID and group ID cannot be preserved, no error message is displayed and the exit value is not altered. is not in accordance to the behaviour that they are seeing. The owner and/or group could not be set, but cp(1) fails, and displays a message, but the documentation says that it should not display an error message or fail. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 21:51:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C894D16A4DE for ; Mon, 28 Aug 2006 21:51:02 +0000 (UTC) (envelope-from timh@unixtechs.org) Received: from ms-smtp-02.ohiordc.rr.com (ms-smtp-02.ohiordc.rr.com [65.24.5.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9266C43D60 for ; Mon, 28 Aug 2006 21:50:58 +0000 (GMT) (envelope-from timh@unixtechs.org) Received: from blackguy.unixtechs.org (rrcs-24-172-177-216.central.biz.rr.com [24.172.177.216]) by ms-smtp-02.ohiordc.rr.com (8.13.6/8.13.6) with ESMTP id k7SLouPX000514 for ; Mon, 28 Aug 2006 17:50:57 -0400 (EDT) Received: from timh by blackguy.unixtechs.org with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GHp0S-0004uG-8F for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 17:50:56 -0400 Date: Mon, 28 Aug 2006 17:50:56 -0400 From: Tim Holmes To: freebsd-questions@freebsd.org Message-ID: <20060828215056.GA18208@blackguy.unixtechs.org> References: <20060828071455.GA9764@blackguy.unixtechs.org> <7daacbbe0608280052l40779c79r4677c286fac2b99@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7daacbbe0608280052l40779c79r4677c286fac2b99@mail.gmail.com> User-Agent: Mutt/1.5.12-2006-07-14 Sender: Tim Holmes X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: Re: Mounting Sony PSP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 21:51:02 -0000 | Hi, | | First check if with the dmesg command you can see your PSP, you should | read something like this: | | umass0: USB Solid state disk, rev 1.10/1.00, addr 2 | GEOM: create disk da0 dp=0xc2d74850 | da0 at umass-sim0 bus 0 target 0 lun 0 | da0: Removable Direct Access SCSI-2 device | da0: 1.000MB/s transfers | da0: 126MB (258048 512 byte sectors: 64H 32S/T 126C) | | Then, you need to mount your PSP with: | | mount_msdos /dev/da0s1 /mnt/PSP | | There is a chapter in the handbook about USB device | http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/usb-disks.html | | HTH | | Regards. | | -- | There's this old saying: "Give a man a fish, feed him for a day. Teach | a man to fish, feed him for life." `------------------------------------------------------------------- Thank you! This did the trick. As long as I have it mounted Amarok sees it, and once I handle the permissions, I will be able to send files back and forth to it. I was looking at /dev/usb1 and wasn't getting anywhere. Now I can toy with this. Thanks a lot! tdh -- ----------------+------------------------------------------------- \./ | Tim Holmes -- em@il: tim@unixtechs.org (0Y0) | UIN: 17021091 -- AIM: tdh004 -ooO--(_)--Ooo--+------------------------------------------------- From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 22:19:24 2006 Return-Path: X-Original-To: FreeBSD-questions@FreeBsd.org 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 305E216A4DA for ; Mon, 28 Aug 2006 22:19:24 +0000 (UTC) (envelope-from csar@stanford.edu) Received: from smtp-roam.Stanford.EDU (smtp-roam.Stanford.EDU [171.64.10.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6871743D5E for ; Mon, 28 Aug 2006 22:19:23 +0000 (GMT) (envelope-from csar@stanford.edu) Received: from [171.66.34.152] (DNab422298.Stanford.EDU [171.66.34.152]) (authenticated bits=0) by smtp-roam.Stanford.EDU (8.12.11/8.12.11) with ESMTP id k7SMJLtj019750 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Mon, 28 Aug 2006 15:19:22 -0700 Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: <34A15B01-CECC-478F-8EE8-3AEA839803C7@stanford.edu> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: FreeBSD-questions@FreeBsd.org From: Can Sar Date: Mon, 28 Aug 2006 15:19:17 -0700 X-Mailer: Apple Mail (2.752.2) Cc: Subject: UFS2 fsck Question (semantics of -p) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 22:19:24 -0000 Hi, I work on a project to automatically (by dynamically running the system) find crash recovery errors in storage systems and we are beginning to do some preliminary checking of FreeBSD. We found an "error" where on power failure the disk can get corrupted even after an operation has returned successfully on a synchronous mount. Fsck running with the -p option cannot fix this error, while running it without, does happen to fix it (in this particular test case). However, the fsck manfile says the following: "The kernel takes care that only a restricted class of innocuous file sys- tem inconsistencies can happen unless hardware or software failures intervene. These are limited to the following: Unreferenced inodes Link counts in inodes too large Missing blocks in the free map Blocks in the free map also in files Counts in the super-block wrong These are the only inconsistencies that fsck_ffs with the -p option will correct; if it encounters other inconsistencies, it exits with an abnor- mal return status and an automatic reboot will then fail. For each cor- rected inconsistency one or more lines will be printed identifying the file system on which the correction will take place, and the nature of the correction. After successfully correcting a file system, fsck_ffs will print the number of files on that file system, the number of used and free blocks, and the percentage of fragmentation." Would you consider it an error if the -p option does not fix inconsistencies caused by a simple power failure, without any hardware or software corruption? I have two example ufs2 images of such errors that you can download. http://keeda.stanford.edu/ufs-umount-image http://keeda.stanford.edu/ufs-mount-sync-image Thank you very much for your help, Can Sar From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 22:34:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3936D16A4DA for ; Mon, 28 Aug 2006 22:34:28 +0000 (UTC) (envelope-from raymond.gibson@verizon.net) Received: from vms048pub.verizon.net (vms048pub.verizon.net [206.46.252.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0067743D45 for ; Mon, 28 Aug 2006 22:34:27 +0000 (GMT) (envelope-from raymond.gibson@verizon.net) Received: from fireball.gibson.net ([72.64.91.149]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4Q0043PC16JFFF@vms048.mailsrvcs.net> for freebsd-questions@freebsd.org; Mon, 28 Aug 2006 17:34:18 -0500 (CDT) Date: Mon, 28 Aug 2006 17:36:08 -0500 From: Raymond Gibson To: freebsd-questions@freebsd.org Message-id: <200608281736.08510.raymond.gibson@verizon.net> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit Content-disposition: inline User-Agent: KMail/1.9.1 Subject: pxe bootrom X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: raymond.gibson@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 22:34:28 -0000 Hello, I'm trying to build a FreeBSD diskless server. I have a D-link DFE 530TX+ nic. I need to purchase a pxe bootrom. Does anyone know where i can buy one? From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 23:11:50 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6E56616A4DA for ; Mon, 28 Aug 2006 23:11:50 +0000 (UTC) (envelope-from stanb@panix.com) Received: from mail2.panix.com (mail2.panix.com [166.84.1.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB5D443D46 for ; Mon, 28 Aug 2006 23:11:49 +0000 (GMT) (envelope-from stanb@panix.com) Received: from mailspool3.panix.com (mailspool3.panix.com [166.84.1.78]) by mail2.panix.com (Postfix) with ESMTP id 2ECFB9D846; Mon, 28 Aug 2006 19:11:49 -0400 (EDT) Received: from teddy.fas.com (c-68-58-232-106.hsd1.sc.comcast.net [68.58.232.106]) by mailspool3.panix.com (Postfix) with ESMTP id 29CB9FB01A1; Mon, 28 Aug 2006 19:11:49 -0400 (EDT) Received: from stan by teddy.fas.com with local (Exim 3.36 #1 (Debian)) id 1GHqGi-0001VQ-00; Mon, 28 Aug 2006 19:11:48 -0400 Date: Mon, 28 Aug 2006 19:11:48 -0400 From: stan To: Andy Greenwood Message-ID: <20060828231148.GA5776@teddy.fas.com> Mail-Followup-To: Andy Greenwood , Free BSD Questions list References: <20060828192229.GA29844@teddy.fas.com> <3ee9ca710608281229w38b39d2cmde0f20476dd0b915@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3ee9ca710608281229w38b39d2cmde0f20476dd0b915@mail.gmail.com> X-Editor: gVim X-Operating-System: Debian GNU/Linux X-Kernel-Version: 2.4.23 X-Uptime: 19:10:27 up 133 days, 20:17, 1 user, load average: 0.02, 0.03, 0.00 User-Agent: Mutt/1.5.4i Sender: Stan Brown Cc: Free BSD Questions list Subject: Re: Forceig a resolution in xorg server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 23:11:50 -0000 On Mon, Aug 28, 2006 at 03:29:41PM -0400, Andy Greenwood wrote: > I haven't used X in a loooong time, but IIRC you should be able to > just remove all the other modes from the .conf file. If there's only > one availilbe mode, X will have to use it :-) Problem is, the generate file doesn't have -any_ modelines, yet it wrks. > > On 8/28/06, stan wrote: > > > >I'm (huridelly) building a new machine to replaced my (just failed) main > >workstation at work. I have Xorg installed, and when I type X it starts up > >OK. KDE, and kdm work also. But, at way too high a resolution. I tried > >doing > >X -configure to generate a config file, but the resultant file contains no > >resolution settings. > > > >How can I force X to run in 1280x1024 x 24 bit color mode? > > > >-- > >Unix is very simple, but it takes a genius to understand the simplicity. > >(Dennis Ritchie) > > > >_______________________________________________ > >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" -- Unix is very simple, but it takes a genius to understand the simplicity. (Dennis Ritchie) From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 23:16:29 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C4DFC16A4DE for ; Mon, 28 Aug 2006 23:16:29 +0000 (UTC) (envelope-from www-data@mypix.ch) Received: from mypix.ch (mypix.ch [88.198.33.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CB8A43D6D for ; Mon, 28 Aug 2006 23:16:27 +0000 (GMT) (envelope-from www-data@mypix.ch) Received: by mypix.ch (Postfix, from userid 33) id 2B063149C5C4; Tue, 29 Aug 2006 01:15:00 +0200 (CEST) To: freebsd-questions@freebsd.org Message-Id: <20060828231500.2B063149C5C4@mypix.ch> Date: Tue, 29 Aug 2006 01:15:00 +0200 (CEST) From: www-data@mypix.ch (www-data) Subject: Einladung von myPIX.ch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 23:16:29 -0000 howdyyyyyyyyyy! =) gesell dich doch auch zu mypix is echt kuuuhl hier.. voll die netten menschen *fg* Diese Einladung wurde von li (User-ID: 1139) versandt. Sie ist wahrnehmbar unter: http://www.mypix.ch/register/1139 Sollte es sich hierbei um unzulässigen Inhalt handeln, wird gebeten, diese Mail an abuse@mypix.ch weiterzuleiten um Abhilfe zu schaffen. Wir danken für jegliche Bemühungen. From owner-freebsd-questions@FreeBSD.ORG Mon Aug 28 23:33:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 48C8D16A4DD for ; Mon, 28 Aug 2006 23:33:28 +0000 (UTC) (envelope-from chris@monochrome.org) Received: from mail.monochrome.org (b4.ebbed1.client.atlantech.net [209.190.235.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id C82A743D45 for ; Mon, 28 Aug 2006 23:33:27 +0000 (GMT) (envelope-from chris@monochrome.org) Received: from tripel (tripel [192.168.1.11]) by mail.monochrome.org (8.13.6/8.13.6) with ESMTP id k7SNXQnQ082806; Mon, 28 Aug 2006 19:33:26 -0400 (EDT) (envelope-from chris@monochrome.org) Date: Mon, 28 Aug 2006 19:33:36 -0400 (EDT) From: Chris Hill To: Raymond Gibson In-Reply-To: <200608281736.08510.raymond.gibson@verizon.net> Message-ID: <20060828193112.G1425@tripel.monochrome.org> References: <200608281736.08510.raymond.gibson@verizon.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: pxe bootrom X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 23:33:28 -0000 On Mon, 28 Aug 2006, Raymond Gibson wrote: > Hello, I'm trying to build a FreeBSD diskless server. I have a D-link > DFE 530TX+ nic. I need to purchase a pxe bootrom. Does anyone know > where i can buy one? Google does. It showed me this: http://www.argontechnology.com/products.aspx?id=28 ...and this: http://www.emboot.com/products_pxe.htm -- Chris Hill chris@monochrome.org ** [ Busy Expunging <|> ] From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 01:00:35 2006 Return-Path: X-Original-To: questions@freebsd.org 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 642E416A4DD for ; Tue, 29 Aug 2006 01:00:35 +0000 (UTC) (envelope-from lauasanf@wilderness.homeip.net) Received: from mxsf38.cluster1.charter.net (mxsf38.cluster1.charter.net [209.225.28.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEEB443D46 for ; Tue, 29 Aug 2006 01:00:34 +0000 (GMT) (envelope-from lauasanf@wilderness.homeip.net) Received: from mxip29a.cluster1.charter.net (mxip29a.cluster1.charter.net [209.225.28.188]) by mxsf38.cluster1.charter.net (8.12.11.20060308/8.12.11) with ESMTP id k7T10XYF024637 for ; Mon, 28 Aug 2006 21:00:33 -0400 Received: from 24-159-55-136.dhcp.jcsn.tn.charter.com (HELO [192.168.1.6]) ([24.159.55.136]) by mxip29a.cluster1.charter.net with ESMTP; 28 Aug 2006 21:00:32 -0400 X-IronPort-AV: i="4.08,177,1154923200"; d="scan'208"; a="1658337941:sNHT23038460" Message-ID: <44F391AF.308@wilderness.homeip.net> Date: Mon, 28 Aug 2006 20:00:31 -0500 From: Laurence Sanford User-Agent: Thunderbird 1.5.0.5 (X11/20060804) MIME-Version: 1.0 To: Alexey Mikhailov References: <44F246D7.1040600@wilderness.homeip.net> <44F2A47E.20503@ez.pereslavl.ru> In-Reply-To: <44F2A47E.20503@ez.pereslavl.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: ports/net-p2p/ktorrent - can't compile X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 01:00:35 -0000 Alexey Mikhailov wrote: > Laurence Sanford wrote: >> Just looking for pointers, as I've seen them here from time to time >> when a port won't build. I'm using the following command line: >> >> portupgrade -NR ktorrent >> >> All dependencies build successfully. The ktorrent build fails like this: >> >> ./../mse/bigint.h:26:17: gmp.h: No such file or directory >> In file included from ./../mse/encryptedauthenticate.h:25, >> from peermanager.cpp:34: >> ./../mse/bigint.h:93: error: `mpz_t' does not name a type >> > Try to install/reinstall/update "devel/libgmp4" port. > That did the trick. Thank you very much. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 01:08:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8B0EF16A4DD for ; Tue, 29 Aug 2006 01:08:12 +0000 (UTC) (envelope-from ajm91qw@sbcglobal.net) Received: from smtp107.sbc.mail.mud.yahoo.com (smtp107.sbc.mail.mud.yahoo.com [68.142.198.206]) by mx1.FreeBSD.org (Postfix) with SMTP id 1E41743D72 for ; Tue, 29 Aug 2006 01:08:11 +0000 (GMT) (envelope-from ajm91qw@sbcglobal.net) Received: (qmail 2949 invoked from network); 29 Aug 2006 01:08:11 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=sbcglobal.net; h=Received:Date:From:To:Subject:Message-ID:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent; b=bHVFkG2Xo+wSS5/niZRwVIuDRnWOcWCgtvpZeHk/FdH5tLIrFEi7pWLvbO40TGbDcJOgtg0agh/LiyvTrP+/CsitByeUaZmrZTqty3npDYaXJkIBQi/5F7XU972T+13CCMTqUAZ1mdJGcnJgD1Z3ygDKTmuiLmbWu5dfN2lThTo= ; Received: from unknown (HELO localhost) (ajm91qw@sbcglobal.net@70.254.64.36 with plain) by smtp107.sbc.mail.mud.yahoo.com with SMTP; 29 Aug 2006 01:08:10 -0000 Date: Mon, 28 Aug 2006 20:09:42 -0500 From: ajm To: freebsd-questions@freebsd.org Message-ID: <20060829010942.GA710@powerfull.bsd> References: <34702.127.0.0.1.1156765075.squirrel@mithlond.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <34702.127.0.0.1.1156765075.squirrel@mithlond.net> User-Agent: Mutt/1.5.11 Subject: Re: having hard time with mounting floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 01:08:12 -0000 On Mon, Aug 28, 2006 at 02:37:55PM +0300, Tuomas wrote: > Hi, all! > > I run DesktopBSD 1.0 and I cannot mount floppies. I had the same problem > with FreeBSD 5.5. Here it goes: > > localhost# mount -t msdos /dev/fd0 /media/floppy > msdosfs: /dev/fd0: Input/output error > > localhost# fdformat /dev/fd0 > Format 1440K floppy `/dev/fd0'? (y/n): y > Processing fdformat: ioctl(FD_FORM): Input/output error > > This is what dmesg says: > > 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.5-PRERELEASE #1: Sun Feb 5 17:26:01 CET 2006 > root@Rex:/usr/obj/usr/src/sys/DESKTOPBSD > Timecounter "i8254" frequency 1193182 Hz quality 0 > CPU: Intel Pentium III (734.63-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x686 Stepping = 6 > Features=0x383fbff > real memory = 267264000 (254 MB) > avail memory = 251109376 (239 MB) > npx0: on motherboard > npx0: INT 16 interface > acpi0: on motherboard > acpi0: Power Button (fixed) > Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 > acpi_timer0: <24-bit timer at 3.579545MHz> port 0xf808-0xf80b on acpi0 > cpu0: port 0x530-0x537 on acpi0 > acpi_throttle0: on cpu0 > pcib0: port 0xcf8-0xcff on acpi0 > pci0: on pcib0 > agp0: mem > 0xfea80000-0xfeafffff,0xf8000000-0xfbffffff irq 11 at device 1.0 on pci0 > pcib1: at device 30.0 on pci0 > pci1: on pcib1 > rl0: port 0x7800-0x78ff mem > 0xfebfff00-0xfebfffff irq 9 at device 1.0 on pci1 > miibus0: on rl0 > rlphy0: on miibus0 > rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > rl0: Ethernet address: 00:0e:2e:85:56:e1 > isab0: at device 31.0 on pci0 > isa0: on isab0 > atapci0: port > 0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 31.1 on pci0 > ata0: channel #0 on atapci0 > ata1: channel #1 on atapci0 > uhci0: port 0xff00-0xff1f irq 10 at > device 31.2 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 > pci0: at device 31.3 (no driver attached) > pcm0: port 0xf400-0xf43f,0xf000-0xf0ff irq 9 at > device 31.5 on pci0 > pcm0: > acpi_button0: on acpi0 > fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 > fd0: <1440-KB 3.5" drive> on fdc0 drive 0 > ppc0: port 0x778-0x77f,0x378-0x37f irq 7 drq 3 > on acpi0 > ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode > ppc0: FIFO with 16/16/9 bytes threshold > ppbus0: on ppc0 > plip0: on ppbus0 > lpt0: on ppbus0 > lpt0: Interrupt-driven port > ppi0: on ppbus0 > atkbdc0: port 0x64,0x60 irq 1 on acpi0 > atkbd0: irq 1 on atkbdc0 > kbd0 at atkbd0 > psm0: irq 12 on atkbdc0 > psm0: model IntelliMouse, device ID 3 > sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 > sio0: type 16550A > orm0: at iomem 0xc0000-0xc7fff on isa0 > pmtimer0 on isa0 > sc0: at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=0x300> > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio1: port may not be enabled > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > Timecounter "TSC" frequency 734633835 Hz quality 800 > Timecounters tick every 1.000 msec > ad0: 19470MB [39560/16/63] at ata0-master UDMA66 > acd0: DVDROM at ata1-master PIO4 > cd0 at ata1 bus 0 target 0 lun 0 > cd0: Removable CD-ROM SCSI-0 device > cd0: 16.000MB/s transfers > cd0: Attempt to query device size failed: NOT READY, Medium not present > Mounting root from ufs:/dev/ad0s2a > > (End of dmesg.) > > I can mount floppies with other OSes, Kubuntu LiveCD for instance. I > googled and found other people having similar problems. One solution that > was put forward was using a non-ACPI kernel. With FreeBSD 5.5 I recompiled > the kernel with ACPI disabled, but the problem still persisted. I don't > know what to do now. > > (As a matter of fact, I might be having the same problem with cdrom!) > > Could someone help me? Much oblige! > > Tuomas > > > As root... these are the following things I do for a FreeBSD Floppy: fdformat -y -f 1440 /dev/fd0 bsdlabel -w /dev/fd0 fd1440 newfs -L FreeBSD /dev/fd0 For a Dos floppy: fdformat -y -f 1440 /dev/fd0 newfs_msdos -f 1440 -L MSDOS /dev/fd0 Perferably I would use sudo to execute the above commands as a user. see sudo(8) and visudo(8) To mount the floppy I use the following: FreeBSD floppy... sudo mount -v -w /dev/fd0 /home/aj/floppy DOS floppy sudo mount_msdosfs /dev/fd0 /home/aj/floppy Just make sure to create a subdirectory in your home directory. see mount_msdosfs(8) and for cdroms mount_cd9660(8) Hope this helped you... -- FreeBSD 6.0-RELEASE i386 GENERIC From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 01:12:49 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E664C16A4DE for ; Tue, 29 Aug 2006 01:12:49 +0000 (UTC) (envelope-from trunasuci@mail.com) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDF0143D5D for ; Tue, 29 Aug 2006 01:12:31 +0000 (GMT) (envelope-from trunasuci@mail.com) Received: from unknown (unknown [192.168.9.180]) by webmail-outgoing.us4.outblaze.com (Postfix) with QMQP id F144E1800D9E for ; Tue, 29 Aug 2006 01:12:30 +0000 (GMT) X-OB-Received: from unknown (205.158.62.81) by wfilter.us4.outblaze.com; 29 Aug 2006 01:12:05 -0000 Received: by ws1-2.us4.outblaze.com (Postfix, from userid 1001) id 74C9C1F50B7; Tue, 29 Aug 2006 01:11:59 +0000 (GMT) Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 From: "Ahmad Arafat Abdullah" To: "FreeBSD Questions" Date: Mon, 28 Aug 2006 17:11:59 -0800 Received: from [60.49.202.201] by ws1-2.us4.outblaze.com with http for trunasuci@mail.com; Mon, 28 Aug 2006 17:11:59 -0800 X-Originating-Ip: 60.49.202.201 X-Originating-Server: ws1-2.us4.outblaze.com Message-Id: <20060829011159.74C9C1F50B7@ws1-2.us4.outblaze.com> Subject: Re: Various package/ports problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 01:12:50 -0000 Gosh.. I'm still enjoying my 4.11 prod box ( most of it ).. well time to think abt= migration? > ----- Original Message ----- > From: "Bill Moran" > To: "Garrett Cooper" > Subject: Re: Various package/ports problems > Date: Mon, 28 Aug 2006 17:01:33 -0400 >=20 >=20 > In response to Garrett Cooper : > > > > Version 4.x is no longer supported by FreeBSD at all. I suggest=20=20 > > either reinstalling FreeBSD 5.4 or just install 6.1. >=20 > That's a bit of an exaggeration. > http://security.freebsd.org/#adv >=20 > FreeBSD 4.11 and 4-STABLE are officially supported until Jan 2007. >=20 > although 4.8 hasn't been supported in quite a while. >=20 > -- > Bill Moran > Collaborative Fusion Inc. > _______________________________________________ > 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 ___________________________________________________ Play 100s of games for FREE! http://games.mail.com/ From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 02:16:21 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 00F0916A4E0 for ; Tue, 29 Aug 2006 02:16:21 +0000 (UTC) (envelope-from dmehler26@woh.rr.com) Received: from ms-smtp-03.ohiordc.rr.com (ms-smtp-03.ohiordc.rr.com [65.24.5.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84DA543D45 for ; Tue, 29 Aug 2006 02:16:20 +0000 (GMT) (envelope-from dmehler26@woh.rr.com) Received: from satellite (cpe-71-65-68-20.woh.res.rr.com [71.65.68.20]) by ms-smtp-03.ohiordc.rr.com (8.13.6/8.13.6) with SMTP id k7T2GI8T018660 for ; Mon, 28 Aug 2006 22:16:18 -0400 (EDT) Message-ID: <009a01c6cb11$1d0ef580$0200a8c0@satellite> From: "Dave" To: Date: Mon, 28 Aug 2006 22:16:18 -0400 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.2869 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: freebsd-specific postfix antispam howto X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dave List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 02:16:21 -0000 Hello, Does anyone have any information on this? I've googled and have found a lot of information for Linux and even an OpenBSD howto, but i am looking for something freebsd-specific, preferably fbsd6. I'm having issues getting all the services, amavisd-new configured/starting up properly and would like to read someone's all-integrated freebsd-specific solution if any, to get an idea as to what i'm doing wrong? Thanks. Dave. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 02:28:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 93A2516A4DA for ; Tue, 29 Aug 2006 02:28:28 +0000 (UTC) (envelope-from trunasuci@mail.com) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CC8B43D45 for ; Tue, 29 Aug 2006 02:28:28 +0000 (GMT) (envelope-from trunasuci@mail.com) Received: from unknown (unknown [192.168.9.180]) by webmail-outgoing.us4.outblaze.com (Postfix) with QMQP id BE3871800212 for ; Tue, 29 Aug 2006 02:28:38 +0000 (GMT) X-OB-Received: from unknown (205.158.62.62) by wfilter.us4.outblaze.com; 29 Aug 2006 02:28:01 -0000 Received: by ws1-7.us4.outblaze.com (Postfix, from userid 1001) id 9862F1158CC; Tue, 29 Aug 2006 02:28:34 +0000 (GMT) Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 From: "Ahmad Arafat Abdullah" To: "Garrett Cooper" , freebsd-questions@freebsd.org Date: Mon, 28 Aug 2006 18:28:34 -0800 Received: from [60.49.202.201] by ws1-7.us4.outblaze.com with http for trunasuci@mail.com; Mon, 28 Aug 2006 18:28:34 -0800 X-Originating-Ip: 60.49.202.201 X-Originating-Server: ws1-7.us4.outblaze.com Message-Id: <20060829022834.9862F1158CC@ws1-7.us4.outblaze.com> Cc: Subject: Re: Fine tuning conditional compilation of 'make buildworld' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 02:28:28 -0000 freebsd# less /usr/share/examples/etc/make.conf=20=20=20=20=20=20 mine just make it simple: PERL_VER=3D5.8.8 PERL_VERSION=3D5.8.8 CFLAGS=3D -O -pipe COPTFLAGS=3D -O -pipe NO_PROFILE=3Dtrue CPUTYPE?=3Dpentium4 other thing, i'm set it up on my kernel config :) freebsd# uname -a FreeBSD freebsd.avp.org 6.1-RELEASE-p4 FreeBSD 6.1-RELEASE-p4 #2: Mon Aug 2= 8 12:26:03 MYT 2006 root@freebsd.avp.org:/usr/obj/usr/src/sys/AVP i386 freebsd#=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 > ----- Original Message ----- > From: "Garrett Cooper" > To: freebsd-questions@freebsd.org > Subject: Fine tuning conditional compilation of 'make buildworld' > Date: Mon, 28 Aug 2006 12:28:03 -0700 >=20 >=20 > Hi, > Just wondering if there was a more comprehensive list of=20 > variables that can be used when specifying what should and=20 > shouldn't be built other than what is specified in "man make.conf"=20 > for "make buildworld". I am configuring two 6.1 systems and want to=20 > trim down the junk as much as possible. > Thanks, > -Garrett > _______________________________________________ > 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 ___________________________________________________ Play 100s of games for FREE! http://games.mail.com/ From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 02:52:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E383616A4DF for ; Tue, 29 Aug 2006 02:52:23 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 623AF43D4C for ; Tue, 29 Aug 2006 02:52:23 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so1092298nzn for ; Mon, 28 Aug 2006 19:52:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=pztBt8D7XNS7LfeYPWZ2YxSt8mlUw4CuAqXU/Y/8NTLMfZZW4MUtIZjwxK443KgQq9qcgNsSrQJmXiJlIxuyZrFS2/+lJwLeESIKcv1COadDpCVfTWdJcwZwosqiyGF5SrQSfnW+W33v5LwwijJV2sKHXP8hea+Tiv53BT9Ib7w= Received: by 10.64.209.6 with SMTP id h6mr7862811qbg; Mon, 28 Aug 2006 19:52:22 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Mon, 28 Aug 2006 19:52:22 -0700 (PDT) Message-ID: <73d604760608281952p5ff48d46w4fe45cb291fb2e4d@mail.gmail.com> Date: Tue, 29 Aug 2006 08:22:22 +0530 From: "Viswas Nair" To: ajm In-Reply-To: <20060827203409.GA710@powerfull.bsd> MIME-Version: 1.0 References: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> <20060827203409.GA710@powerfull.bsd> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: User permissions to mount CDROM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 02:52:24 -0000 didn't help :( On 8/28/06, ajm wrote: > > On Sun, Aug 27, 2006 at 08:11:16PM +0530, Viswas Nair wrote: > > I have been trying to figure out how to give users to mount CD rom and > have > > been largely unsuccessful. Here are a few things I tried: > > 1) Added user to the 4th field (options) in /etc/fstab > > 2) Added vfs.usermount=1 to sysctl.conf > > 3) Created a group called optical and added the root and alpha to it > > 4) Added following lines to devfs,conf : > > own /dev/acd0 root:optical > > perm /dev/acd0 0770 > > own /dev/acd1 root:optical > > perm /dev/acd1 0770 > > 5) Rebooted machine and tried to mount /dev/acd0 into /cdrom and it > failed > > with the message: > > got the error message: /dev/acd0 > > Try the following: create a subdirectory in the users home directory. > example: /home/steven/cdrom > > mount_cd9660 /dev/acd0 /home/steven/cdrom > > also, you can change the permission to 550 > (read/execute by owner and group) no need for write permission. > make sure that your users are part of the optical group. > One more thing...users will not be able to mount anything to /cdrom > since it will belong to root/wheel. Hope this helped you. > > -- > FreeBSD 6.0-RELEASE i386 GENERIC > _______________________________________________ > 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 Tue Aug 29 02:55:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8601716A4E0 for ; Tue, 29 Aug 2006 02:55:43 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4E7243D49 for ; Tue, 29 Aug 2006 02:55:42 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so1092763nzn for ; Mon, 28 Aug 2006 19:55:42 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=dAFIDNGbBjRqNdBvJkspQ5SCMzPCPQSzn2AcpsCE5PVIj8rCLBdNT1Mhn75+rGsi27XIFezX6f7YosM45wiETMzFUfyrQPfu9b1beWESYWGIsg2hXlbeIp/Ad1oVR7t1XvwAy6v1ABWK6yYNCtbJQLatn3lpiVdDwNVxUwCuEb4= Received: by 10.65.151.6 with SMTP id d6mr7901797qbo; Mon, 28 Aug 2006 19:55:42 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Mon, 28 Aug 2006 19:55:42 -0700 (PDT) Message-ID: <73d604760608281955p5fe39d23m9dfcaf511be68988@mail.gmail.com> Date: Tue, 29 Aug 2006 08:25:42 +0530 From: "Viswas Nair" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Adesklets issue - cleaning up the installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 02:55:43 -0000 I had installed adesklets and everything was working fine until adesklets crashed with a TK_GUI related error. I couln't find out where the problem was so I make deinstalled it and tried to build it again. It simply wouldnt work. The build completes but when I run the installation program (-i option) i get a window which is fully black. Uninstalling and doing a pkg_add doesnt seem to help either. I think the uninstallation didnt clear all the contents and is causing trouble. How can i be sure that everything was removed? Should i be uninstalling and reinstalling all dependencies to be sure? Thanks, Vishy From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 02:58:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8909916A4DA for ; Tue, 29 Aug 2006 02:58:26 +0000 (UTC) (envelope-from girishvenkatachalam@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C7A143D46 for ; Tue, 29 Aug 2006 02:58:25 +0000 (GMT) (envelope-from girishvenkatachalam@gmail.com) Received: by wr-out-0506.google.com with SMTP id 68so522498wri for ; Mon, 28 Aug 2006 19:58:25 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=p/9eUGkNpKo9n0YFXPkYFMt1kWuE1IVrUg19HUNocRkhmZEGOME6fisi4B7B0T7fvl9/YXt6bJ0sflNHKEAAvgybLqmZKWs3dQpPe4HGIsmcidfxxRiEsBGwFOn3aGMpWWgXKzJksT7Wg+cXUwMLlt7L5BN8B16o05ByXY/S+ug= Received: by 10.90.100.6 with SMTP id x6mr1347340agb; Mon, 28 Aug 2006 19:56:41 -0700 (PDT) Received: by 10.90.98.3 with HTTP; Mon, 28 Aug 2006 19:56:41 -0700 (PDT) Message-ID: <7938ae610608281956vf70fbdj5bd7f4252736df86@mail.gmail.com> Date: Tue, 29 Aug 2006 08:26:41 +0530 From: "Girish Venkatachalam" To: "Viswas Nair" In-Reply-To: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: User permissions to mount CDROM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 02:58:26 -0000 On 8/27/06, Viswas Nair wrote: > I have been trying to figure out how to give users to mount CD rom and have > been largely unsuccessful. Here are a few things I tried: > 1) Added user to the 4th field (options) in /etc/fstab > 2) Added vfs.usermount=1 to sysctl.conf > 3) Created a group called optical and added the root and alpha to it > 4) Added following lines to devfs,conf : > own /dev/acd0 root:optical > perm /dev/acd0 0770 > own /dev/acd1 root:optical > perm /dev/acd1 0770 > 5) Rebooted machine and tried to mount /dev/acd0 into /cdrom and it failed > with the message: > got the error message: /dev/acd0 > Did u try adding the uid to the mount options in fstab? For instance, -o uid=1000. In fstab, u have to say, ro,uid=1000 or something. HTH, Girish From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 03:28:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C5B5A16A4DF for ; Tue, 29 Aug 2006 03:28:07 +0000 (UTC) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82C8543D49 for ; Tue, 29 Aug 2006 03:28:07 +0000 (GMT) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by bravo.pjkh.com (Postfix) with ESMTP id 2100813C7E4; Mon, 28 Aug 2006 22:33:58 -0500 (CDT) Received: by bravo.pjkh.com (Postfix, from userid 1000) id CAF5913C828; Mon, 28 Aug 2006 22:33:57 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by bravo.pjkh.com (Postfix) with ESMTP id C9F2413C7D5; Mon, 28 Aug 2006 22:33:57 -0500 (CDT) Date: Mon, 28 Aug 2006 22:33:57 -0500 (CDT) From: Philip Hallstrom To: Dave In-Reply-To: <009a01c6cb11$1d0ef580$0200a8c0@satellite> Message-ID: <20060828223240.S30977@bravo.pjkh.com> References: <009a01c6cb11$1d0ef580$0200a8c0@satellite> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-questions@freebsd.org Subject: Re: freebsd-specific postfix antispam howto X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 03:28:07 -0000 > Hello, > Does anyone have any information on this? I've googled and have found a > lot of information for Linux and even an OpenBSD howto, but i am looking for > something freebsd-specific, preferably fbsd6. I'm having issues getting all > the services, amavisd-new configured/starting up properly and would like to > read someone's all-integrated freebsd-specific solution if any, to get an > idea as to what i'm doing wrong? Not the best writeup, but these are my notes from when I did that awhile back... http://www.pjkh.com/wiki/postfix_amavis_spamassassin_clamav Note - I no longer use amavis or spamassassin, but instead use clamsmtp and postfix-policyd-weight. But that aside, maybe it will help. -philip From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 03:43:05 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 376D416A4DA for ; Tue, 29 Aug 2006 03:43:05 +0000 (UTC) (envelope-from mfitzgerald@pacific.net.au) Received: from smtp.po.exetel.com.au (pecan-mail.exetel.com.au [220.233.0.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9255F43D58 for ; Tue, 29 Aug 2006 03:43:04 +0000 (GMT) (envelope-from mfitzgerald@pacific.net.au) Received: from 28.101.233.220.exetel.com.au ([220.233.101.28] helo=[192.168.1.100]) by smtp.po.exetel.com.au with esmtp (Exim 4.62) (envelope-from ) id 1GHuVB-00043U-6k; Tue, 29 Aug 2006 13:43:01 +1000 Mime-Version: 1.0 (Apple Message framework v623) In-Reply-To: <73d604760608281952p5ff48d46w4fe45cb291fb2e4d@mail.gmail.com> References: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> <20060827203409.GA710@powerfull.bsd> <73d604760608281952p5ff48d46w4fe45cb291fb2e4d@mail.gmail.com> Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <7be498a2de4d7610057497a795028146@pacific.net.au> Content-Transfer-Encoding: 7bit From: Malcolm Fitzgerald Date: Tue, 29 Aug 2006 13:42:55 +1000 To: Viswas Nair , freebsd-questions@FreeBSD. ORG X-Mailer: Apple Mail (2.623) Cc: Subject: Re: User permissions to mount CDROM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 03:43:05 -0000 >> On Sun, Aug 27, 2006 at 08:11:16PM +0530, Viswas Nair wrote: >> > I have been trying to figure out how to give users to mount CD rom >> and >> have >> > been largely unsuccessful. Here are a few things I tried: >> > 1) Added user to the 4th field (options) in /etc/fstab >> > 2) Added vfs.usermount=1 to sysctl.conf >> > 3) Created a group called optical and added the root and alpha to it >> > 4) Added following lines to devfs,conf : >> > own /dev/acd0 root:optical >> > perm /dev/acd0 0770 >> > own /dev/acd1 root:optical >> > perm /dev/acd1 0770 >> > 5) Rebooted machine and tried to mount /dev/acd0 into /cdrom and it >> failed >> > with the message: >> > got the error message: /dev/acd0 This tutorial helped me: User mounting of removable devices on FreeBSD http://caia.swin.edu.au/reports/041130A/ Malcolm Fitzgerald From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 05:09:17 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8E34416A4DA for ; Tue, 29 Aug 2006 05:09:17 +0000 (UTC) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3167243D53 for ; Tue, 29 Aug 2006 05:09:17 +0000 (GMT) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by bravo.pjkh.com (Postfix) with ESMTP id C72EB13C828 for ; Tue, 29 Aug 2006 00:15:07 -0500 (CDT) Received: by bravo.pjkh.com (Postfix, from userid 1000) id 85CD913C7E4; Tue, 29 Aug 2006 00:15:07 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by bravo.pjkh.com (Postfix) with ESMTP id 7F4C113C7D5 for ; Tue, 29 Aug 2006 00:15:07 -0500 (CDT) Date: Tue, 29 Aug 2006 00:15:07 -0500 (CDT) From: Philip Hallstrom To: freebsd-questions@freebsd.org Message-ID: <20060829001244.G33190@bravo.pjkh.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV using ClamSMTP Subject: Does QUOTA work for users not in /etc/password (ie. by UID?) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 05:09:17 -0000 Hi all - I was looking at implementing QUOTA for a server, but all of our users are stored in a database (ftp/pop/imap authenticates against the db). They each have their own uid's though so the files are owned "individually". I would think file system quotas would work for this, but from the docs I've read so far it doesn't say and all the various commands take a username as an argument, not a uid... So without actually trying it out, anyone know if quotas will work without matching /etc/passwd entries? Thanks! -philip From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 05:27:10 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 243B616A4DF for ; Tue, 29 Aug 2006 05:27:10 +0000 (UTC) (envelope-from svein.h@lvor.halvorsen.cc) Received: from signal.itea.ntnu.no (signal.itea.ntnu.no [129.241.190.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AFAE43D46 for ; Tue, 29 Aug 2006 05:27:06 +0000 (GMT) (envelope-from svein.h@lvor.halvorsen.cc) Received: from localhost (localhost [127.0.0.1]) by signal.itea.ntnu.no (Postfix) with ESMTP id 854A634FED for ; Tue, 29 Aug 2006 07:27:03 +0200 (CEST) Received: from maren.thelosingend.net (maren.math.ntnu.no [129.241.211.48]) by signal.itea.ntnu.no (Postfix) with SMTP for ; Tue, 29 Aug 2006 07:27:03 +0200 (CEST) Received: (qmail 4026 invoked by uid 88); 29 Aug 2006 07:27:02 +0200 Received: from 37.84-48-193.nextgentel.com (HELO [10.0.0.8]) (84.48.193.37) by maren.thelosingend.net (qpsmtpd/0.31.1) with ESMTP; tir, 29 aug 2006 07:27:01 +0200 Message-ID: <44F3D00D.1090702@lvor.halvorsen.cc> Date: Tue, 29 Aug 2006 07:26:37 +0200 From: Svein Halvor Halvorsen User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: Viswas Nair References: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> In-Reply-To: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 OpenPGP: id=9198BB40; url=mailto:pgpkey@svein.halvorsen.cc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigCE06C4CBD11F1070E7BC6C9B" X-Virus-Checked: Checked X-Content-Scanned: with sophos and spamassassin at mailgw.ntnu.no. Cc: freebsd-questions@freebsd.org Subject: Re: User permissions to mount CDROM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 05:27:10 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigCE06C4CBD11F1070E7BC6C9B Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Viswas Nair wrote: > I have been trying to figure out how to give users to mount CD rom and = have > been largely unsuccessful. Here are a few things I tried: > 1) Added user to the 4th field (options) in /etc/fstab > 2) Added vfs.usermount=3D1 to sysctl.conf > 3) Created a group called optical and added the root and alpha to it > 4) Added following lines to devfs,conf : > own /dev/acd0 root:optical > perm /dev/acd0 0770 > own /dev/acd1 root:optical > perm /dev/acd1 0770 User must have access to the mount point as well, eg. /cdrom. Svein Halvor --------------enigCE06C4CBD11F1070E7BC6C9B Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) Comment: mailto:pgpkey@svein.halvorsen.cc to get my PGP-key iD8DBQFE89ARhQg3vZGYu0ARAkUEAJ9Y5bVRTSZ8fwsY5wg+ZjEwdm3wawCgp0Cj p/R0YGpBk2gHAiqpL72OK/w= =qTO9 -----END PGP SIGNATURE----- --------------enigCE06C4CBD11F1070E7BC6C9B-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 06:01:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 60DF116A4DA for ; Tue, 29 Aug 2006 06:01:38 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (regisr.net1.nerim.net [62.212.109.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FBA643D46 for ; Tue, 29 Aug 2006 06:01:36 +0000 (GMT) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (localhost.regix.info [127.0.0.1]) by crocoite.regix.info (8.13.6/8.13.6) with SMTP id k7T61YQN001621 for ; Tue, 29 Aug 2006 08:01:35 +0200 (CEST) (envelope-from regisr@pobox.com) Date: Tue, 29 Aug 2006 08:01:34 +0200 From: regisr To: freebsd-questions@freebsd.org Message-Id: <20060829080134.829f9683.regisr@pobox.com> X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: datasize ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 06:01:38 -0000 Hello, My computer is powered by a 32 bits CPU. I want to run a progam which need datasize more than 3GB (may be the data should be temporary in a file (but I don't wrote this software ;-) . Does FreeBSD 6.1 can have a mechanism to do this? Other question: If I have less memory than 3G, is it possible to put the limit to 3G (~2.9 G, I need to check again the posts about this limit) whith swaping of course. May be I should buy a 64bits computer ... -- regis From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 06:08:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EAAFB16A4DE for ; Tue, 29 Aug 2006 06:08:58 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AF6143D45 for ; Tue, 29 Aug 2006 06:08:58 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.6/8.13.6) id k7T68w38018511; Tue, 29 Aug 2006 01:08:58 -0500 (CDT) (envelope-from dan) Date: Tue, 29 Aug 2006 01:08:57 -0500 From: Dan Nelson To: Philip Hallstrom Message-ID: <20060829060857.GB21198@dan.emsphone.com> References: <20060829001244.G33190@bravo.pjkh.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060829001244.G33190@bravo.pjkh.com> X-OS: FreeBSD 6.1-STABLE X-message-flag: Outlook Error User-Agent: Mutt/1.5.12-2006-07-14 Cc: freebsd-questions@freebsd.org Subject: Re: Does QUOTA work for users not in /etc/password (ie. by UID?) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 06:08:59 -0000 In the last episode (Aug 29), Philip Hallstrom said: > I was looking at implementing QUOTA for a server, but all of our > users are stored in a database (ftp/pop/imap authenticates against > the db). They each have their own uid's though so the files are > owned "individually". > > I would think file system quotas would work for this, but from the > docs I've read so far it doesn't say and all the various commands > take a username as an argument, not a uid... > > So without actually trying it out, anyone know if quotas will work > without matching /etc/passwd entries? Quotas work entirely by uid: the quota info is stored at an offset of uid*sizeof(struct dqblk) in quota.user. You can pass uids to edquota or any other quota tool. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 07:03:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2C8D516A4DA for ; Tue, 29 Aug 2006 07:03:54 +0000 (UTC) (envelope-from omer@omeriqbal.com) Received: from smtp105.biz.mail.re2.yahoo.com (smtp105.biz.mail.re2.yahoo.com [206.190.52.174]) by mx1.FreeBSD.org (Postfix) with SMTP id B4C5343D46 for ; Tue, 29 Aug 2006 07:03:53 +0000 (GMT) (envelope-from omer@omeriqbal.com) Received: (qmail 7617 invoked from network); 29 Aug 2006 07:03:53 -0000 Received: from unknown (HELO rakaposhi) (omer@omeriqbal.com@203.81.221.218 with login) by smtp105.biz.mail.re2.yahoo.com with SMTP; 29 Aug 2006 07:03:50 -0000 From: "Muhammad Omer Iqbal" To: Date: Tue, 29 Aug 2006 00:03:49 -0700 Message-ID: <000001c6cb39$4a2d1240$dadd51cb@rakaposhi> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 Thread-Index: AcbKMA/c4CqPFfwoRNW4OMWT2EOCWgApWUEw In-Reply-To: <20060827190247.BA25.GERARD@seibercom.net> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Subject: RE: PHP5 and MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 07:03:54 -0000 So it seems that my ports collectionwas indeed out of date, even though I installed FreeBSD 6.1 only two weeks back. Lesson learnt: always update ports collection after installing FreeBSD. I am doing MySQL 5.0 instead of 5.1, I do not want a beta release, and I am comparing and doing an analysis against a propreitary DB. I have used MySQL in the past, and believe it is a better choice for our case. Thanks for all the help, esp Gerard, Matthew & fbsd. I am going to try and build/install everything. If I run into problems again and I run out of everything, I will come back here. Thanks folks! Best Wishes, Omer -----Original Message----- From: Gerard Seibert [mailto:gerard@seibercom.net] Sent: Sunday, August 27, 2006 4:18 PM To: Muhammad Omer Iqbal Subject: Re: PHP5 and MySQL It certainly sounds like you have an old version of the ports tree installed. They this and see if it corrects things. Have you ever run 'portsnap'? If not, now is a good time to start. As root, run the following: portsnap fetch portsnap extract portsnap update The extract command will take awhile, but it only has to be run once. After this, anytime you want to update the ports tree you would simply run: portsnap fetch update The three commands I gave you will rebuild build your ports tree with the latest updates. Now, ,migrate to /usr/ports/databases/mysql51-server and run: make install && make clean If it complains about any other version being installed you will have to navigate to that directory and run make deinstall to remove it manually. Then return and run the above command again/ Next, navigate to the /usr/ports/lang/php5 directory and run make config Make sure that the "Build Apache Module" is checked Leave the others at there default settings. Make sure you do 'tab' to OK and hit return to save the settings. Now, enter: make install && make clean When finished, everything should be running correctly. If you have not done so already, you must place: mysql_enable="YES" in the /etc/rc.conf file. Now reboot the system and all should be well. Ciao! -- Gerard Seibert gerard@seibercom.net From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 07:34:50 2006 Return-Path: X-Original-To: questions@FreeBSD.org 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 652D916A4DA for ; Tue, 29 Aug 2006 07:34:50 +0000 (UTC) (envelope-from markust@where-the-streets-have-no-name.de) Received: from fmmailgate04.web.de (fmmailgate04.web.de [217.72.192.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBE5F43D53 for ; Tue, 29 Aug 2006 07:34:49 +0000 (GMT) (envelope-from markust@where-the-streets-have-no-name.de) Reveived: from web.de by fmmailgate04.web.de (Postfix) with SMTP id 6F15B1D93F8 for ; Tue, 29 Aug 2006 09:34:48 +0200 (CEST) Received: from [15.203.169.124] by freemailng0801.web.de with HTTP; Tue, 29 Aug 2006 09:34:47 +0200 Date: Tue, 29 Aug 2006 09:34:47 +0200 Message-Id: <917398304@web.de> MIME-Version: 1.0 From: Markus Tetzlaff To: questions@FreeBSD.org Precedence: fm-user Organization: http://freemail.web.de/ X-Sender: markus_tetzlaff@web.de Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: quoted-printable Cc: Subject: GE NIC X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 07:34:50 -0000 Hello, I am looking forward for GE fiber interface card, but this card should support GBICs and not fixed SX or LX. The reasson is, I have to use C-WDM GBICs. I looked inside the release HW notes and googled a lot , but I didn=B4t foun= d anything, do you know if such=20 a card exsist =3F Cheers, Markus =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F Der WEB.DE SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! http://smartsurfer.web.de/=3Fmc=3D100071&distributionid=3D000000000066 From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 07:41:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B131F16A4DF for ; Tue, 29 Aug 2006 07:41:00 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from nagual.nl (cc20684-a.assen1.dr.home.nl [82.74.7.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id A78B243D45 for ; Tue, 29 Aug 2006 07:40:56 +0000 (GMT) (envelope-from dick@nagual.nl) Received: from localhost (localhost [127.0.0.1]) (uid 1000) by nagual.nl with local; Tue, 29 Aug 2006 09:40:55 +0200 id 0003980A.44F3EF87.00001DBF Date: Tue, 29 Aug 2006 09:40:55 +0200 To: David Robillard Message-ID: <20060829074055.GA7576@lothlorien.nagual.nl> References: <226ae0c60608280811t75213772j2d84cfc8a30c148f@mail.gmail.com> <20060828215733.GA966@arwen.nagual.nl> <226ae0c60608281502i4079c0cbi7006d1b6b04b92ad@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline In-Reply-To: <226ae0c60608281502i4079c0cbi7006d1b6b04b92ad@mail.gmail.com> User-Agent: Mutt/1.4.2.2i From: dick hoogendijk Cc: freebsd-questions Subject: Re: Fw: lothlorien.nagual.nl security run output X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 07:41:00 -0000 On 28 Aug David Robillard wrote: > Did you reinstall the entire OS _before_ you installed Osiris? Did you > find out why your SUID files had changed in the first place? No. I did a "diff" with the same files on other freebsd-6.1 machines which I'm absolutely certain are not compromised. The files where exactly the same. I use the same port collections and always portupgrade the machines at the same time. So I'm quite sure it must have been some software packages that changed the suid bit. It's too much work to find out exactly which ones, given the fact it's not that important after all. > If not, then your base Osiris database might contain already > compromised software. Which makes Osiris useless... I know.. > >Use the default configuration for this OS (yes/no) yes > > >>> configuration (default.freebsd) has been pushed > > > >Nothing happens.. (as it seems..) > I had the same problem with FreeBSD 5.3 and then moved to 6.1 which > cleared this problem. I suspect it has to do with network timeouts that > have been changed via sysctl.conf(5). Have you done any modifications to > your sysctl.conf file? I run 6.1 so it's weird that nothing happens.. I did not change a thing in sysctl.conf except for some hw.snd settings. They can't be blamed I suppose ;-) Maybe you have some clues. -- dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE ++ Running FreeBSD 6.1 +++ The Power to Serve From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 09:10:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8B9E416A4DD for ; Tue, 29 Aug 2006 09:10:40 +0000 (UTC) (envelope-from derrick@uniquestrength.net) Received: from rwcrmhc14.comcast.net (rwcrmhc14.comcast.net [216.148.227.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id C385643D46 for ; Tue, 29 Aug 2006 09:10:36 +0000 (GMT) (envelope-from derrick@uniquestrength.net) Received: from mail.uniquestrength.net ([68.55.192.50]) by comcast.net (rwcrmhc14) with ESMTP id <20060829091035m1400osafje>; Tue, 29 Aug 2006 09:10:35 +0000 Received: from localhost (localhost.uniquestrength.net [127.0.0.1]) by mail.uniquestrength.net (Postfix) with ESMTP id 6C0165DBF; Tue, 29 Aug 2006 05:11:01 -0400 (EDT) X-Virus-Scanned: amavisd-new at uniquestrength.net Received: from mail.uniquestrength.net ([127.0.0.1]) by localhost (mail.uniquestrength.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id KjiI1-pTj3jW; Tue, 29 Aug 2006 05:10:58 -0400 (EDT) Received: from [192.168.1.109] (unknown [10.10.1.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.uniquestrength.net (Postfix) with ESMTP id 562C55D51; Tue, 29 Aug 2006 05:10:58 -0400 (EDT) From: Derrick Edwards To: freebsd-questions@freebsd.org, Dave Date: Tue, 29 Aug 2006 05:16:23 -0400 User-Agent: KMail/1.9.3 References: <009a01c6cb11$1d0ef580$0200a8c0@satellite> In-Reply-To: <009a01c6cb11$1d0ef580$0200a8c0@satellite> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608290516.24670.derrick@uniquestrength.net> Cc: Subject: Re: freebsd-specific postfix antispam howto X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 09:10:40 -0000 On Monday 28 August 2006 22:16, Dave wrote: I> Hello, > Does anyone have any information on this? I've googled and have found a > lot of information for Linux and even an OpenBSD howto, but i am looking > for something freebsd-specific, preferably fbsd6. I'm having issues getting > all the services, amavisd-new configured/starting up properly and would > like to read someone's all-integrated freebsd-specific solution if any, to > get an idea as to what i'm doing wrong? > Thanks. > Dave. > > _______________________________________________ > 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" Dave, http://www.postfix.org/docs.html has a bunch of how to and examples. It is what I used. If additional problems/questions, let me know. v/r Derrick From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 09:29:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 87E1916A4E2 for ; Tue, 29 Aug 2006 09:29:28 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.web-strider.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id E562543D58 for ; Tue, 29 Aug 2006 09:29:01 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from coolf89ea26645 (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id k7T9Sfx00743; Tue, 29 Aug 2006 02:28:42 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Message-ID: <001c01c6cb4d$8170ee20$3c01a8c0@coolf89ea26645> From: "Ted Mittelstaedt" To: References: Date: Tue, 29 Aug 2006 02:28:36 -0700 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 09:29:28 -0000 you only needed the 2 files in the /src/sys/dev/bge directory but that = will work too. You should do a complete cvsup and make world, otherwise some kernel utilities (like systat, etc.) may work funny. Ted ----- Original Message -----=20 From: BHarris@celinaisd.com=20 To: Ted Mittelstaedt=20 Cc: freebsd-questions@freebsd.org=20 Sent: Monday, August 28, 2006 2:05 PM Subject: Re: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE FYI, setup stable-sup and let it update the kernal on another 6.1=20 box, then tar'ed the who sys source directory onto a flash drive=20 and onto my DL320. Rebuilt kernel, network up and running.=20 Did find out in the process that the DL320 will try and boot off=20 a flash drive.. didn't expect that.. Anyway, thanks much for the=20 pointers, and I'm off to the races now.=20 Bill=20 "Ted Mittelstaedt" =20 08/26/06 04:21 AM=20 To , =20 cc =20 Subject Re: Problems booting HP Proliant DL-320 G4 & = 6.1-RELEASE=20 =20 =20 I have one of these running mail right now. Here's what I found: 1) The onboard ethernet chip driver in 6.1-release is buggy and will panic the system. Install and don't enable ethernet. Download the current bge driver from CVS, copy to a floppy, copy from floppy to server, recompile kernel. 2) Turn off the onboard SATA raid in BIOS, it uses adaptec microcode that isn't supported. If you want mirrored raid, there's a procedure that you can do to get it. 3) for some weird reason the system will hang during boot for up to TWO MINUTES. After it gets done doing whatever it's doing, it will continue booting. Install normally, don't do anything special. BIOS settings should be normal. Ted ----- Original Message -----=20 From: To: Sent: Friday, August 25, 2006 6:14 PM Subject: Problems booting HP Proliant DL-320 G4 & 6.1-RELEASE > Having problems booting my new 320 G4 after successfully > installing from CD. The CD install went fine, the first boot was > normal, but the second and all subsequent boots hang right > after the WARNING setting entropy source to blocking mode. > > Keyboard is dead and the machine appears locked up. Right > now it's on the screen wanting to enter the seed for SSHD, but > it hangs on even when you don't enable SSHD during install. > > any suggestions? > > I've tried to disable ILo by turning off the Legacy USB support. > FYI, VGA console and regular PS2 keyboard hooked up. > > Any help would be most appreciated. Just bought 4 of these > guys for a project. > > Bill > _______________________________________________ > 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 Tue Aug 29 09:40:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 368D616A4DA for ; Tue, 29 Aug 2006 09:40:58 +0000 (UTC) (envelope-from daniel.kerse@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FB7243D53 for ; Tue, 29 Aug 2006 09:40:57 +0000 (GMT) (envelope-from daniel.kerse@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so2004358wxd for ; Tue, 29 Aug 2006 02:40:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iyH5gegiHwpnuQIJRNm1mYxsvDH23YBgdO0FpLBGPozNddYTWszbHmuq1B6nbrQQwq82L93QH0BN331/fXXrmK1hNjagJgb29WbRagEKBjdarKw1a0CBrfA084W2+2gzkwligepei3zmMrNCAQFUdqDeBuHYx3Wajm5TS2BF+9k= Received: by 10.70.87.9 with SMTP id k9mr7454727wxb; Tue, 29 Aug 2006 02:40:56 -0700 (PDT) Received: by 10.70.50.3 with HTTP; Tue, 29 Aug 2006 02:40:56 -0700 (PDT) Message-ID: <1fd935cc0608290240y5fc46020l28b6bd531d025e5a@mail.gmail.com> Date: Tue, 29 Aug 2006 21:40:56 +1200 From: "Daniel Kerse" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Wake on Lan stopped working soon after system upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 09:40:58 -0000 Hi there I recently upgraded my system from FreeBSD 6.1-STABLE #1: Sun Jul 30 15:12:34 NZST 2006 to FreeBSD 6.1-STABLE #2: Mon Aug 7 19:20:35 NZST 2006 Somewhere along the way my Wake on Lan stopped working. I've tested my Wakeup system[1] - it is still wakes up my WinXP laptop but won't wake up my FreeBSD[2] box. After checking a few logs it seems I did manage to wake the system up remotely once once after 'make installkernel' and 'make installworld'. The only thing I've changed since then is an upgrade of ports[3]. I have noticed that when my FreeBSD box is shut down, the Ethernet lights are off. I have a feeling that previously the lights may have stayed on when the system was down(?) I've checked the bios[4] settings, it is still set to wake on lan. The LAN port[5] is built into the motherboard. I've had a bit of a look at the ACPI[6] settings in the kernel[7], but nothing's standing out, even after reading the acpi man page. I've tried booting with and without acpi, and always shutdown with "shutdown -p". Hope someone can help, Dan [1] "Linksys WRT54Sv1.1 GDD-WRT v23 SP1 Final (05/16/06) voip" [2] FreeBSD schooner.harbour 6.1-STABLE FreeBSD 6.1-STABLE #2: Mon Aug 7 19:20:35 NZST 2006 root@schooner.harbour:/usr/obj/usr/src/sys/SCHOONER i386 [3] Here's what "portmanager -u" updated after the last time I got WoL to work. 00029 have:portupgrade-2.1.3.2_2,2 /sysutils/portupgrade OLD available: portupgrade-2.1.3.2_3,2 00045 have:php5-5.1.4 /lang/php5 built with OLD dependency: apache-1.3.37_1 00047 have:apache-1.3.37 /www/apache13 OLD available: apache-1.3.37_1 00065 have:postgresql-libpqxx-2.6.6 /databases/postgresql-libpqxx OLD available: postgresql-libpqxx-2.6.7 00080 have:koffice-1.5.1,2 /editors/koffice-kde3 built with OLD dependency: postgresql-libpqxx-2.6.7 00087 have:kdelibs-3.5.3 /x11/kdelibs3 built with OLD dependency: mDNSResponder-107.5 00093 have:libltdl-1.5.22 /devel/libltdl15 [4] BIOS upgraded before I set WoL up. Gigabyte GA-7VKMLS motherboard VIA KM266/KL266 chipset [5] rl0: port 0xe000-0xe0ff mem 0xdefdff00-0xdefdffff irq 18 at device 19.0 on pci0 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto rl0: Ethernet address: 00:20:ed:6f:dd:4d acpi_button1: on acpi0 [6] $ dmesg | grep acpi acpi0: on motherboard acpi0: Power Button (fixed) acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 cpu0: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 acpi_button1: on acpi0 fdc0: port 0x3f2-0x3f3,0x3f4-0x3f5,0x3f7 irq 6 drq 2 on acpi0 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 ppc0: port 0x378-0x37f,0x778-0x77b irq 7 drq 3 on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 acpi0: on motherboard acpi0: Power Button (fixed) acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 cpu0: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 acpi_button1: on acpi0 fdc0: port 0x3f2-0x3f3,0x3f4-0x3f5,0x3f7 irq 6 drq 2 on acpi0 sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 ppc0: port 0x378-0x37f,0x778-0x77b irq 7 drq 3 on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 $ [7] $ sysctl -a | grep acpi acpidev 48 2K - 48 32 acpisem 19 2K - 19 64 acpitask 0 0K - 1 32 acpica 1566 85K - 20527 16,32,64,128,256,512,1024 acpipwr 1 1K - 1 32 debug.acpi.do_powerstate: 1 debug.acpi.acpi_ca_version: 0x20041119 debug.acpi.semaphore_debug: 0 hw.acpi.supported_sleep_state: S1 S4 S5 hw.acpi.power_button_state: S5 hw.acpi.sleep_button_state: S1 hw.acpi.lid_switch_state: NONE hw.acpi.standby_state: S1 hw.acpi.suspend_state: S3 hw.acpi.sleep_delay: 1 hw.acpi.s4bios: 0 hw.acpi.verbose: 0 hw.acpi.disable_on_reboot: 0 hw.acpi.handle_reboot: 0 hw.acpi.reset_video: 1 hw.acpi.cpu.cx_supported: C1/0 hw.acpi.cpu.cx_lowest: C1 hw.acpi.cpu.cx_usage: 100.00% machdep.acpi_timer_freq: 3579545 machdep.acpi_root: 1025552 dev.acpi.0.%desc: AMIINT AMIINI09 dev.acpi.0.%driver: acpi dev.acpi.0.%parent: nexus0 dev.acpi_sysresource.0.%desc: System Resource dev.acpi_sysresource.0.%driver: acpi_sysresource dev.acpi_sysresource.0.%location: handle=\_SB_.PCI0.SBRG.SYSR dev.acpi_sysresource.0.%pnpinfo: _HID=PNP0C02 _UID=0 dev.acpi_sysresource.0.%parent: acpi0 dev.acpi_timer.0.%desc: 24-bit timer at 3.579545MHz dev.acpi_timer.0.%driver: acpi_timer dev.acpi_timer.0.%location: unknown dev.acpi_timer.0.%pnpinfo: unknown dev.acpi_timer.0.%parent: acpi0 dev.pci_link.0.%parent: acpi0 dev.pci_link.1.%parent: acpi0 dev.pci_link.2.%parent: acpi0 dev.pci_link.3.%parent: acpi0 dev.cpu.0.%parent: acpi0 dev.acpi_button.0.%desc: Power Button dev.acpi_button.0.%driver: acpi_button dev.acpi_button.0.%location: handle=\_SB_.PWRB dev.acpi_button.0.%pnpinfo: _HID=PNP0C0C _UID=0 dev.acpi_button.0.%parent: acpi0 dev.acpi_button.1.%desc: Sleep Button dev.acpi_button.1.%driver: acpi_button dev.acpi_button.1.%location: handle=\_SB_.SLPB dev.acpi_button.1.%pnpinfo: _HID=PNP0C0E _UID=0 dev.acpi_button.1.%parent: acpi0 dev.pcib.0.%parent: acpi0 dev.fdc.0.%parent: acpi0 dev.sio.0.%parent: acpi0 dev.sio.1.%parent: acpi0 dev.ppc.0.%parent: acpi0 dev.atdma.0.%parent: acpi0 dev.attimer.0.%parent: acpi0 dev.attimer.1.%parent: acpi0 dev.npxisa.0.%parent: acpi0 dev.psmcpnp.0.%parent: acpi0 dev.atkbdc.0.%parent: acpi0 $ From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 10:02:10 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 77C7C16A4DA for ; Tue, 29 Aug 2006 10:02:10 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id C118B43D49 for ; Tue, 29 Aug 2006 10:02:09 +0000 (GMT) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.59]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20060829100207.VOIQ4369.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Tue, 29 Aug 2006 06:02:07 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Tue, 29 Aug 2006 3:02:06 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20060829100207.VOIQ4369.dukecmmtao03.coxmail.com@dukecmmtao03> Subject: case sensitive system user names & postfix X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 10:02:10 -0000 Freebsd 6.1 running Postfix 2.3.2 ----------- Here is the problem: ----------- I only need this for sensitive unix accounts on the mail server. I have found the following method cuts spam enormously to such accounts BUT I having just moved to using Postfix dor the mailserver I do not know how to condigure postfix so that it works. Where for example the administrator may have the case sensitive user account of "AdMiniStraTor". Hence only mail from correspondents who use a correct case formating in the TO address are the only senders whose mails are intended to get through to those unix accounts on the local machine. When postfix receives a mail correctly addressed to AdMiniStraTor@$myhostname it tries to look up the user "administrator" and reports there is no such user and rejects the mail as user not found. Other mail mail accounts are addressed to user@$mydomain and forwarded by carious methods and are not case sensitive. How can I configure Postfix to deal with this problem? Postfix is running on a separate host behind a firewall with all mail port requests being past through the firewall. Thanks david From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 10:14:48 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 1B1DF16A4DF; Tue, 29 Aug 2006 10:14:48 +0000 (UTC) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (lurza.secnetix.de [83.120.8.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FF8443D53; Tue, 29 Aug 2006 10:14:46 +0000 (GMT) (envelope-from olli@lurza.secnetix.de) Received: from lurza.secnetix.de (sxeryj@localhost [127.0.0.1]) by lurza.secnetix.de (8.13.4/8.13.4) with ESMTP id k7TAEe0M008050; Tue, 29 Aug 2006 12:14:45 +0200 (CEST) (envelope-from oliver.fromme@secnetix.de) Received: (from olli@localhost) by lurza.secnetix.de (8.13.4/8.13.1/Submit) id k7TAEerO008049; Tue, 29 Aug 2006 12:14:40 +0200 (CEST) (envelope-from olli) Date: Tue, 29 Aug 2006 12:14:40 +0200 (CEST) Message-Id: <200608291014.k7TAEerO008049@lurza.secnetix.de> From: Oliver Fromme To: freebsd-arch@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG, babak badaei In-Reply-To: <20060829062232.4446.qmail@web55202.mail.re4.yahoo.com> X-Newsgroups: list.freebsd-arch User-Agent: tin/1.8.0-20051224 ("Ronay") (UNIX) (FreeBSD/4.11-STABLE (i386)) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.1.2 (lurza.secnetix.de [127.0.0.1]); Tue, 29 Aug 2006 12:14:45 +0200 (CEST) Cc: Subject: Re: What could cause /DEV to clear out? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@FreeBSD.ORG, babak badaei List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 10:14:48 -0000 babak badaei wrote: > Today I was not able to log into my machine using SSH. I got this > following message "Server refused to allocate pty". I was, somewhat > fortunately, able to log using SCP. So SCP works. You can use "ssh -T" which disables allocation of a pty (pseudo tty). You probably won't be able to use full- screen programs (such as vi), and maybe your shell's editing functions won't work (depending on the shell), but at least you will get a shell prompt. See the ssh(1) manual page for details. > The file system > looked good for the most part; until I checked out "/DEV". Almost > everything was GONE! Including MAKEDEV. Not sure what to do. What version of FreeBSD are you running? FreeBSD 5 and 6 use DEVFS, so MAKEDEV isn't required anymore (it wouldn't work anyway). If you're still running FreeBSD 4, then there should be /dev/MAKEDEV. > Possible clue: Before this happened, last time I was actually > logged in via SSH, I ran a dropdb command on one of my postgres > databases and got an error message saying I did not have permission > to "/DEV/NULL". Not sure what to do, I set permissions to allow write > on "NULL". I have done "dropdb" many times before and had never seen > that message. Please give the output from these commands: uname -a ls -al /dev mount | grep dev > I hope this is in the right forum. This is the closest thing to right > place for this question in my mind but if this is in the wrong place > please direct me to the right forum. Why do you think -arch would be the most appropriate place? This should rather go to -questions (I've redirected it). Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "anyone new to programming should be kept as far from C++ as possible; actually showing the stuff should be considered a criminal offence" -- Jacek Generowicz From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 10:20:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E59F916A4DE for ; Tue, 29 Aug 2006 10:20:41 +0000 (UTC) (envelope-from jdow@earthlink.net) Received: from elasmtp-banded.atl.sa.earthlink.net (elasmtp-banded.atl.sa.earthlink.net [209.86.89.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF13643D55 for ; Tue, 29 Aug 2006 10:20:32 +0000 (GMT) (envelope-from jdow@earthlink.net) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=dk20050327; d=earthlink.net; b=OnVV345rybKTRPSFiw8Sium1g5GWbbZyhuJEPXI9xo/sSiEFaj/eHTL2ZSxl4yV3; h=Received:Message-ID:From:To:References:Subject:Date:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Priority:X-MSMail-Priority:X-Mailer:X-MimeOLE:X-ELNK-Trace:X-Originating-IP; Received: from [71.116.129.134] (helo=Wednesday) by elasmtp-banded.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1GI0hn-0005ej-2g for freebsd-questions@freebsd.org; Tue, 29 Aug 2006 06:20:27 -0400 Message-ID: <031001c6cb54$bf2433b0$0225a8c0@Wednesday> From: "jdow" To: References: <009a01c6cb11$1d0ef580$0200a8c0@satellite> Date: Tue, 29 Aug 2006 03:20:21 -0700 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-ELNK-Trace: bb89ecdb26a8f9f24d2b10475b571120b37662e830eaa6581d8821f238bcef5c7f5eb1ca72d0638f350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 71.116.129.134 Subject: Re: freebsd-specific postfix antispam howto X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 10:20:42 -0000 From: "Dave" > Hello, > Does anyone have any information on this? I've googled and have found a lot of > information for Linux and even an OpenBSD howto, but i am looking for something > freebsd-specific, preferably fbsd6. I'm having issues getting all > the services, > amavisd-new configured/starting up properly and would like to > read someone's > all-integrated freebsd-specific solution if any, to get an idea as to what i'm doing > wrong? 1) It would be entertaining if not helpful to know WHAT it is not doing right as you see right. 2) There is a world of help on the spamassassin-users list - if the problem is SpamAssassin and not amavisd-new. (Admittedly I am biased against that "thing" based on the number of problems it seems to spawn due to people not understanding its behavior.) Those seem like a good starter question and observation. The SA Users list is mailto:spamassassin-users-subscribe@incubator.apache.org Also visit the wiki at http://www.spamassassin.org {^_^} From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 10:27:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2AA2F16A4DA for ; Tue, 29 Aug 2006 10:27:09 +0000 (UTC) (envelope-from wildebeest@mithlond.net) Received: from ns1.neobitti.org (neobitti.org [83.145.202.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77C2843D45 for ; Tue, 29 Aug 2006 10:27:08 +0000 (GMT) (envelope-from wildebeest@mithlond.net) Received: from mithlond by ns1.neobitti.org with local (Exim 4.52) id 1GI0oE-0006Gd-OF for freebsd-questions@freebsd.org; Tue, 29 Aug 2006 13:27:06 +0300 Received: from 127.0.0.1 ([127.0.0.1]) (SquirrelMail authenticated user tuope@mithlond.net) by mithlond.net with HTTP; Tue, 29 Aug 2006 13:27:06 +0300 (EEST) Message-ID: <56608.127.0.0.1.1156847226.squirrel@mithlond.net> In-Reply-To: <20060829010942.GA710@powerfull.bsd> References: <34702.127.0.0.1.1156765075.squirrel@mithlond.net> <20060829010942.GA710@powerfull.bsd> Date: Tue, 29 Aug 2006 13:27:06 +0300 (EEST) From: "Tuomas" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ns1.neobitti.org X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [32343 32344] / [47 12] X-AntiAbuse: Sender Address Domain - mithlond.net X-Source: X-Source-Args: X-Source-Dir: Subject: Re: having hard time with mounting floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: wildebeest@mithlond.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 10:27:09 -0000 ajm, Thanks for taking the pains to reply. This is what I tried: localhost# newfs -L FreeBSD /dev/fd0 newfs: wtfs: 512 bytes at sector 2879: Input/output error localhost# newfs_msdos -f 1440 -L MSDOS /dev/fd0 /dev/fd0: 2847 sectors in 2847 FAT12 clusters (512 bytes/cluster) bps=512 spc=1 res=1 nft=2 rde=224 sec=2880 mid=0xf0 spf=9 spt=18 hds=2 hid=0 newfs_msdos: /dev/fd0: Input/output error On another forum, someone suggested to me that I should try FreeBSD 6.x. FreeBSD 5.x has, according to this guy, some problems with some floppies. So maybe I try FreeBSD 6.x, or I will use Linux on this machine. Thanks for the help, though. :-) Tuomas From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 11:07:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 058D116A4E2 for ; Tue, 29 Aug 2006 11:07:08 +0000 (UTC) (envelope-from Kathryn_Hingston@platts.com) Received: from corp55wmr3-11.mcgraw-hill.com (corp55wmr3-11.mcgraw-hill.com [198.45.19.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B7DE43D45 for ; Tue, 29 Aug 2006 11:07:07 +0000 (GMT) (envelope-from Kathryn_Hingston@platts.com) Received: from unknown (HELO imswstxs01.ims.mhm.mhc) ([151.108.224.74]) by corp55wmr3-11.mcgraw-hill.com with ESMTP; 29 Aug 2006 07:07:06 -0400 X-IronPort-AV: i="4.08,180,1154923200"; d="scan'208"; a="435005651:sNHT40821428" Received: from imslonx01.ims.mhm.mhc ([152.64.49.15]) by imswstxs01.ims.mhm.mhc with Microsoft SMTPSVC(5.0.2195.6713); Tue, 29 Aug 2006 07:07:06 -0400 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: Tue, 29 Aug 2006 12:07:04 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Index: AcbLWziZshEBIzqDSre+w792viVdUAAAAo0L From: "Hingston, Kathryn" To: X-OriginalArrivalTime: 29 Aug 2006 11:07:06.0230 (UTC) FILETIME=[438B4160:01C6CB5B] Subject: Out of Office AutoReply: X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 11:07:08 -0000 Thank you for your message. I am no longer with Platts. For all inquiries, please contact Andrew Shepherd on +44 (0) 20 7176 = 6273 or email andrew_shepherd@platts.com. Best regards,=20 Kathryn Hingston From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 11:07:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8718C16A4E5 for ; Tue, 29 Aug 2006 11:07:37 +0000 (UTC) (envelope-from Administrator@ims.mcgraw-hill.com) Received: from corp55wmr3-11.mcgraw-hill.com (corp55wmr3-11.mcgraw-hill.com [198.45.19.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id E68B843D45 for ; Tue, 29 Aug 2006 11:07:36 +0000 (GMT) (envelope-from Administrator@ims.mcgraw-hill.com) Received: from unknown (HELO IMSHTSXS02.ims.mhm.mhc) ([152.159.241.167]) by corp55wmr3-11.mcgraw-hill.com with ESMTP; 29 Aug 2006 07:07:36 -0400 X-IronPort-AV: i="4.08,180,1154923200"; d="scan'208"; a="435005873:sNHT30826668" Received: from mail pickup service by IMSHTSXS02.ims.mhm.mhc with Microsoft SMTPSVC; Tue, 29 Aug 2006 07:07:36 -0400 thread-index: AcbLW1U6x7OjutChSOqGdICmhKhCNg== Thread-Topic: Symantec AVF detected that you sent a message with a prohibited attachment name (SYM:03452749462984966497) From: To: Date: Tue, 29 Aug 2006 07:07:35 -0400 Message-ID: <01af01c6cb5b$553ad7e0$a7f19f98@ims.mhm.mhc> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft CDO for Exchange 2000 Content-Class: urn:content-classes:message Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-OriginalArrivalTime: 29 Aug 2006 11:07:36.0105 (UTC) FILETIME=[5559D190:01C6CB5B] Subject: Symantec AVF detected that you sent a message with a prohibited attachment name (SYM:03452749462984966497) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 11:07:37 -0000 Subject of the message: None Recipient of the message: "kathryn_hingston@platts.com" Prohibited attachment: kathryn_hingston@platts.com.zip From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 13:00:05 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B038216A4E0 for ; Tue, 29 Aug 2006 13:00:05 +0000 (UTC) (envelope-from daniel@unisul.br) Received: from unisul.br (mail.unisul.br [200.18.12.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31E1E43D53 for ; Tue, 29 Aug 2006 13:00:03 +0000 (GMT) (envelope-from daniel@unisul.br) Received: from antivirus (antivirus-tro.unisul.br [10.1.2.16]) by unisul.br (8.12.5/8.12.5) with SMTP id k7TBmF0X028580 for ; Tue, 29 Aug 2006 08:48:21 -0300 (BRT) Received: from 10.1.2.15 by antivirus (InterScan VirusWall 6); Tue, 29 Aug 2006 08:48:20 -0300 Received: from atidaniel (daniel.redes-tro.unisul.br [10.1.100.41]) by relay.unisul.br (8.12.5/8.12.6) with ESMTP id k7TBmEcL028572 for ; Tue, 29 Aug 2006 08:48:15 -0300 (BRT) (envelope-from daniel@unisul.br) Message-Id: <200608291148.k7TBmEcL028572@relay.unisul.br> From: "Daniel Bitencourt Cadorin" To: Date: Tue, 29 Aug 2006 08:48:16 -0300 Organization: Unisul - Universidade do Sul de Santa Catarina MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcbLYQOt1ZvP3To6SjeMivMaBGxYjw== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-TM-AS-Product-Ver: : ISVW-6.0.0.1396-3.6.0.1039-14658000 X-TM-AS-Result: : Yes--1,880300-0-31-1 X-TM-AS-Category-Info: : 31:0,000000 X-TM-AS-MatchedID: : =?us-ascii?B?MTUwNjcwLTE1MDcwMS03MDUw?= =?us-ascii?B?NjctNzAwMjk0LTcwMzg2OC03MDgwNjEtNzEwMzQ1LTcwNDQxMy03?= =?us-ascii?B?MDU0MTMtNzAyMTgzLTcwNjY1OC03MDM0ODMtNzEwMTk2LTcwMDE5?= =?us-ascii?B?Ni03MDMyMTItNzAyMzUyLTcwMTkxMS03MDA3MjMtNzEwNTMwLTcw?= =?us-ascii?B?NDYxMy03MDY5NTAtNzA0ODkzLTcwMTgyNS03MDA4OTItNzAwMzQ0?= =?us-ascii?B?LTcwNzEwMS0xMDEwOQ==?= Subject: Deletar the /var partition and to create it with bigger size! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: daniel@unisul.br List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 13:00:05 -0000 I always used sysinstall to create or to erase partitions of the FreeBSD. However I had difficulty to execute this task for problems of geometry of the disk. I would like to know through that command I can = create or erase partitions of the FreeBSD. The SLICE I already to obtain to modify through the FDISK. Thank you! =A0 Daniel Bitencourt Cadorin From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 13:07:45 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 76A9D16A4DE; Tue, 29 Aug 2006 13:07:45 +0000 (UTC) (envelope-from lofi@freebsd.org) Received: from mail-in-01.arcor-online.net (mail-in-01.arcor-online.net [151.189.21.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA2AE43D53; Tue, 29 Aug 2006 13:07:44 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-09-z2.arcor-online.net (mail-in-09-z2.arcor-online.net [151.189.8.21]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id AA9831D1F5B; Tue, 29 Aug 2006 15:07:43 +0200 (CEST) Received: from mail-in-01.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by mail-in-09-z2.arcor-online.net (Postfix) with ESMTP id 80F6F98E28; Tue, 29 Aug 2006 15:07:43 +0200 (CEST) Received: from lofi.dyndns.org (dslb-084-061-132-117.pools.arcor-ip.net [84.61.132.117]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id 4117F28CC1A; Tue, 29 Aug 2006 15:07:43 +0200 (CEST) Received: from [192.168.8.4] (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.13.4/8.13.3) with ESMTP id k7TD7bvU004471 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 29 Aug 2006 15:07:38 +0200 (CEST) (envelope-from lofi@freebsd.org) Message-ID: <44F43BFD.8080500@freebsd.org> Date: Tue, 29 Aug 2006 15:07:09 +0200 From: Michael Nottebrock User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Nikolas Britton References: <200608251909.04407.steven.lake@voyager.net> <20060826075622.3B9A.GERARD@seibercom.net> In-Reply-To: X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigC86A0E767157D1D1BCA88DD0" X-Virus-Scanned: by amavisd-new Cc: freebsd-questions@freebsd.org, freebsd-kde@freebsd.org Subject: Re: [kde-freebsd] Re: When will KDE4 be in the ports tree? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 13:07:45 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigC86A0E767157D1D1BCA88DD0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Nikolas Britton schrieb: > On 8/26/06, Gerard Seibert wrote: >> Steven Lake wrote: >> >> > Just curious when to start expecting to see KDE4 in the ports tree >> > for Freebsd. From the reports I've been seeing, it's pretty close t= o >> > being released soon. So the curiosity bug bit me and I decided to a= sk >> > here. :) >> >> Most likely it will be available shortly after it is officially >> released. >> According to what is available on the KDE site, that might not be for >> quite a while yet. >> > > I would like to see a kde4-devel port... IIRC the first KDE4 developer > builds have already been released. Won't happen. Trying to pry alpha and beta releases into ports & packages is a huge effort that only takes away our already marginal developer resources from actual porting work on the KDE4 codebase. --=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --------------enigC86A0E767157D1D1BCA88DD0 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.1 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9DwFXhc68WspdLARAh01AJ93mGkr00/XIUloAXvPESCSDZ4WAgCfaLOS JXa10Ep66+V5lLTzsZPDZSU= =rnx8 -----END PGP SIGNATURE----- --------------enigC86A0E767157D1D1BCA88DD0-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 13:12:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7018E16A4DE for ; Tue, 29 Aug 2006 13:12:08 +0000 (UTC) (envelope-from heli@mikestammer.com) Received: from smtp101.sbc.mail.re2.yahoo.com (smtp101.sbc.mail.re2.yahoo.com [68.142.229.104]) by mx1.FreeBSD.org (Postfix) with SMTP id 4C9BB43D7B for ; Tue, 29 Aug 2006 13:11:58 +0000 (GMT) (envelope-from heli@mikestammer.com) Received: (qmail 98494 invoked from network); 29 Aug 2006 13:11:57 -0000 Received: from unknown (HELO gondolin.mikestammer.com) (mikestammer@sbcglobal.net@75.3.42.185 with login) by smtp101.sbc.mail.re2.yahoo.com with SMTP; 29 Aug 2006 13:11:56 -0000 Received: from localhost (localhost [127.0.0.1]) by gondolin.mikestammer.com (Postfix) with ESMTP id 6213172 for ; Tue, 29 Aug 2006 08:11:56 -0500 (CDT) X-Virus-Scanned: amavisd-new at mikestammer.com Received: from gondolin.mikestammer.com ([127.0.0.1]) by localhost (gondolin.middleearth.mikestammer.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eJKhzn5h79hf for ; Tue, 29 Aug 2006 08:11:53 -0500 (CDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: eric) by gondolin.mikestammer.com (Postfix) with ESMTP id 2146D31 for ; Tue, 29 Aug 2006 08:11:52 -0500 (CDT) Message-ID: <44F43D18.1050906@mikestammer.com> Date: Tue, 29 Aug 2006 08:11:52 -0500 From: Eric User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <009a01c6cb11$1d0ef580$0200a8c0@satellite> In-Reply-To: <009a01c6cb11$1d0ef580$0200a8c0@satellite> X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: freebsd-specific postfix antispam howto X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 13:12:08 -0000 Dave wrote: > Hello, > Does anyone have any information on this? I've googled and have found > a lot of information for Linux and even an OpenBSD howto, but i am > looking for something freebsd-specific, preferably fbsd6. I'm having > issues getting all the services, amavisd-new configured/starting up > properly and would like to read someone's all-integrated > freebsd-specific solution if any, to get an idea as to what i'm doing > wrong? > Thanks. > Dave. > this is the best one i have found and i have used it on several machines. what you have to do is basically the same, just change the paths, use ports, etc as opposed to manually installing things. http://www.flakshack.com/anti-spam/wiki/index.php good luck! From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 13:19:56 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2604F16A4E0; Tue, 29 Aug 2006 13:19:56 +0000 (UTC) (envelope-from lofi@freebsd.org) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56D0A43D49; Tue, 29 Aug 2006 13:19:55 +0000 (GMT) (envelope-from lofi@freebsd.org) Received: from mail-in-02-z2.arcor-online.net (mail-in-02-z2.arcor-online.net [151.189.8.14]) by mail-in-04.arcor-online.net (Postfix) with ESMTP id 3B71317EA32; Tue, 29 Aug 2006 15:19:54 +0200 (CEST) Received: from mail-in-01.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by mail-in-02-z2.arcor-online.net (Postfix) with ESMTP id 247341CA4E0; Tue, 29 Aug 2006 15:19:54 +0200 (CEST) Received: from lofi.dyndns.org (dslb-084-061-132-117.pools.arcor-ip.net [84.61.132.117]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id C154B28CC46; Tue, 29 Aug 2006 15:19:52 +0200 (CEST) Received: from [192.168.8.4] (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.13.4/8.13.3) with ESMTP id k7TDJlVR004718 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 29 Aug 2006 15:19:48 +0200 (CEST) (envelope-from lofi@freebsd.org) Message-ID: <44F43EDF.5060406@freebsd.org> Date: Tue, 29 Aug 2006 15:19:27 +0200 From: Michael Nottebrock User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: David Johnson References: <200608251909.04407.steven.lake@voyager.net> <20060826075622.3B9A.GERARD@seibercom.net> <200608261508.32448.david@usermode.org> In-Reply-To: <200608261508.32448.david@usermode.org> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigF353151A60017211906D7A58" X-Virus-Scanned: by amavisd-new Cc: freebsd-kde@freebsd.org, kde-freebsd@freebsd.kde.org, freebsd-questions@freebsd.org Subject: Re: [kde-freebsd] Re: When will KDE4 be in the ports tree? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 13:19:56 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigF353151A60017211906D7A58 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable David Johnson schrieb: > On Saturday 26 August 2006 07:37, Nikolas Britton wrote: > =20 >> On 8/26/06, Gerard Seibert wrote: >> =20 >>> Steven Lake wrote: >>> =20 >>>> Just curious when to start expecting to see KDE4 in the ports >>>> tree for Freebsd. From the reports I've been seeing, it's pretty >>>> close to being released soon. So the curiosity bug bit me and I >>>> decided to ask here. :) >>>> =20 >>> Most likely it will be available shortly after it is officially >>> released. According to what is available on the KDE site, that >>> might not be for quite a while yet. >>> =20 >> I would like to see a kde4-devel port... IIRC the first KDE4 >> developer builds have already been released. >> =20 > > A Qt 4 port could be good as well. > =20 Agreed. The QT port has been stuck for a while on the 'last mile' - that is making the necessary changes to bsd.kde.mk and bsd.port.mk. There are no other reasons for this other than myself being short on free time and bad luck (our packagebuilding machines becoming unavailable when I do get some time). I've not given up on it though. Cheers, --=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --------------enigF353151A60017211906D7A58 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.1 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9D7fXhc68WspdLARArwqAKCYdk2gd9ttBqZa2o7SRi2lb/q9rwCgl92T PhEGrN/dAUh7dgDMkT5gmSI= =B2JT -----END PGP SIGNATURE----- --------------enigF353151A60017211906D7A58-- From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 13:35:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 00D2F16A4DD for ; Tue, 29 Aug 2006 13:35:34 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82FCD43D45 for ; Tue, 29 Aug 2006 13:35:34 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from webmail.dfwlp.org (localhost.dfwlp.com [127.0.0.1]) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7TDZTlb022695 for ; Tue, 29 Aug 2006 08:35:29 -0500 (CDT) (envelope-from freebsd@dfwlp.com) Received: from 167.246.36.14 (SquirrelMail authenticated user jhorne) by webmail.dfwlp.org with HTTP; Tue, 29 Aug 2006 08:35:29 -0500 (CDT) Message-ID: <16819.167.246.36.14.1156858529.squirrel@webmail.dfwlp.org> In-Reply-To: <1fd935cc0608290240y5fc46020l28b6bd531d025e5a@mail.gmail.com> References: <1fd935cc0608290240y5fc46020l28b6bd531d025e5a@mail.gmail.com> Date: Tue, 29 Aug 2006 08:35:29 -0500 (CDT) From: "Jonathan Horne" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: Wake on Lan stopped working soon after system upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 13:35:35 -0000 > Hi there > > I recently upgraded my system from > FreeBSD 6.1-STABLE #1: Sun Jul 30 15:12:34 NZST 2006 > to > FreeBSD 6.1-STABLE #2: Mon Aug 7 19:20:35 NZST 2006 > Somewhere along the way my Wake on Lan stopped working. I've tested my > Wakeup system[1] - it is still wakes up my WinXP laptop but won't wake > up my FreeBSD[2] box. > > After checking a few logs it seems I did manage to wake the system up > remotely once once after 'make installkernel' and 'make installworld'. > The only thing I've changed since then is an upgrade of ports[3]. > > I have noticed that when my FreeBSD box is shut down, the Ethernet > lights are off. I have a feeling that previously the lights may have > stayed on when the system was down(?) I've checked the bios[4] > settings, it is still set to wake on lan. The LAN port[5] is built > into the motherboard. > > I've had a bit of a look at the ACPI[6] settings in the kernel[7], but > nothing's standing out, even after reading the acpi man page. I've > tried booting with and without acpi, and always shutdown with > "shutdown -p". > > Hope someone can help, > Dan > > > [1] "Linksys WRT54Sv1.1 GDD-WRT v23 SP1 Final (05/16/06) voip" > > [2] FreeBSD schooner.harbour 6.1-STABLE FreeBSD 6.1-STABLE #2: Mon Aug > 7 19:20:35 NZST 2006 > > root@schooner.harbour:/usr/obj/usr/src/sys/SCHOONER i386 > > [3] Here's what "portmanager -u" updated after the last time I got WoL to > work. > 00029 have:portupgrade-2.1.3.2_2,2 /sysutils/portupgrade > OLD available: portupgrade-2.1.3.2_3,2 > 00045 have:php5-5.1.4 /lang/php5 > built with OLD dependency: apache-1.3.37_1 > 00047 have:apache-1.3.37 /www/apache13 > OLD available: apache-1.3.37_1 > 00065 have:postgresql-libpqxx-2.6.6 > /databases/postgresql-libpqxx OLD available: > postgresql-libpqxx-2.6.7 > 00080 have:koffice-1.5.1,2 /editors/koffice-kde3 > built with OLD dependency: > > postgresql-libpqxx-2.6.7 > 00087 have:kdelibs-3.5.3 /x11/kdelibs3 > built with OLD dependency: > > mDNSResponder-107.5 > 00093 have:libltdl-1.5.22 /devel/libltdl15 > > > [4] BIOS upgraded before I set WoL up. Gigabyte GA-7VKMLS motherboard > VIA KM266/KL266 chipset > > [5] > rl0: port 0xe000-0xe0ff mem > 0xdefdff00-0xdefdffff irq 18 at device 19.0 on pci0 > miibus0: on rl0 > rlphy0: on miibus0 > rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > rl0: Ethernet address: 00:20:ed:6f:dd:4d > acpi_button1: on acpi0 > > > [6] > $ dmesg | grep acpi > acpi0: on motherboard > acpi0: Power Button (fixed) > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 > cpu0: on acpi0 > acpi_button0: on acpi0 > pcib0: port 0xcf8-0xcff on acpi0 > acpi_button1: on acpi0 > fdc0: port 0x3f2-0x3f3,0x3f4-0x3f5,0x3f7 irq > 6 drq 2 on acpi0 > sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on > acpi0 > sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 > ppc0: port 0x378-0x37f,0x778-0x77b irq 7 > drq 3 on acpi0 > atkbdc0: port 0x60,0x64 irq 1 on acpi0 > acpi0: on motherboard > acpi0: Power Button (fixed) > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 > cpu0: on acpi0 > acpi_button0: on acpi0 > pcib0: port 0xcf8-0xcff on acpi0 > acpi_button1: on acpi0 > fdc0: port 0x3f2-0x3f3,0x3f4-0x3f5,0x3f7 irq > 6 drq 2 on acpi0 > sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on > acpi0 > sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 > ppc0: port 0x378-0x37f,0x778-0x77b irq 7 > drq 3 on acpi0 > atkbdc0: port 0x60,0x64 irq 1 on acpi0 > $ > > [7] > $ sysctl -a | grep acpi > acpidev 48 2K - 48 32 > acpisem 19 2K - 19 64 > acpitask 0 0K - 1 32 > acpica 1566 85K - 20527 16,32,64,128,256,512,1024 > acpipwr 1 1K - 1 32 > debug.acpi.do_powerstate: 1 > debug.acpi.acpi_ca_version: 0x20041119 > debug.acpi.semaphore_debug: 0 > hw.acpi.supported_sleep_state: S1 S4 S5 > hw.acpi.power_button_state: S5 > hw.acpi.sleep_button_state: S1 > hw.acpi.lid_switch_state: NONE > hw.acpi.standby_state: S1 > hw.acpi.suspend_state: S3 > hw.acpi.sleep_delay: 1 > hw.acpi.s4bios: 0 > hw.acpi.verbose: 0 > hw.acpi.disable_on_reboot: 0 > hw.acpi.handle_reboot: 0 > hw.acpi.reset_video: 1 > hw.acpi.cpu.cx_supported: C1/0 > hw.acpi.cpu.cx_lowest: C1 > hw.acpi.cpu.cx_usage: 100.00% > machdep.acpi_timer_freq: 3579545 > machdep.acpi_root: 1025552 > dev.acpi.0.%desc: AMIINT AMIINI09 > dev.acpi.0.%driver: acpi > dev.acpi.0.%parent: nexus0 > dev.acpi_sysresource.0.%desc: System Resource > dev.acpi_sysresource.0.%driver: acpi_sysresource > dev.acpi_sysresource.0.%location: handle=\_SB_.PCI0.SBRG.SYSR > dev.acpi_sysresource.0.%pnpinfo: _HID=PNP0C02 _UID=0 > dev.acpi_sysresource.0.%parent: acpi0 > dev.acpi_timer.0.%desc: 24-bit timer at 3.579545MHz > dev.acpi_timer.0.%driver: acpi_timer > dev.acpi_timer.0.%location: unknown > dev.acpi_timer.0.%pnpinfo: unknown > dev.acpi_timer.0.%parent: acpi0 > dev.pci_link.0.%parent: acpi0 > dev.pci_link.1.%parent: acpi0 > dev.pci_link.2.%parent: acpi0 > dev.pci_link.3.%parent: acpi0 > dev.cpu.0.%parent: acpi0 > dev.acpi_button.0.%desc: Power Button > dev.acpi_button.0.%driver: acpi_button > dev.acpi_button.0.%location: handle=\_SB_.PWRB > dev.acpi_button.0.%pnpinfo: _HID=PNP0C0C _UID=0 > dev.acpi_button.0.%parent: acpi0 > dev.acpi_button.1.%desc: Sleep Button > dev.acpi_button.1.%driver: acpi_button > dev.acpi_button.1.%location: handle=\_SB_.SLPB > dev.acpi_button.1.%pnpinfo: _HID=PNP0C0E _UID=0 > dev.acpi_button.1.%parent: acpi0 > dev.pcib.0.%parent: acpi0 > dev.fdc.0.%parent: acpi0 > dev.sio.0.%parent: acpi0 > dev.sio.1.%parent: acpi0 > dev.ppc.0.%parent: acpi0 > dev.atdma.0.%parent: acpi0 > dev.attimer.0.%parent: acpi0 > dev.attimer.1.%parent: acpi0 > dev.npxisa.0.%parent: acpi0 > dev.psmcpnp.0.%parent: acpi0 > dev.atkbdc.0.%parent: acpi0 > $ the act of the actual "waking up of" is operating system independant. however, i think acpi might the right place to be looking, as it might be shutting your system down differently than before. if your ethernet lights are not bliking even when your system is powered down, then youll be dead in the water until those start working again. first thing to check, is to make sure your bios didnt get reset somehow, and turned of the WOL support. second, did you compile your kernel differently this time around? try switching to the old kernel, giving a 'shutdown -p now' and see if the ethernet lights remain on and blinking. hth, jonathan From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 14:00:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A973116A4DD for ; Tue, 29 Aug 2006 14:00:34 +0000 (UTC) (envelope-from KaplanN@chacinc.com) Received: from ylpvm43.prodigy.net (ylpvm43-ext.prodigy.net [207.115.57.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53D5C43D4C for ; Tue, 29 Aug 2006 14:00:32 +0000 (GMT) (envelope-from KaplanN@chacinc.com) X-ORBL: [65.42.219.73] Received: from chacemail.chacinc.com ([65.42.219.73]) by ylpvm43.prodigy.net (8.13.7 out spool5000 dk/8.13.7) with ESMTP id k7TE0Kr9001864 for ; Tue, 29 Aug 2006 10:00:25 -0400 Received: by CHACEMAIL with Internet Mail Service (5.5.2657.72) id ; Tue, 29 Aug 2006 09:00:19 -0500 Message-ID: <43FC5110665ED511939D0000D11C12DD03D8B51D@CHACEMAIL> From: "Kaplan, Nathan" To: freebsd-questions@freebsd.org Date: Tue, 29 Aug 2006 09:00:18 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Wireless adapter not shown in Network Interfaces in KDE Control M odule X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 14:00:34 -0000 I installed FreeBSD 6.1 on Compaq Evo N800c laptop. After installing KDE internal NIC fxp0 appeared in Network Settings. I added Proxim wireless PCMCIA card, recompile the kernel and I can see it in output of ifconfig: UNIX# ifconfig fxp0: flags=8843 mtu 1500 options=8 inet 192.168.1.39 netmask 0xfffffc00 broadcast 192.168.3.255 ether 00:08:02:63:54:b0 media: Ethernet autoselect (100baseTX ) status: active lo0: flags=8049 mtu 16384 ath0: flags=8843 mtu 1500 ether 00:20:a6:57:4e:f1 media: IEEE 802.11 Wireless Ethernet autoselect (DS/1Mbps) status: no carrier ssid Puppy channel 6 authmode OPEN privacy OFF txpowmax 36 protmode CTS burst bintval 100 In KDE Network settings I can see only fxp0 card. Help please, Thanks, Nathan From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 14:15:55 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 69B4516A4DA for ; Tue, 29 Aug 2006 14:15:55 +0000 (UTC) (envelope-from dkelly@Grumpy.DynDNS.org) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id D708343D45 for ; Tue, 29 Aug 2006 14:15:54 +0000 (GMT) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 23358 invoked by uid 0); 29 Aug 2006 14:15:53 -0000 Received: from unknown (HELO Grumpy.DynDNS.org) (216.186.148.249) by smtp8.knology.net with SMTP; 29 Aug 2006 14:15:53 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id 79C5628420; Tue, 29 Aug 2006 09:15:52 -0500 (CDT) Date: Tue, 29 Aug 2006 09:15:52 -0500 From: David Kelly To: regisr Message-ID: <20060829141552.GB80182@Grumpy.DynDNS.org> References: <20060829080134.829f9683.regisr@pobox.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060829080134.829f9683.regisr@pobox.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: datasize ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD-Questions@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 14:15:55 -0000 On Tue, Aug 29, 2006 at 08:01:34AM +0200, regisr wrote: > Hello, > > My computer is powered by a 32 bits CPU. I want to run a progam which > need datasize more than 3GB (may be the data should be temporary in a > file (but I don't wrote this software ;-) . > Does FreeBSD 6.1 can have a mechanism to do this? Yes, you will have to tweak a few kernel values to allow more than 512M per process. And then have enough core RAM and swap to back your data. > Other question: If I have less memory than 3G, is it possible to put > the limit to 3G (~2.9 G, I need to check again the posts about this > limit) whith swaping of course. Consider leaving the data on disk and simplify your problem. > May be I should buy a 64bits computer ... Back in the days of 8 bit computers people manipulated data greater than 64k, so with a bit of thinking and planning you should be able to do similar. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 14:31:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E8A1D16A4DD for ; Tue, 29 Aug 2006 14:31:29 +0000 (UTC) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DC4643D60 for ; Tue, 29 Aug 2006 14:31:27 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (localhost [127.0.0.1]) by clunix.cl.msu.edu (8.13.6+Sun/8.13.6) with ESMTP id k7TEVQMC002512; Tue, 29 Aug 2006 10:31:26 -0400 (EDT) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.13.6+Sun/8.13.6/Submit) id k7TEVMYK002511; Tue, 29 Aug 2006 10:31:22 -0400 (EDT) From: Jerry McAllister Message-Id: <200608291431.k7TEVMYK002511@clunix.cl.msu.edu> To: daniel@unisul.br Date: Tue, 29 Aug 2006 10:31:22 -0400 (EDT) In-Reply-To: <200608291148.k7TBmEcL028572@relay.unisul.br> X-Mailer: ELM [version 2.5 PL7] MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: Deletar the /var partition and to create it with bigger size! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 14:31:30 -0000 > > I always used sysinstall to create or to erase partitions of the > FreeBSD. However I had difficulty to execute this task for problems of > geometry of the disk. I would like to know through that command I can create > or erase partitions of the FreeBSD. The SLICE I already to obtain to > modify through the FDISK. First of all, you must have available empty space contiguous with the partition you wish to expand. If you do not have that, then you will have to start from scratch, or add another disk drive. You can use sysinstall to recreate partitions and modify slices as long as there is space available and as long as the drive or slice is not mounted and in use. (drive is you are modifying slices and slice if you are modifyine partitions) If you do not use sysinstall then fdisk is used to change slices. You may need to do it from a fixit disk because it is likely you will be modifying the FreeBSD slice that the system normally uses to boot. If you want to change a partition within a slice (namely the FreeBSD slice) you need to use bsdlabel(8). That creates and writes the slice's label and defines partitions. After using bsdlabel, you must use newfs(8) to create the file system on the newly created/modified partition. But, still, to add space to a partition, there must be free space - eg space that is not in a partition already - right next to the partition you want to expand. Alternatively, you do not specifically have to increase the /var partition. you can move some of its contents to another partition where there is sufficient free space (if such exists) and then create symbolic links to the new location[s]. Common candidated for such moving and linking are /var/spool, /var/log, /var/db and/or /var/mail. My habit is to have a large partition that contains home directories and other overflows. Typical mount point is /home. Then, I usually put /var/spool and /var/log there as directories named /home/var.spool and /home/var.log and link them back to the original names in /var. eg, after copying those directories over to /home/var.spool and /home/var.log respectively, I then rm the original /var/spool and /var/log and then create links. Actually, first I rename them, then do the link and check things before actually rm-ing the originals. Something like this: All must be done as root (and probably best in single user, but not required). cd /var use tar | tar or cp -Rp to make a new copy in /home cp -Rp spool /home/var.spool mv spool oldspool ln -s /home/var.spool spool cp -Rp log /home/var.log mv log oldlog ln -s /home/var.log log Check it all out to make sure it is just fine cd /var rm -rf oldspool rm -rf oldlog I like to use the naming convention of var.spool and var.log for the copies because it reminds me of where there come from. I a similar thing with /var/db in /var and with /uar/local, /usr/ports, and /usr/src in /usr Then those things which grow, sometimes unexpectedly can have room without me constantly monitoring them. It also makes backups more straightforward. Everything that is frequently changing is in /home. Of course, if you do not have a large directory with plenty of space available, then you may be looking to add some disk space. Good luck, ////jerry > > Thank you! >   > Daniel Bitencourt Cadorin > From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 15:33:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D847616A4DE for ; Tue, 29 Aug 2006 15:33:42 +0000 (UTC) (envelope-from tinguely@casselton.net) Received: from casselton.net (casselton.net [63.165.140.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 546BD43D53 for ; Tue, 29 Aug 2006 15:33:42 +0000 (GMT) (envelope-from tinguely@casselton.net) Received: from casselton.net (localhost [127.0.0.1]) by casselton.net (8.13.6/8.13.6) with ESMTP id k7TFXdsj066388; Tue, 29 Aug 2006 10:33:39 -0500 (CDT) (envelope-from tinguely@casselton.net) Received: (from tinguely@localhost) by casselton.net (8.13.6/8.13.6/Submit) id k7TFXcuS066387; Tue, 29 Aug 2006 10:33:38 -0500 (CDT) (envelope-from tinguely) Date: Tue, 29 Aug 2006 10:33:38 -0500 (CDT) From: Mark Tinguely Message-Id: <200608291533.k7TFXcuS066387@casselton.net> To: freebsd-questions@freebsd.org, freebsd@philip.pjkh.com In-Reply-To: <20060829001244.G33190@bravo.pjkh.com> X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on ccn.casselton.net Cc: Subject: Re: Does QUOTA work for users not in /etc/password (ie. by UID?) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 15:33:42 -0000 BTW, there is a small bug in quota for FreeBSD 6.x and 7.x. The count gets off if the partition overfills (kern/89247). There is a patch in the description if you want to manually apply. --Mark Tinguely. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 16:55:56 2006 Return-Path: X-Original-To: FreeBSD-questions@FreeBsd.org 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 3973916A4E0 for ; Tue, 29 Aug 2006 16:55:56 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB46E43D46 for ; Tue, 29 Aug 2006 16:55:50 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id BCFE05D87; Tue, 29 Aug 2006 12:55:49 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com 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 WwxVXV1I10HM; Tue, 29 Aug 2006 12:55:48 -0400 (EDT) Received: from [192.168.1.251] (pool-68-161-96-195.ny325.east.verizon.net [68.161.96.195]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 4BB9D5D68; Tue, 29 Aug 2006 12:55:48 -0400 (EDT) Message-ID: <44F4718F.1010502@mac.com> Date: Tue, 29 Aug 2006 12:55:43 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Can Sar References: <34A15B01-CECC-478F-8EE8-3AEA839803C7@stanford.edu> In-Reply-To: <34A15B01-CECC-478F-8EE8-3AEA839803C7@stanford.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD-questions@FreeBsd.org Subject: Re: UFS2 fsck Question (semantics of -p) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 16:55:56 -0000 Can Sar wrote: [ ... ] > Would you consider it an error if the -p option does not fix > inconsistencies caused by a simple power failure, without any hardware > or software corruption? You're asking an interesting question, but the issue of data integrity depends not only on the software which comprises the OS, but also on the hardware being used. In particular, the system depends upon the hard drives to reliably report when data being written actually has been; SCSI drives, using tagged command queuing, especially in conjunction with a battery-backup which ensures the drive stays up long enough to flush it's write cache even if system power is removed, will tend to fare pretty well. IDE drives, by contrast, have a bad habit of lying about whether data has actually been written to the disk itself rather than simply making it to the write cache on the drive. (Such drives ignore the ATA "FLUSH CACHE" command, specificly.) In other words, showing that a filesystem can become inconsistent in a fashion that "fsck -p" cannot correct is interesting and a concern regardless of the circumstances, but showing it in cases where you are using battery-backed drives and/or SCSI rather than IDE is a lot more meaningful. If you are using IDE devices, your testing will be more meaningful if you disable the IDE write-cache entirely. Also, you should put your results somewhere, perhaps on a webpage with links to the filesystem images and a complete dmesg so that the OS version and hardware being used is well-documented. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 17:22:15 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E089D16A4E1 for ; Tue, 29 Aug 2006 17:22:15 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (regisr.net1.nerim.net [62.212.109.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80D8E43D53 for ; Tue, 29 Aug 2006 17:22:13 +0000 (GMT) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (localhost.regix.info [127.0.0.1]) by crocoite.regix.info (8.13.6/8.13.6) with SMTP id k7THMCKj028371 for ; Tue, 29 Aug 2006 19:22:12 +0200 (CEST) (envelope-from regisr@pobox.com) Date: Tue, 29 Aug 2006 19:22:12 +0200 From: regisr To: freebsd-questions@freebsd.org Message-Id: <20060829192212.9e2e3dda.regisr@pobox.com> In-Reply-To: <20060829141552.GB80182@Grumpy.DynDNS.org> References: <20060829080134.829f9683.regisr@pobox.com> <20060829141552.GB80182@Grumpy.DynDNS.org> X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: datasize ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 17:22:16 -0000 On Tue, 29 Aug 2006 09:15:52 -0500 David Kelly a =E9crit: > Yes, you will have to tweak a few kernel values to allow more than 512M > per process. And then have enough core RAM and swap to back your data. But I have yet set the limit to 1.5GB! I wanted to known if the limit to ~3G is always in effect. > Consider leaving the data on disk and simplify your problem. I am not the developper... > Back in the days of 8 bit computers people manipulated data greater than > 64k, so with a bit of thinking and planning you should be able to do > similar. My first card was with a SC/MP processor and 2K ram, words of 4 bits and hex keyboard ;-) ... after a ZX80 with a very large memory of 16K... =20 All the best, --=20 regis From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 19:34:29 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8ECC316A4DE for ; Tue, 29 Aug 2006 19:34:29 +0000 (UTC) (envelope-from dkelly@Grumpy.DynDNS.org) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3F8D43D45 for ; Tue, 29 Aug 2006 19:34:28 +0000 (GMT) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 7975 invoked by uid 0); 29 Aug 2006 19:34:27 -0000 Received: from unknown (HELO Grumpy.DynDNS.org) (216.186.148.249) by smtp2.knology.net with SMTP; 29 Aug 2006 19:34:27 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id F3E3528420; Tue, 29 Aug 2006 14:34:23 -0500 (CDT) Date: Tue, 29 Aug 2006 14:34:23 -0500 From: David Kelly To: regisr Message-ID: <20060829193423.GA82013@Grumpy.DynDNS.org> References: <20060829080134.829f9683.regisr@pobox.com> <20060829141552.GB80182@Grumpy.DynDNS.org> <20060829192212.9e2e3dda.regisr@pobox.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060829192212.9e2e3dda.regisr@pobox.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: datasize ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD-Questions@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 19:34:29 -0000 On Tue, Aug 29, 2006 at 07:22:12PM +0200, regisr wrote: > On Tue, 29 Aug 2006 09:15:52 -0500 > David Kelly a ?crit: > > > Yes, you will have to tweak a few kernel values to allow more than 512M > > per process. And then have enough core RAM and swap to back your data. > > But I have yet set the limit to 1.5GB! I wanted to known if the limit > to ~3G is always in effect. I don't understand your 1.5 GB reference. I think you set the kernel maximum in /boot/loader.conf and can then set per-user limits up to that value in /etc/login.conf. IIRC the stock unmodified kernel limit is 512 MB per process, and the login.conf default is the same 512 MB. Login.conf can not override the kernel. Something like this needs to be added to /boot/loader.conf: kern.maxdsiz="3G" # think this is the absolute system per-process limit kern.dfldsiz="3G" # think this is the default per-process limit kern.maxssiz="128M" # stack size -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 20:25:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 939E416A4DD for ; Tue, 29 Aug 2006 20:25:40 +0000 (UTC) (envelope-from up@3.am) Received: from richard2.pil.net (richard2.pil.net [208.8.16.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 0A13843D45 for ; Tue, 29 Aug 2006 20:25:39 +0000 (GMT) (envelope-from up@3.am) Received: (qmail 66358 invoked by uid 1825); 29 Aug 2006 20:25:39 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 29 Aug 2006 20:25:39 -0000 Date: Tue, 29 Aug 2006 16:25:39 -0400 (EDT) From: up@3.am X-X-Sender: up@richard2.pil.net To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Migrating from 4.10-STABLE TO 6.1-STABLE questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:25:40 -0000 Hi: I'm in the process of doing a clean install on an older server that was running 4.10-STABLE to 6.1-STABLE. For the most part, it's been smooth, but I have a few questions: On boot, I get a couple of kernel messages that don't look optimal, and I just want to make sure there's no cause for concern. As always, I built a custom kernel with the stuff taken out that I'm pretty sure I don't need. This is an Intel L440GX dual PIII-1k MB with an Adaptec SCSI RAID: acpi0: on motherboard acpi0: Power Button (fixed) acpi: bad write to port 0x070 (8), val 0x43 acpi: bad read from port 0x071 (8) --- I noticed that acpi isn't in the standard Kernel config but loaded from an external file called "PAE"...is this an issue? Should that and/or the SMP file be edited when rebuilding the kernel? ---- atkbd0: [GIANT-LOCKED] sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled pmtimer0 on isa0 This is the serial port driver...I may want to have one serial port enabled for remote console redirection...in the old kernel config, I'd just choose a driver with a different IRQ...but I don't see that option in the new GENERIC line I copied: # Serial (COM) ports device sio # 8250, 16[45]50 based serial ports I'd just like to make sure everything's ok before I stick this in a colo center. BTW, old FreeBSD used to put kernel binaries under /. I don't see them now...just curious, how is it handled now? Thanks! James Smallacombe PlantageNet, Inc. CEO and Janitor up@3.am http://3.am ========================================================================= From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 20:32:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0664D16A4DA for ; Tue, 29 Aug 2006 20:32:42 +0000 (UTC) (envelope-from up@3.am) Received: from richard2.pil.net (richard2.pil.net [208.8.16.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 7B1F343D46 for ; Tue, 29 Aug 2006 20:32:41 +0000 (GMT) (envelope-from up@3.am) Received: (qmail 74367 invoked by uid 1825); 29 Aug 2006 20:32:41 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 29 Aug 2006 20:32:41 -0000 Date: Tue, 29 Aug 2006 16:32:41 -0400 (EDT) From: up@3.am X-X-Sender: up@richard2.pil.net To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: NFS exports file errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:32:42 -0000 I'm getting the following errors when trying to mount volumes via NFS between to FBSD 6.1-STABLE machines: Aug 29 14:20:41 host mountd[1587]: can't export /usr Aug 29 14:20:41 host mountd[1587]: bad exports list line /usr -ro -maproot Aug 29 14:20:41 host mountd[1587]: can't export /var Aug 29 14:20:41 host mountd[1587]: bad exports list line /var -ro -maproot Aug 29 14:20:41 host mountd[1587]: can't export /home Aug 29 14:20:41 host mountd[1587]: bad exports list line /home -ro -maproot Aug 29 14:20:44 host mountd[1587]: mount request denied from 192.x.x.x I googled on that error and the only thing I could find was if there were simlinks on the exports file, which there isn't...I built the server with the following file systems: / /usr /var /home Note that there is no error for the root volume.../usr and /var will actually mount fine, despite the errors, but /home will not...I keep getting a "permission denied" error. Ideas? Thanks. James Smallacombe PlantageNet, Inc. CEO and Janitor up@3.am http://3.am ========================================================================= From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 20:40:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 48FDB16A4DE for ; Tue, 29 Aug 2006 20:40:30 +0000 (UTC) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (regisr.net1.nerim.net [62.212.109.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A67B43D45 for ; Tue, 29 Aug 2006 20:40:28 +0000 (GMT) (envelope-from regisr@pobox.com) Received: from crocoite.regix.info (localhost.regix.info [127.0.0.1]) by crocoite.regix.info (8.13.6/8.13.6) with SMTP id k7TKeRMm001678 for ; Tue, 29 Aug 2006 22:40:27 +0200 (CEST) (envelope-from regisr@pobox.com) Date: Tue, 29 Aug 2006 22:40:27 +0200 From: regisr To: freebsd-questions@freebsd.org Message-Id: <20060829224027.40554545.regisr@pobox.com> In-Reply-To: <20060829193423.GA82013@Grumpy.DynDNS.org> References: <20060829080134.829f9683.regisr@pobox.com> <20060829141552.GB80182@Grumpy.DynDNS.org> <20060829192212.9e2e3dda.regisr@pobox.com> <20060829193423.GA82013@Grumpy.DynDNS.org> X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: datasize ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:40:30 -0000 On Tue, 29 Aug 2006 14:34:23 -0500 David Kelly a =E9crit: =20 > > But I have yet set the limit to 1.5GB! I wanted to known if the limit > > to ~3G is always in effect. > I don't understand your 1.5 GB reference. I have set it in the kernel... I have run the program but it use 1300M! As I set the maximum datasize to 1.5G it is OK for now. It is not very optimized :-( Thanks for your help, --=20 regis From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 20:42:14 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1105416A4DA for ; Tue, 29 Aug 2006 20:42:14 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8284943D70 for ; Tue, 29 Aug 2006 20:42:13 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Tue, 29 Aug 2006 16:42:12 -0400 id 00056414.44F4A6A4.00005554 Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 29 Aug 2006 16:41:24 -0400 Date: Tue, 29 Aug 2006 16:42:12 -0400 From: Bill Moran To: up@3.am Message-Id: <20060829164212.c0ec174a.wmoran@collaborativefusion.com> In-Reply-To: References: Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: NFS exports file errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:42:14 -0000 In response to up@3.am: > > I'm getting the following errors when trying to mount volumes via NFS > between to FBSD 6.1-STABLE machines: > > Aug 29 14:20:41 host mountd[1587]: can't export /usr > Aug 29 14:20:41 host mountd[1587]: bad exports list line /usr -ro -maproot You have to map root to something ... i.e. /usr -ro -maproot root -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 20:53:25 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3068916A4E2 for ; Tue, 29 Aug 2006 20:53:25 +0000 (UTC) (envelope-from up@3.am) Received: from richard2.pil.net (richard2.pil.net [208.8.16.11]) by mx1.FreeBSD.org (Postfix) with SMTP id A3DD943D6E for ; Tue, 29 Aug 2006 20:53:24 +0000 (GMT) (envelope-from up@3.am) Received: (qmail 96547 invoked by uid 1825); 29 Aug 2006 20:53:24 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 29 Aug 2006 20:53:24 -0000 Date: Tue, 29 Aug 2006 16:53:24 -0400 (EDT) From: up@3.am X-X-Sender: up@richard2.pil.net To: Bill Moran In-Reply-To: <20060829164212.c0ec174a.wmoran@collaborativefusion.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org Subject: Re: NFS exports file errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:53:25 -0000 On Tue, 29 Aug 2006, Bill Moran wrote: > In response to up@3.am: > > > > > I'm getting the following errors when trying to mount volumes via NFS > > between to FBSD 6.1-STABLE machines: > > > > Aug 29 14:20:41 host mountd[1587]: can't export /usr > > Aug 29 14:20:41 host mountd[1587]: bad exports list line /usr -ro -maproot > > You have to map root to something ... i.e. > /usr -ro -maproot root I did, using this sytax, like I always have: / -ro -maproot=0 192.x.x.1 /usr -ro -maproot=0 root 192.x.x.1 /var -ro -maproot=0 root 192.x.x.1 /home -ro -maproot=0 root 192.x.x.1 where 192.x.x.1 is the IP of the only host I want to have access. I tried switching to your syntax (taking out the "-0" and putting in " root" but I get the same results... James Smallacombe PlantageNet, Inc. CEO and Janitor up@3.am http://3.am ========================================================================= From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 21:09:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2CBD016A4DD for ; Tue, 29 Aug 2006 21:09:41 +0000 (UTC) (envelope-from jhorne@dfwlp.org) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B16543D46 for ; Tue, 29 Aug 2006 21:09:38 +0000 (GMT) (envelope-from jhorne@dfwlp.org) Received: from webmail.dfwlp.org (localhost.dfwlp.com [127.0.0.1]) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7TL9Rkv031728; Tue, 29 Aug 2006 16:09:27 -0500 (CDT) (envelope-from jhorne@dfwlp.org) Received: from 167.246.36.14 (SquirrelMail authenticated user jhorne) by webmail.dfwlp.org with HTTP; Tue, 29 Aug 2006 16:09:27 -0500 (CDT) Message-ID: <53750.167.246.36.14.1156885767.squirrel@webmail.dfwlp.org> In-Reply-To: References: Date: Tue, 29 Aug 2006 16:09:27 -0500 (CDT) From: "Jonathan Horne" To: up@3.am User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Cc: freebsd-questions@freebsd.org, Bill Moran Subject: Re: NFS exports file errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 21:09:41 -0000 > On Tue, 29 Aug 2006, Bill Moran wrote: > >> In response to up@3.am: >> >> > >> > I'm getting the following errors when trying to mount volumes via NFS >> > between to FBSD 6.1-STABLE machines: >> > >> > Aug 29 14:20:41 host mountd[1587]: can't export /usr >> > Aug 29 14:20:41 host mountd[1587]: bad exports list line /usr -ro >> -maproot >> >> You have to map root to something ... i.e. >> /usr -ro -maproot root > > I did, using this sytax, like I always have: > > / -ro -maproot=0 192.x.x.1 > /usr -ro -maproot=0 root 192.x.x.1 > /var -ro -maproot=0 root 192.x.x.1 > /home -ro -maproot=0 root 192.x.x.1 > > where 192.x.x.1 is the IP of the only host I want to have access. I tried > switching to your syntax (taking out the "-0" and putting in " root" but I > get the same results... > > James Smallacombe PlantageNet, Inc. CEO and Janitor > up@3.am http://3.am i thought the syntax was maproot=root, thus, / -ro -maproot=root 192.x.x.1 /usr -ro -maproot=root 192.x.x.1 /var -ro -maproot=root 192.x.x.1 /home -ro -maproot=root 192.x.x.1 if that doesnt work, then i would remove the -ro, out of wondering if it could be colliding with the maproot=root. hth, jonathan From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 21:31:25 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 809AC16A4DA for ; Tue, 29 Aug 2006 21:31:25 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DDE743D49 for ; Tue, 29 Aug 2006 21:31:24 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Tue, 29 Aug 2006 17:31:24 -0400 id 00056413.44F4B22C.000059DC Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 29 Aug 2006 17:30:35 -0400 Date: Tue, 29 Aug 2006 17:31:23 -0400 From: Bill Moran To: up@3.am Message-Id: <20060829173123.1247b9eb.wmoran@collaborativefusion.com> In-Reply-To: References: <20060829164212.c0ec174a.wmoran@collaborativefusion.com> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: NFS exports file errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 21:31:25 -0000 In response to up@3.am: > On Tue, 29 Aug 2006, Bill Moran wrote: > > > In response to up@3.am: > > > > > > > > I'm getting the following errors when trying to mount volumes via NFS > > > between to FBSD 6.1-STABLE machines: > > > > > > Aug 29 14:20:41 host mountd[1587]: can't export /usr > > > Aug 29 14:20:41 host mountd[1587]: bad exports list line /usr -ro -maproot > > > > You have to map root to something ... i.e. > > /usr -ro -maproot root > > I did, using this sytax, like I always have: > > / -ro -maproot=0 192.x.x.1 > /usr -ro -maproot=0 root 192.x.x.1 > /var -ro -maproot=0 root 192.x.x.1 > /home -ro -maproot=0 root 192.x.x.1 > > where 192.x.x.1 is the IP of the only host I want to have access. I tried > switching to your syntax (taking out the "-0" and putting in " root" but I > get the same results... My mistake -- I mistook the errors in your original post to be the entire exports line. What do your physical mounts look like again? In my experience, if any one exports line is wrong, the whole file fails. Try commenting out all but one of the lines and seeing if the problem goes away. With clever commenting, you can then narrow it down. In the lines above, "root" will be taken as a machine name. While that's unlikely to be the cause of your error, I don't expect it's what you want. The exports man page specifically states that maproot can specify either a username or a uid. -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 21:32:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AEF8916A4E1 for ; Tue, 29 Aug 2006 21:32:41 +0000 (UTC) (envelope-from up@3.am) Received: from richard2.pil.net (richard2.pil.net [208.8.16.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 59A9343D55 for ; Tue, 29 Aug 2006 21:32:40 +0000 (GMT) (envelope-from up@3.am) Received: (qmail 35033 invoked by uid 1825); 29 Aug 2006 21:32:39 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 29 Aug 2006 21:32:39 -0000 Date: Tue, 29 Aug 2006 17:32:39 -0400 (EDT) From: up@3.am X-X-Sender: up@richard2.pil.net To: freebsd-questions@freebsd.org In-Reply-To: <53750.167.246.36.14.1156885767.squirrel@webmail.dfwlp.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: NFS exports file errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 21:32:41 -0000 On Tue, 29 Aug 2006, Jonathan Horne wrote: > > On Tue, 29 Aug 2006, Bill Moran wrote: > > > >> In response to up@3.am: > >> > >> > > >> > I'm getting the following errors when trying to mount volumes via NFS > >> > between to FBSD 6.1-STABLE machines: > >> > > >> > Aug 29 14:20:41 host mountd[1587]: can't export /usr > >> > Aug 29 14:20:41 host mountd[1587]: bad exports list line /usr -ro > >> -maproot > >> > >> You have to map root to something ... i.e. > >> /usr -ro -maproot root > > > > I did, using this sytax, like I always have: > > > > / -ro -maproot=0 192.x.x.1 > > /usr -ro -maproot=0 root 192.x.x.1 > > /var -ro -maproot=0 root 192.x.x.1 > > /home -ro -maproot=0 root 192.x.x.1 > > > > where 192.x.x.1 is the IP of the only host I want to have access. I tried > > switching to your syntax (taking out the "-0" and putting in " root" but I > > get the same results... > > > > James Smallacombe PlantageNet, Inc. CEO and Janitor > > up@3.am http://3.am > > i thought the syntax was maproot=root, thus, > > / -ro -maproot=root 192.x.x.1 > /usr -ro -maproot=root 192.x.x.1 > /var -ro -maproot=root 192.x.x.1 > /home -ro -maproot=root 192.x.x.1 > > if that doesnt work, then i would remove the -ro, out of wondering if it > could be colliding with the maproot=root. According to the man pages and the FreeBSD manual (years old) either sytax should work (numeric UID or username), but I tried it anyway, to no avail. I just did a "mount" on the server, and here's what I have: su-2.05b# mount /dev/ad0s1a on / (ufs, NFS exported, local) devfs on /dev (devfs, local) /dev/ad0s1f on /home (ufs, local, soft-updates) /dev/ad0s1d on /usr (ufs, NFS exported, local, soft-updates) /dev/ad0s1e on /var (ufs, NFS exported, local, soft-updates) So, in spite of the errors for the /usr and /var file system, they get exported (and I can access them from the client), the /home FS is NOT exported and I cannot access it. The / file system has no errors and is fine... James Smallacombe PlantageNet, Inc. CEO and Janitor up@3.am http://3.am ========================================================================= From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 21:40:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E35B216A4DE for ; Tue, 29 Aug 2006 21:40:57 +0000 (UTC) (envelope-from ljzimmerman@mindspring.com) Received: from elasmtp-mealy.atl.sa.earthlink.net (elasmtp-mealy.atl.sa.earthlink.net [209.86.89.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0E9243D7F for ; Tue, 29 Aug 2006 21:40:45 +0000 (GMT) (envelope-from ljzimmerman@mindspring.com) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=dk20050327; d=mindspring.com; b=PORR90bb7gDgFZ4PGwAN6b8nINOiZjdZtDY9vlPyK2hzyon+xylD3j8bLE1Uk/42; h=Received:From:To:Subject:Date:MIME-Version:Content-Type:X-Mailer:X-MimeOLE:Thread-Index:Message-ID:X-ELNK-Trace:X-Originating-IP; Received: from [67.41.202.96] (helo=SOLO) by elasmtp-mealy.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1GIBK9-000727-9c for freebsd-questions@freebsd.org; Tue, 29 Aug 2006 17:40:45 -0400 From: "Laurie Zimmerman" To: Date: Tue, 29 Aug 2006 15:40:48 -0600 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Thread-Index: AcbLsMSgz2RFJmF2Q12Zw3wL/7HU+Q== Message-ID: X-ELNK-Trace: 7af7ba7d06856c32a8c1b1165d75cb81416dc04816f3191c691d51fa635a7962769b257e879318cad16eadd309c7c8a3350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 67.41.202.96 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: MONOWALL Share DSL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 21:40:58 -0000 Hi, I have a client who would like to share a DSL connection with a neighboring office. I would like to put my clients network (they only need to share Internet) on a separate IP (192.168.1.x) network behind a monowall. My question is, will monowall allow a private address (the LAN IP of DSL router, 192.168.0.x) to be its WAN address? Do you see any routing issues with this? Thanks Laurie From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 21:51:53 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2952016A4DA for ; Tue, 29 Aug 2006 21:51:53 +0000 (UTC) (envelope-from stom@free.fr) Received: from smtp006.mail.ukl.yahoo.com (smtp006.mail.ukl.yahoo.com [217.12.11.95]) by mx1.FreeBSD.org (Postfix) with SMTP id 647E743D45 for ; Tue, 29 Aug 2006 21:51:52 +0000 (GMT) (envelope-from stom@free.fr) Received: (qmail 92893 invoked from network); 29 Aug 2006 21:51:51 -0000 Received: from unknown (HELO btn.mine.nu) (tux?shady@84.4.148.48 with login) by smtp006.mail.ukl.yahoo.com with SMTP; 29 Aug 2006 21:51:50 -0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by btn.mine.nu (Postfix) with ESMTP id 9B77947CF8; Tue, 29 Aug 2006 23:51:43 +0200 (CEST) Received: from btn.mine.nu ([127.0.0.1]) by localhost (btn.mine.nu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03428-06; Tue, 29 Aug 2006 23:51:40 +0200 (CEST) Received: from [192.168.0.101] (unknown [192.168.0.101]) by btn.mine.nu (Postfix) with ESMTP id 347CD47CF4; Tue, 29 Aug 2006 23:51:40 +0200 (CEST) Message-ID: <44F4B6F4.5030401@free.fr> Date: Tue, 29 Aug 2006 23:51:48 +0200 From: Philippe LAQUET User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Laurie Zimmerman References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at btn.mine.nu Cc: freebsd-questions@freebsd.org Subject: Re: MONOWALL Share DSL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 21:51:53 -0000 How your m0n0wall is connected to the Internet? If it is behind a router that do NAT there shouldn't be any problem. If the m0n0wall is connected directly behind a modem this will be more problematic :P But as I understood your setup seems like : Router < 192.168.0.0/24 > m0n0wall < 192.168.1.0/24 > LAN (Clients) There is no problem to set your box act like this you just have to put a static route on the DSL router itself or perform outgoing NAT for your clients. Laurie Zimmerman a écrit : > Hi, > > I have a client who would like to share a DSL connection with a neighboring > office. I would like to put my clients network (they only need to share > Internet) on a separate IP (192.168.1.x) network behind a monowall. My > question is, will monowall allow a private address (the LAN IP of DSL > router, 192.168.0.x) to be its WAN address? Do you see any routing issues > with this? > > > > Thanks > > Laurie > _______________________________________________ > 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" p5.vert.ukl.yahoo.com uncompressed Tue Aug 29 21:27:01 GMT 2006 ___________________________________________________________________________ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. http://fr.answers.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 22:14:05 2006 Return-Path: X-Original-To: questions@freebsd.org 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 6B4BD16A4DF for ; Tue, 29 Aug 2006 22:14:05 +0000 (UTC) (envelope-from lauasanf@wilderness.homeip.net) Received: from mxsf39.cluster1.charter.net (mxsf39.cluster1.charter.net [209.225.28.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA87243D45 for ; Tue, 29 Aug 2006 22:14:04 +0000 (GMT) (envelope-from lauasanf@wilderness.homeip.net) Received: from mxip29a.cluster1.charter.net (mxip29a.cluster1.charter.net [209.225.28.188]) by mxsf39.cluster1.charter.net (8.12.11.20060308/8.12.11) with ESMTP id k7TME3kk008733 for ; Tue, 29 Aug 2006 18:14:03 -0400 Received: from 24-159-55-136.dhcp.jcsn.tn.charter.com (HELO [192.168.1.6]) ([24.159.55.136]) by mxip29a.cluster1.charter.net with ESMTP; 29 Aug 2006 18:14:02 -0400 X-IronPort-AV: i="4.08,183,1154923200"; d="scan'208"; a="1662412964:sNHT722609568" Message-ID: <44F4BC29.7020804@wilderness.homeip.net> Date: Tue, 29 Aug 2006 17:14:01 -0500 From: Laurence Sanford User-Agent: Thunderbird 1.5.0.5 (X11/20060804) MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: 6.1 crashing, no vm dump X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 22:14:05 -0000 I'm not much on posting mystery stuff for people to try to solve, but I'm at the end of my rope with this one. I have a box that's been pretty stable until very recently, and I don't know if I may have missed something important that was posted somewhere about a problem, or what. I can reproduce crashes with this system through disk activity though. Example situation: I'm downloading an ISO @ 300+ K/s, and ftp a 3 gig file from this system to another system on my LAN at the same time. It will simply reboot. No error message, nothing in the logs, it just reboots. Information: uname -a FreeBSD colossus.cotharyus.net 6.1-STABLE FreeBSD 6.1-STABLE #5: Thu Jun 8 08:21:33 CDT 2006 lauasanf@colossus.cotharyus.net:/usr/obj/usr/src/sys/Colossus i386 dmesg: Copyright (c) 1992-2006 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 6.1-STABLE #5: Thu Jun 8 08:21:33 CDT 2006 lauasanf@colossus.cotharyus.net:/usr/obj/usr/src/sys/Colossus Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 3800+ (2010.31-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x20fb1 Stepping = 1 Features=0x178bfbff Features2=0x1 AMD Features=0xe2500800 AMD Features2=0x3 Cores per package: 2 real memory = 1073676288 (1023 MB) avail memory = 1037369344 (989 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0: Changing APIC ID to 2 ioapic0 irqs 0-23 on motherboard acpi0: on motherboard acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi0: Power Button (fixed) acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR acpi_bus_number: can't get _ADR Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 cpu0: on acpi0 cpu1: on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: at device 0.0 (no driver attached) isab0: at device 1.0 on pci0 isa0: on isab0 pci0: at device 1.1 (no driver attached) ohci0: mem 0xdb102000-0xdb102fff irq 21 at device 2.0 on pci0 ohci0: [GIANT-LOCKED] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: nVidia OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 10 ports with 10 removable, self powered ehci0: mem 0xfeb00000-0xfeb000ff irq 22 at device 2.1 on pci0 ehci0: [GIANT-LOCKED] usb1: EHCI version 1.0 usb1: companion controller, 4 ports each: usb0 usb1: on ehci0 usb1: USB revision 2.0 uhub1: nVidia EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub1: 10 ports with 10 removable, self powered pcm0: port 0xd400-0xd4ff,0xd800-0xd8ff mem 0xdb101000-0xdb101fff irq 23 at device 4.0 on pci0 pcm0: atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf000-0xf00f at device 6.0 on pci0 ata0: on atapci0 ata1: on atapci0 pcib1: at device 9.0 on pci0 pci5: on pcib1 fwohci0: mem 0xdb004000-0xdb0047ff,0xdb000000-0xdb003fff irq 16 at device 11.0 on pci5 fwohci0: OHCI version 1.10 (ROM=1) fwohci0: No. of Isochronous channels is 4. fwohci0: EUI64 00:11:d8:00:00:86:18:47 fwohci0: Phy 1394a available S400, 2 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 sbp0: on firewire0 fwohci0: Initiate bus reset fwohci0: node_id=0xc800ffc0, gen=1, CYCLEMASTER mode firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me) firewire0: bus manager 0 (me) nve0: port 0xd000-0xd007 mem 0xdb100000-0xdb100fff irq 21 at device 10.0 on pci0 nve0: Ethernet address 00:15:f2:7f:80:86 miibus0: on nve0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto nve0: Ethernet address: 00:15:f2:7f:80:86 pcib2: at device 11.0 on pci0 pci4: on pcib2 pcib3: at device 12.0 on pci0 pci3: on pcib3 pcib4: at device 13.0 on pci0 pci2: on pcib4 pcib5: at device 14.0 on pci0 pci1: on pcib5 nvidia0: mem 0xd8000000-0xd8ffffff,0xd0000000-0xd7ffffff,0xd9000000-0xd9ffffff irq 18 at device 0.0 on pci1 nvidia0: [GIANT-LOCKED] acpi_tz0: on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FAST] sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A ppc0: port 0x378-0x37f,0x778-0x77b irq 7 drq 3 on acpi0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold ppbus0: on ppc0 ppbus0: IEEE1284 device found /NIBBLE/ECP Probing for PnP devices on ppbus0: ppbus0: MLC,PCL,PML plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse Explorer, device ID 4 pmtimer0 on isa0 orm0: at iomem 0xc0000-0xcefff,0xd0000-0xd3fff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 umass0: Generic USB Storage Device, rev 1.10/1.00, addr 2 Timecounters tick every 1.000 msec ad0: 43979MB at ata0-master UDMA100 ad1: 190782MB at ata0-slave UDMA100 ad2: 38166MB at ata1-master UDMA100 acd0: DVDR at ata1-slave UDMA33 SMP: AP CPU #1 Launched! cd0 at ata1 bus 0 target 1 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 33.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-0 device da0: 1.000MB/s transfers da0: Attempt to query device size failed: NOT READY, Medium not present da1 at umass-sim0 bus 0 target 0 lun 1 da1: Removable Direct Access SCSI-0 device da1: 1.000MB/s transfers da1: Attempt to query device size failed: NOT READY, Medium not present da2 at umass-sim0 bus 0 target 0 lun 2 da2: Removable Direct Access SCSI-0 device da2: 1.000MB/s transfers da2: 489MB (1002497 512 byte sectors: 64H 32S/T 489C) da3 at umass-sim0 bus 0 target 0 lun 3 da3: Removable Direct Access SCSI-0 device da3: 1.000MB/s transfers da3: Attempt to query device size failed: NOT READY, Medium not present (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 (da1:umass-sim0:0:0:1): READ CAPACITY. CDB: 25 20 0 0 0 0 0 0 0 0 (da1:umass-sim0:0:0:1): CAM Status: SCSI Status Error (da1:umass-sim0:0:0:1): SCSI Status: Check Condition (da1:umass-sim0:0:0:1): NOT READY asc:3a,0 (da1:umass-sim0:0:0:1): Medium not present (da1:umass-sim0:0:0:1): Unretryable error Opened disk da1 -> 6 (da1:umass-sim0:0:0:1): READ CAPACITY. CDB: 25 20 0 0 0 0 0 0 0 0 (da1:umass-sim0:0:0:1): CAM Status: SCSI Status Error (da1:umass-sim0:0:0:1): SCSI Status: Check Condition (da1:umass-sim0:0:0:1): NOT READY asc:3a,0 (da1:umass-sim0:0:0:1): Medium not present (da1:umass-sim0:0:0:1): Unretryable error Opened disk da1 -> 6 (da1:umass-sim0:0:0:1): READ CAPACITY. CDB: 25 20 0 0 0 0 0 0 0 0 (da1:umass-sim0:0:0:1): CAM Status: SCSI Status Error (da1:umass-sim0:0:0:1): SCSI Status: Check Condition (da1:umass-sim0:0:0:1): NOT READY asc:3a,0 (da1:umass-sim0:0:0:1): Medium not present (da1:umass-sim0:0:0:1): Unretryable error Opened disk da1 -> 6 (da3:umass-sim0:0:0:3): READ CAPACITY. CDB: 25 60 0 0 0 0 0 0 0 0 (da3:umass-sim0:0:0:3): CAM Status: SCSI Status Error (da3:umass-sim0:0:0:3): SCSI Status: Check Condition (da3:umass-sim0:0:0:3): NOT READY asc:3a,0 (da3:umass-sim0:0:0:3): Medium not present (da3:umass-sim0:0:0:3): Unretryable error Opened disk da3 -> 6 (da3:umass-sim0:0:0:3): READ CAPACITY. CDB: 25 60 0 0 0 0 0 0 0 0 (da3:umass-sim0:0:0:3): CAM Status: SCSI Status Error (da3:umass-sim0:0:0:3): SCSI Status: Check Condition (da3:umass-sim0:0:0:3): NOT READY asc:3a,0 (da3:umass-sim0:0:0:3): Medium not present (da3:umass-sim0:0:0:3): Unretryable error Opened disk da3 -> 6 (da3:umass-sim0:0:0:3): READ CAPACITY. CDB: 25 60 0 0 0 0 0 0 0 0 (da3:umass-sim0:0:0:3): CAM Status: SCSI Status Error (da3:umass-sim0:0:0:3): SCSI Status: Check Condition (da3:umass-sim0:0:0:3): NOT READY asc:3a,0 (da3:umass-sim0:0:0:3): Medium not present (da3:umass-sim0:0:0:3): Unretryable error Opened disk da3 -> 6 Motherboard is an Asus A8N-SLI Any other information that I can provide that may help, just ask. If you want me to try to reproduce this and capture something (?? - I'd probly need instructions on how to do this since I haven't managed to do it on my own yet) I'd be happy to help, if we can nail this down. From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 23:03:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 F0EB216A4DD for ; Tue, 29 Aug 2006 23:03:57 +0000 (UTC) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAEAD43D53 for ; Tue, 29 Aug 2006 23:03:57 +0000 (GMT) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by bravo.pjkh.com (Postfix) with ESMTP id 0D10213C828 for ; Tue, 29 Aug 2006 18:09:49 -0500 (CDT) Received: by bravo.pjkh.com (Postfix, from userid 1000) id E4F1F13C7E4; Tue, 29 Aug 2006 18:09:48 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by bravo.pjkh.com (Postfix) with ESMTP id E35A013C7D5 for ; Tue, 29 Aug 2006 18:09:48 -0500 (CDT) Date: Tue, 29 Aug 2006 18:09:48 -0500 (CDT) From: Philip Hallstrom To: freebsd-questions@freebsd.org Message-ID: <20060829180800.C70930@bravo.pjkh.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV using ClamSMTP Subject: Any issue having multiple sound cards running at the same time in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 23:03:58 -0000 Hi all - I've got a freebsd server in the garage that has a low end soundblaster (I think) card in it that I've been using to play music. Works just fine. We moved and now I'd like to be able to have different music play in different rooms (living, family, and outside). I can do all the other wiring for speakers... But was wondering if there are any problems having three sound cards in the box and have them all work at the same time. I'm currently using flac123 to play music and would probably continue to do so... Thoughts? -philip From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 23:18:25 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A67FC16A4DA for ; Tue, 29 Aug 2006 23:18:25 +0000 (UTC) (envelope-from freebsdneophyte@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DB8443D45 for ; Tue, 29 Aug 2006 23:18:24 +0000 (GMT) (envelope-from freebsdneophyte@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so10439nfc for ; Tue, 29 Aug 2006 16:18:17 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=nHeWC74v3FkGrTwT09v5zPh3NJ7VPKgIo5rbdVJyHWDyKP0L77RfGFADtfU0yNXvRWef78LNS84AE5HYBuzT1Aeg/MAyxnL2l57JvwN/waMImXg3f6ZNkV1Ui66HmnmfwhN6MMwkNL/hlSIIViPYIoetz6b47MSBk96oHwq7voc= Received: by 10.48.14.4 with SMTP id 4mr1896847nfn; Tue, 29 Aug 2006 16:18:17 -0700 (PDT) Received: by 10.49.26.13 with HTTP; Tue, 29 Aug 2006 16:18:17 -0700 (PDT) Message-ID: <4cfd6b120608291618r6c6010b2y5379d6a0d527de7e@mail.gmail.com> Date: Tue, 29 Aug 2006 16:18:17 -0700 From: "freebsd neophyte" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: problems with creating bind9 under a jail (make: don't know how to make /usr/jail/bind9/usr/lib/libc.a. Stop) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 23:18:25 -0000 i'm following the following tutorial to create bind9 under a jail: http://www.onlamp.com/pub/a/bsd/2003/09/04/jails.html in doing so, i'm getting the following error: ------------------- # make world DESTDIR=/usr/jail/bind9 -------------------------------------------------------------- >>> Building an up-to-date make(1) -------------------------------------------------------------- make: don't know how to make /usr/jail/bind9/usr/lib/libc.a. Stop *** Error code 2 Stop in /usr/src. *** Error code 1 Stop in /usr/src. ------------------------ i've tried googling this, and i haven't come up with any workable solutions. i've cvsup'd the latest stable sources, and i've retried after doing a "make clean DESTDIR=..." (i don't know if this does anything to help), but i run into the same issue. i'm using 6.1 on a Sparc64 machine (an ultra5) that was booted from a CD, but pulled files from an FTP server. any help will be greatly appreciated From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 01:17:25 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 547C916A4DA for ; Wed, 30 Aug 2006 01:17:25 +0000 (UTC) (envelope-from mcrogerm@stjohn.ac.th) Received: from stjohn.ac.th (ns.stjohn.ac.th [202.21.144.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id B745143D45 for ; Wed, 30 Aug 2006 01:17:22 +0000 (GMT) (envelope-from mcrogerm@stjohn.ac.th) Received: from tulip.stjohn.ac.th [203.151.134.104] by stjohn.ac.th with ESMTP (SMTPD-8.21) id A6490EC8; Wed, 30 Aug 2006 08:13:45 +0700 Message-Id: <5.2.0.9.0.20060830075547.00aa9670@127.0.0.1> X-Sender: 2-server.international.stjohn.ac.th:mcrogerm@127.0.0.1 X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Wed, 30 Aug 2006 08:18:01 +0700 To: freebsd-questions@FreeBSD.ORG From: Roger Merritt Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: Subject: Monitor display problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 01:17:25 -0000 I recently acquired a newer box to hold my server. I was using a PII 300MHz with 64MB RAM. The new box has an AMD Athlon XP 1800+ with 239MB (?) RAM and what seems most pertinent, an S3 ProSavage DDR (86c420) graphics chip. When I first tried configuring X I discovered that when I tried to exit x-windows the machine would hang. When I hit the reset button my monitor showed a brief message, signal outside frequency range (which might very well be normal behavior). Eventually I got xorg working at a pleasant 1024x768 size, a great relief after the 640x480 I was limited to before, but I still have the problem that when I try to exit the x-server the machine hangs. It happens regardless of whether I use fvwm's exit command or hit . Checking my xorg.conf file I find that none of the optional commands are uncommented, and I started to remember years ago when I had to enable one of the options (something to do with using the software cursor) to get XFree86 to work -- I think that machine had an S3 card, but it might have been SiS. Anyway, I noticed that when I came in to work one morning, the pilot light on the monitor was blinkiing. No graphics signal to the monitor. Moved the mouse, hit the key, hit other keys, no help. So I rebooted by hitting the reset button. Everything seemed to work fine. Now, I usually don't work at the console -- even though my regular working (MS Win 2000 Pro) is right next to it, it's usually easier just to use PuTTY to make an SSH connection, so I didn't notice for some time that the monitor light was blinking again. I've tried the Google search engine, but can't seem to find a similar problem. I've wondered whether I should add the VESA option to my configuration file and rebuild the kernel. Can anyone offer suggestions -- possibly I just need to set something in vidcontrol? -- Roger From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 01:36:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0A5A116A4DA for ; Wed, 30 Aug 2006 01:36:35 +0000 (UTC) (envelope-from up@3.am) Received: from richard2.pil.net (richard2.pil.net [208.8.16.11]) by mx1.FreeBSD.org (Postfix) with SMTP id F33F143D49 for ; Wed, 30 Aug 2006 01:36:33 +0000 (GMT) (envelope-from up@3.am) Received: (qmail 45866 invoked by uid 1825); 30 Aug 2006 01:36:31 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 30 Aug 2006 01:36:31 -0000 Date: Tue, 29 Aug 2006 21:36:31 -0400 (EDT) From: up@3.am X-X-Sender: up@richard2.pil.net To: freebsd-questions@freebsd.org In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: NFS exports file errors X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 01:36:35 -0000 On Tue, 29 Aug 2006 up@3.am wrote: > On Tue, 29 Aug 2006, Jonathan Horne wrote: > > > > On Tue, 29 Aug 2006, Bill Moran wrote: > > > > > >> In response to up@3.am: > > >> > > >> > > > >> > I'm getting the following errors when trying to mount volumes via NFS > > >> > between to FBSD 6.1-STABLE machines: > > >> > > > >> > Aug 29 14:20:41 host mountd[1587]: can't export /usr > > >> > Aug 29 14:20:41 host mountd[1587]: bad exports list line /usr -ro > > >> -maproot > > >> > > >> You have to map root to something ... i.e. > > >> /usr -ro -maproot root > > > > > > I did, using this sytax, like I always have: > > > > > > / -ro -maproot=0 192.x.x.1 > > > /usr -ro -maproot=0 root 192.x.x.1 > > > /var -ro -maproot=0 root 192.x.x.1 > > > /home -ro -maproot=0 root 192.x.x.1 > > > > > > where 192.x.x.1 is the IP of the only host I want to have access. I tried > > > switching to your syntax (taking out the "-0" and putting in " root" but I > > > get the same results... > > > > > > James Smallacombe PlantageNet, Inc. CEO and Janitor > > > up@3.am http://3.am > > > > i thought the syntax was maproot=root, thus, > > > > / -ro -maproot=root 192.x.x.1 > > /usr -ro -maproot=root 192.x.x.1 > > /var -ro -maproot=root 192.x.x.1 > > /home -ro -maproot=root 192.x.x.1 > > > > if that doesnt work, then i would remove the -ro, out of wondering if it > > could be colliding with the maproot=root. > > According to the man pages and the FreeBSD manual (years old) either sytax > should work (numeric UID or username), but I tried it anyway, to no > avail. > > I just did a "mount" on the server, and here's what I have: > > su-2.05b# mount > /dev/ad0s1a on / (ufs, NFS exported, local) > devfs on /dev (devfs, local) > /dev/ad0s1f on /home (ufs, local, soft-updates) > /dev/ad0s1d on /usr (ufs, NFS exported, local, soft-updates) > /dev/ad0s1e on /var (ufs, NFS exported, local, soft-updates) > > So, in spite of the errors for the /usr and /var file system, they get > exported (and I can access them from the client), the /home FS is NOT > exported and I cannot access it. The / file system has no errors and is > fine... Replying to my own post...I've since tried stopping and restarting rpcbind, nfsd and mountd on the NFS server...I tried binding rpcbind and nfsd to the "main" IP address of that server (it has multiple). Now, I get the errors for all file system but root and can only mount the remote root file system, not /usr, /var or /home. I killed portsentry on both client and server before starting, since I noticed rpcbind was complaining about an address already in use (it went away after I killed portsentry and restarted it all). What really makes no sense is that it is functioning partly...the root fs mounts fine.../usr and /var did earlier, but no longer do. It makes no sense to me. James Smallacombe PlantageNet, Inc. CEO and Janitor up@3.am http://3.am ========================================================================= From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 03:26:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6E9C116A4E0 for ; Wed, 30 Aug 2006 03:26:51 +0000 (UTC) (envelope-from ajm91qw@sbcglobal.net) Received: from smtp112.sbc.mail.mud.yahoo.com (smtp112.sbc.mail.mud.yahoo.com [68.142.198.211]) by mx1.FreeBSD.org (Postfix) with SMTP id B5D9F43D46 for ; Wed, 30 Aug 2006 03:26:50 +0000 (GMT) (envelope-from ajm91qw@sbcglobal.net) Received: (qmail 83795 invoked from network); 30 Aug 2006 03:26:50 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=sbcglobal.net; h=Received:Date:From:To:Subject:Message-ID:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent; b=q5uWeKoGLwNpDnN5LgDz+qzYSqvWsFW8FONG5L/pIu64M4bynqxFK2xoBC5W5AChnSqnbra+c6YDmM21ViuCPOGBn1TXwDhbd39jq0symSlI4UiGPrikrcPh5S9ziYo+VdJPmmZSn58/fQWP/TBoKsLfUr4XptHirKBPkClUrfw= ; Received: from unknown (HELO localhost) (ajm91qw@sbcglobal.net@75.16.208.200 with plain) by smtp112.sbc.mail.mud.yahoo.com with SMTP; 30 Aug 2006 03:26:49 -0000 Date: Tue, 29 Aug 2006 22:28:22 -0500 From: ajm To: freebsd-questions@freebsd.org Message-ID: <20060830032822.GA908@powerfull.bsd> References: <34702.127.0.0.1.1156765075.squirrel@mithlond.net> <20060829010942.GA710@powerfull.bsd> <56608.127.0.0.1.1156847226.squirrel@mithlond.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <56608.127.0.0.1.1156847226.squirrel@mithlond.net> User-Agent: Mutt/1.5.11 Subject: Re: having hard time with mounting floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 03:26:51 -0000 On Tue, Aug 29, 2006 at 01:27:06PM +0300, Tuomas wrote: > ajm, > > Thanks for taking the pains to reply. > > This is what I tried: > > localhost# newfs -L FreeBSD /dev/fd0 > newfs: wtfs: 512 bytes at sector 2879: Input/output error > localhost# newfs_msdos -f 1440 -L MSDOS /dev/fd0 > /dev/fd0: 2847 sectors in 2847 FAT12 clusters (512 bytes/cluster) > bps=512 spc=1 res=1 nft=2 rde=224 sec=2880 mid=0xf0 spf=9 spt=18 hds=2 hid=0 > newfs_msdos: /dev/fd0: Input/output error > > On another forum, someone suggested to me that I should try FreeBSD 6.x. > FreeBSD 5.x has, according to this guy, some problems with some floppies. > > So maybe I try FreeBSD 6.x, or I will use Linux on this machine. > > Thanks for the help, though. :-) > > Tuomas It's been a while since I had 5.3 on my system...but see if you have the following in your /dev directory. /dev/fd0.1440 if so try this: # fdformat /dev/fd0.1440 or try mformat a: you must have this port installed for mformat to work: /usr/ports/emulators/mtools -- FreeBSD 6.0-RELEASE i386 GENERIC From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 04:13:50 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0D60416A4DE for ; Wed, 30 Aug 2006 04:13:50 +0000 (UTC) (envelope-from mrxtheking@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89E5143D46 for ; Wed, 30 Aug 2006 04:13:49 +0000 (GMT) (envelope-from mrxtheking@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so72381wxd for ; Tue, 29 Aug 2006 21:13:48 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=eL6okJdXX2alUXakinD7ftHox4zk/4mPCP72gqFm9OZ0N03QQGbI/zQmAhobGwx0jXoc1M4nzgGAjKIMNVVycUb+JBml6Gy8EknSbwWUb6gDvh2fvkPvR5LRBC6ngPQKotcgtd0pGdvQW3r9wvL9Au6IJSC+B48xID7BLtVQz20= Received: by 10.70.113.5 with SMTP id l5mr648959wxc; Tue, 29 Aug 2006 21:13:48 -0700 (PDT) Received: by 10.70.131.7 with HTTP; Tue, 29 Aug 2006 21:13:48 -0700 (PDT) Message-ID: <28f60c660608292113r17197f21g2e572a742a987ee8@mail.gmail.com> Date: Tue, 29 Aug 2006 23:13:48 -0500 From: Nazar To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: question about network setup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 04:13:50 -0000 Alright guys. This is probably the complete newbie question, but I just cant fight a straight answer on google. The questions usually I found, werent answered. Anyways, to the point. I'm behind router. Cable modem -> Router -> pc's. Basic home setup. I set up apache and want to figure out how is it possible for me to use external ip to connect to my server? I can access the server via internal ip & people can access it via my external, but for me doesnt show up. I know this configuration has to do with my network, rather than apache, or at least main configuration of my network and probably some tweaking with apache....Well, if possible, some replies would be appreciated. Maybe at least point me at the right direction. Thank you. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 04:23:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2FB4316A4DA for ; Wed, 30 Aug 2006 04:23:30 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1F7B43D4C for ; Wed, 30 Aug 2006 04:23:29 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7U4NSI3035189 for ; Tue, 29 Aug 2006 23:23:28 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Tue, 29 Aug 2006 23:23:27 -0500 User-Agent: KMail/1.9.3 References: <28f60c660608292113r17197f21g2e572a742a987ee8@mail.gmail.com> In-Reply-To: <28f60c660608292113r17197f21g2e572a742a987ee8@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608292323.27768.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: question about network setup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 04:23:30 -0000 On Tuesday 29 August 2006 23:13, Nazar wrote: > Alright guys. This is probably the complete newbie question, but I just > cant fight a straight answer on google. The questions usually I found, > werent answered. Anyways, to the point. I'm behind router. Cable modem -> > Router -> pc's. Basic home setup. I set up apache and want to figure out > how is it possible for me to use external ip to connect to my server? I can > access the server via internal ip & people can access it via my external, > but for me doesnt show up. I know this configuration has to do with my > network, rather than apache, or at least main configuration of my network > and probably some tweaking with apache....Well, if possible, some replies > would be > appreciated. Maybe at least point me at the right direction. Thank you. so, for you, the internal works, and for external people the external ip works... are you trying to access the external from your internal? wont work (well, not with the average soho router). can you be more specific as to exactly what is not working? cheers, jonathan From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 04:27:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6CC6616A5A3 for ; Wed, 30 Aug 2006 04:27:02 +0000 (UTC) (envelope-from trunasuci@mail.com) Received: from webmail-outgoing.us4.outblaze.com (webmail-outgoing.us4.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2445943D4C for ; Wed, 30 Aug 2006 04:27:02 +0000 (GMT) (envelope-from trunasuci@mail.com) Received: from unknown (unknown [192.168.9.180]) by webmail-outgoing.us4.outblaze.com (Postfix) with QMQP id 7942F1800125 for ; Wed, 30 Aug 2006 04:27:33 +0000 (GMT) X-OB-Received: from unknown (205.158.62.49) by wfilter.us4.outblaze.com; 30 Aug 2006 04:27:19 -0000 Received: by ws1-1.us4.outblaze.com (Postfix, from userid 1001) id D1F821BF2A3; Wed, 30 Aug 2006 04:26:56 +0000 (GMT) Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 From: "Ahmad Arafat Abdullah" To: Nazar , freebsd-questions@freebsd.org Date: Tue, 29 Aug 2006 20:26:56 -0800 Received: from [60.49.202.201] by ws1-1.us4.outblaze.com with http for trunasuci@mail.com; Tue, 29 Aug 2006 20:26:56 -0800 X-Originating-Ip: 60.49.202.201 X-Originating-Server: ws1-1.us4.outblaze.com Message-Id: <20060830042656.D1F821BF2A3@ws1-1.us4.outblaze.com> Cc: Subject: Re: question about network setup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 04:27:02 -0000 Well I assume your pc/apache is connected using private IP.. so that's why it ca= n't be accessed directly.. anyway u can configure it on your router, to forward the request= ( or "port-forward" ) to your pc/apache on port 80 TQ.. > ----- Original Message ----- > From: Nazar > To: freebsd-questions@freebsd.org > Subject: question about network setup > Date: Tue, 29 Aug 2006 23:13:48 -0500 >=20 >=20 > Alright guys. This is probably the complete newbie question, but I just c= ant > fight a straight answer on google. The questions usually I found, werent > answered. Anyways, to the point. I'm behind router. Cable modem -> Router= -> > pc's. Basic home setup. I set up apache and want to figure out how is it > possible for me to use external ip to connect to my server? I can access = the > server via internal ip & people can access it via my external, but for me > doesnt show up. I know this configuration has to do with my network, rath= er > than apache, or at least main configuration of my network and probably so= me > tweaking with apache....Well, if possible, some replies would be > appreciated. Maybe at least point me at the right direction. 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.o= rg" > --=20 ___________________________________________________ Play 100s of games for FREE! http://games.mail.com/ From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 04:33:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E795016A4DD for ; Wed, 30 Aug 2006 04:33:33 +0000 (UTC) (envelope-from sashome@m-lan.ru) Received: from m-lan.ru (mail.m-lan.ru [195.234.109.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A3FE43D46 for ; Wed, 30 Aug 2006 04:33:32 +0000 (GMT) (envelope-from sashome@m-lan.ru) Received: from afg.lan (account sashome [10.6.5.102] verified) by m-lan.ru (CommuniGate Pro SMTP 5.0.8) with ESMTPA id 8005188; Wed, 30 Aug 2006 08:33:31 +0400 Received: from [172.16.0.201] (account zetroot [172.16.0.201] verified) by afg.lan (CommuniGate Pro SMTP 5.0.10) with ESMTPA id 13308; Wed, 30 Aug 2006 08:33:24 +0400 Message-ID: <44F51514.3030701@m-lan.ru> Date: Wed, 30 Aug 2006 08:33:24 +0400 From: Alexander Sashurin User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 To: Nazar References: <28f60c660608292113r17197f21g2e572a742a987ee8@mail.gmail.com> In-Reply-To: <28f60c660608292113r17197f21g2e572a742a987ee8@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: question about network setup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: alexander.sashurin@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 04:33:34 -0000 *This message was transferred with a trial version of CommuniGate(r) Pro* Nazar wrote: > Alright guys. This is probably the complete newbie question, but I > just cant > fight a straight answer on google. The questions usually I found, werent > answered. Anyways, to the point. I'm behind router. Cable modem -> > Router -> > pc's. Basic home setup. I set up apache and want to figure out how is it > possible for me to use external ip to connect to my server? I can > access the > server via internal ip & people can access it via my external, but for me > doesnt show up. I know this configuration has to do with my network, > rather > than apache, or at least main configuration of my network and probably > some > tweaking with apache....Well, if possible, some replies would be > appreciated. Maybe at least point me at the right direction. Thank you. so, is the default route configured correctly? and have you redirected 80 port on your router to your server? can you ping your external interface? can you telnet to port 80 of external router iface? sorry, for my bad English.. -- With best regards, Alexander Sashurin a.k.a. ZetRooT -------------------------------------- | Mailto: alexander.sashurin@gmail.com | | ICQ: 258820442 | | Mobile: +7-916-195-89-11 | | Jabber: zetroot | | irc: irc.wenet.ru, zetroot | |______________________________________| From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 04:40:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0210016A4DA for ; Wed, 30 Aug 2006 04:40:35 +0000 (UTC) (envelope-from sashome@m-lan.ru) Received: from m-lan.ru (mail.m-lan.ru [195.234.109.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5324443D45 for ; Wed, 30 Aug 2006 04:40:34 +0000 (GMT) (envelope-from sashome@m-lan.ru) Received: from afg.lan (account sashome [10.6.5.102] verified) by m-lan.ru (CommuniGate Pro SMTP 5.0.8) with ESMTPA id 8005280; Wed, 30 Aug 2006 08:40:32 +0400 Received: from [172.16.0.201] (account zetroot [172.16.0.201] verified) by afg.lan (CommuniGate Pro SMTP 5.0.10) with ESMTPA id 13310; Wed, 30 Aug 2006 08:40:25 +0400 Message-ID: <44F516B8.5010601@m-lan.ru> Date: Wed, 30 Aug 2006 08:40:24 +0400 From: Alexander Sashurin User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 To: Ahmad Arafat Abdullah References: <20060830042656.D1F821BF2A3@ws1-1.us4.outblaze.com> In-Reply-To: <20060830042656.D1F821BF2A3@ws1-1.us4.outblaze.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: question about network setup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: alexander.sashurin@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 04:40:35 -0000 *This message was transferred with a trial version of CommuniGate(r) Pro* Ahmad Arafat Abdullah wrote: > *This message was transferred with a trial version of CommuniGate(r) Pro* > Well > I assume your pc/apache is connected using private IP.. so that's why it can't be accessed > directly.. anyway u can configure it on your router, to forward the request ( or "port-forward" ) > to your pc/apache on port 80 > > TQ.. > > > > >> ----- Original Message ----- >> From: Nazar >> To: freebsd-questions@freebsd.org >> Subject: question about network setup >> Date: Tue, 29 Aug 2006 23:13:48 -0500 >> >> >> Alright guys. This is probably the complete newbie question, but I just cant >> fight a straight answer on google. The questions usually I found, werent >> answered. Anyways, to the point. I'm behind router. Cable modem -> Router -> >> pc's. Basic home setup. I set up apache and want to figure out how is it >> possible for me to use external ip to connect to my server? I can access the >> server via internal ip & people can access it via my external, but for me >> doesnt show up. I know this configuration has to do with my network, rather >> than apache, or at least main configuration of my network and probably some >> tweaking with apache....Well, if possible, some replies would be >> appreciated. Maybe at least point me at the right direction. 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" >> I think it'll also important to check on what IP apache is listening on for connections... you should make it something like this: 0.0.0.0/0, if you are not paranoidalycally afraid of hackers... and also specify addresses from which your apache will accept connections.. again 0.0.0.0/0 -- With best regards, Alexander Sashurin a.k.a. ZetRooT -------------------------------------- | Mailto: alexander.sashurin@gmail.com | | ICQ: 258820442 | | Mobile: +7-916-195-89-11 | | Jabber: zetroot | | irc: irc.wenet.ru, zetroot | |______________________________________| From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 04:57:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2EE3B16A4DA for ; Wed, 30 Aug 2006 04:57:08 +0000 (UTC) (envelope-from mikhailg@webanoide.org) Received: from overlord.navalradio.cl (overlord.navalradio.cl [201.236.67.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8272C43D45 for ; Wed, 30 Aug 2006 04:57:07 +0000 (GMT) (envelope-from mikhailg@webanoide.org) Received: from [192.168.0.4] (ppp108-110.static.internode.on.net [150.101.108.110]) (authenticated bits=0) by overlord.navalradio.cl (8.13.6/8.13.6) with ESMTP id k7U4uhwN030295; Wed, 30 Aug 2006 00:56:46 -0400 (CLT) (envelope-from mikhailg@webanoide.org) Message-ID: <44F51A92.5010308@webanoide.org> Date: Wed, 30 Aug 2006 14:56:50 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 1.5.0.5 (Macintosh/20060719) MIME-Version: 1.0 To: wildebeest@mithlond.net References: <34702.127.0.0.1.1156765075.squirrel@mithlond.net> <20060829010942.GA710@powerfull.bsd> <56608.127.0.0.1.1156847226.squirrel@mithlond.net> In-Reply-To: <56608.127.0.0.1.1156847226.squirrel@mithlond.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-100.0 required=5.0 tests=USER_IN_WHITELIST autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on overlord.navalradio.cl Cc: freebsd-questions@freebsd.org Subject: Re: having hard time with mounting floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 04:57:08 -0000 Tuomas wrote: > ajm, > > Thanks for taking the pains to reply. > > This is what I tried: > > localhost# newfs -L FreeBSD /dev/fd0 > newfs: wtfs: 512 bytes at sector 2879: Input/output error > localhost# newfs_msdos -f 1440 -L MSDOS /dev/fd0 > /dev/fd0: 2847 sectors in 2847 FAT12 clusters (512 bytes/cluster) > bps=512 spc=1 res=1 nft=2 rde=224 sec=2880 mid=0xf0 spf=9 spt=18 hds=2 hid=0 > newfs_msdos: /dev/fd0: Input/output error > > On another forum, someone suggested to me that I should try FreeBSD 6.x. > FreeBSD 5.x has, according to this guy, some problems with some floppies. > > So maybe I try FreeBSD 6.x, or I will use Linux on this machine. Hi, I suspect the problem does not lie in FreeBSD, but elsewhere. Have you tried using different floppy discs? Specially another brand? Maybe the cable connecting your floppy drive is playing on you or even the drive itself is faulty. I just tried the following on a fresh 5.5-RELEASE install without any problems: # mount -t msdos /dev/fd0 /mnt [...] # fdformat /dev/fd0 # newfs -L FreeBSD /dev/fd0 # newfs_msdos -f 1440 -L MSDOS /dev/fd0 I hope this helps. Cheers, Mikhail. -- Mikhail Goriachev Webanoide Telephone: +61 (0)3 62252501 Mobile Phone: +61 (0)4 38255158 E-Mail: mikhailg@webanoide.org Web: http://www.webanoide.org PGP Key ID: 0x4E148A3B PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 06:30:49 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D95AB16A501 for ; Wed, 30 Aug 2006 06:30:49 +0000 (UTC) (envelope-from nikolaos.vassiliadis@teledome.gr) Received: from matrix.teledomenet.gr (dns1.teledomenet.gr [213.142.128.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 384AC43D4C for ; Wed, 30 Aug 2006 06:30:46 +0000 (GMT) (envelope-from nikolaos.vassiliadis@teledome.gr) Received: from iris ([192.168.1.71]) by matrix.teledomenet.gr (8.12.10/8.12.10) with ESMTP id k7U6UgEY022428; Wed, 30 Aug 2006 09:30:42 +0300 From: Nikos Vassiliadis To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 09:29:36 +0300 User-Agent: KMail/1.9.1 References: <20060828205915.8181.qmail@web53409.mail.yahoo.com> In-Reply-To: <20060828205915.8181.qmail@web53409.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-7" Content-Transfer-Encoding: 8bit Content-Disposition: inline Message-Id: <200608300929.36993.nikolaos.vassiliadis@teledome.gr> Cc: "Dr. Jennifer Nussbaum" Subject: Re: Various package/ports problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 06:30:49 -0000 On Monday 28 August 2006 23:59, Dr. Jennifer Nussbaum wrote: > Gerard Seibert wrote: On Mon, 28 Aug 2006, Dr. Jennifer Nussbaum wrote: > > Hi, > > > > I inherited a FreeBSD 4.8 box that had a lot of out of date ports on it. > > in trying to fix some of this, i seem to have screwed up the package or > > ports system in a way i cant manage to fix. > > That is really quite an old version of FSBD. If possible, I think you > would be well served by updating to the latest version - 6.1 - if > possible. > > I may be wrong, but I do not believe that there is a lot of support for > that version anymore. > There is some support... > I wish i could, but i dont have physical access to the machine - its > in a remote location with no serial console. So if anything gets > messed up during an upgrade, im in a hell of a lot of trouble. > I suppose, you can update to 4.11-STABLE without physical access to the machine. I suppose it will work. Then you could use binary packages(pkg_add -r something). Packages are built for 4-STABLE. ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4-stable/ > I dont know when i'll be able to fix this problem so until i can upgrade > the OS i at least want to keep the rest of it up to date. Why don't you use cvs to get your ports tree up to date? and then build everything you want? > > Jen. > > > --------------------------------- > Do you Yahoo!? > Everyone is raving about the all-new Yahoo! Mail. > _______________________________________________ > 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" -- Íéêüëáïò ÂáóéëåéÜäçò Ôå÷íéêüò Äéêôýïõ Teledome SA ÖéëáñÝôïõ 10 & ÄïúñÜíçò ÊáëëéèÝá 176 72 Ôçë.: 210 955 1500 ÖÜî: 210 956 3882 e-mail:nikolaos.vassiliadis@teledome.gr http://www.teledome.gr This e-mail is confidential. If you are not the intended recipient, you should not copy it, re-transmit it, use it or disclose its contents, but should return it to the sender immediately and delete the copy from your system. TELEDOME SA is not responsible for, nor endorses, any opinion, recommendation, conclusion, solicitation, offer or agreement or any information contained in this communication. TELEDOME SA cannot accept any responsibility for the accuracy or completeness of this message as it has been transmitted over a public network. If you suspect that the message may have been intercepted or amended, please contact the sender. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 07:40:12 2006 Return-Path: X-Original-To: questions@freebsd.org 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 5B08316A4DD for ; Wed, 30 Aug 2006 07:40:12 +0000 (UTC) (envelope-from danm@prime.gushi.org) Received: from prime.gushi.org (prime.gushi.org [72.9.101.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFE4243D45 for ; Wed, 30 Aug 2006 07:40:11 +0000 (GMT) (envelope-from danm@prime.gushi.org) Received: from prime.gushi.org (danm@localhost.gushi.org [127.0.0.1]) by prime.gushi.org (8.13.7/8.13.7) with ESMTP id k7U7eUmo054517 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 30 Aug 2006 03:40:30 -0400 (EDT) DKIM-Signature: a=rsa-sha1; c=simple/simple; d=prime.gushi.org; s=primegushiorg; t=1156923631; bh=XmDnU0DRWw2pBMGcnfdQmLgS5/E=; h=DomainKey-Signature: Received:Date:From:To:Subject:Message-ID:MIME-Version: Content-Type; b=0b0qAxGkG0ZQkK+EKIJQ3+7pS2Qxng3GXgpoe3YSfgJxn4yFiNb UR+IUYtFw3eKBgXH8HPWMBAE4t4vs/FvpEA== DomainKey-Signature: a=rsa-sha1; s=primegushiorg; d=prime.gushi.org; c=simple; q=dns; h=received:date:from:to:subject:message-id:mime-version:content-type; b=AMOPZUhLPCRKqQLvwFx+f8R9fRzWOuybBRo4pfDo1FxYRVZ6VLRGs4I55bihtaV0T 2gHnwc7DGepiQ9QbFAyiw== Received: (from danm@localhost) by prime.gushi.org (8.13.7/8.13.7/Submit) id k7U7eUaZ054511; Wed, 30 Aug 2006 03:40:30 -0400 (EDT) Date: Wed, 30 Aug 2006 03:40:30 -0400 (EDT) From: "Dan Mahoney, System Admin" To: questions@freebsd.org Message-ID: <20060830033859.R53222@prime.gushi.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: include format for /etc/rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 07:40:12 -0000 Hey all, Are there any supported formats for INCLUDES in /etc/rc.conf such that I can drop default configs into /etc/rc.conf and then have files in a certain directory (ala includerc) override them? Basically, I'd like to do mass-updates of several dozen machines' configs normally found in /etc/rc.conf, but then have per-machine configs (like hostnames) elsewhere. -Dan Mahoney -- "Don't be so depressed dear." "I have no endorphins, what am I supposed to do?" -DM and SK, February 10th, 1999 --------Dan Mahoney-------- Techie, Sysadmin, WebGeek Gushi on efnet/undernet IRC ICQ: 13735144 AIM: LarpGM Site: http://www.gushi.org --------------------------- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 07:46:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A6F3F16A4DF for ; Wed, 30 Aug 2006 07:46:09 +0000 (UTC) (envelope-from jonathan@hst.org.za) Received: from sirian.hst.org.za (sirian.hst.org.za [209.203.2.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4789743D49 for ; Wed, 30 Aug 2006 07:46:02 +0000 (GMT) (envelope-from jonathan@hst.org.za) Received: from localhost (localhost.hst.org.za [127.0.0.1]) by sirian.hst.org.za (Postfix) with ESMTP id 1C85E31CBD9 for ; Wed, 30 Aug 2006 09:44:03 +0200 (SAST) Received: from sirian.hst.org.za ([127.0.0.1]) by localhost (sirian.hst.org.za [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17555-04 for ; Wed, 30 Aug 2006 09:44:02 +0200 (SAST) Received: by sirian.hst.org.za (Postfix, from userid 1004) id E697E31CBD2; Wed, 30 Aug 2006 09:44:02 +0200 (SAST) Received: from sysadmin.int.dbn.hst.org.za (sysadmin.int.dbn.hst.org.za [10.1.1.20]) by sirian.hst.org.za (Postfix) with ESMTP id 3F39A31CB01 for ; Wed, 30 Aug 2006 09:44:02 +0200 (SAST) From: Jonathan McKeown Organization: Health Systems Trust To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 09:45:45 +0200 User-Agent: KMail/1.7.2 References: <20060830033859.R53222@prime.gushi.org> In-Reply-To: <20060830033859.R53222@prime.gushi.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608300945.45648.jonathan@hst.org.za> X-Spam-Checker-Version: SpamAssassin 2.61 (1.212.2.1-2003-12-09-exp) on sirian.hst.org.za X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=7.0 tests=BAYES_00 autolearn=ham version=2.61 X-Virus-Scanned: by amavisd-new at hst.org.za Subject: Re: include format for /etc/rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 07:46:09 -0000 On Wednesday 30 August 2006 09:40, Dan Mahoney, System Admin wrote: > Hey all, > > Are there any supported formats for INCLUDES in /etc/rc.conf such that I > can drop default configs into /etc/rc.conf and then have files in a > certain directory (ala includerc) override them? Basically, I'd like to > do mass-updates of several dozen machines' configs normally found in > /etc/rc.conf, but then have per-machine configs (like hostnames) > elsewhere. Look at rc_conf_files (man rc.conf). By default there are three ``levels'' of config: /etc/defaults/rc.conf /etc/rc.conf /etc/rc.conf.local each one overriding the previous one. Jonathan From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 07:47:25 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B15FA16A4DA for ; Wed, 30 Aug 2006 07:47:25 +0000 (UTC) (envelope-from nicky@valuecare.nl) Received: from smtp-vbr5.xs4all.nl (smtp-vbr5.xs4all.nl [194.109.24.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id E93AF43D7D for ; Wed, 30 Aug 2006 07:47:17 +0000 (GMT) (envelope-from nicky@valuecare.nl) Received: from [10.0.0.12] (a80-126-182-198.adsl.xs4all.nl [80.126.182.198]) (authenticated bits=0) by smtp-vbr5.xs4all.nl (8.13.6/8.13.6) with ESMTP id k7U7lG12051649; Wed, 30 Aug 2006 09:47:16 +0200 (CEST) (envelope-from nicky@valuecare.nl) Message-ID: <44F5428D.20202@valuecare.nl> Date: Wed, 30 Aug 2006 09:47:25 +0200 From: nicky User-Agent: Thunderbird 1.5.0.5 (X11/20060822) MIME-Version: 1.0 To: dick hoogendijk References: <20060827114817.5b5124dd.dick@nagual.nl> In-Reply-To: <20060827114817.5b5124dd.dick@nagual.nl> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Fw: lothlorien.nagual.nl security run output X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 07:47:25 -0000 My guess is that there is nothing to be worried about, however i could be wrong. Let me explain.. This morning i received the same kind of message in my security run output (yesterday i've updated all my ports): Checking setuid files and devices: nlp setuid diffs: --- /var/log/setuid.today Fri Aug 25 08:12:19 2006 +++ /tmp/security.Ia2whJjb Wed Aug 30 08:15:56 2006 @@ -3,8 +3,8 @@ 49434 -r-sr-xr-x 1 root wheel 23648 Aug 22 11:05:26 2006 /sbin/ping 49435 -r-sr-xr-x 1 root wheel 31924 Aug 22 11:05:26 2006 /sbin/ping6 49448 -r-sr-x--- 1 root operator 10308 Aug 22 11:05:27 2006 /sbin/shutdown -7795756 -rws--x--x 1 root wheel 2069783 Aug 24 09:17:07 2006 /usr/X11R6/bin/Xorg -7795717 -rws--x--x 1 root wheel 303748 Aug 24 09:03:51 2006 /usr/X11R6/bin/xterm +7795722 -rws--x--x 1 root wheel 2069783 Aug 29 13:08:10 2006 /usr/X11R6/bin/Xorg +7796599 -rws--x--x 1 root wheel 305764 Aug 29 12:57:30 2006 /usr/X11R6/bin/xterm 1625095 -r-sr-xr-x 4 root wheel 22260 Aug 22 11:05:50 2006 /usr/bin/at 1625095 -r-sr-xr-x 4 root wheel 22260 Aug 22 11:05:50 2006 /usr/bin/atq 1625095 -r-sr-xr-x 4 root wheel 22260 Aug 22 11:05:50 2006 /usr/bin/atrm If i look at my message, i see that lines between 3 to 8 have been changed. After a manual diff between /var/log/setuid.today/yesterday i only get the xorg related lines. Which is correct, since i remember seeing some xorg ports being updated. In your message you state, "Begin forwarded message [some Xorg update warnings deleted]:" Isn't it so that in your message, lines 3 to 12 are just port related binaries? (i assume xorg related). Meaning that ping/ping6, etc aren't updated at all. At least i don't see the +/- signs infront of your ping/ping6 ones. My guess. Greets. Nick dick hoogendijk wrote: > I'm a little worried after reading the security output this morning. > It seems some files [ping, ping6, shutdown, at, atq and atrm] have > setuid diffs. I really don't know why this could have happened. > I updated some ports yesterday, but I don't think any port writes > in /sbin (?) > Could someboddy advice me on what can have happened? > > Begin forwarded message [some Xorg update warnings deleted]: > > Checking setuid files and devices: > Checking setuid files and devices: > > lothlorien.nagual.nl setuid diffs: > --- /var/log/setuid.today Mon Aug 14 03:03:25 2006 > +++ /tmp/security.aJbHsCR6 Sun Aug 27 03:03:22 2006 > @@ -3,12 +3,12 @@ > 23637 -r-sr-xr-x 1 root wheel 21792 May 12 21:47:15 > 2006 /sbin/ping > 23638 -r-sr-xr-x 1 root wheel 28660 May 12 > 21:47:15 2006 /sbin/ping6 > 23651 -r-sr-x--- 1 root operator 10148 > May 12 21:47:17 2006 /sbin/shutdown > 7042059 -r-sr-xr-x 4 root wheel 20948 > May 12 21:48:10 2006 /usr/bin/at > 7042059 -r-sr-xr-x 4 root > wheel 20948 May 12 21:48:10 2006 /usr/bin/atq > 7042059 -r-sr-xr-x 4 > root wheel 20948 May 12 21:48:10 2006 /usr/bin/atrm > > From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 08:08:16 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 ADDD416A4DA for ; Wed, 30 Aug 2006 08:08:16 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from nagual.nl (cc20684-a.assen1.dr.home.nl [82.74.7.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2D0843D64 for ; Wed, 30 Aug 2006 08:08:15 +0000 (GMT) (envelope-from dick@nagual.nl) Received: from localhost (localhost [127.0.0.1]) (uid 1000) by nagual.nl with local; Wed, 30 Aug 2006 10:08:13 +0200 id 00039824.44F5476D.00003B1F Date: Wed, 30 Aug 2006 10:08:13 +0200 To: freebsd-questions Message-ID: <20060830080813.GA15024@lothlorien.nagual.nl> References: <20060827114817.5b5124dd.dick@nagual.nl> <44F5428D.20202@valuecare.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline In-Reply-To: <44F5428D.20202@valuecare.nl> User-Agent: Mutt/1.4.2.2i From: dick hoogendijk Subject: Re: Fw: lothlorien.nagual.nl security run output X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 08:08:16 -0000 On 30 Aug nicky wrote: > In your message you state, "Begin forwarded message [some Xorg update > warnings deleted]:" > > Isn't it so that in your message, lines 3 to 12 are just port related > binaries? (i assume xorg related). Meaning that ping/ping6, etc aren't > updated at all. At least i don't see the +/- signs infront of your > ping/ping6 ones. You are absolutely right. I'm blushing, I really am. Jee, I totally missed the + / - signs. I overlooked and worried about the 'wrong' files. It was Xorg that was updated. Just like you have done and seen ;-) Thanks for the response. Remains one question (too me): what program would be best to have as a system integraty checker? Shamhein, Osiris or what? -- dick -- http://nagual.nl/ -- PGP/GnuPG key: F86289CE ++ Running FreeBSD 6.1 +++ The Power to Serve From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 08:16:36 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 145A516A4DD for ; Wed, 30 Aug 2006 08:16:36 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail4.sea5.speakeasy.net (mail4.sea5.speakeasy.net [69.17.117.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FAA943D7C for ; Wed, 30 Aug 2006 08:16:08 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 7986 invoked from network); 30 Aug 2006 08:15:48 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail4.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 30 Aug 2006 08:15:47 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 776552842C; Wed, 30 Aug 2006 04:15:46 -0400 (EDT) To: "Sean M." References: <20060828075954.55670.qmail@web52313.mail.yahoo.com> From: Lowell Gilbert Date: Wed, 30 Aug 2006 04:15:45 -0400 In-Reply-To: <20060828075954.55670.qmail@web52313.mail.yahoo.com> (Sean M.'s message of "Mon, 28 Aug 2006 00:59:54 -0700 (PDT)") Message-ID: <448xl6fxla.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: Fullscreen crashes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 08:16:36 -0000 "Sean M." writes: > Everytime* I use a program, usually a game, that switches into > full-screen mode, I get dumped to a tty screen and everything is hung; > I have to power cycle to fix it. Yesterday, everything worked > perfectly. > > The only thing I did in the interim that influenced the system was to > install gcc42 from ports, and then immediately after deinstall it. > > OS is 6.1-REL. I'm using the NVIDIA binary driver. It doesn't matter > whether I start the programs in KDE or twm. Is it happening with the x.org "nv" driver also? Is there anything in the X logs that gives a clue? From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 08:24:02 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 27E1416A4E0 for ; Wed, 30 Aug 2006 08:24:02 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from banan.pingpong.net (banan.pingpong.net [213.136.40.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAB7343D49 for ; Wed, 30 Aug 2006 08:23:59 +0000 (GMT) (envelope-from girgen@FreeBSD.org) Received: from rambutan.pingpong.net (rambutan.pingpong.net [192.168.1.187]) by banan.pingpong.net (8.13.6/8.13.6) with ESMTP id k7U8NvHY055382 for ; Wed, 30 Aug 2006 10:23:57 +0200 (CEST) (envelope-from girgen@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by rambutan.pingpong.net (8.13.6/8.13.6) with ESMTP id k7U8Nv5s016268 for ; Wed, 30 Aug 2006 10:23:57 +0200 (CEST) (envelope-from girgen@FreeBSD.org) Date: Wed, 30 Aug 2006 10:23:57 +0200 From: Palle Girgensohn To: freebsd-questions@FreeBSD.org Message-ID: <1A22B89C8268F4A9BE12C396@rambutan.pingpong.net> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: real media server (hlxserver) for freebsd amd64? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 08:24:02 -0000 Hi! I need to get a Helix server (hlx server, real media server) running on FreeBSD @ amd64. Anyone tried this before? Seems there are no good options, really, and I have had trouble running the linux version as well. Just want to know if I'm alone in needing this? /Palle From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 08:48:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1B1FD16A4DF for ; Wed, 30 Aug 2006 08:48:19 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from smtp.mel.people.net.au (smtp.mel.people.net.au [218.214.17.98]) by mx1.FreeBSD.org (Postfix) with SMTP id 41FE743D53 for ; Wed, 30 Aug 2006 08:48:17 +0000 (GMT) (envelope-from mail@ozzmosis.com) Received: (qmail 15663 invoked from network); 30 Aug 2006 08:48:17 -0000 Received: from unknown (HELO blizzard.dnsalias.org) (218.214.144.129) by smtp.mel.people.net.au with SMTP; 30 Aug 2006 08:48:17 -0000 Received: by blizzard.dnsalias.org (Postfix, from userid 1001) id 0764C54F; Wed, 30 Aug 2006 18:48:16 +1000 (EST) Date: Wed, 30 Aug 2006 18:48:15 +1000 From: andrew clarke To: steveb@erienet.net Message-ID: <20060830084815.GA7352@ozzmosis.com> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <20060827181340.A18228@erienet.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060827181340.A18228@erienet.net> User-Agent: Mutt/1.5.12-2006-07-14 Cc: Gary Kline , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 08:48:19 -0000 On Sun, Aug 27, 2006 at 06:13:40PM -0400, steveb@erienet.net wrote: > > I suppose I can buy a DVD-R[W] and fnd out, but is there any reason > > why I can't have many hours of audio on a DVD? In other words, id a DVD > > *only* for video? --Might be nice to gather (parts of) my favorite CD's > > onto one Very long-playing disk. > > If your DVD player can't play mp3s, then it can't play DVDs. ;) > Remember, mp3s are the audio layer of mpegs. And DVD videos consist of > mpegs. The main issue I've had is that some (particularly older) DVD players won't recognise the file system on data DVDs (neither ISO or UDF), and so won't see that there are MP3s on the disc. The same players happily accepted MP3s on data CDs though. Blank CDs are also dirt cheap. Based on my rough calculations, you should be able to store about 3000 minutes (50 hours) of 32 kbit MP3 audio on a single 700 Mb data CD. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 08:54:49 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2EF8416A4DF for ; Wed, 30 Aug 2006 08:54:49 +0000 (UTC) (envelope-from kschmidt6@web.de) Received: from fmmailgate01.web.de (fmmailgate01.web.de [217.72.192.221]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5938743D76 for ; Wed, 30 Aug 2006 08:54:36 +0000 (GMT) (envelope-from kschmidt6@web.de) Received: from smtp06.web.de (fmsmtp06.dlan.cinetic.de [172.20.5.172]) by fmmailgate01.web.de (Postfix) with ESMTP id 7292918D9C85 for ; Wed, 30 Aug 2006 10:54:35 +0200 (CEST) Received: from [84.136.247.56] (helo=mobile) by smtp06.web.de with asmtp (WEB.DE 4.107 #114) id 1GILqF-00009s-00 for freebsd-questions@freebsd.org; Wed, 30 Aug 2006 10:54:35 +0200 Error-To: Message-ID: <255386326836848821124052@mobile> From: "Klaus Schmidt" To: Date: Wed, 30 Aug 2006 10:54:38 +0200 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: Quoted-Printable Sender: kschmidt6@web.de X-Sender: kschmidt6@web.de Subject: FW: Lustig X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kschmidt6@web.de List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 08:54:49 -0000 Respekt! Die Aktion ist ja der Hammer! Die sieht gut uns und setzt es f=FCr ne gute Sache ein ;-) --- Weitergeleitete Nachricht --- Von: "Klaus Becker" An: frank.hollemann@gmx.de; Betreff: Fwd:FW: Echte Tierliebe :-) Datum: Wed, 18 Aug 2006 17:49:02 +0100 (MET) > > > > > > Hallo zusammen! > > > > > > Schaut Euch mal den Link hier an: > > > > > > http://www.animal-fans.comFW: Lustig, lustig > > > > > > S=FC=DFes M=E4del gibt ihr letztes Hamd f=FCr den Tierschutz. :-))) > > > > > > Ziemlich verr=FCckt die Aktion, aber sie traut sich was!! > > > > > > Bin mal gespannt, wie weit sie am Ende wirklich geht... ;-) > > > > > > Viel Spa=DF damit, > > > > > > Andy > > > > > > > > > > > > > > > From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 09:00:07 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 572D616A4DA for ; Wed, 30 Aug 2006 09:00:07 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from banan.pingpong.net (banan.pingpong.net [213.136.40.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47EA243D5D for ; Wed, 30 Aug 2006 09:00:06 +0000 (GMT) (envelope-from girgen@FreeBSD.org) Received: from rambutan.pingpong.net (rambutan.pingpong.net [192.168.1.187]) by banan.pingpong.net (8.13.6/8.13.6) with ESMTP id k7U904qG055716; Wed, 30 Aug 2006 11:00:04 +0200 (CEST) (envelope-from girgen@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by rambutan.pingpong.net (8.13.6/8.13.6) with ESMTP id k7U904fe078795; Wed, 30 Aug 2006 11:00:04 +0200 (CEST) (envelope-from girgen@FreeBSD.org) Date: Wed, 30 Aug 2006 11:00:04 +0200 From: Palle Girgensohn To: georg@dts.su Message-ID: <711948B69B6F625B8CC5D4AF@rambutan.pingpong.net> In-Reply-To: <746223480.20060830124042@dts.su> References: <1A22B89C8268F4A9BE12C396@rambutan.pingpong.net> <746223480.20060830124042@dts.su> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-questions@FreeBSD.org Subject: Re: real media server (hlxserver) for freebsd amd64? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 09:00:07 -0000 --On onsdag, augusti 30, 2006 12.40.42 +0400 georg@dts.su wrote: >> Hi! > >> I need to get a Helix server (hlx server, real media server) running on >> FreeBSD @ amd64. Anyone tried this before? Seems there are no good >> options, really, and I have had trouble running the linux version as >> well. Just want to know if I'm alone in needing this? > >> /Palle > > > You not alone!.. Good to hear. How do we pursue this? I need the commercial package that links with the open source stuff, or else I cannot serve real media content, which leaves me with a useless server (I'd rather run apple quicktime server in that case...). So I guess we are out of luck unless we can get Real to build it for FreeBSD, which I doubt they would care to do. Is there any other software out there that can serve real audio files? /Palle From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 09:09:46 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CDE7416A4E1 for ; Wed, 30 Aug 2006 09:09:46 +0000 (UTC) (envelope-from howie@thingy.com) Received: from post1.network-i.net (antigua.network-i.net [212.21.121.181]) by mx1.FreeBSD.org (Postfix) with SMTP id 0E9B443D49 for ; Wed, 30 Aug 2006 09:09:45 +0000 (GMT) (envelope-from howie@thingy.com) Received: (qmail 19756 invoked from network); 30 Aug 2006 09:09:44 -0000 Received: from unknown (HELO ?10.1.1.134?) (212.21.99.52) by post1.network-i.net with SMTP; 30 Aug 2006 09:09:44 -0000 Message-ID: <44F55574.7000200@thingy.com> Date: Wed, 30 Aug 2006 10:08:04 +0100 From: Howard Jones User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: steveb@erienet.net References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <20060827181340.A18228@erienet.net> In-Reply-To: <20060827181340.A18228@erienet.net> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Gary Kline , freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 09:09:46 -0000 steveb@erienet.net wrote: > If your DVD player can't play mp3s, then it can't play DVDs. ;) > Remember, mp3s are the audio layer of mpegs. And DVD videos consist of > mpegs. For a DVD-Video disc, the audio formats are PCM (plain old wav, effectively), AC-3 (dolby digital) and MPEG-1 Audio Layer II (only). A lot of DVD players will also play MP3s, either on data CDs or data DVDs (or both), but it isn't a requirement as far as I can tell. The choices seem pretty arbitrary too. My Pioneer player will play a DVD-R full of MP3s, but the replacement model will only play MP3 CD-Rs (and you have to read the fine print in the manual to figure it out, too). It seems that a lot of DivX-playing DVD players only play CDs of DivX, not DVDs too (Toshiba, Pioneer again). That's why I was fiddling around with MP2 and minimal video - it's an actual standard DVD then. Although in fact I made an NTSC disc with MP2, which is apparently a no-no. My source was for the audio info was: http://stream.uen.org/medsol/dvd/pages/dvd_format_audio4DVDvideo.html Howie From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 09:46:33 2006 Return-Path: X-Original-To: questions@freebsd.org 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 E918B16A4DE for ; Wed, 30 Aug 2006 09:46:33 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out5.blueyonder.co.uk (smtp-out5.blueyonder.co.uk [195.188.213.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id A36F543DDB for ; Wed, 30 Aug 2006 09:46:05 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.144] (helo=anti-virus03-07) by smtp-out5.blueyonder.co.uk with smtp (Exim 4.52) id 1GIMdy-00007p-Gs; Wed, 30 Aug 2006 10:45:58 +0100 Received: from [82.41.35.166] (helo=[192.168.0.2]) by asmtp-out2.blueyonder.co.uk with esmtp (Exim 4.52) id 1GIMdx-0002il-Se; Wed, 30 Aug 2006 10:45:57 +0100 Message-ID: <44F55E55.4090401@dial.pipex.com> Date: Wed, 30 Aug 2006 10:45:57 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.13) Gecko/20060515 X-Accept-Language: en MIME-Version: 1.0 To: "Dan Mahoney, System Admin" References: <20060830033859.R53222@prime.gushi.org> In-Reply-To: <20060830033859.R53222@prime.gushi.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: include format for /etc/rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 09:46:34 -0000 Dan Mahoney, System Admin wrote: > Hey all, > > Are there any supported formats for INCLUDES in /etc/rc.conf such that > I can drop default configs into /etc/rc.conf and then have files in a > certain directory (ala includerc) override them? Basically, I'd like > to do mass-updates of several dozen machines' configs normally found > in /etc/rc.conf, but then have per-machine configs (like hostnames) > elsewhere. rc.conf is just a shell script so you can "include" a file like: . /path/to/include but make sure it exists on every host. It could easily be . /etc/rc.conf.`hostname -s` as long as you don't have a host called local :-) There is also rc.conf.local where you could put machine specific and leave rc.conf for your generic defaults. Not clear to me if rc.conf.local is meant to last though as it is described as "historic". --Alex From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 09:55:13 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C307416A4DA for ; Wed, 30 Aug 2006 09:55:13 +0000 (UTC) (envelope-from wildebeest@mithlond.net) Received: from ns1.neobitti.org (neobitti.org [83.145.202.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0691343D49 for ; Wed, 30 Aug 2006 09:55:12 +0000 (GMT) (envelope-from wildebeest@mithlond.net) Received: from mithlond by ns1.neobitti.org with local (Exim 4.52) id 1GIMms-0004W2-3R for freebsd-questions@freebsd.org; Wed, 30 Aug 2006 12:55:10 +0300 Received: from 127.0.0.1 ([127.0.0.1]) (SquirrelMail authenticated user tuope@mithlond.net) by mithlond.net with HTTP; Wed, 30 Aug 2006 12:55:10 +0300 (EEST) Message-ID: <42163.127.0.0.1.1156931710.squirrel@mithlond.net> In-Reply-To: <44F51A92.5010308@webanoide.org> References: <34702.127.0.0.1.1156765075.squirrel@mithlond.net> <20060829010942.GA710@powerfull.bsd> <56608.127.0.0.1.1156847226.squirrel@mithlond.net> <44F51A92.5010308@webanoide.org> Date: Wed, 30 Aug 2006 12:55:10 +0300 (EEST) From: "Tuomas" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ns1.neobitti.org X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [32343 32344] / [47 12] X-AntiAbuse: Sender Address Domain - mithlond.net X-Source: X-Source-Args: X-Source-Dir: Subject: Re: having hard time with mounting floppies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: wildebeest@mithlond.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 09:55:13 -0000 Mikhail, > I suspect the problem does not lie in FreeBSD, but elsewhere. Have you > tried using different floppy discs? Specially another brand? Maybe the > cable connecting your floppy drive is playing on you or even the drive > itself is faulty. If this were the case, would I notice it with Linux, too? Kubuntu LiveCD lets me use the floppy drive. In any case, I will try mtools. Thanks for your help! Tuomas From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 13:25:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 290B416A4DD for ; Wed, 30 Aug 2006 13:25:43 +0000 (UTC) (envelope-from obrieng@nm.cbc.ca) Received: from mail02.nm.cbc.ca (mail02.nm.cbc.ca [159.33.1.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51AD143D46 for ; Wed, 30 Aug 2006 13:25:00 +0000 (GMT) (envelope-from obrieng@nm.cbc.ca) Received: from hub.cbc.ca (hub.nm.cbc.ca [192.168.1.119]) by mail02.nm.cbc.ca (Postfix) with ESMTP id 4675927380F for ; Wed, 30 Aug 2006 09:24:45 -0400 (EDT) Received: from localhost (localhost.cbc.ca [127.0.0.1]) by hub.cbc.ca (Postfix) with ESMTP id 226F76A47D for ; Wed, 30 Aug 2006 09:24:45 -0400 (EDT) Received: from hub.cbc.ca ([127.0.0.1]) by localhost (hub.cbc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 68326-01-3 for ; Wed, 30 Aug 2006 09:24:44 -0400 (EDT) Received: from [1.151.32.18] (intd.cbc.ca [159.33.1.75]) by hub.cbc.ca (Postfix) with ESMTP id 49E526A47A for ; Wed, 30 Aug 2006 09:24:44 -0400 (EDT) Message-ID: <44F5919B.4050701@nm.cbc.ca> Date: Wed, 30 Aug 2006 09:24:43 -0400 From: Gabriel O'Brien User-Agent: Thunderbird 1.5.0.5 (X11/20060828) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060830033859.R53222@prime.gushi.org> In-Reply-To: <20060830033859.R53222@prime.gushi.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at hub.cbc.ca Subject: Re: include format for /etc/rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 13:25:43 -0000 You might want to look at /etc/rc.conf.local, though I would consider just writing a script to handle what you want to do since rc.conf.local isn't really the FreeBSD way, seems to be more of an OpenBSD approach. See: 'man rc' cheers, Gabriel -- Gabriel O'Brien IT Analyst, MPS-EN-CBC.ca w: 416-205-8740 m: 416-996-5679 Dan Mahoney, System Admin wrote: > Hey all, > > Are there any supported formats for INCLUDES in /etc/rc.conf such that I > can drop default configs into /etc/rc.conf and then have files in a > certain directory (ala includerc) override them? Basically, I'd like to > do mass-updates of several dozen machines' configs normally found in > /etc/rc.conf, but then have per-machine configs (like hostnames) elsewhere. > > -Dan Mahoney > > -- > > "Don't be so depressed dear." > > "I have no endorphins, what am I supposed to do?" > > -DM and SK, February 10th, 1999 > > --------Dan Mahoney-------- > Techie, Sysadmin, WebGeek > Gushi on efnet/undernet IRC > ICQ: 13735144 AIM: LarpGM > Site: http://www.gushi.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 Wed Aug 30 13:36:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CA38E16A4DD for ; Wed, 30 Aug 2006 13:36:41 +0000 (UTC) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (dsl081-142-072.chi1.dsl.speakeasy.net [64.81.142.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id D083343D76 for ; Wed, 30 Aug 2006 13:36:35 +0000 (GMT) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (localhost.computinginnovations.com [127.0.0.1]) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k7UDaADj068363; Wed, 30 Aug 2006 08:36:11 -0500 (CDT) Received: from localhost (derek@localhost) by betty.computinginnovations.com (8.13.6/8.12.11/Submit) with ESMTP id k7UDa9MT068255; Wed, 30 Aug 2006 08:36:09 -0500 (CDT) Date: Wed, 30 Aug 2006 08:36:09 -0500 (CDT) From: Derek Ragona To: Nazar In-Reply-To: <28f60c660608292113r17197f21g2e572a742a987ee8@mail.gmail.com> Message-ID: <20060830083136.R34273@betty.computinginnovations.com> References: <28f60c660608292113r17197f21g2e572a742a987ee8@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-ComputingInnovations-MailScanner-Information: Please contact the ISP for more information X-ComputingInnovations-MailScanner: Found to be clean X-ComputingInnovations-MailScanner-From: derek@betty.computinginnovations.com X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: question about network setup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 13:36:41 -0000 On Tue, 29 Aug 2006, Nazar wrote: > Alright guys. This is probably the complete newbie question, but I just cant > fight a straight answer on google. The questions usually I found, werent > answered. Anyways, to the point. I'm behind router. Cable modem -> Router -> > pc's. Basic home setup. I set up apache and want to figure out how is it > possible for me to use external ip to connect to my server? I can access the > server via internal ip & people can access it via my external, but for me > doesnt show up. What does this mean? Others can use the public IP on your router and hit the apache server? But you can only hit the apache server from the private IP? If the answers to the above are yes, this is the way your router keeps the public IP separate from the private LAN ip's. It is not routing between the two networks. Most routers are configured in this way. Some more full featured routers can be configured to route between the subnets, but it is generally not a good idea to route between the public subnet and the private subnet for securuty reasons. -Derek I know this configuration has to do with my network, rather > than apache, or at least main configuration of my network and probably some > tweaking with apache....Well, if possible, some replies would be > appreciated. Maybe at least point me at the right direction. 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" > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > MailScanner thanks transtec Computers for their support. > > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 13:39:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A920E16A4E0 for ; Wed, 30 Aug 2006 13:39:30 +0000 (UTC) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (dsl081-142-072.chi1.dsl.speakeasy.net [64.81.142.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id C017543D5F for ; Wed, 30 Aug 2006 13:39:22 +0000 (GMT) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (localhost.computinginnovations.com [127.0.0.1]) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k7UDcXJB070653; Wed, 30 Aug 2006 08:38:38 -0500 (CDT) Received: from localhost (derek@localhost) by betty.computinginnovations.com (8.13.6/8.12.11/Submit) with ESMTP id k7UDcS4x070650; Wed, 30 Aug 2006 08:38:32 -0500 (CDT) Date: Wed, 30 Aug 2006 08:38:28 -0500 (CDT) From: Derek Ragona To: Roger Merritt In-Reply-To: <5.2.0.9.0.20060830075547.00aa9670@127.0.0.1> Message-ID: <20060830083647.H70030@betty.computinginnovations.com> References: <5.2.0.9.0.20060830075547.00aa9670@127.0.0.1> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-ComputingInnovations-MailScanner-Information: Please contact the ISP for more information X-ComputingInnovations-MailScanner: Found to be clean X-ComputingInnovations-MailScanner-From: derek@betty.computinginnovations.com X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Monitor display problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 13:39:30 -0000 I would check the errat on the S3 you are using. It sounds like there may be some kernel/system changes you may need to make since your lockups are from going back to text mode from graphics mode. It is likely some conflict this is causing is hardware related. -Derek On Wed, 30 Aug 2006, Roger Merritt wrote: > I recently acquired a newer box to hold my server. I was using a PII 300MHz > with 64MB RAM. The new box has an AMD Athlon XP 1800+ with 239MB (?) RAM and > what seems most pertinent, an S3 ProSavage DDR (86c420) graphics chip. > > When I first tried configuring X I discovered that when I tried to exit > x-windows the machine would hang. When I hit the reset button my monitor > showed a brief message, signal outside frequency range (which might very well > be normal behavior). Eventually I got xorg working at a pleasant 1024x768 > size, a great relief after the 640x480 I was limited to before, but I still > have the problem that when I try to exit the x-server the machine hangs. It > happens regardless of whether I use fvwm's exit command or hit > . > > Checking my xorg.conf file I find that none of the optional commands are > uncommented, and I started to remember years ago when I had to enable one of > the options (something to do with using the software cursor) to get XFree86 > to work -- I think that machine had an S3 card, but it might have been SiS. > > Anyway, I noticed that when I came in to work one morning, the pilot light on > the monitor was blinkiing. No graphics signal to the monitor. Moved the > mouse, hit the key, hit other keys, no help. So I rebooted by hitting > the reset button. Everything seemed to work fine. Now, I usually don't work > at the console -- even though my regular working (MS Win 2000 Pro) is right > next to it, it's usually easier just to use PuTTY to make an SSH connection, > so I didn't notice for some time that the monitor light was blinking again. > > I've tried the Google search engine, but can't seem to find a similar > problem. I've wondered whether I should add the VESA option to my > configuration file and rebuild the kernel. Can anyone offer suggestions -- > possibly I just need to set something in vidcontrol? > > -- > Roger > > > _______________________________________________ > 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" > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > MailScanner thanks transtec Computers for their support. > > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 14:18:00 2006 Return-Path: X-Original-To: questions@freebsd.org 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 A160216A4DA for ; Wed, 30 Aug 2006 14:18:00 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from tiltup.nepinc.com (tiltup.nepinc.com [66.207.136.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 308AE43D49 for ; Wed, 30 Aug 2006 14:17:59 +0000 (GMT) (envelope-from freebsd@voidmain.net) Received: from [192.168.97.222] (pgh.nepinc.com [66.207.129.50]) (authenticated bits=0) by tiltup.nepinc.com (8.13.4/8.13.4) with ESMTP id k7UEHvae035654 for ; Wed, 30 Aug 2006 10:17:58 -0400 (EDT) (envelope-from freebsd@voidmain.net) Message-ID: <44F59E0B.6070108@voidmain.net> Date: Wed, 30 Aug 2006 10:17:47 -0400 From: Tom Grove User-Agent: Thunderbird 1.5.0.5 (X11/20060821) MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Memory leak in PHP on FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@voidmain.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 14:18:00 -0000 I was reading http://www.bsdnews.com and ran across an article about a memory leak in php and mysql on FreeBSD. This is fairly concerning considering I run quite a few servers with this setup. I haven't been able to find much documentation regarding this subject. It has been reported as a "permanent hole" which seems odd. However, if there is a problem does anyone have any info? -Tom From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 14:28:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4B4B216A4DF for ; Wed, 30 Aug 2006 14:28:18 +0000 (UTC) (envelope-from martin@saturn.pcs.ms) Received: from saturn.pcs.ms (228-148.1-85.cust.bluewin.ch [85.1.148.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D8BF43D60 for ; Wed, 30 Aug 2006 14:28:16 +0000 (GMT) (envelope-from martin@saturn.pcs.ms) Received: from saturn.pcs.ms (localhost [127.0.0.1]) by saturn.pcs.ms (8.13.1/8.13.1) with ESMTP id k7UEWd3u047669; Wed, 30 Aug 2006 16:32:41 +0200 (CEST) (envelope-from martin@saturn.pcs.ms) Received: (from martin@localhost) by saturn.pcs.ms (8.13.1/8.13.1/Submit) id k7UEWSj7047664; Wed, 30 Aug 2006 16:32:28 +0200 (CEST) (envelope-from martin) Date: Wed, 30 Aug 2006 16:32:28 +0200 From: Martin Schweizer To: freebsd-questions@freebsd.org Message-ID: <20060830143228.GA47646@saturn.pcs.ms> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PEIAKu/WMn1b1Hv9" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Organization: PC-Service M. Schweizer GmbH, CH-8608 Bubikon, Switzerland X-PGP-Key: http://www.pc-service.ch/pgp/public_key.asc X-Fingerprint: EC21 CA4D 5C78 BC2D 73B7 10F9 C1AE 1691 D30F D239 Subject: CVS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Martin Schweizer List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 14:28:18 -0000 --PEIAKu/WMn1b1Hv9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Which ports does I need for a cvs system (client and server)? I searched=20 against "cvs" in ports but it gets a lot of links. Any hints are welcome. --=20 Regards Martin Schweizer PC-Service M. Schweizer GmbH; Bannholzstrasse 6; CH-8608 Bubikon Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch; public key : http://www.pc-service.ch/pgp/public_key.asc;=20 fingerprint: EC21 CA4D 5C78 BC2D 73B7 10F9 C1AE 1691 D30F D239; --PEIAKu/WMn1b1Hv9 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFE9aF8wa4WkdMP0jkRArmHAJ4qM84xBs5AAnDXL6GxmBEUoYjkUACgwlku hwcD1o8bEjsULQbDgf2/fVg= =yzgh -----END PGP SIGNATURE----- --PEIAKu/WMn1b1Hv9-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 14:35:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C3D7516A4DD for ; Wed, 30 Aug 2006 14:35:30 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36B4043D6E for ; Wed, 30 Aug 2006 14:35:29 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Wed, 30 Aug 2006 10:35:29 -0400 id 00056410.44F5A231.0000E617 Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 30 Aug 2006 10:34:33 -0400 Date: Wed, 30 Aug 2006 10:35:28 -0400 From: Bill Moran To: Martin Schweizer Message-Id: <20060830103528.937872e5.wmoran@collaborativefusion.com> In-Reply-To: <20060830143228.GA47646@saturn.pcs.ms> References: <20060830143228.GA47646@saturn.pcs.ms> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: CVS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 14:35:30 -0000 In response to Martin Schweizer : > Hello > > Which ports does I need for a cvs system (client and server)? I searched > against "cvs" in ports but it gets a lot of links. Any hints are welcome. CVS is included in the base FreeBSD system. The ports you see are various addons. -- Bill Moran From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 14:36:11 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4332A16A4DD for ; Wed, 30 Aug 2006 14:36:11 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1400E43D9A for ; Wed, 30 Aug 2006 14:35:56 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so155175nfc for ; Wed, 30 Aug 2006 07:35:55 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tcaAox0oxZiwjnXygFRtr50Dhtk+OP/B22y+ZEd06CC2WvoR/TItMGRocjxr3UH/mUA7V1AHPZSPlD9v//jptDnVqe+smeStlfzKAmLB9+W+LgE5X7IwOJ+hhc8U6HbStb1dDXseN+9HvEKzPwvfGs4GE/w7WvxHPK5YyBT1PDk= Received: by 10.67.89.5 with SMTP id r5mr414085ugl; Wed, 30 Aug 2006 07:35:54 -0700 (PDT) Received: by 10.67.98.16 with HTTP; Wed, 30 Aug 2006 07:35:54 -0700 (PDT) Message-ID: <80f4f2b20608300735l6d27916ar6eef3b420322b00c@mail.gmail.com> Date: Wed, 30 Aug 2006 10:35:54 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: free-bsd's mount_smbfs having issues with EMC Celerra X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 14:36:11 -0000 I'm trying to connect my FreeBSD notebook to some shares at work, which are on an EMC Celerra box, which uses the windows SMB protocol, but I keep getting an odd error, which right now I'm suspecting is an incompatability between the two, and I was wondering if anyone here has had previous experience with this: 1) I can mount_smbfs shares on my windows desktop at home 2) People here can mount drives on the celerra box from Windows and Linux 3) Every time I try to map a share from FreeBSD, I get the error: "mount_smbfs: unable to open connection: resource temporarily unavailable" And no, I am not installing windows/linux on my notebook to get this (and sound) working, each has it's own issues which make it much worse for my uses. :-P Thanks -Jim Stapleton From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 14:38:07 2006 Return-Path: X-Original-To: questions@freebsd.org 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 8EC4F16A4EC for ; Wed, 30 Aug 2006 14:38:07 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1663D43D76 for ; Wed, 30 Aug 2006 14:38:00 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Wed, 30 Aug 2006 10:38:00 -0400 id 00056412.44F5A2C8.0000E6B0 Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 30 Aug 2006 10:37:05 -0400 Date: Wed, 30 Aug 2006 10:37:59 -0400 From: Bill Moran To: freebsd@voidmain.net Message-Id: <20060830103759.e195dfa3.wmoran@collaborativefusion.com> In-Reply-To: <44F59E0B.6070108@voidmain.net> References: <44F59E0B.6070108@voidmain.net> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: Memory leak in PHP on FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 14:38:07 -0000 In response to Tom Grove : > I was reading http://www.bsdnews.com and ran across an article about a > memory leak in php and mysql on FreeBSD. This is fairly concerning > considering I run quite a few servers with this setup. I haven't been > able to find much documentation regarding this subject. > > It has been reported as a "permanent hole" which seems odd. However, if > there is a problem does anyone have any info? Anyone have Tayler's email address? I understand that he doesn't want to get caught in a OS Holy War, but he has to realize that the FreeBSD community needs to know the specifics of the problem so it can be fixed. The email link on his site appears broken. I just want contact information for the people who gave him the report so I can get in touch with them for details. We use PHP extensively, but not MySQL. Personally, if the problem only exists between PHP and MySQL, it's not a major concern with me. If it exists in PHP when MySQL isn't involved, it's a BIG deal ;) -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 14:38:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7E96416A4DA for ; Wed, 30 Aug 2006 14:38:28 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8613043D81 for ; Wed, 30 Aug 2006 14:38:27 +0000 (GMT) (envelope-from gabor@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by server.t-hosting.hu (Postfix) with ESMTP id F1A6E99CCB1 for ; Wed, 30 Aug 2006 16:38:24 +0200 (CEST) X-Virus-Scanned: amavisd-new at t-hosting.hu Received: from server.t-hosting.hu ([127.0.0.1]) by localhost (server.t-hosting.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id TNJjZ22Qk0wn for ; Wed, 30 Aug 2006 16:38:24 +0200 (CEST) Received: from [192.168.2.186] (catv-50635cb6.catv.broadband.hu [80.99.92.182]) by server.t-hosting.hu (Postfix) with ESMTP id 6997499CCAC for ; Wed, 30 Aug 2006 16:38:24 +0200 (CEST) Message-ID: <44F5A2DC.7040202@FreeBSD.org> Date: Wed, 30 Aug 2006 16:38:20 +0200 From: =?ISO-8859-1?Q?G=E1bor_K=F6vesd=E1n?= User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060830143228.GA47646@saturn.pcs.ms> In-Reply-To: <20060830143228.GA47646@saturn.pcs.ms> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: CVS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 14:38:28 -0000 Martin Schweizer wrote: > Hello > > Which ports does I need for a cvs system (client and server)? I searched > against "cvs" in ports but it gets a lot of links. Any hints are welcome. > > Hi, cvs is part of the base system. You can just start using it, no need to install everything. See cvs(1) for the details how you can init a repository. -- Cheers, Gabor From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 14:39:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BF91116A4E0 for ; Wed, 30 Aug 2006 14:39:28 +0000 (UTC) (envelope-from lothrandil@n00b.apagnu.se) 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 67AEC43D4C for ; Wed, 30 Aug 2006 14:39:28 +0000 (GMT) (envelope-from lothrandil@n00b.apagnu.se) Received: from [90.224.60.58] (90.224.60.58) by pne-smtpout2-sn1.fre.skanova.net (7.2.075) id 44F1FA59000EB31B for freebsd-questions@freebsd.org; Wed, 30 Aug 2006 16:39:27 +0200 Message-ID: <44F5A30C.1000307@n00b.apagnu.se> Date: Wed, 30 Aug 2006 16:39:08 +0200 From: Niclas Zeising User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060830143228.GA47646@saturn.pcs.ms> In-Reply-To: <20060830143228.GA47646@saturn.pcs.ms> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: CVS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 14:39:28 -0000 Martin Schweizer wrote: > Hello > > Which ports does I need for a cvs system (client and server)? I searched > against "cvs" in ports but it gets a lot of links. Any hints are welcome. > cvs is already in the base system. //Niclas -- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 14:48:25 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EA9D816A4DD for ; Wed, 30 Aug 2006 14:48:25 +0000 (UTC) (envelope-from sub02@freeode.co.uk) Received: from mail.freeode.co.uk (mail.freeode.co.uk [87.127.24.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CA8543D72 for ; Wed, 30 Aug 2006 14:48:24 +0000 (GMT) (envelope-from sub02@freeode.co.uk) Received: from lexx.freeode.co.uk (lexx.freeode.co.uk [10.10.10.2]) by mail.freeode.co.uk (8.13.4/8.13.4) with ESMTP id k7UEmMRs024973 for ; Wed, 30 Aug 2006 15:48:23 +0100 (BST) (envelope-from sub02@freeode.co.uk) From: John Murphy To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 15:48:22 +0100 Message-ID: X-Mailer: Forte Agent 1.93/32.576 English (American) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Anything stronger than hw.ata.ata_dma="0"? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: sub02@freeode.co.uk List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 14:48:26 -0000 I'm trying to get a Kingston 1GB 50x 'elite pro' Compact Flash working as ad1 initially, and then move it to ad0 to install FreeBSD-6.1 on it. The hardware is an Soekris net4801 and it's known that CF cards usually only work in PIO mode. A line in /boot/loader.conf saying: hw.ata.ata_dma="0" is usually enough, but not in this case. It seems, from the output of a verbose boot (see below), that the controller is successfully setting PIO4 mode, but then it sets UDMA33 again, eventually failing with: ad1: FAILURE - READ_DMA timed out LBA=0 Using 'atacontrol mode ad1 PIO4' works and I can then fdisk, label and mount it without error. So what can I do that would be more effective than the hw.ata.ata_dma sysctl. I'm willing to patch the kernel source and build a custom kernel if necessary. > uname -a FreeBSD mail.freeode.co.uk 6.0-RELEASE FreeBSD 6.0-RELEASE #9: Sun May 7 22:51:56 BST 2006 xxxx@mail.freeode.co.uk:/usr/src/sys/i386/compile/ SOEKRIS i386 Soekris comBIOS detects: Pri Sla CF300 (LBA Xlt 999-32-63 1007 Mbyte) ata parts of verbose boot output: atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0 x177,0x376,0xe000-0xe00f at device 18.2 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xe000 ata0: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=03 ostat0=50 ostat1=50 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ata0: [MPSAFE] ata1: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x18 type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid 0x1c type 4 at 0x376 ata1: reset tp1 mask=00 ostat0=ff ostat1=ff ata1: [MPSAFE] Geode CBA@ 0x6000 Geode rev: 06 03 Timecounter "Geode" frequency 27000000 Hz quality 1000 pci0: at device 18.5 (no driver attached) pci0: at device 19.0 (no driver attached) ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it [...] ata0-slave: pio=PIO4 wdma=WDMA2 udma=UDMA33 cable=40 wire ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA100 cable=80 wire ad0: success setting PIO4 on National chip ad0: 38154MB at ata0-master PIO4 ad0: 78140160 sectors [77520C/16H/63S] 16 sectors/interrupt 1 depth queue GEOM: new disk ad0 ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ad1: 983MB at ata0-slave UDMA33 ad1: 2014992 sectors [1999C/16H/63S] 1 sectors/interrupt 1 depth queue GEOM: new disk ad1 ata0: reiniting channel .. ata0: reset stray irq7 tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: TIMEOUT - READ_DMA retrying (1 retry left) LBA=0 ata0: reiniting channel .. ata0: reset tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: TIMEOUT - READ_DMA retrying (0 retries left) LBA=0 ata0: reiniting channel .. ata0: reset tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: FAILURE - READ_DMA timed out LBA=0 ata0: reiniting channel .. ata0: reset tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: TIMEOUT - READ_DMA retrying (1 retry left) LBA=1 ata0: reiniting channel .. ata0: reset tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: TIMEOUT - READ_DMA retrying (0 retries left) LBA=1 ata0: reiniting channel .. ata0: reset tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: FAILURE - READ_DMA timed out LBA=1 ata0: reiniting channel .. ata0: reset tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: TIMEOUT - READ_DMA retrying (1 retry left) LBA=0 ata0: reiniting channel .. ata0: reset tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: TIMEOUT - READ_DMA retrying (0 retries left) LBA=0 ata0: reiniting channel .. ata0: reset tp1 mask=03 ostat0=50 ostat1=58 ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: stat1=0x50 err=0x01 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=50 stat1=50 devices=0x3 ad0: success setting PIO4 on National chip ad1: success setting PIO4 on National chip ad1: success setting UDMA33 on National chip ata0: reinit done .. ad1: FAILURE - READ_DMA timed out LBA=0 Trying to mount root from ufs:/dev/ad0s1a -- Thanks, John. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 15:06:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4078416A4DA for ; Wed, 30 Aug 2006 15:06:52 +0000 (UTC) (envelope-from user@dhp.com) Received: from shell.dhp.com (shell.dhp.com [199.245.105.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38E8F43D5F for ; Wed, 30 Aug 2006 15:06:48 +0000 (GMT) (envelope-from user@dhp.com) Received: by shell.dhp.com (Postfix, from userid 896) id B2A1B312F9; Wed, 30 Aug 2006 11:06:39 -0400 (EDT) Date: Wed, 30 Aug 2006 11:06:39 -0400 (EDT) From: Ensel Sharon To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: deleting with wildcards over ssh ... how ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 15:06:52 -0000 I want to delete some remote files with a wildcard, running 'rm' over ssh. The obvious syntax doesn't work at all - it doesn't even make an ssh connection - I think it is interpreting the wildcard locally: # ssh user@host rm -rf /some/testdir/* ssh: No match. Then, these combinations of single and double quotes: ssh user@host 'rm -rf /some/testdir/*' ssh user@host rm -rf '/some/testdir/*' ssh user@host 'rm -rf "/some/testdir/*"' All connect over ssh, and produce no errors, but the remote files are still there - nothing was deleted. So what is the _right_ way to do this ? Thanks. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 15:09:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2C73416A4DD for ; Wed, 30 Aug 2006 15:09:28 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail3.sea5.speakeasy.net (mail3.sea5.speakeasy.net [69.17.117.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id C723643D45 for ; Wed, 30 Aug 2006 15:09:27 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 32676 invoked from network); 30 Aug 2006 15:09:27 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail3.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 30 Aug 2006 15:09:27 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 395C12842A; Wed, 30 Aug 2006 11:09:26 -0400 (EDT) To: "freebsd neophyte" References: <4cfd6b120608291618r6c6010b2y5379d6a0d527de7e@mail.gmail.com> From: Lowell Gilbert Date: Wed, 30 Aug 2006 11:09:26 -0400 In-Reply-To: <4cfd6b120608291618r6c6010b2y5379d6a0d527de7e@mail.gmail.com> (freebsd neophyte's message of "Tue, 29 Aug 2006 16:18:17 -0700") Message-ID: <44k64q9s61.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: problems with creating bind9 under a jail (make: don't know how to make /usr/jail/bind9/usr/lib/libc.a. Stop) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 15:09:28 -0000 "freebsd neophyte" writes: > i'm following the following tutorial to create bind9 under a jail: > > http://www.onlamp.com/pub/a/bsd/2003/09/04/jails.html > > in doing so, i'm getting the following error: > > ------------------- > # make world DESTDIR=/usr/jail/bind9 > > -------------------------------------------------------------- >>>> Building an up-to-date make(1) > -------------------------------------------------------------- > make: don't know how to make /usr/jail/bind9/usr/lib/libc.a. Stop > *** Error code 2 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > ------------------------ > > i've tried googling this, and i haven't come up with any workable > solutions. i've cvsup'd the latest stable sources, and i've retried after > doing a "make clean DESTDIR=..." (i don't know if this does anything to > help), but i run into the same issue. > > i'm using 6.1 on a Sparc64 machine (an ultra5) that was booted from a > CD, but pulled files from an FTP server. Looks like you don't have a full source tree. What did you mean by "pulled files from an FTP server"? When you used cvsup, what kind of supfile did you use, and did you have existing files in the source tree that you were trying to update? From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 15:13:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D3C1416A4E6 for ; Wed, 30 Aug 2006 15:13:24 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBB3543D68 for ; Wed, 30 Aug 2006 15:13:22 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Wed, 30 Aug 2006 11:13:22 -0400 id 0005641B.44F5AB12.0000F30E Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 30 Aug 2006 11:12:27 -0400 Date: Wed, 30 Aug 2006 11:13:21 -0400 From: Bill Moran To: Ensel Sharon Message-Id: <20060830111321.037c293e.wmoran@collaborativefusion.com> In-Reply-To: References: Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: deleting with wildcards over ssh ... how ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 15:13:24 -0000 In response to Ensel Sharon : > > I want to delete some remote files with a wildcard, running 'rm' over ssh. > > The obvious syntax doesn't work at all - it doesn't even make an ssh > connection - I think it is interpreting the wildcard locally: > > # ssh user@host rm -rf /some/testdir/* > ssh: No match. > > Then, these combinations of single and double quotes: > > ssh user@host 'rm -rf /some/testdir/*' > > ssh user@host rm -rf '/some/testdir/*' > > ssh user@host 'rm -rf "/some/testdir/*"' > > All connect over ssh, and produce no errors, but the remote files are > still there - nothing was deleted. > > So what is the _right_ way to do this ? Most of those should work. What are the names of the files you are trying to delete? By default, * does not match filenames beginning with a '.'. The best command line would be: ssh user@host 'rm -rf /some/testdir/*' which will cause the local machine to send the command without expanding the * first. The * should then be expanded on the remote system. Try: ssh user@host 'echo /some/testdir/*' to see if it's doing what you expect. -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 15:14:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B4FDF16A50A for ; Wed, 30 Aug 2006 15:14:42 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0285B43D53 for ; Wed, 30 Aug 2006 15:14:41 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 6411 invoked from network); 30 Aug 2006 15:14:41 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 30 Aug 2006 15:14:41 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 76A012842B; Wed, 30 Aug 2006 11:14:40 -0400 (EDT) To: Philip Hallstrom References: <20060829180800.C70930@bravo.pjkh.com> From: Lowell Gilbert Date: Wed, 30 Aug 2006 11:14:40 -0400 In-Reply-To: <20060829180800.C70930@bravo.pjkh.com> (Philip Hallstrom's message of "Tue, 29 Aug 2006 18:09:48 -0500 (CDT)") Message-ID: <44fyfe9rxb.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: Any issue having multiple sound cards running at the same time in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 15:14:42 -0000 Philip Hallstrom writes: > Hi all - > > I've got a freebsd server in the garage that has a low end > soundblaster (I think) card in it that I've been using to play music. > Works just fine. We moved and now I'd like to be able to have > different music play in different rooms (living, family, and outside). > I can do all the other wiring for speakers... > > But was wondering if there are any problems having three sound cards > in the box and have them all work at the same time. I'm currently > using flac123 to play music and would probably continue to do so... > > Thoughts? In principle, there's no problem. But most software will only drive one audio device at a time. Also, note that running long cables at fairly low signal levels can degrade the audio quality... -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 15:23:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9631B16A4E1 for ; Wed, 30 Aug 2006 15:23:40 +0000 (UTC) (envelope-from webster@es.net) Received: from postal4.es.net (postal4.es.net [198.124.252.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4F2643D5C for ; Wed, 30 Aug 2006 15:23:39 +0000 (GMT) (envelope-from webster@es.net) Received: from adsl-63-206-71-69.dsl.snfc21.pacbell.net (adsl-63-206-71-69.dsl.snfc21.pacbell.net [63.206.71.69]) by postal4.es.net (Postal Node 4) with ASMTP (SSL) id IXB52125; Wed, 30 Aug 2006 08:23:25 -0700 Date: Wed, 30 Aug 2006 08:23:23 -0700 From: John Webster To: Ensel Sharon Message-ID: <6C58FC74160349B9812345B3@adsl-63-206-71-69.dsl.snfc21.pacbell.net> In-Reply-To: References: X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========E37B5B3BC00012D52323==========" Cc: freebsd-questions@freebsd.org Subject: Re: deleting with wildcards over ssh ... how ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 15:23:40 -0000 --==========E37B5B3BC00012D52323========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline --On Wednesday, August 30, 2006 11:06:39 -0400 Ensel Sharon wrote: > > I want to delete some remote files with a wildcard, running 'rm' over ssh. > > The obvious syntax doesn't work at all - it doesn't even make an ssh > connection - I think it is interpreting the wildcard locally: > ># ssh user@host rm -rf /some/testdir/* > ssh: No match. > > Then, these combinations of single and double quotes: > > ssh user@host 'rm -rf /some/testdir/*' > > ssh user@host rm -rf '/some/testdir/*' > > ssh user@host 'rm -rf "/some/testdir/*"' > > All connect over ssh, and produce no errors, but the remote files are > still there - nothing was deleted. > > So what is the _right_ way to do this ? > > Thanks. > How about: ssh user@host rm -rf /some/testdir/\* --==========E37B5B3BC00012D52323========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (FreeBSD) iD8DBQFE9a1sBf+aYL5/Y60RAmZSAJsEtnvQoPOC9TNWu23zXYPnlIP7rACfYJ0D cJG1qaIn8a5cKPdaQflGeeU= =lMV3 -----END PGP SIGNATURE----- --==========E37B5B3BC00012D52323==========-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 15:24:31 2006 Return-Path: X-Original-To: questions@freebsd.org 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 84F2816A4DA for ; Wed, 30 Aug 2006 15:24:31 +0000 (UTC) (envelope-from nomadlogic@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B2F343D69 for ; Wed, 30 Aug 2006 15:24:18 +0000 (GMT) (envelope-from nomadlogic@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so316073pye for ; Wed, 30 Aug 2006 08:24:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rFnNtBty8xFv0QFWPDM9t7OMQF72tSfNu9vDBFkglS7Q/FWh1Cy3ltgVc88SFhvI3CMgKRUpgsfS8Zyae6JFuplNY9q9GIxESrDk6xjo2Y0ncRYJMlGjhCJQ9NLUngig+h/Ppcz3XsO8cQpMoG0QAHrW6XYg1VYMjB6rGftsc4I= Received: by 10.35.95.1 with SMTP id x1mr1219427pyl; Wed, 30 Aug 2006 08:24:17 -0700 (PDT) Received: by 10.35.20.15 with HTTP; Wed, 30 Aug 2006 08:24:16 -0700 (PDT) Message-ID: <57d710000608300824p2d6e1701jdf2b8919fc06b5e8@mail.gmail.com> Date: Wed, 30 Aug 2006 08:24:16 -0700 From: "pete wright" To: freebsd@voidmain.net In-Reply-To: <44F59E0B.6070108@voidmain.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <44F59E0B.6070108@voidmain.net> Cc: questions@freebsd.org Subject: Re: Memory leak in PHP on FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 15:24:31 -0000 On 8/30/06, Tom Grove wrote: > I was reading http://www.bsdnews.com and ran across an article about a > memory leak in php and mysql on FreeBSD. This is fairly concerning > considering I run quite a few servers with this setup. I haven't been > able to find much documentation regarding this subject. > > It has been reported as a "permanent hole" which seems odd. However, if > there is a problem does anyone have any info? > > -Tom yea, i wouldn't really pay attention to this, from the article: "I'm just repeating what the server guys have told me. No, I don't want your offer of technical help." betting the admin's may have misunderstood something or misconfigured something... -pete -- ~~o0OO0o~~ Pete Wright www.nycbug.org NYC's *BSD User Group From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 16:05:05 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3442516A4E8 for ; Wed, 30 Aug 2006 16:05:05 +0000 (UTC) (envelope-from matteo.pillon@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D71B43D68 for ; Wed, 30 Aug 2006 16:05:00 +0000 (GMT) (envelope-from matteo.pillon@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so181807nfc for ; Wed, 30 Aug 2006 09:04:51 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=norqSzR/xdoSvF4vv5AFfKMfdOoh58g+MQo29z9sF/lPR1RH3+j+VOyA1zLYnt9AvyTZeNa2HmFU3v5huQYe/h7+lf49ToYTY5RIGBTRzVgo5Ra73CGg/GT4ebq9CtH8DkoYYDh/BirbSd7YTkuLjSYnLW7LiytV6Od/MsyTdDY= Received: by 10.49.8.1 with SMTP id l1mr3013731nfi; Wed, 30 Aug 2006 09:04:50 -0700 (PDT) Received: from neptune.octopus ( [80.104.86.69]) by mx.gmail.com with ESMTP id x24sm628149nfb.2006.08.30.09.04.33; Wed, 30 Aug 2006 09:04:50 -0700 (PDT) Received: by neptune.octopus (Postfix, from userid 1000) id ADF18C162; Wed, 30 Aug 2006 18:06:09 +0200 (CEST) Date: Wed, 30 Aug 2006 18:06:09 +0200 From: Matteo Pillon To: Ensel Sharon Message-ID: <20060830160609.GA16094@neptune.octopus> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: deleting with wildcards over ssh ... how ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 16:05:05 -0000 On Wed, Aug 30, 2006 at 11:06:39AM -0400, Ensel Sharon wrote: > I want to delete some remote files with a wildcard, running 'rm' over ssh. > [...] > So what is the _right_ way to do this ? ssh user@host 'sh -c "rm -rf "/some/testdir/*"' As * has to be expanded before is sent to rm. Bye. -- * Pillon Matteo From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 16:10:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AE1F516A4DD for ; Wed, 30 Aug 2006 16:10:09 +0000 (UTC) (envelope-from ml.diespammer@netfence.it) Received: from parrot.aev.net (parrot.aev.net [212.31.247.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE6D543D6D for ; Wed, 30 Aug 2006 16:10:07 +0000 (GMT) (envelope-from ml.diespammer@netfence.it) Received: from soth.ventu (adsl-ull-164-254.51-151.net24.it [151.51.254.164]) (authenticated bits=128) by parrot.aev.net (8.13.7/8.13.6) with ESMTP id k7UGPJwA099662 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 30 Aug 2006 18:25:25 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Received: from [10.1.2.18] (alamar.ventu [10.1.2.18]) by soth.ventu (8.13.8/8.13.3) with ESMTP id k7UG9kJ3005182 for ; Wed, 30 Aug 2006 18:09:46 +0200 (CEST) (envelope-from ml.diespammer@netfence.it) Message-ID: <44F5B851.9080701@netfence.it> Date: Wed, 30 Aug 2006 18:09:53 +0200 From: Andrea Venturoli User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.57 on 212.31.247.179 Subject: apache22 Checksum mismatch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 16:10:09 -0000 Hi. I'm trying to install apache22 on a 6.1 machine. Here what I get since days: > => MD5 Checksum OK for apache22/httpd-2.2.3.tar.bz2. > => SHA256 Checksum OK for apache22/httpd-2.2.3.tar.bz2. > => MD5 Checksum mismatch for apache22/apr_dbd_mysql.rev-50.c. > => SHA256 Checksum mismatch for apache22/apr_dbd_mysql.rev-50.c. > ===> Giving up on fetching files: apache22/apr_dbd_mysql.rev-50.c apache22/apr_dbd_mysql.rev-50.c I've obviously tried deleting that file and refetching, but I always end up the same. Is it happening to everyone? Any hint or plan to correct this? bye & Thanks av. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 16:18:13 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1D3FF16A4DF for ; Wed, 30 Aug 2006 16:18:13 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26D9743D45 for ; Wed, 30 Aug 2006 16:18:11 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by nf-out-0910.google.com with SMTP id k27so182241nfc for ; Wed, 30 Aug 2006 09:18:11 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=L/gzOBVqYNxU7raZwDF6xnAgK0+ESUHNaJsjPbd0tXhqbswm33n4wLXBuSY9/lwCP8K+Rs0+di5a3BOfZjuiTEvjgOdLAT3YZXeikCArs0gQDDyyB/k9B2dNYLU8HCfInUtehF+Jg32RVQ05U3PHczB+79q4Zl9FOQI2Re7lJng= Received: by 10.67.97.18 with SMTP id z18mr489145ugl; Wed, 30 Aug 2006 09:18:10 -0700 (PDT) Received: by 10.67.98.16 with HTTP; Wed, 30 Aug 2006 09:18:09 -0700 (PDT) Message-ID: <80f4f2b20608300918v6fdd7185w524301b1974bd4d2@mail.gmail.com> Date: Wed, 30 Aug 2006 12:18:09 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <80f4f2b20608300735l6d27916ar6eef3b420322b00c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20608300735l6d27916ar6eef3b420322b00c@mail.gmail.com> Subject: Re: free-bsd's mount_smbfs having issues with EMC Celerra X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 16:18:13 -0000 nevermind, my own dumb mistake with the connection string, first I didn't have the right stuff for logging into a domain, second time around when that was fixed, I had a "/" where there should have been an "@". Just point, laugh and make funny faces at me, I deserve it for the latter error. Thanks, -Jim Stapleton On 8/30/06, Jim Stapleton wrote: > I'm trying to connect my FreeBSD notebook to some shares at work, > which are on an EMC Celerra box, which uses the windows SMB protocol, > but I keep getting an odd error, which right now I'm suspecting is an > incompatability between the two, and I was wondering if anyone here > has had previous experience with this: > > 1) I can mount_smbfs shares on my windows desktop at home > 2) People here can mount drives on the celerra box from Windows and Linux > 3) Every time I try to map a share from FreeBSD, I get the error: > "mount_smbfs: unable to > open connection: resource temporarily unavailable" > > And no, I am not installing windows/linux on my notebook to get this > (and sound) working, each has it's own issues which make it much worse > for my uses. :-P > > Thanks > -Jim Stapleton > From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 16:18:17 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 4EE3716A4E6 for ; Wed, 30 Aug 2006 16:18:17 +0000 (UTC) (envelope-from fbsd@a1poweruser.com) Received: from mta13.adelphia.net (mta13.mail.adelphia.net [68.168.78.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B6A143D46 for ; Wed, 30 Aug 2006 16:18:16 +0000 (GMT) (envelope-from fbsd@a1poweruser.com) Received: from barbish ([70.39.69.56]) by mta13.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060830161811.CZFL59.mta13.adelphia.net@barbish> for ; Wed, 30 Aug 2006 12:18:11 -0400 From: "fbsd" To: "freebsd-questions@FreeBSD. ORG" Date: Wed, 30 Aug 2006 12:18:05 -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) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Cc: Subject: problem with phpMyAdmin port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 16:18:17 -0000 Just downloaded phpMyAdmin port make files on 6.1 system and ran "make install clear". Already had php5 and mysql5 previously installed and working. The phpMyAdmin port installed fine. Problem is the phpMyAdmin directory was installed as /www/phpMyAdmin and it should have been /usr/local/www/phpMyAdmin. This looks to me like port error to me. I tried to do work around by cp -R /www/phpMyAdmin /usr/local/www/ This copied all the files and subdirectories ok. When I try to run phpMyAdmin I get this error Fatal error: Call to undefined function preg_replace() in /usr/local/www/phpMyAdmin/libraries/sanitizing.lib.php on line 37 This again looks like another port error. Is the phpMyAdmin port broken???? From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 16:27:53 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 0914616A4DF for ; Wed, 30 Aug 2006 16:27:53 +0000 (UTC) (envelope-from danger@FreeBSD.org) Received: from virtual.micronet.sk (smtp.micronet.sk [84.16.32.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CA6643D49 for ; Wed, 30 Aug 2006 16:27:52 +0000 (GMT) (envelope-from danger@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by virtual.micronet.sk (Postfix) with ESMTP id 9BCEB10E6BE; Wed, 30 Aug 2006 18:27:38 +0200 (CEST) X-Virus-Scanned: by amavisd-new at virtual.micronet.sk Received: from virtual.micronet.sk ([127.0.0.1]) by localhost (virtual.micronet.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lkRaPVGFoxp7; Wed, 30 Aug 2006 18:27:34 +0200 (CEST) Received: from danger.mcrn.sk (danger.mcrn.sk [84.16.37.254]) by virtual.micronet.sk (Postfix) with ESMTP id AE4F310E6F4; Wed, 30 Aug 2006 18:27:34 +0200 (CEST) Date: Wed, 30 Aug 2006 18:27:48 +0200 From: Daniel Gerzo Organization: The FreeBSD Project X-Priority: 3 (Normal) Message-ID: <134367082.20060830182748@rulez.sk> To: "fbsd" In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: "freebsd-questions@FreeBSD. ORG" Subject: Re: problem with phpMyAdmin port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Gerzo List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 16:27:53 -0000 Hello fbsd, Wednesday, August 30, 2006, 6:18:05 PM, you wrote: > Just downloaded phpMyAdmin port make files on 6.1 system and ran > "make install clear". > Already had php5 and mysql5 previously installed and working. > The phpMyAdmin port installed fine. > Problem is the phpMyAdmin directory was installed as /www/phpMyAdmin > and it should have been /usr/local/www/phpMyAdmin. > This looks to me like port error to me. not sure here, wait for others' replies. > I tried to do work around by cp -R /www/phpMyAdmin /usr/local/www/ > This copied all the files and subdirectories ok. > When I try to run phpMyAdmin I get this error > Fatal error: Call to undefined function preg_replace() in > /usr/local/www/phpMyAdmin/libraries/sanitizing.lib.php on line 37 this is not error of the port. You are missing PCRE php extension. Install the lang/php4-extensions or php5-extensions port. > This again looks like another port error. > Is the phpMyAdmin port broken???? -- Best regards, Daniel mailto:danger@FreeBSD.org From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 17:14:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A9DBC16A4E2 for ; Wed, 30 Aug 2006 17:14:08 +0000 (UTC) (envelope-from wmoran@collaborativefusion.com) Received: from mx00.pub.collaborativefusion.com (mx00.pub.collaborativefusion.com [206.210.89.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id F390443D76 for ; Wed, 30 Aug 2006 17:14:06 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) (TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Wed, 30 Aug 2006 13:14:06 -0400 id 00056410.44F5C75E.000103F6 Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 30 Aug 2006 13:13:10 -0400 Date: Wed, 30 Aug 2006 13:14:05 -0400 From: Bill Moran To: Daniel Gerzo Message-Id: <20060830131405.94a656d7.wmoran@collaborativefusion.com> In-Reply-To: <134367082.20060830182748@rulez.sk> References: <134367082.20060830182748@rulez.sk> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: fbsd , "freebsd-questions@FreeBSD. ORG" Subject: Re: problem with phpMyAdmin port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 17:14:08 -0000 In response to Daniel Gerzo : > > When I try to run phpMyAdmin I get this error > > Fatal error: Call to undefined function preg_replace() in > > /usr/local/www/phpMyAdmin/libraries/sanitizing.lib.php on line 37 > > this is not error of the port. You are missing PCRE php extension. > Install the lang/php4-extensions or php5-extensions port. Actually, this _is_ an error in the port. The port should properly specify the pcre extension as a dependency. The workaround suggested will get you going, however. If this problem is reproducible, you should file a PR. Are you sure the port installed successfully? I just installed this port a few weeks ago and it worked fine. If you're ports tree is up to date, then these bugs are newly introduced. -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 17:20:53 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 09AB716A4DA for ; Wed, 30 Aug 2006 17:20:53 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9322643D46 for ; Wed, 30 Aug 2006 17:20:52 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so162745nzn for ; Wed, 30 Aug 2006 10:20:52 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=n01o+K0bOUDPrSZmcp7TmreHkuEL1J2XkOfGHo8exGE2sy0A4d5bV3OwiZK4H6Hmn+ud3D6kewpUjJOeWS8hRaSN/zKuXDUxSXXjDlZhFFk+LYKf3Qb6tiisAcJHmgBIi280ayeqpez651/TFBUbJWfJUFoA7kcMYoTJdxDWcXo= Received: by 10.65.93.18 with SMTP id v18mr1326327qbl; Wed, 30 Aug 2006 10:20:51 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Wed, 30 Aug 2006 10:20:51 -0700 (PDT) Message-ID: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> Date: Wed, 30 Aug 2006 19:20:51 +0200 From: "Jordi Carrillo" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 17:20:53 -0000 I've read that SMP should be disabled for performance issues (I did not know that before installing freebsd). I have a P4 3GHz with hyperthreading technology. I have the SMP-GENERIC kernel and it only launches one cpu. So, I've decided to disable SMP from BIOS. Is that ok?, knowing that I have a Smp enabled kernel? or should I install one without smp? If so, is there a way to install one already precompiled? Thanks in advance -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 17:30:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D862316A4F4 for ; Wed, 30 Aug 2006 17:30:23 +0000 (UTC) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2AEB43D76 for ; Wed, 30 Aug 2006 17:30:04 +0000 (GMT) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by bravo.pjkh.com (Postfix) with ESMTP id 3133813C868 for ; Wed, 30 Aug 2006 12:35:58 -0500 (CDT) Received: by bravo.pjkh.com (Postfix, from userid 1000) id D9DCF13C7E4; Wed, 30 Aug 2006 12:35:57 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by bravo.pjkh.com (Postfix) with ESMTP id D8E2913C7D5 for ; Wed, 30 Aug 2006 12:35:57 -0500 (CDT) Date: Wed, 30 Aug 2006 12:35:57 -0500 (CDT) From: Philip Hallstrom To: freebsd-questions@freebsd.org In-Reply-To: <44fyfe9rxb.fsf@be-well.ilk.org> Message-ID: <20060830123523.N9159@bravo.pjkh.com> References: <20060829180800.C70930@bravo.pjkh.com> <44fyfe9rxb.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: Any issue having multiple sound cards running at the same time in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 17:30:24 -0000 >> I've got a freebsd server in the garage that has a low end >> soundblaster (I think) card in it that I've been using to play music. >> Works just fine. We moved and now I'd like to be able to have >> different music play in different rooms (living, family, and outside). >> I can do all the other wiring for speakers... >> >> But was wondering if there are any problems having three sound cards >> in the box and have them all work at the same time. I'm currently >> using flac123 to play music and would probably continue to do so... >> >> Thoughts? > > In principle, there's no problem. But most software will only drive > one audio device at a time. Also, note that running long cables at > fairly low signal levels can degrade the audio quality... Good points... but no reason I couldn't run three flac123 processes and point each to their own /dev/ entry...? From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 17:47:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CF11D16A4E7 for ; Wed, 30 Aug 2006 17:47:43 +0000 (UTC) (envelope-from skylar@cs.earlham.edu) Received: from quark.cs.earlham.edu (cs.earlham.edu [159.28.230.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D81543D46 for ; Wed, 30 Aug 2006 17:47:34 +0000 (GMT) (envelope-from skylar@cs.earlham.edu) Received: from [128.95.231.218] (angband.gs.washington.edu [128.95.231.218]) (authenticated bits=0) by quark.cs.earlham.edu (8.13.6/8.13.3) with ESMTP id k7UHlK0v052446 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 Aug 2006 13:47:22 -0400 (EDT) (envelope-from skylar@cs.earlham.edu) X-Authentication-Warning: quark.cs.earlham.edu: Host angband.gs.washington.edu [128.95.231.218] claimed to be [128.95.231.218] Message-ID: <44F5CF0E.9020700@cs.earlham.edu> Date: Wed, 30 Aug 2006 10:46:54 -0700 From: Skylar Thompson Organization: Earlham College Computer Science Department User-Agent: Mail/News 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: Jordi Carrillo References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> In-Reply-To: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig487ADC619E7AD80871E27A8E" X-Greylist: Sender succeded SMTP AUTH authentication, not delayed by milter-greylist-1.6 (quark.cs.earlham.edu [159.28.230.3]); Wed, 30 Aug 2006 13:47:27 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.2/1623/Wed Jul 26 18:35:11 2006 on quark.cs.earlham.edu X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.56 on 159.28.230.3 X-Spam-Status: No, score=-2.5 required=8.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on quark.cs.earlham.edu Cc: freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: skylar@cs.earlham.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 17:47:43 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig487ADC619E7AD80871E27A8E Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Jordi Carrillo wrote: > I've read that SMP should be disabled for performance issues (I did > not know > that before installing freebsd). I have a P4 3GHz with hyperthreading > technology. I have the SMP-GENERIC kernel and it only launches one > cpu. So, > I've decided to disable SMP from BIOS. Is that ok?, knowing that I have= a > Smp enabled kernel? or should I install one without smp? If so, is > there a > way to install one already precompiled? > Thanks in advance > I believe that HTT was disabled in FreeBSD per security report FreeBSD-SA-05:09.htt (http://security.freebsd.org/advisories/FreeBSD-SA-05:09.htt.asc). If you want to enable, I believe you can set the loader.conf option machdep.hlt_logical_cpus to 2. Having SMP enabled on a uniprocessor box shouldn't give you any stability problems, but SMP does use a different locking mechanism that can affect performance. You will probably get slightly better performance if you run with an SMP-disabled kernel. --=20 -- Skylar Thompson (skylar@cs.earlham.edu) -- http://www.cs.earlham.edu/~skylar/ --------------enig487ADC619E7AD80871E27A8E Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (SunOS) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9c8Qsc4yyULgN4YRAjmuAJ97hk0s6o3hvZwW0w7mnlhXd61slwCggxE/ QTa2GUOmwlPdHMXsJ4W+dmg= =PBGK -----END PGP SIGNATURE----- --------------enig487ADC619E7AD80871E27A8E-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 17:58:13 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2D42716A4DA for ; Wed, 30 Aug 2006 17:58:13 +0000 (UTC) (envelope-from matt@atopia.net) Received: from saturn.atopia.net (saturn.atopia.net [72.36.141.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4F5043D46 for ; Wed, 30 Aug 2006 17:58:12 +0000 (GMT) (envelope-from matt@atopia.net) Received: from atopia.net (localhost.layeredtech.com [127.0.0.1]) by saturn.atopia.net (Postfix) with ESMTP id 495574AC35 for ; Wed, 30 Aug 2006 13:58:10 -0400 (EDT) Received: from 69.59.255.2 (SquirrelMail authenticated user matt) by atopia.net with HTTP; Wed, 30 Aug 2006 13:58:10 -0400 (EDT) Message-ID: <27514.69.59.255.2.1156960690.squirrel@atopia.net> Date: Wed, 30 Aug 2006 13:58:10 -0400 (EDT) From: "Matthew Juszczak" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.7 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Trying to get external monitor working X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 17:58:13 -0000 I have a Dell D810 Latitude. I don't necessarilly want to get "multiple monitors" working, but I do want to get an external monitor working. I put my laptop in the docking station, and with Windows or almost any version of Linux, I can do "Function F8" and it will go to the external display. However, with FreeBSD and X, it seems to ignore that. I assume this is just a missing key code map or something. Is there anyone that has experience with this that could assist? Thanks! Regards, Matt Juszczak From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 17:59:01 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0FB8C16A4DA for ; Wed, 30 Aug 2006 17:59:01 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68C9143D45 for ; Wed, 30 Aug 2006 17:59:00 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by wr-out-0506.google.com with SMTP id i21so114337wra for ; Wed, 30 Aug 2006 10:58:59 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=JLnmiWhUvktjIh6n9TsIxIw/4P4LWRyTQmgDtkL216qwnKX39pYJySh+ORBBM/O/aap6c4B/MoWQIVda+Ims5iSf9vCIxbxcLA0La9L7dnKlgT2JvTOO6jhG4XBumaH00rhAzcSiGRJUHhX9LDaBit0oOgyK4KzSatNAKfo/0+k= Received: by 10.65.176.7 with SMTP id d7mr1100149qbp; Wed, 30 Aug 2006 10:58:58 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Wed, 30 Aug 2006 10:58:58 -0700 (PDT) Message-ID: <94ff3700608301058r1b0f2308u7f7b9e86f55b610f@mail.gmail.com> Date: Wed, 30 Aug 2006 19:58:58 +0200 From: "Jordi Carrillo" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Install then reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 17:59:01 -0000 When I compile a new program from ports, freebsd takes quite a lot of RAM. Is that something right or it's a flaw? It does happen to you? The main problem is that not all memory used in compilation is freed, so it can be a problem (meaning rebooting) after compiling a very big software such as openoffice or gnome. -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 18:14:07 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 66B4E16A4DA; Wed, 30 Aug 2006 18:14:07 +0000 (UTC) (envelope-from fbsd@a1poweruser.com) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9B2143D53; Wed, 30 Aug 2006 18:14:06 +0000 (GMT) (envelope-from fbsd@a1poweruser.com) Received: from barbish ([70.39.69.56]) by mta10.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060830181405.BARZ24294.mta10.adelphia.net@barbish>; Wed, 30 Aug 2006 14:14:05 -0400 From: "fbsd" To: "Bill Moran" , "Daniel Gerzo" Date: Wed, 30 Aug 2006 14:14:05 -0400 Message-ID: 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 IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20060830131405.94a656d7.wmoran@collaborativefusion.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Cc: "freebsd-questions@FreeBSD. ORG" Subject: RE: problem with phpMyAdmin port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 18:14:07 -0000 -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Bill Moran Sent: Wednesday, August 30, 2006 1:14 PM To: Daniel Gerzo Cc: fbsd; freebsd-questions@FreeBSD. ORG Subject: Re: problem with phpMyAdmin port In response to Daniel Gerzo : > > When I try to run phpMyAdmin I get this error > > Fatal error: Call to undefined function preg_replace() in > > /usr/local/www/phpMyAdmin/libraries/sanitizing.lib.php on line 37 > > this is not error of the port. You are missing PCRE php extension. > Install the lang/php4-extensions or php5-extensions port. Actually, this _is_ an error in the port. The port should properly specify the pcre extension as a dependency. The workaround suggested will get you going, however. If this problem is reproducible, you should file a PR. Are you sure the port installed successfully? I just installed this port a few weeks ago and it worked fine. If you're ports tree is up to date, then these bugs are newly introduced. -- Bill Moran Collaborative Fusion Inc. ****************************************************** pkg_info shows php5-pcre-5.1.4 installed so is this not the correct pcre dependency? From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 18:32:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 65DD316A4E0 for ; Wed, 30 Aug 2006 18:32:08 +0000 (UTC) (envelope-from martin@saturn.pcs.ms) Received: from saturn.pcs.ms (228-148.1-85.cust.bluewin.ch [85.1.148.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CAC943D4C for ; Wed, 30 Aug 2006 18:32:02 +0000 (GMT) (envelope-from martin@saturn.pcs.ms) Received: from saturn.pcs.ms (localhost [127.0.0.1]) by saturn.pcs.ms (8.13.1/8.13.1) with ESMTP id k7UIaPQe048681; Wed, 30 Aug 2006 20:36:25 +0200 (CEST) (envelope-from martin@saturn.pcs.ms) Received: (from martin@localhost) by saturn.pcs.ms (8.13.1/8.13.1/Submit) id k7UIaOCD048676; Wed, 30 Aug 2006 20:36:24 +0200 (CEST) (envelope-from martin) Date: Wed, 30 Aug 2006 20:36:24 +0200 From: Martin Schweizer To: Bill Moran Message-ID: <20060830183624.GW506@saturn.pcs.ms> Mail-Followup-To: Bill Moran , Martin Schweizer , Martin Schweizer , freebsd-questions@freebsd.org References: <20060830143228.GA47646@saturn.pcs.ms> <20060830103528.937872e5.wmoran@collaborativefusion.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UJXkkAiHhNbsaLO7" Content-Disposition: inline In-Reply-To: <20060830103528.937872e5.wmoran@collaborativefusion.com> User-Agent: Mutt/1.4.2.1i Organization: PC-Service M. Schweizer GmbH, CH-8608 Bubikon, Switzerland X-PGP-Key: http://www.pc-service.ch/pgp/public_key.asc X-Fingerprint: EC21 CA4D 5C78 BC2D 73B7 10F9 C1AE 1691 D30F D239 Cc: freebsd-questions@freebsd.org, Martin Schweizer Subject: Re: CVS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Martin Schweizer List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 18:32:08 -0000 --UJXkkAiHhNbsaLO7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Bill Thank you for the hint. Am Wed, Aug 30, 2006 at 10:35:28AM -0400 Bill Moran schrieb: > In response to Martin Schweizer : >=20 > > Hello > >=20 > > Which ports does I need for a cvs system (client and server)? I searche= d=20 > > against "cvs" in ports but it gets a lot of links. Any hints are welcom= e. >=20 > CVS is included in the base FreeBSD system. >=20 > The ports you see are various addons. >=20 > --=20 > Bill Moran --=20 Regards Martin Schweizer PC-Service M. Schweizer GmbH; Bannholzstrasse 6; CH-8608 Bubikon Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch; public key : http://www.pc-service.ch/pgp/public_key.asc;=20 fingerprint: EC21 CA4D 5C78 BC2D 73B7 10F9 C1AE 1691 D30F D239; --UJXkkAiHhNbsaLO7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFE9dqowa4WkdMP0jkRArW3AKCZT3OIH3lmmCFY7iSdHzbg2tHJRgCg3JRf TTTci8UCXVBNwh8S5eXhNBE= =X9yM -----END PGP SIGNATURE----- --UJXkkAiHhNbsaLO7-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 18:32:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 88DBB16A4E0 for ; Wed, 30 Aug 2006 18:32:54 +0000 (UTC) (envelope-from h.nieser@xs4all.nl) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E63743D77 for ; Wed, 30 Aug 2006 18:32:44 +0000 (GMT) (envelope-from h.nieser@xs4all.nl) Received: from [192.168.1.64] (aphax.nl [82.92.29.227]) by smtp-vbr13.xs4all.nl (8.13.6/8.13.6) with ESMTP id k7UIVsEk036228 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 Aug 2006 20:32:02 +0200 (CEST) (envelope-from h.nieser@xs4all.nl) Message-ID: <44F5D920.1030306@xs4all.nl> Date: Wed, 30 Aug 2006 20:29:52 +0200 From: Hans Nieser User-Agent: Thunderbird 1.5.0.5 (X11/20060805) MIME-Version: 1.0 To: fbsd@a1poweruser.com References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: problem with phpMyAdmin port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 18:32:54 -0000 fbsd wrote: > > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Bill Moran > Sent: Wednesday, August 30, 2006 1:14 PM > To: Daniel Gerzo > Cc: fbsd; freebsd-questions@FreeBSD. ORG > Subject: Re: problem with phpMyAdmin port > > > In response to Daniel Gerzo : > >>> When I try to run phpMyAdmin I get this error >>> Fatal error: Call to undefined function preg_replace() in >>> /usr/local/www/phpMyAdmin/libraries/sanitizing.lib.php on line > 37 >> this is not error of the port. You are missing PCRE php extension. >> Install the lang/php4-extensions or php5-extensions port. > > Actually, this _is_ an error in the port. The port should properly > specify the pcre extension as a dependency. The workaround > suggested > will get you going, however. > > If this problem is reproducible, you should file a PR. > > Are you sure the port installed successfully? I just installed this > port a few weeks ago and it worked fine. If you're ports tree is > up to date, then these bugs are newly introduced. > > -- > Bill Moran > Collaborative Fusion Inc. > > ****************************************************** > > pkg_info shows php5-pcre-5.1.4 installed so is this not > the correct pcre dependency? > You have to make sure that the pcre extension is actually being loaded by PHP. Check that you have the following line un /usr/local/etc/php/extensions.ini: extension=pcre.so I believe this should have been added automatically though, but to double check that it is loaded, restart apache if you've got PHP running as a module, and check the output of phpinfo(); From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 18:35:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 425CF16A4E1 for ; Wed, 30 Aug 2006 18:35:18 +0000 (UTC) (envelope-from freebsdneophyte@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id D211543D88 for ; Wed, 30 Aug 2006 18:35:01 +0000 (GMT) (envelope-from freebsdneophyte@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so224603nfc for ; Wed, 30 Aug 2006 11:35:00 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=LH0XtTy5qhrTKgPyntEiiWwdz4fVRrzD8xA+UqthAzxYgObK/iZXsUTOBw0okIyM7RQPDtMqRtoK2YHXzuLsMf3vMJTMc4d8O1mZvh+odhuEuBKNLpdIr7ehij4SLOfVFa6ndQ2mgFbjxDskGf7rrSCDbCRpAU7LbP1t2gVEmiY= Received: by 10.48.242.19 with SMTP id p19mr101958nfh; Wed, 30 Aug 2006 11:35:00 -0700 (PDT) Received: by 10.49.26.13 with HTTP; Wed, 30 Aug 2006 11:35:00 -0700 (PDT) Message-ID: <4cfd6b120608301135o4adbe66fi9676607d343fec7b@mail.gmail.com> Date: Wed, 30 Aug 2006 11:35:00 -0700 From: "freebsd neophyte" To: freebsd-questions@freebsd.org, freebsd-questions-local@be-well.ilk.org In-Reply-To: <44k64q9s61.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4cfd6b120608291618r6c6010b2y5379d6a0d527de7e@mail.gmail.com> <44k64q9s61.fsf@be-well.ilk.org> Cc: Subject: Re: problems with creating bind9 under a jail (make: don't know how to make /usr/jail/bind9/usr/lib/libc.a. Stop) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 18:35:18 -0000 On 8/30/06, Lowell Gilbert wrote: > "freebsd neophyte" writes: > > > > ...snip... > > > > ------------------- > > # make world DESTDIR=/usr/jail/bind9 > > > > -------------------------------------------------------------- > >>>> Building an up-to-date make(1) > > -------------------------------------------------------------- > > make: don't know how to make /usr/jail/bind9/usr/lib/libc.a. Stop > > *** Error code 2 > > > > Stop in /usr/src. > > *** Error code 1 > > > > Stop in /usr/src. > > ------------------------ > > > > ...snip... > > > > Looks like you don't have a full source tree. > What did you mean by "pulled files from an FTP server"? > When you used cvsup, what kind of supfile did you use, > and did you have existing files in the source tree that > you were trying to update? > thanks for the reply. as for pulling from the FTP server. what i wanted to say was that i booted from a CD, but used an FTP server as my install medium. as for cvsup, i used the following: /usr/share/examples/cvsup/stable-supfile. as for the existing source tree, i used sysinstall to add all the sources, and then i used cvsup to update them. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 18:51:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D6BBE16A4E2 for ; Wed, 30 Aug 2006 18:51:35 +0000 (UTC) (envelope-from jwm-freebsd-questions@sentinelchicken.net) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 092AC43D6E for ; Wed, 30 Aug 2006 18:51:34 +0000 (GMT) (envelope-from jwm-freebsd-questions@sentinelchicken.net) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 30 Aug 2006 14:51:34 -0400 X-IronPort-AV: i="4.08,189,1154923200"; d="scan'208"; a="289730855:sNHT31631510" Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.7.5a-GA) with ESMTP id GVB82530; Wed, 30 Aug 2006 14:51:16 -0400 (EDT) Received: from 207-172-209-180.c3-0.bkl-ubr2.sbo-bkl.ma.cable.rcn.com (HELO skepsi.net) ([207.172.209.180]) by smtp01.lnh.mail.rcn.net with SMTP; 30 Aug 2006 14:51:12 -0400 X-IronPort-AV: i="4.08,189,1154923200"; d="scan'208"; a="267614476:sNHT26942220" Received: (qmail 68920 invoked from network); 30 Aug 2006 14:52:22 -0000 Received: from unknown (HELO crichton.skepsi.net) (10.0.0.101) by aeryn.skepsi.net with SMTP; 30 Aug 2006 14:52:22 -0000 Received: (nullmailer pid 68917 invoked by uid 1000); Wed, 30 Aug 2006 14:52:22 -0000 Date: Wed, 30 Aug 2006 14:52:22 +0000 From: Jason Morgan To: freebsd-questions@freebsd.org Message-ID: <20060830145222.GB65929@sentinelchicken.net> References: <94ff3700608301058r1b0f2308u7f7b9e86f55b610f@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <94ff3700608301058r1b0f2308u7f7b9e86f55b610f@mail.gmail.com> User-Agent: Mutt/1.5.12-2006-07-14 X-Junkmail-Status: score=10/50, host=mr08.lnh.mail.rcn.net X-Junkmail-SD-Raw: score=unknown, refid=str=0001.0A090204.44F5DCED.0062,ss=1,fgs=0, ip=207.172.4.11, so=2006-05-09 23:27:51, dmn=5.2.4/2006-05-04 Subject: Re: Install then reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 18:51:35 -0000 On Wed, Aug 30, 2006 at 07:58:58PM +0200, Jordi Carrillo wrote: > When I compile a new program from ports, freebsd takes quite a lot of RAM. > Is that something right or it's a flaw? It does happen to you? The main > problem is that not all memory used in compilation is freed, so it can be a > problem (meaning rebooting) after compiling a very big software such as > openoffice or gnome. How much memory FreeBSD uses when installing a port usually depends on the port. However, how are you determining that the memory is not freed up after the port is done installing? Are you running into situation where a huge percentage of your ram is being used during the build process, which then forces the system to swap *after* the install is complete? If you are determining the amount of free ram by simply looking at top(1), and the system is not swapping, then I don't think you have an issue. FreeBSD will free up the memory when it needs it. Cheer, Jason From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:05:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D069516A4DE for ; Wed, 30 Aug 2006 19:05:02 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id E16B643D68 for ; Wed, 30 Aug 2006 19:05:01 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so185174nzn for ; Wed, 30 Aug 2006 12:05:01 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=o6qw7TZprw8+H8okekeHXrOk8Co4NonQeSpz+BpLHOM4N/E0EBTWS8fM/h2LdiWQkbNv1orr5ST1HikajEOwJ7QJewiHGVhmR68KooKbbbjzWISgCHxGc1LAVUIzXngJkz6Bl2CPjKx4XcUlx5bsih3bAUQijNzi4XKw5q+5UMM= Received: by 10.65.239.13 with SMTP id q13mr1204833qbr; Wed, 30 Aug 2006 12:05:01 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Wed, 30 Aug 2006 12:05:00 -0700 (PDT) Message-ID: <94ff3700608301205x4b091709ufe366822e2aac39@mail.gmail.com> Date: Wed, 30 Aug 2006 21:05:00 +0200 From: "Jordi Carrillo" To: freebsd-questions@freebsd.org In-Reply-To: <20060830145222.GB65929@sentinelchicken.net> MIME-Version: 1.0 References: <94ff3700608301058r1b0f2308u7f7b9e86f55b610f@mail.gmail.com> <20060830145222.GB65929@sentinelchicken.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Fwd: Install then reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:05:02 -0000 In fact when compiling, freebsd uses lots of RAM, but then when finished, I don't see it frees the memory used. I see the ram consumption from the gnome system monitor. In any case, I have not payed a lot of attention since I haven't reach the point where freebsd has the need to use swap. Thanks anyway, ---------- Forwarded message ---------- From: Jason Morgan Date: 30/08/2006 16:52 Subject: Re: Install then reboot To: freebsd-questions@freebsd.org On Wed, Aug 30, 2006 at 07:58:58PM +0200, Jordi Carrillo wrote: > When I compile a new program from ports, freebsd takes quite a lot of RAM. > Is that something right or it's a flaw? It does happen to you? The main > problem is that not all memory used in compilation is freed, so it can be a > problem (meaning rebooting) after compiling a very big software such as > openoffice or gnome. How much memory FreeBSD uses when installing a port usually depends on the port. However, how are you determining that the memory is not freed up after the port is done installing? Are you running into situation where a huge percentage of your ram is being used during the build process, which then forces the system to swap *after* the install is complete? If you are determining the amount of free ram by simply looking at top(1), and the system is not swapping, then I don't think you have an issue. FreeBSD will free up the memory when it needs it. Cheer, Jason _______________________________________________ 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" -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:06:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8FAF816A4DF for ; Wed, 30 Aug 2006 19:06:33 +0000 (UTC) (envelope-from bounce-1467467-1123525@lists.surfnetkids.com) Received: from lists.surfnetkids.com (lists.surfnetkids.com [69.25.194.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 6C36F43D6D for ; Wed, 30 Aug 2006 19:06:32 +0000 (GMT) (envelope-from bounce-1467467-1123525@lists.surfnetkids.com) Message-Id: X-lyris-type: unsubscribed To: freebsd-questions@freebsd.org From: "Lyris ListManager" Date: Wed, 30 Aug 2006 15:05:07 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit Subject: [Surfing the Net with Kids] Goodbye X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:06:33 -0000 This message confirms your cancellation of the free weekly "Surfing the Net with Kids" newsletter. ................................. RSS EDITION ................................. If you would prefer an RSS edition of the newsletter, you will find it at http://www.surfnetkids.com/newsletter-rss.xml For details on the what, how, and why of RSS, see: http://www.surfnetkids.com/rss.htm ............................... EXIT SURVEY ............................... If you could take a moment to answer two questions for me via email to mailto:newsletter@surfnetkids.com, it will help me create a better newsletter: 1) Why are you canceling? 2) What can I do to make the Surfnetkids newsletter better? Thank you, Barbara J. Feldman Surfing the Net with Kids http://www.surfnetkids.com P.S. If you would like to sign up under a different email address, you can do so at: http://www.surfnetkids.com/emailedition.htm From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:12:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 07C1816A4E0 for ; Wed, 30 Aug 2006 19:12:07 +0000 (UTC) (envelope-from freebsd@orchid.homeunix.org) Received: from orchid.homeunix.org (aud102.neoplus.adsl.tpnet.pl [83.27.11.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57FC843D77 for ; Wed, 30 Aug 2006 19:12:05 +0000 (GMT) (envelope-from freebsd@orchid.homeunix.org) Received: from [192.168.1.66] (blackacidevil.orchid.homeunix.org [192.168.1.66]) (authenticated bits=0) by orchid.homeunix.org (8.13.6/8.13.6) with ESMTP id k7UJBscY007091 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 30 Aug 2006 21:12:02 +0200 (CEST) (envelope-from freebsd@orchid.homeunix.org) Message-ID: <44F5E2FA.4010202@orchid.homeunix.org> Date: Wed, 30 Aug 2006 21:11:54 +0200 From: Karol Kwiatkowski User-Agent: Thunderbird 1.5.0.5 (X11/20060731) MIME-Version: 1.0 To: Philip Hallstrom References: <20060829180800.C70930@bravo.pjkh.com> <44fyfe9rxb.fsf@be-well.ilk.org> <20060830123523.N9159@bravo.pjkh.com> In-Reply-To: <20060830123523.N9159@bravo.pjkh.com> X-Enigmail-Version: 0.94.1.0 OpenPGP: id=06E09309; url=http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigB56A1180AE39806D6053343E" X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on orchid.homeunix.org X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: Any issue having multiple sound cards running at the same time in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@orchid.homeunix.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:12:07 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigB56A1180AE39806D6053343E Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 30/08/2006 19:35, Philip Hallstrom wrote: >>> I've got a freebsd server in the garage that has a low end >>> soundblaster (I think) card in it that I've been using to play music.= >>> Works just fine. We moved and now I'd like to be able to have >>> different music play in different rooms (living, family, and outside)= =2E >>> I can do all the other wiring for speakers... >>> >>> But was wondering if there are any problems having three sound cards >>> in the box and have them all work at the same time. I'm currently >>> using flac123 to play music and would probably continue to do so... >>> >>> Thoughts? >> >> In principle, there's no problem. But most software will only drive >> one audio device at a time. Also, note that running long cables at >> fairly low signal levels can degrade the audio quality... >=20 > Good points... but no reason I couldn't run three flac123 processes and= > point each to their own /dev/ entry...? I'm using two sound cards all the time. One (Audigy, PCI) to make noise in my room (music/tv/etc), and the second (nVidia, onboard) to make calls with skype or listen to music late at night. I don't know about flac123 - have a look at it's manpage - but at least with xmms, mplayer and skype (that's what I've got here) you can change output /dev/dsp device to whichever you like. HTH, Karol --=20 Karol Kwiatkowski OpenPGP: http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc --------------enigB56A1180AE39806D6053343E Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9eL6ezeoPAwGIYsRCO6uAJ90gofWvndNGIY7p0SXWE4sSaHXigCfQDjd CjlGuSHJHa5otyH0HHFisxA= =KFMd -----END PGP SIGNATURE----- --------------enigB56A1180AE39806D6053343E-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:23:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 99F9A16A4DA for ; Wed, 30 Aug 2006 19:23:23 +0000 (UTC) (envelope-from freebsd@orchid.homeunix.org) Received: from orchid.homeunix.org (aud102.neoplus.adsl.tpnet.pl [83.27.11.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03B9643D73 for ; Wed, 30 Aug 2006 19:23:19 +0000 (GMT) (envelope-from freebsd@orchid.homeunix.org) Received: from [192.168.1.66] (blackacidevil.orchid.homeunix.org [192.168.1.66]) (authenticated bits=0) by orchid.homeunix.org (8.13.6/8.13.6) with ESMTP id k7UJNHmM007674 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 30 Aug 2006 21:23:18 +0200 (CEST) (envelope-from freebsd@orchid.homeunix.org) Message-ID: <44F5E5A5.3080208@orchid.homeunix.org> Date: Wed, 30 Aug 2006 21:23:17 +0200 From: Karol Kwiatkowski User-Agent: Thunderbird 1.5.0.5 (X11/20060731) MIME-Version: 1.0 To: Jordi Carrillo References: <94ff3700608301058r1b0f2308u7f7b9e86f55b610f@mail.gmail.com> <20060830145222.GB65929@sentinelchicken.net> <94ff3700608301205x4b091709ufe366822e2aac39@mail.gmail.com> In-Reply-To: <94ff3700608301205x4b091709ufe366822e2aac39@mail.gmail.com> X-Enigmail-Version: 0.94.1.0 OpenPGP: id=06E09309; url=http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigC40B255FD80FF49FD881A45D" X-Virus-Scanned: ClamAV 0.88.4/1775/Wed Aug 30 20:43:22 2006 on orchid.homeunix.org X-Virus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: Fwd: Install then reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@orchid.homeunix.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:23:23 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigC40B255FD80FF49FD881A45D Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable [format recovered, please don't top post to the list] On 30/08/2006 21:05, Jordi Carrillo wrote: >> ---------- Forwarded message ---------- >> From: Jason Morgan >> Date: 30/08/2006 16:52 >> Subject: Re: Install then reboot >> To: freebsd-questions@freebsd.org >>=20 >> On Wed, Aug 30, 2006 at 07:58:58PM +0200, Jordi Carrillo wrote: >>> When I compile a new program from ports, freebsd takes quite a lot of= >>> RAM. >>> Is that something right or it's a flaw? It does happen to you? The ma= in >>> problem is that not all memory used in compilation is freed, so it ca= n be >> a >>> problem (meaning rebooting) after compiling a very big software such = as >>> openoffice or gnome. >>=20 >> How much memory FreeBSD uses when installing a port usually depends on= >> the port. However, how are you determining that the memory is not >> freed up after the port is done installing? Are you running into >> situation where a huge percentage of your ram is being used during the= >> build process, which then forces the system to swap *after* the >> install is complete? If you are determining the amount of free ram by >> simply looking at top(1), and the system is not swapping, then I don't= >> think you have an issue. FreeBSD will free up the memory when it needs= >> it. >>=20 >> Cheer, >> Jason > > In fact when compiling, freebsd uses lots of RAM, but then when finishe= d, I > don't see it frees the memory used. I see the ram consumption from the > gnome > system monitor. In any case, I have not payed a lot of attention since = I > haven't reach the point where freebsd has the need to use swap. > Thanks anyway, Basically, "free memory is wasted memory". It's in the FAQ: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/misc.html#TOP-FREEME= M Regards, Karol --=20 Karol Kwiatkowski OpenPGP: http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc --------------enigC40B255FD80FF49FD881A45D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9eWlezeoPAwGIYsRCMNYAJwLgAF/s9maLwKfJ+0UZGn9YJu0vgCeIJTK AXHJiRiE9NjoMADApg53nk0= =/l9N -----END PGP SIGNATURE----- --------------enigC40B255FD80FF49FD881A45D-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:25:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6C6E916A4DE for ; Wed, 30 Aug 2006 19:25:38 +0000 (UTC) (envelope-from avanalstine@kc.rr.com) Received: from ms-smtp-01.rdc-kc.rr.com (ms-smtp-01.rdc-kc.rr.com [24.94.166.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F0F443D96 for ; Wed, 30 Aug 2006 19:25:34 +0000 (GMT) (envelope-from avanalstine@kc.rr.com) Received: from [192.168.1.100] (CPE-69-76-196-233.kc.res.rr.com [69.76.196.233]) by ms-smtp-01.rdc-kc.rr.com (8.13.6/8.13.6) with ESMTP id k7UJPWd3009771 for ; Wed, 30 Aug 2006 14:25:33 -0500 (CDT) Message-ID: <44F5E61A.8040302@kc.rr.com> Date: Wed, 30 Aug 2006 14:25:14 -0500 From: Aaron VanAlstine User-Agent: Thunderbird 1.5.0.5 (X11/20060814) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: HP 1020 and CUPS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:25:38 -0000 I am trying to add my HP LaserJet 1020 printer via CUPS page at http://localhost:631/admin. CUPS will not accept my root username & password to install the driver. Any ideas? lptest > /dev/ulpt0 returns: /dev/ulpt0: Device busy. grep ulpt /var/run/dmesg.boot returns: module_register: module uhub/ulpt already exists! Module uhub/ulpt failed to register: 17 ulpt0: Hewlett-Packard HP LaserJet 1020, rev 2.00/1.00, addr 2, iclass 7/1 ulpt0: using bi-directional mode From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:25:56 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 41E5216A4DE for ; Wed, 30 Aug 2006 19:25:56 +0000 (UTC) (envelope-from scuba@centroin.com.br) Received: from raptor.centroin.com (raptor.centroin.com [64.251.27.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D68A43D82 for ; Wed, 30 Aug 2006 19:25:45 +0000 (GMT) (envelope-from scuba@centroin.com.br) Received: from trex.centroin.com.br (trex.centroin.com.br [200.225.63.134]) (authenticated bits=0) by raptor.centroin.com (8.13.3/8.13.3/CIP SMTP HOST) with ESMTP id k7UJPuU0004451 for ; Wed, 30 Aug 2006 16:26:04 -0300 (BRT) (envelope-from scuba@centroin.com.br) Date: Wed, 30 Aug 2006 16:25:54 -0300 (BRT) From: scuba@centroin.com.br Sender: mpsouza@trex.centroin.com.br To: freebsd-questions@freebsd.org Message-ID: <20060830161613.N91154@trex.centroin.com.br> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: mkisofs: out of memory X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:25:56 -0000 Hi all, I'm trying to write a DVD-RW with a directory created with rsnapshot, but there are some problem with mkisofs: "Not enough memory" # mkisofs -R -J -o /data/rsnap.iso /data/.snapshots mkisofs: Cannot allocate memory. Not enough memory The machine has more then 350MB of free memory and 1GB of swap, but mkisofs exausts memory and start to use swap when the problem happen. The volume I'm trying to copy has 4 GB. The same problem happen with growisofs, and K3b front end. System FreeBSD 5.4. Any clue? - Marcelo From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:32:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9743F16A4DD for ; Wed, 30 Aug 2006 19:32:28 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout5.cac.washington.edu (mxout5.cac.washington.edu [140.142.32.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5FAD43D69 for ; Wed, 30 Aug 2006 19:32:27 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout5.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7UJWRuU003340 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 30 Aug 2006 12:32:27 -0700 X-Auth-Received: from [128.208.5.99] (nilakantha.cs.washington.edu [128.208.5.99]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7UJWQCw017395 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Wed, 30 Aug 2006 12:32:27 -0700 Message-ID: <44F5E7C9.20104@u.washington.edu> Date: Wed, 30 Aug 2006 12:32:25 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060829180800.C70930@bravo.pjkh.com> <44fyfe9rxb.fsf@be-well.ilk.org> <20060830123523.N9159@bravo.pjkh.com> <44F5E2FA.4010202@orchid.homeunix.org> In-Reply-To: <44F5E2FA.4010202@orchid.homeunix.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.2.0.264296, Antispam-Engine: 2.4.0.264935, Antispam-Data: 2006.8.30.120942 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: Re: Any issue having multiple sound cards running at the same time in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:32:28 -0000 Karol Kwiatkowski wrote: > On 30/08/2006 19:35, Philip Hallstrom wrote: > >>>> I've got a freebsd server in the garage that has a low end >>>> soundblaster (I think) card in it that I've been using to play music. >>>> Works just fine. We moved and now I'd like to be able to have >>>> different music play in different rooms (living, family, and outside). >>>> I can do all the other wiring for speakers... >>>> >>>> But was wondering if there are any problems having three sound cards >>>> in the box and have them all work at the same time. I'm currently >>>> using flac123 to play music and would probably continue to do so... >>>> >>>> Thoughts? >>>> >>> In principle, there's no problem. But most software will only drive >>> one audio device at a time. Also, note that running long cables at >>> fairly low signal levels can degrade the audio quality... >>> >> Good points... but no reason I couldn't run three flac123 processes and >> point each to their own /dev/ entry...? >> > > I'm using two sound cards all the time. One (Audigy, PCI) to make > noise in my room (music/tv/etc), and the second (nVidia, onboard) to > make calls with skype or listen to music late at night. > > I don't know about flac123 - have a look at it's manpage - but at > least with xmms, mplayer and skype (that's what I've got here) you can > change output /dev/dsp device to whichever you like. > > HTH, > > Karol Just looking at the source a bit for libao and flac123, it appears that flac123 is capable of using multiple sound daemons to send information out to the soundcard. So, if you configure OSS and arts (assuming you have arts installed) differently in terms of which default device the daemon uses when playing sound, you should be ok I think. Other than that, I think you're stuck because OSS doesn't support sound input from multiple sources, and last I remember arts and the rest that actually supported taking sound from multiple inputs didn't support outputting sound on multiple cards simultaneously. -Garrett From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:36:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 5EA8C16A4E0 for ; Wed, 30 Aug 2006 19:36:07 +0000 (UTC) (envelope-from phoenix.lists@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB35343D49 for ; Wed, 30 Aug 2006 19:35:58 +0000 (GMT) (envelope-from phoenix.lists@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so240008nfc for ; Wed, 30 Aug 2006 12:35:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:organization:to:subject:date:user-agent:cc:references:in-reply-to:x-face:mime-version:content-type:content-transfer-encoding:message-id; b=DYt1PfadinvTQGhtvF7IGV37/bRa+B2qceo0ryeYjGM8TZl3y63pMRroxaCgz243jDWrQMm4qHtGYn4LdNXN2mDwwRU696j9LhizlsjfnStVZ9zBR9Tzhm4pCO3e9Vv4y3eGMJodN2wur9an+Du/WTwBsHNAI+W0qahK+EJ+trM= Received: by 10.49.93.13 with SMTP id v13mr112686nfl; Wed, 30 Aug 2006 12:35:57 -0700 (PDT) Received: from sp0-host.localdomain ( [85.202.171.205]) by mx.gmail.com with ESMTP id 8sm385006hug.2006.08.30.12.35.56; Wed, 30 Aug 2006 12:35:56 -0700 (PDT) From: Simon Phoenix Organization: Phoenix Lab. To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 22:35:50 +0300 User-Agent: KMail/1.9.3 References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> In-Reply-To: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> X-Face: "=L]82cHM+NGLiS.'>u\lu0j9cWt=ccFg>G~.],2MSJ!1{46\L-nW{fVinB14}"(=?utf-8?q?f09I0=3A=0A=09=60so=5FzFTao=7B?=:}]wp:TJ\^>7-Oa`tQY,Tqlz!GMaqqf\Ra; 0`ebm?*-'P+)FpXRP]-)}%@}"=?utf-8?q?+42=7B+gT=24C6HucdR=25LJR=0A=09G?=(V4m; ?|$7CUzt MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1403052.6LP9TTR76p"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200608302235.59034.phoenix.lists@gmail.com> Cc: Jordi Carrillo Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:36:07 -0000 --nextPart1403052.6LP9TTR76p Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 30 August 2006 20:20, Jordi Carrillo wrote: > I've read that SMP should be disabled for performance issues (I did not > know that before installing freebsd). I have a P4 3GHz with hyperthreading > technology. I have the SMP-GENERIC kernel and it only launches one cpu. S= o, > I've decided to disable SMP from BIOS. Is that ok?, knowing that I have a > Smp enabled kernel? or should I install one without smp? If so, is there a > way to install one already precompiled? > Thanks in advance Try here:=20 http://www.bsdforums.org/forums/showthread.php?t=3D152&goto=3Dnextnewest Good luck! =2D-=20 Best regards, Simon Phoenix (Phoenix Lab.) =2D-------------------------------------------------------------- KeyID: 0x2569D30B =46ingerprint: 78FC 5C40 07CC D331 148E CC79 84B8 D514 2569 D30B =2D-------------------------------------------------------------- --nextPart1403052.6LP9TTR76p Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBE9eiehLjVFCVp0wsRA8HcAKCQZDHPiMiQXW0heAWXfJ/z4RilNgCg2JJY L5k9N0va9EoiBKCEwKpPuZc= =QfFA -----END PGP SIGNATURE----- --nextPart1403052.6LP9TTR76p-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 19:48:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7A8DD16A4E9 for ; Wed, 30 Aug 2006 19:48:26 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83106.mail.mud.yahoo.com (web83106.mail.mud.yahoo.com [216.252.101.35]) by mx1.FreeBSD.org (Postfix) with SMTP id 6EEB943D7B for ; Wed, 30 Aug 2006 19:48:13 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 65787 invoked by uid 60001); 30 Aug 2006 18:12:40 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=ZMy507yNRT9H2hK26FcKV0URuX0Mf6ILJOABD4+212PsZYuBbocBU7OnKCGYn88R9uX2dlvTcLVFJcjcGDmcP2P2fXPxBn48iuB6sEwPg8lmPsl3rvcMI8L0702ivrAvJr7h/JaE6yVZ78Z1HwrhX0MY1hZzpISDisCzFAid0i4= ; Message-ID: <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> Received: from [63.240.228.37] by web83106.mail.mud.yahoo.com via HTTP; Wed, 30 Aug 2006 11:12:39 PDT Date: Wed, 30 Aug 2006 11:12:39 -0700 (PDT) From: backyard To: Jordi Carrillo , freebsd-questions@freebsd.org In-Reply-To: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 19:48:26 -0000 --- Jordi Carrillo wrote: > I've read that SMP should be disabled for > performance issues (I did not know > that before installing freebsd). I have a P4 3GHz > with hyperthreading > technology. I have the SMP-GENERIC kernel and it > only launches one cpu. So, > I've decided to disable SMP from BIOS. Is that ok?, > knowing that I have a > Smp enabled kernel? or should I install one without > smp? If so, is there a > way to install one already precompiled? > Thanks in advance > > -- > http://jordilin.wordpress.com > _______________________________________________ > 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" > if the system runs with one cpu now and you don't enable smp with HT with the sysctl variable then you should be ok. If your not doing SMP then recompiling the kernel for single processor mode will make things run a little quicker because the SMP code won't come into play. with HT disabling in FreeBSD is more for the security issues about a potential exploit whereby one process in one pipe can access the priveledged information of a process in another pipe because the two cores share one processor cache and thus one cache table. To my knowledge this hasn't been exploited yet. If you just install the generic kernel you it should be only the uniprocessor one. I would just do a: cd /usr/src && make buildworld && make KERNCONF=GENERIC buildkernel && make KERNCONF=GENERIC installkernel as opposed to a binary version assuming you haven't updated yet you won't have to install world but I believe it must have the build in the source tree to build a kernel. On your P4 though the difference between SMP and uniproc may not be worth the trouble because I don't think much of a gain would be made. on a P1 a much different story... if you aren't concerned with bad users or hackers hitting the box I would just enable HT with the sysctl variable. This will not make things run slower at all, just (in theory) less secure, which is why the veriable was created in the first place as I recall. If you are concerned I would wait until you update your system and then just build a GENERIC/CUSTOM kernel without the SMP option set. -brian From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:02:17 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 482E216A4E1 for ; Wed, 30 Aug 2006 20:02:17 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FD6843D72 for ; Wed, 30 Aug 2006 20:02:05 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so197468nzn for ; Wed, 30 Aug 2006 13:02:04 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=k9rlhSHYnxuDqKmbQs8H625QJGviX7hZhDqDWzxe/lL8EIknSORUyaYgbMLM8ebBngqYh/v2poGP29rlkikFB760pIdlfJlSr5Q6nOHEGH75kgONmk0qfrrYXQTWauQ3fcBSvNhnNytwaP7Ax3xm88Nw4rxN6rBqnyj4pGxER5A= Received: by 10.64.250.3 with SMTP id x3mr1319919qbh; Wed, 30 Aug 2006 13:02:04 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Wed, 30 Aug 2006 13:02:04 -0700 (PDT) Message-ID: <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> Date: Wed, 30 Aug 2006 22:02:04 +0200 From: "Jordi Carrillo" To: backyard1454-bsd@yahoo.com In-Reply-To: <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> MIME-Version: 1.0 References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:02:17 -0000 2006/8/30, backyard : > > > > --- Jordi Carrillo wrote: > > > I've read that SMP should be disabled for > > performance issues (I did not know > > that before installing freebsd). I have a P4 3GHz > > with hyperthreading > > technology. I have the SMP-GENERIC kernel and it > > only launches one cpu. So, > > I've decided to disable SMP from BIOS. Is that ok?, > > knowing that I have a > > Smp enabled kernel? or should I install one without > > smp? If so, is there a > > way to install one already precompiled? > > Thanks in advance > > > > -- > > http://jordilin.wordpress.com > > _______________________________________________ > > 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" > > > > if the system runs with one cpu now and you don't > enable smp with HT with the sysctl variable then you > should be ok. If your not doing SMP then recompiling > the kernel for single processor mode will make things > run a little quicker because the SMP code won't come > into play. > > with HT disabling in FreeBSD is more for the security > issues about a potential exploit whereby one process > in one pipe can access the priveledged information of > a process in another pipe because the two cores share > one processor cache and thus one cache table. To my > knowledge this hasn't been exploited yet. > > If you just install the generic kernel you it should > be only the uniprocessor one. I would just do a: > > cd /usr/src && make buildworld && make > KERNCONF=GENERIC buildkernel && make KERNCONF=GENERIC > installkernel > > as opposed to a binary version assuming you haven't > updated yet you won't have to install world but I > believe it must have the build in the source tree to > build a kernel. On your P4 though the difference > between SMP and uniproc may not be worth the trouble > because I don't think much of a gain would be made. on > a P1 a much different story... > > if you aren't concerned with bad users or hackers > hitting the box I would just enable HT with the sysctl > variable. This will not make things run slower at all, > just (in theory) less secure, which is why the > veriable was created in the first place as I recall. > If you are concerned I would wait until you update > your system and then just build a GENERIC/CUSTOM > kernel without the SMP option set. > > > -brian > I will disable smp from bios. If I have a smp kernel, I suppose there will be no problem after all. Would that be ok? The problem with having SMP enabled is that the smp kernel only detects one cpu and the system monitor only features one cpu as well as gkrellm (in Linux it shows two cpus). When compiling the system monitor shows the cpu at a maximum of 50%, so what's going on with the other 50%? writing machdep.hlt_logical_cpus to 2 in loader.conf does not solve anything. -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:03:39 2006 Return-Path: X-Original-To: questions@freebsd.org 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 BB03416A4DA for ; Wed, 30 Aug 2006 20:03:39 +0000 (UTC) (envelope-from ambargal@cisco.com) Received: from sj-iport-4.cisco.com (sj-iport-4.cisco.com [171.68.10.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8401743D69 for ; Wed, 30 Aug 2006 20:03:07 +0000 (GMT) (envelope-from ambargal@cisco.com) Received: from sj-dkim-5.cisco.com ([171.68.10.79]) by sj-iport-4.cisco.com with ESMTP; 30 Aug 2006 13:02:54 -0700 X-IronPort-AV: i="4.08,189,1154934000"; d="scan'208,217"; a="1851264424:sNHT371253988" Received: from sj-core-3.cisco.com (sj-core-3.cisco.com [171.68.223.137]) by sj-dkim-5.cisco.com (8.12.11.20060308/8.12.11) with ESMTP id k7UK2r6k007959 for ; Wed, 30 Aug 2006 13:02:53 -0700 Received: from xbh-sjc-211.amer.cisco.com (xbh-sjc-211.cisco.com [171.70.151.144]) by sj-core-3.cisco.com (8.12.10/8.12.6) with ESMTP id k7UK2rw7004984 for ; Wed, 30 Aug 2006 13:02:53 -0700 (PDT) Received: from xmb-sjc-231.amer.cisco.com ([128.107.191.73]) by xbh-sjc-211.amer.cisco.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 30 Aug 2006 13:02:53 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Wed, 30 Aug 2006 13:02:53 -0700 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Upgrading BSD Thread-Index: AcbMb0cHSj0uiDIKSeWz+KBCxdU+Uw== From: "Amita Bargal \(ambargal\)" To: X-OriginalArrivalTime: 30 Aug 2006 20:02:53.0820 (UTC) FILETIME=[4769F3C0:01C6CC6F] DKIM-Signature: a=rsa-sha1; q=dns; l=2184; t=1156968173; x=1157832173; c=relaxed/simple; s=sjdkim5002; h=Content-Type:From:Subject:Content-Transfer-Encoding:MIME-Version; d=cisco.com; i=ambargal@cisco.com; z=From:=22Amita=20Bargal=20\(ambargal\)=22=20 |Subject:Upgrading=20BSD; X=v=3Dcisco.com=3B=20h=3DRcTk3fnJHB7iILpIQ0IWseSwll8=3D; b=RhSBN1NQuBIBIQQC10LQ2nANtkSHwop/aDK1hO8AD7j/EyFSVPTpwjB9gWmB8iI/V5tr8E5w baXDppUIRoz00j5tkLRJ1l1/sIJhl/pDuQF4gSSJP3o9QMi5YU7xKCHT; Authentication-Results: sj-dkim-5.cisco.com; header.From=ambargal@cisco.com; dkim=pass ( 59 extraneous bytes; sig from cisco.com verified; ); Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Upgrading BSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:03:39 -0000 Hi, =20 I have a machine which has BSD 4.8 on it. Is it possible to upgrade to version 6.0 without affecting/deleting/losing any files currently present on the machine. =20 $ uname -a FreeBSD tcp-01-pc7 4.8-RELEASE FreeBSD 4.8-RELEASE #1: Fri Jul 18 10:43:30 PDT 2003 devtest@tcp-pc3:/usr/devtest/kame/freebsd4/sys/compile/tcp-pc3 i386 $=20 =20 Thanks, Amita From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:08:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C9B4916A4E6 for ; Wed, 30 Aug 2006 20:08:57 +0000 (UTC) (envelope-from elfus@earthlink.net) Received: from pop-borzoi.atl.sa.earthlink.net (pop-borzoi.atl.sa.earthlink.net [207.69.195.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id F04CC43DC0 for ; Wed, 30 Aug 2006 20:08:32 +0000 (GMT) (envelope-from elfus@earthlink.net) Received: from dialup-4.240.186.246.dial1.phoenix1.level3.net ([4.240.186.246]) by pop-borzoi.atl.sa.earthlink.net with esmtp (Exim 3.36 #1) id 1GIWMJ-0002WE-00 for freebsd-questions@freebsd.org; Wed, 30 Aug 2006 16:08:23 -0400 User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.0.6 Date: Wed, 30 Aug 2006 13:08:29 -0700 From: Tracy Rapier To: Message-ID: Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Subject: {Classmates#889-142}read it immediately X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:08:57 -0000 I want to cancel my membership as soon as possible. Thank you, Jane From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:11:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 953F716A4DA for ; Wed, 30 Aug 2006 20:11:34 +0000 (UTC) (envelope-from andriyb@desmaint.com) Received: from desmaint.radiant.net (desmaint.radiant.net [207.232.108.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBC4D43D67 for ; Wed, 30 Aug 2006 20:11:16 +0000 (GMT) (envelope-from andriyb@desmaint.com) content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Wed, 30 Aug 2006 13:11:04 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Message-ID: <540EE4AEDEEAE3418715F9B95446582D7FDD27@groucho.dmsivan.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Playing Audio CDs Thread-Index: AcbMAsjfR/O9NaqTRl6gv6nFZFLz0gAbIrkg From: "Andriy Babiy" To: "Viswas Nair" , Cc: Subject: Re: Playing Audio CDs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:11:34 -0000 --- Viswas Nair wrote: > I am new to BSD and have mplayer installed > (Gmplayer) and I do not see the > option to play an Audio CD, only CDs, files and > DVDs. How do I get Audio > CD's to play? Can they be mounted, if so how? Is > there any > specific audio alone CD player (GUI based) that you > suggest? KsCD in KDE environment. You don't need to mount an AudioCD. Make sure you connected your CD/DVD device audio output to the sound card. > Also, whats the most commonly used or popular CD + > DVD burning software used > in BSD? Try k3b. I like it. > Thanks in advance. Andriy From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:16:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1D4E116A4EB for ; Wed, 30 Aug 2006 20:16:41 +0000 (UTC) (envelope-from daniel@unisul.br) Received: from unisul.br (mail.unisul.br [200.18.12.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75E6843DDF for ; Wed, 30 Aug 2006 20:15:33 +0000 (GMT) (envelope-from daniel@unisul.br) Received: from antivirus (antivirus-tro.unisul.br [10.1.2.16]) by unisul.br (8.12.5/8.12.5) with SMTP id k7UKFH0X059451 for ; Wed, 30 Aug 2006 17:15:17 -0300 (BRT) Received: from 10.1.2.15 by antivirus (InterScan VirusWall 6); Wed, 30 Aug 2006 17:15:22 -0300 Received: from atidaniel (daniel.redes-tro.unisul.br [10.1.100.41]) by relay.unisul.br (8.12.5/8.12.6) with ESMTP id k7UKFFcL059435 for ; Wed, 30 Aug 2006 17:15:16 -0300 (BRT) (envelope-from daniel@unisul.br) Message-Id: <200608302015.k7UKFFcL059435@relay.unisul.br> From: "Daniel Bitencourt Cadorin" To: Date: Wed, 30 Aug 2006 17:15:20 -0300 Organization: Unisul - Universidade do Sul de Santa Catarina MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Thread-Index: AcbMcQQIA+mr6qRKS9Oa6uaPspU2lg== X-TM-AS-Product-Ver: : ISVW-6.0.0.1396-3.6.0.1039-14660001 X-TM-AS-Result: : Yes--5,803500-0-31-1 X-TM-AS-Category-Info: : 31:0,000000 X-TM-AS-MatchedID: : =?us-ascii?B?NzAwODg3LTcwMTU2OS03MDA5?= =?us-ascii?B?MjItNzEwNDgzLTcwMDcyMy03MDM4NjgtNzAzNjE1LTcxMDkyOS03?= =?us-ascii?B?MDM0ODMtNzAxNjUwLTcwNjk1MC03MTA1MTUtNzAwMzQ0LTcwNzEw?= =?us-ascii?B?MS0xMDEwOQ==?= Subject: Client oracle for FreeBSD 5.4! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: daniel@unisul.br List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:16:41 -0000 I need to connect in a server of data base oracle 9i through the = FreeBSD. Exists one client oracle for the FreeBSD? How I can make? =20 Thank you!=A0 Daniel Bitencourt Cadorin From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:19:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 74A3216A4DA for ; Wed, 30 Aug 2006 20:19:24 +0000 (UTC) (envelope-from xj2106@columbia.edu) Received: from serrano.cc.columbia.edu (serrano.cc.columbia.edu [128.59.29.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2478743DBA for ; Wed, 30 Aug 2006 20:19:16 +0000 (GMT) (envelope-from xj2106@columbia.edu) Received: from photon.homelinux.org (dyn-carl-201-40.dyn.columbia.edu [160.39.201.40]) (user=xj2106 mech=PLAIN bits=0) by serrano.cc.columbia.edu (8.13.7/8.13.6) with ESMTP id k7UKJAEo012836 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Wed, 30 Aug 2006 16:19:11 -0400 (EDT) To: freebsd-questions@freebsd.org From: Xiao-Yong Jin Mail-Followup-To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 16:19:10 -0400 Message-ID: <873bbem0xt.fsf@photon.homelinux.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/23.0.0 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-No-Spam-Score: Local X-Scanned-By: MIMEDefang 2.48 on 128.59.29.6 Subject: Clean way to install font packs for Acrobat Reader? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:19:24 -0000 Hi, is there a port to only install the different font packs for acroread7? Basically, I don't want the interface to be in other language, but for some pdf files without embedded fonts these Asian or European font packs provided in Acrobat's website are indeed needed. If you are familiar with Gentoo's portage system, there is a portage called acroread-asianfonts for simply installing the font packs. Xiao-Yong -- ,,, (o o) ---ooO-(_)-Ooo--- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:21:55 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1056316A4E0 for ; Wed, 30 Aug 2006 20:21:55 +0000 (UTC) (envelope-from ralphellis@netscape.ca) Received: from smtp-2.vancouver.ipapp.com (smtp-2.vancouver.ipapp.com [216.152.192.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6296D43D73 for ; Wed, 30 Aug 2006 20:21:31 +0000 (GMT) (envelope-from ralphellis@netscape.ca) Received: from [192.168.123.100] ([172.167.25.230]) by smtp-2.vancouver.ipapp.com ; Wed, 30 Aug 2006 13:20:50 -0700 From: Ralph Ellis To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 16:20:40 -0700 User-Agent: KMail/1.9.3 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608301620.41025.ralphellis@netscape.ca> X-Rcpt-To: X-Country: US Subject: Re: Upgrading BSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:21:55 -0000 On Wednesday 30 August 2006 1:02 pm, Amita Bargal (ambargal) wrote: > Hi, > > I have a machine which has BSD 4.8 on it. Is it possible to upgrade to > version 6.0 without affecting/deleting/losing any files currently > present on the machine. > > $ uname -a > FreeBSD tcp-01-pc7 4.8-RELEASE FreeBSD 4.8-RELEASE #1: Fri Jul 18 > 10:43:30 PDT 2003 > devtest@tcp-pc3:/usr/devtest/kame/freebsd4/sys/compile/tcp-pc3 i386 > $ > > > Thanks, > Amita > _______________________________________________ > 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" Usually you have to upgrade from major release to major release i.e. 4.8 to 5.5, 5.5 to 6.1 etc. However, if you are only protecting data files then copy them to a cd, dvd or separate disk drive and do a clean install of 6.1. If you want to protect configuration files then you may have to upgrade step by step. Upgrading using the make buildworld, make build kernel, make install kernel, reboot, make install world, mergemaster process is time comsuming. If you only need to protect data, then copy it off and do a clean install. Are you using this for a server or a desktop? Ralph Ellis From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:24:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9F50F16A4FF for ; Wed, 30 Aug 2006 20:24:52 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87B7E43D6E for ; Wed, 30 Aug 2006 20:24:39 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 50FDED9F5A5 for ; Wed, 30 Aug 2006 16:24:34 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Wed, 30 Aug 2006 16:24:35 -0400 X-Sasl-enc: cvI5HTZJB3sL8pE2zUBsrYYEOH6Y5AY4F12vDx9chM3h 1156969474 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id ED5847766 for ; Wed, 30 Aug 2006 16:24:34 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 21:24:19 +0100 User-Agent: KMail/1.9.3 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200608302124.21833.list-freebsd-2004@morbius.sent.com> Subject: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:24:52 -0000 What's the canonical way of mounting the Linux procfs at boot-time? I've seen several recommendations to add the following to fstab: linproc /compat/linux/proc linprocfs rw 0 0 But in a standard installation, this mount-point is really under /usr, which isn't mounted until pass 2. If I change the pass number to 2, it fails with an "unexpected inconsistencies" error. I presume this is because mount is trying to fsck it, and failing to find fsck_linprocfs. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:25:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 DAA7316A4DD for ; Wed, 30 Aug 2006 20:25:24 +0000 (UTC) (envelope-from eoghanj@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4705443DAB for ; Wed, 30 Aug 2006 20:24:44 +0000 (GMT) (envelope-from eoghanj@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so252237nfc for ; Wed, 30 Aug 2006 13:24:43 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=Fo+AXXzZ6yrftn4dGWN53oEu22uw8l669gn3mlxNsPKTX5zl39FEwLZWczVVtj6+dkiuVm/35V7vJ0GhLidB0khWxQ6n08oz8W4bITMqpPc7x1lW/PYWwdG2Yh8NWFtkHGqzCIwIXHqi9gRCYaHvqbPlCnHWGXp+ydd+EaRPNnk= Received: by 10.48.48.18 with SMTP id v18mr203174nfv; Wed, 30 Aug 2006 13:24:42 -0700 (PDT) Received: from ?192.168.1.34? ( [212.2.169.171]) by mx.gmail.com with ESMTP id b1sm198760nfe.2006.08.30.13.24.41; Wed, 30 Aug 2006 13:24:42 -0700 (PDT) In-Reply-To: <200608302015.k7UKFFcL059435@relay.unisul.br> References: <200608302015.k7UKFFcL059435@relay.unisul.br> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: eoghan Date: Wed, 30 Aug 2006 21:24:38 +0100 To: daniel@unisul.br X-Mailer: Apple Mail (2.752.2) Cc: freebsd-questions@freebsd.org Subject: Re: Client oracle for FreeBSD 5.4! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:25:24 -0000 On 30 Aug 2006, at 21:15, Daniel Bitencourt Cadorin wrote: > I need to connect in a server of data base oracle 9i through the > FreeBSD. > Exists one client oracle for the FreeBSD? How I can make? > Thank you! > > Daniel Bitencourt Cadorin Hi Theres some info here you might find useful: http://tomclegg.net/oracle9i-bsd5 Other info about oracle client here aswell. Good luck. Eoghan From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:28:20 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CFC4116A4DF for ; Wed, 30 Aug 2006 20:28:20 +0000 (UTC) (envelope-from xj2106@columbia.edu) Received: from serrano.cc.columbia.edu (serrano.cc.columbia.edu [128.59.29.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id D056B43D78 for ; Wed, 30 Aug 2006 20:28:18 +0000 (GMT) (envelope-from xj2106@columbia.edu) Received: from photon.homelinux.org (dyn-carl-201-40.dyn.columbia.edu [160.39.201.40]) (user=xj2106 mech=PLAIN bits=0) by serrano.cc.columbia.edu (8.13.7/8.13.6) with ESMTP id k7UKSG80014840 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Wed, 30 Aug 2006 16:28:17 -0400 (EDT) To: freebsd-questions@freebsd.org From: Xiao-Yong Jin Mail-Followup-To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 16:28:16 -0400 Message-ID: <87y7t6kly7.fsf@photon.homelinux.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/23.0.0 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-No-Spam-Score: Local X-Scanned-By: MIMEDefang 2.48 on 128.59.29.6 Subject: Upgrade ghostscript? How? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:28:20 -0000 Hi, I wanna upgrade ghostscript to ghostscript-gpl-8.15 from ghostscript-gnu-7.07. I've installed the gpl version via port. But when I tried to pkg_delete the gnu version, it said pkg_delete: package 'ghostscript-gnu-7.07_15' is required by these other packages and may not be deinstalled: ImageMagick-6.2.8.5 auctex-11.83 cm-super-0.3.3 dvipdfmx-20050831_2 dvipsk-tetex-5.95a_1 freetype-tools-1.3.1_3 ghostscript-gnu-commfont-7.07_3 gv-3.6.1 hplip-0.9.11 html2ps-letter-1.0.b4_1,1 teTeX-3.0_1 teTeX-base-3.0_9 transfig-3.2.4_1 xdvik-tetex-22.84.10 zh-CJK-4.6.0_1 zh-moefonts-cid-1.0_3 I'll probably also delete ghostscript-gnu-commfont-7.07_3 and zh-moefonts-cid-1.0_3. But is there anything more I should consider harmful to my system when I switch ghostscript gnu to gpl? Or simply pkg_delete by --force is enough? Thank you, Xiao-Yong -- ,,, (o o) ---ooO-(_)-Ooo--- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:35:42 2006 Return-Path: X-Original-To: questions@freebsd.org 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 E7AFA16A4DA for ; Wed, 30 Aug 2006 20:35:42 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB26F43D6D for ; Wed, 30 Aug 2006 20:35:35 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 30 Aug 2006 16:35:34 -0400 X-IronPort-AV: i="4.08,189,1154923200"; d="scan'208"; a="289810950:sNHT360092728" Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.7.5a-GA) with ESMTP id GVC42931; Wed, 30 Aug 2006 16:35:15 -0400 (EDT) Received: from 65-78-24-149.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.24.149]) by smtp01.lnh.mail.rcn.net with ESMTP; 30 Aug 2006 16:35:10 -0400 X-IronPort-AV: i="4.08,189,1154923200"; d="scan'208"; a="267690032:sNHT75298616" From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17653.62988.974248.299465@jerusalem.litteratus.org> Date: Wed, 30 Aug 2006 16:33:16 -0400 To: questions@freebsd.org In-Reply-To: <200608301620.41025.ralphellis@netscape.ca> References: <200608301620.41025.ralphellis@netscape.ca> X-Mailer: VM 7.17 under 21.5 (beta27) "fiddleheads" XEmacs Lucid X-Junkmail-Status: score=10/50, host=mr08.lnh.mail.rcn.net X-Junkmail-SD-Raw: score=unknown, refid=str=0001.0A090208.44F5F54D.0031,ss=1,fgs=0, ip=207.172.4.11, so=2006-05-09 23:27:51, dmn=5.2.4/2006-05-04 Cc: Subject: Re: Upgrading BSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:35:43 -0000 Ralph Ellis writes: > Usually you have to upgrade from major release to major release > i.e. 4.8 to 5.5, 5.5 to 6.1 etc. However, if you are only > protecting data files then copy them to a cd, dvd or separate > disk drive and do a clean install of 6.1. If you want to protect > configuration files then you may have to upgrade step by > step. Upgrading using the make buildworld, make build kernel, > make install kernel, reboot, make install world, mergemaster > process is time comsuming. If you only need to protect data, then > copy it off and do a clean install. Optimal solution (if available): change address on old disk, set jumper to "read-only" install new disk install FreeBSD on new disk mount old disk "read-only" copy as desired Seriously: you can* source upgrade across major versions - been there - but every iteration is another possible failure mode. You'll also be stuck with all the crud left over from previous versions. Robert Huff * - unless the Release Engineering folks say otherwise From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 20:44:45 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 480B516A4DA for ; Wed, 30 Aug 2006 20:44:45 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout1.cac.washington.edu (mxout1.cac.washington.edu [140.142.32.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51B7143D5E for ; Wed, 30 Aug 2006 20:44:39 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout1.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7UKichi015382 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 30 Aug 2006 13:44:39 -0700 X-Auth-Received: from [192.168.0.40] (dsl254-013-145.sea1.dsl.speakeasy.net [216.254.13.145]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k7UKic3h003343 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Wed, 30 Aug 2006 13:44:38 -0700 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <87y7t6kly7.fsf@photon.homelinux.org> References: <87y7t6kly7.fsf@photon.homelinux.org> X-Gpgmail-State: !signed Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <5963FD62-DB7C-4109-BE87-54780FB7D0EF@u.washington.edu> Content-Transfer-Encoding: 7bit From: Garrett Cooper Date: Wed, 30 Aug 2006 13:49:15 -0700 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.752.2) X-PMX-Version: 5.2.0.264296, Antispam-Engine: 2.4.0.264935, Antispam-Data: 2006.8.30.130443 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0' Subject: Re: Upgrade ghostscript? How? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 20:44:45 -0000 On Aug 30, 2006, at 1:28 PM, Xiao-Yong Jin wrote: > Hi, I wanna upgrade ghostscript to ghostscript-gpl-8.15 from > ghostscript-gnu-7.07. I've installed the gpl version via port. But > when I tried to pkg_delete the gnu version, it said > > pkg_delete: package 'ghostscript-gnu-7.07_15' is required by these > other packages > and may not be deinstalled: > ImageMagick-6.2.8.5 > auctex-11.83 > cm-super-0.3.3 > dvipdfmx-20050831_2 > dvipsk-tetex-5.95a_1 > freetype-tools-1.3.1_3 > ghostscript-gnu-commfont-7.07_3 > gv-3.6.1 > hplip-0.9.11 > html2ps-letter-1.0.b4_1,1 > teTeX-3.0_1 > teTeX-base-3.0_9 > transfig-3.2.4_1 > xdvik-tetex-22.84.10 > zh-CJK-4.6.0_1 > zh-moefonts-cid-1.0_3 > > I'll probably also delete ghostscript-gnu-commfont-7.07_3 and > zh-moefonts-cid-1.0_3. But is there anything more I should consider > harmful to my system when I switch ghostscript gnu to gpl? Or simply > pkg_delete by --force is enough? > > Thank you, > Xiao-Yong Try pkg_delete -f {name of all ghostscript files here}. Then install the newest port version and be sure to run pkgdb -F afterwards so you can fix the package database, such that it references the right ghostscript. -Garrett From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:10:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6DE6416A4DA for ; Wed, 30 Aug 2006 21:10:02 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7A5F43D46 for ; Wed, 30 Aug 2006 21:10:01 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so339365wxd for ; Wed, 30 Aug 2006 14:10:01 -0700 (PDT) Received: by 10.70.108.18 with SMTP id g18mr79629wxc; Wed, 30 Aug 2006 13:55:00 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id h38sm6381wxd.2006.08.30.13.54.56; Wed, 30 Aug 2006 13:54:58 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 919F0BEBA for ; Wed, 30 Aug 2006 16:54:55 -0400 (EDT) Received: from [192.168.0.4] (boss.seibercom.net [192.168.0.4]) (Authenticated sender: gerard@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTP id E2356BA01 for ; Wed, 30 Aug 2006 16:54:54 -0400 (EDT) Date: Wed, 30 Aug 2006 16:55:09 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom In-Reply-To: <200608302124.21833.list-freebsd-2004@morbius.sent.com> References: <200608302124.21833.list-freebsd-2004@morbius.sent.com> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20060830165204.AC8F.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Mailer: Becky! ver. 2.25 [en] X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:10:02 -0000 RW wrote: > What's the canonical way of mounting the Linux procfs at boot-time? > > I've seen several recommendations to add the following to fstab: > > linproc /compat/linux/proc linprocfs rw 0 0 > > But in a standard installation, this mount-point is really under /usr, which > isn't mounted until pass 2. If I change the pass number to 2, it fails with > an "unexpected inconsistencies" error. I presume this is because mount is > trying to fsck it, and failing to find fsck_linprocfs. This is what I have in my /etc/fstab file: linprocfs /compat/linux/proc linprocfs rw 0 0 Is this what you are referring to? -- Gerard Seibert gerard@seibercom.net From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:30:39 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8FE4716A4DF for ; Wed, 30 Aug 2006 21:30:39 +0000 (UTC) (envelope-from cholland@redmoonbroadband.com) Received: from mx.redmoonhosting.com (mx.redmoonhosting.com [206.123.81.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54E6443D5D for ; Wed, 30 Aug 2006 21:30:38 +0000 (GMT) (envelope-from cholland@redmoonbroadband.com) X-ASG-Debug-ID: 1156973436-5ca200490000-jLrpzn X-Barracuda-URL: http://emailfirewall.redmoonhosting.com:80/cgi-bin/mark.cgi X-Barracuda-Connect: exchange.redmoonbroadband.com[206.123.80.131] X-Barracuda-Start-Time: 1156973436 Received: from exchange.redmoonbroadband.com (exchange.redmoonbroadband.com [206.123.80.131]) by mx.redmoonhosting.com (Spam Firewall) with ESMTP id 6B462116E29 for ; Wed, 30 Aug 2006 16:30:37 -0500 (CDT) Content-class: urn:content-classes:message MIME-Version: 1.0 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 X-ASG-Orig-Subj: Customized Install CD Date: Wed, 30 Aug 2006 16:30:36 -0500 Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=SHA1; boundary="----=_NextPart_000_014E_01C6CC51.9F23AB10" Message-ID: <4B3EE484EEA4F344BBB62F8316489986803423@corpsrv.RedMoon.local> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Customized Install CD thread-index: AcbMU6Vq24SAYD4GRY+OrF+6jo07vQ== From: "Cody Holland" To: X-Barracuda-Virus-Scanned: by RedMoon eMail Firewall at redmoonhosting.com X-Barracuda-Spam-Score: 0.00 X-Barracuda-Spam-Status: No, SCORE=0.00 using per-user scores of TAG_LEVEL=2.0 QUARANTINE_LEVEL=4.0 KILL_LEVEL=8.0 Subject: Customized Install CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:30:39 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_014E_01C6CC51.9F23AB10 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I'm looking at trying to build my own customized FreeBSD install CD. The purpose of this is to be able to install FreeBSD with customized kernel, certain packages installed and some added scripts of my own. Being that I have no idea how to do this I have two questions. 1. Is this feasible? 2. Is there some good literature regarding this on the internet that you recommend? Any information would be greatly appreciated! LIFE'S A GARDEN....DIG IT! ------=_NextPart_000_014E_01C6CC51.9F23AB10 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIKgjCCBKIw ggOKoAMCAQICEES+DItQACS0EdM2JSVnyYkwDQYJKoZIhvcNAQEFBQAwga4xCzAJBgNVBAYTAlVT MQswCQYDVQQIEwJVVDEXMBUGA1UEBxMOU2FsdCBMYWtlIENpdHkxHjAcBgNVBAoTFVRoZSBVU0VS VFJVU1QgTmV0d29yazEhMB8GA1UECxMYaHR0cDovL3d3dy51c2VydHJ1c3QuY29tMTYwNAYDVQQD Ey1VVE4tVVNFUkZpcnN0LUNsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgRW1haWwwHhcNOTkwNzA5 MTcyODUwWhcNMTkwNzA5MTczNjU4WjCBrjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYD VQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYD VQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xNjA0BgNVBAMTLVVUTi1VU0VSRmlyc3QtQ2xp ZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBFbWFpbDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC ggEBALI5haTyfatBO2JGN67NwWB1vDll+UoaR6K5zEjMapjVTTUZuaRC5c5J4oovHnzSMQfHTrSD ZJ0uKdWiZMSFvYVRNXmkTmiQexx6pJKoF/KYFfKTzMmkMpW7DE8wvZigC4vlbhuiRvp4vKJvq1le pS/Pytptqi/rrKGzaqq3Lmc1i3nhHmmI4uZGzaCl6r4LznY6eg6b6vzaJ1s9cx8i5khhxkzzabGo Lhu21DEgLLyCio6kDqXXiUP8FlqvHXHXEVnauocNr/rz4cLwpMVnjNbWVDreCqS6A3ezZcj9HtN0 YqoYymiTHqGFfvVHZcv4TVcodNI0/zC27vZiMBSMLOsCAwEAAaOBuTCBtjALBgNVHQ8EBAMCAcYw DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUiYJnfcSdJnAAS7RQSHzePa4Ebn0wWAYDVR0fBFEw TzBNoEugSYZHaHR0cDovL2NybC51c2VydHJ1c3QuY29tL1VUTi1VU0VSRmlyc3QtQ2xpZW50QXV0 aGVudGljYXRpb25hbmRFbWFpbC5jcmwwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMEMA0G CSqGSIb3DQEBBQUAA4IBAQCxbWFdphp/fKtK5DD8U28lJMbK7eIxXCsO7u5hVW8EPs853sUbSZTk 6yBMtOaeUC5y2Y31qqOzStpWHGCXgNyCoq1KvYor/wsJtMbXIARF5M2AAbq6K27OqteS/uSv6/Qm HRYqf2wwlTcvMxKsf93H0RGMUZiy0KOR0K32n56Dkx4dQrhGr2tm8Jt/6uMDAuUCUcGq1TWdckAD iboxHcUQaFKe36KFxVwIpnjmU0+x6LfTFJ6TpsNk46x+cc28n+kDG8z76awxwa98FXQCmcOyR6bC MmHXx29IJFEnodWHVfJ7j5g9Fp7udbb40I7y88auKFun8PM2F/zDBdPKA0pUMIIF2DCCBMCgAwIB AgIRAMs+MJIM6ZPKO852o9fcgC8wDQYJKoZIhvcNAQEFBQAwga4xCzAJBgNVBAYTAlVTMQswCQYD VQQIEwJVVDEXMBUGA1UEBxMOU2FsdCBMYWtlIENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1Qg TmV0d29yazEhMB8GA1UECxMYaHR0cDovL3d3dy51c2VydHJ1c3QuY29tMTYwNAYDVQQDEy1VVE4t VVNFUkZpcnN0LUNsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgRW1haWwwHhcNMDYwNzE3MDAwMDAw WhcNMDcwNzE3MjM1OTU5WjCB5TE1MDMGA1UECxMsQ29tb2RvIFRydXN0IE5ldHdvcmsgLSBQRVJT T05BIE5PVCBWQUxJREFURUQxRjBEBgNVBAsTPVRlcm1zIGFuZCBDb25kaXRpb25zIG9mIHVzZTog aHR0cDovL3d3dy5jb21vZG8ubmV0L3JlcG9zaXRvcnkxHzAdBgNVBAsTFihjKTIwMDMgQ29tb2Rv IExpbWl0ZWQxFTATBgNVBAMTDENvZHkgSG9sbGFuZDEsMCoGCSqGSIb3DQEJARYdY2hvbGxhbmRA cmVkbW9vbmJyb2FkYmFuZC5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOf5QHKcJPpU bCNf3hNt/2ujaWikbVgHKCQy+erL/M8SVPF38ta1f2UbBwuk6SCEg2aB/L4cPTGGMtqt7hHH5WHP ukNYFc+In1fGUZBOObmatKLFrfEYWRc1KqOe8dU5iEF9pihnN/plgNKVZPwfNd0BWN9Ydb5ArowT jlC25j3JAgMBAAGjggI6MIICNjAfBgNVHSMEGDAWgBSJgmd9xJ0mcABLtFBIfN49rgRufTAdBgNV HQ4EFgQUqvxDe97tbgXnektv32NPxd5ZikEwDgYDVR0PAQH/BAQDAgWgMAwGA1UdEwEB/wQCMAAw IAYDVR0lBBkwFwYIKwYBBQUHAwQGCysGAQQBsjEBAwUCMBEGCWCGSAGG+EIBAQQEAwIFIDBGBgNV HSAEPzA9MDsGDCsGAQQBsjEBAgEBATArMCkGCCsGAQUFBwIBFh1odHRwczovL3NlY3VyZS5jb21v ZG8ubmV0L0NQUzCBpQYDVR0fBIGdMIGaMEygSqBIhkZodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9V VE4tVVNFUkZpcnN0LUNsaWVudEF1dGhlbnRpY2F0aW9uYW5kRW1haWwuY3JsMEqgSKBGhkRodHRw Oi8vY3JsLmNvbW9kby5uZXQvVVROLVVTRVJGaXJzdC1DbGllbnRBdXRoZW50aWNhdGlvbmFuZEVt YWlsLmNybDCBhgYIKwYBBQUHAQEEejB4MDsGCCsGAQUFBzAChi9odHRwOi8vY3J0LmNvbW9kb2Nh LmNvbS9VVE5BZGRUcnVzdENsaWVudENBLmNydDA5BggrBgEFBQcwAoYtaHR0cDovL2NydC5jb21v ZG8ubmV0L1VUTkFkZFRydXN0Q2xpZW50Q0EuY3J0MCgGA1UdEQQhMB+BHWNob2xsYW5kQHJlZG1v b25icm9hZGJhbmQuY29tMA0GCSqGSIb3DQEBBQUAA4IBAQAC+DOwDIfABSSk37bT8dY+Y6jgrhl3 EWJHuwPIuSzQ4ZMej+jzpYr4a9BiQi30n2oK4HEEcDVjN+m4SnKMZl9JJpQMVNalG1ax5iq1zxNp kFiTyXkbbo52FDoVQx7qakM0yggXJ0tMLMRDBBqCoffYmw9U4n1uV0rflNeYrgfYYmm4ZcAvI3Uw NcZVS0Hb1OySYofpF5+u3gpYserVBoQrmRvldYL+AZX9gw7o1HJyfGKE8NWC2I42cvBd/T3S+k07 kD8RWSbWeSg92ISebEpS3U+VBaFbErgxQcPMFZVjmhXl2lMINdvsy6xvZVVoRQROY5tXV8Am8w5Z Ms82BOHFMYID5zCCA+MCAQEwgcQwga4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJVVDEXMBUGA1UE BxMOU2FsdCBMYWtlIENpdHkxHjAcBgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEhMB8GA1UE CxMYaHR0cDovL3d3dy51c2VydHJ1c3QuY29tMTYwNAYDVQQDEy1VVE4tVVNFUkZpcnN0LUNsaWVu dCBBdXRoZW50aWNhdGlvbiBhbmQgRW1haWwCEQDLPjCSDOmTyjvOdqPX3IAvMAkGBSsOAwIaBQCg ggJ4MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTA2MDgzMDIxMzAz NlowIwYJKoZIhvcNAQkEMRYEFPQ3GcaZeOXCELauXR/UZG916d0+MGcGCSqGSIb3DQEJDzFaMFgw CgYIKoZIhvcNAwcwDgYIKoZIhvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIHMA0GCCqG SIb3DQMCAgEoMAcGBSsOAwIaMAoGCCqGSIb3DQIFMIHVBgkrBgEEAYI3EAQxgccwgcQwga4xCzAJ BgNVBAYTAlVTMQswCQYDVQQIEwJVVDEXMBUGA1UEBxMOU2FsdCBMYWtlIENpdHkxHjAcBgNVBAoT FVRoZSBVU0VSVFJVU1QgTmV0d29yazEhMB8GA1UECxMYaHR0cDovL3d3dy51c2VydHJ1c3QuY29t MTYwNAYDVQQDEy1VVE4tVVNFUkZpcnN0LUNsaWVudCBBdXRoZW50aWNhdGlvbiBhbmQgRW1haWwC EQDLPjCSDOmTyjvOdqPX3IAvMIHXBgsqhkiG9w0BCRACCzGBx6CBxDCBrjELMAkGA1UEBhMCVVMx CzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEeMBwGA1UEChMVVGhlIFVTRVJU UlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xNjA0BgNVBAMT LVVUTi1VU0VSRmlyc3QtQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBFbWFpbAIRAMs+MJIM6ZPK O852o9fcgC8wDQYJKoZIhvcNAQEBBQAEgYA9sPSjnW6dL2mQmoPpvcPSC/VvBO7uy76LWSlNKq6j HDhubz0lhcBDDOLhLS8NTymbrdgCTCr1mGDsse+GvakRALMvGNVtSsks2eXqjWw+c1uakrba3mHM 7HrxNtKZYL9vHDQQhHxZu1mCuTCx3nyIMsdzNX/Ft80B6uYKK8Tv7AAAAAAAAA== ------=_NextPart_000_014E_01C6CC51.9F23AB10-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:31:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4221116A4DE for ; Wed, 30 Aug 2006 21:31:08 +0000 (UTC) (envelope-from skylar@cs.earlham.edu) Received: from quark.cs.earlham.edu (cs.earlham.edu [159.28.230.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id E439D43D60 for ; Wed, 30 Aug 2006 21:31:02 +0000 (GMT) (envelope-from skylar@cs.earlham.edu) Received: from [128.95.231.218] (angband.gs.washington.edu [128.95.231.218]) (authenticated bits=0) by quark.cs.earlham.edu (8.13.6/8.13.3) with ESMTP id k7ULUnqR063878 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 Aug 2006 17:30:54 -0400 (EDT) (envelope-from skylar@cs.earlham.edu) X-Authentication-Warning: quark.cs.earlham.edu: Host angband.gs.washington.edu [128.95.231.218] claimed to be [128.95.231.218] Message-ID: <44F6036E.7050203@cs.earlham.edu> Date: Wed, 30 Aug 2006 14:30:22 -0700 From: Skylar Thompson Organization: Earlham College Computer Science Department User-Agent: Mail/News 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: Jordi Carrillo References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> In-Reply-To: <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig1D4B9E908A40999963E99FB3" X-Greylist: Sender succeded SMTP AUTH authentication, not delayed by milter-greylist-1.6 (quark.cs.earlham.edu [159.28.230.3]); Wed, 30 Aug 2006 17:30:55 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.2/1623/Wed Jul 26 18:35:11 2006 on quark.cs.earlham.edu X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.56 on 159.28.230.3 X-Spam-Status: No, score=-2.5 required=8.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on quark.cs.earlham.edu Cc: backyard1454-bsd@yahoo.com, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: skylar@cs.earlham.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:31:08 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig1D4B9E908A40999963E99FB3 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Jordi Carrillo wrote: > 2006/8/30, backyard : >> >> >> >> --- Jordi Carrillo wrote: >> >> > I've read that SMP should be disabled for >> > performance issues (I did not know >> > that before installing freebsd). I have a P4 3GHz >> > with hyperthreading >> > technology. I have the SMP-GENERIC kernel and it >> > only launches one cpu. So, >> > I've decided to disable SMP from BIOS. Is that ok?, >> > knowing that I have a >> > Smp enabled kernel? or should I install one without >> > smp? If so, is there a >> > way to install one already precompiled? >> > Thanks in advance >> > >> > -- >> > http://jordilin.wordpress.com >> > _______________________________________________ >> > 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" >> > >> >> if the system runs with one cpu now and you don't >> enable smp with HT with the sysctl variable then you >> should be ok. If your not doing SMP then recompiling >> the kernel for single processor mode will make things >> run a little quicker because the SMP code won't come >> into play. >> >> with HT disabling in FreeBSD is more for the security >> issues about a potential exploit whereby one process >> in one pipe can access the priveledged information of >> a process in another pipe because the two cores share >> one processor cache and thus one cache table. To my >> knowledge this hasn't been exploited yet. >> >> If you just install the generic kernel you it should >> be only the uniprocessor one. I would just do a: >> >> cd /usr/src && make buildworld && make >> KERNCONF=3DGENERIC buildkernel && make KERNCONF=3DGENERIC >> installkernel >> >> as opposed to a binary version assuming you haven't >> updated yet you won't have to install world but I >> believe it must have the build in the source tree to >> build a kernel. On your P4 though the difference >> between SMP and uniproc may not be worth the trouble >> because I don't think much of a gain would be made. on >> a P1 a much different story... >> >> if you aren't concerned with bad users or hackers >> hitting the box I would just enable HT with the sysctl >> variable. This will not make things run slower at all, >> just (in theory) less secure, which is why the >> veriable was created in the first place as I recall. >> If you are concerned I would wait until you update >> your system and then just build a GENERIC/CUSTOM >> kernel without the SMP option set. >> >> >> -brian >> > > > I will disable smp from bios. If I have a smp kernel, I suppose there > will > be no problem after all. Would that be ok? > The problem with having SMP enabled is that the smp kernel only > detects one > cpu and the system monitor only features one cpu as well as gkrellm (in= > Linux it shows two cpus). When compiling the system monitor shows the > cpu at > a maximum of 50%, so what's going on with the other 50%? > writing machdep.hlt_logical_cpus to 2 in loader.conf does not solve > anything. I believe FreeBSD uses the other logical CPU to handle hardware interrupts, which can still help performance. You can check dmesg to see how it's actually handling it. --=20 -- Skylar Thompson (skylar@cs.earlham.edu) -- http://www.cs.earlham.edu/~skylar/ --------------enig1D4B9E908A40999963E99FB3 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (SunOS) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9gNxsc4yyULgN4YRAhafAJ90lPqRE9dmZN89n2JFOtCLh06yVwCfdIOC 8fw31hwZW4j5jA/JLadgAhI= =vaZC -----END PGP SIGNATURE----- --------------enig1D4B9E908A40999963E99FB3-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:35:59 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1A37916A4E0 for ; Wed, 30 Aug 2006 21:35:59 +0000 (UTC) (envelope-from micahjon@ywave.com) Received: from relay2.av-mx.com (relay2.av-mx.com [137.118.16.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55F9A43D72 for ; Wed, 30 Aug 2006 21:35:49 +0000 (GMT) (envelope-from micahjon@ywave.com) X-Virus-Scan-Time: 0 Received: from [137.118.16.55] (HELO mx3.av-mx.com) by relay2.av-mx.com (CommuniGate Pro SMTP 4.2.10) with SMTP id 376832004 for freebsd-questions@freebsd.org; Wed, 30 Aug 2006 17:35:48 -0400 Received: (qmail 29830 invoked from network); 30 Aug 2006 21:35:47 -0000 Received: from dsl25232.ywave.com (HELO ?192.168.1.65?) (micahjon@ywave.com@216.227.113.232) by mx3.av-mx.com with SMTP; 30 Aug 2006 21:35:47 -0000 X-CLIENT-IP: 216.227.113.232 X-CLIENT-HOST: dsl25232.ywave.com Message-ID: <44F604B1.8010409@ywave.com> Date: Wed, 30 Aug 2006 14:35:45 -0700 From: Micah User-Agent: Thunderbird 1.5.0.5 (X11/20060730) MIME-Version: 1.0 To: Garrett Cooper References: <87y7t6kly7.fsf@photon.homelinux.org> <5963FD62-DB7C-4109-BE87-54780FB7D0EF@u.washington.edu> In-Reply-To: <5963FD62-DB7C-4109-BE87-54780FB7D0EF@u.washington.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: xj2106@columbia.edu, freebsd-questions@freebsd.org Subject: Re: Upgrade ghostscript? How? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:35:59 -0000 Garrett Cooper wrote: > On Aug 30, 2006, at 1:28 PM, Xiao-Yong Jin wrote: > >> Hi, I wanna upgrade ghostscript to ghostscript-gpl-8.15 from >> ghostscript-gnu-7.07. I've installed the gpl version via port. But >> when I tried to pkg_delete the gnu version, it said >> >> pkg_delete: package 'ghostscript-gnu-7.07_15' is required by these >> other packages >> and may not be deinstalled: >> ImageMagick-6.2.8.5 >> auctex-11.83 >> cm-super-0.3.3 >> dvipdfmx-20050831_2 >> dvipsk-tetex-5.95a_1 >> freetype-tools-1.3.1_3 >> ghostscript-gnu-commfont-7.07_3 >> gv-3.6.1 >> hplip-0.9.11 >> html2ps-letter-1.0.b4_1,1 >> teTeX-3.0_1 >> teTeX-base-3.0_9 >> transfig-3.2.4_1 >> xdvik-tetex-22.84.10 >> zh-CJK-4.6.0_1 >> zh-moefonts-cid-1.0_3 >> >> I'll probably also delete ghostscript-gnu-commfont-7.07_3 and >> zh-moefonts-cid-1.0_3. But is there anything more I should consider >> harmful to my system when I switch ghostscript gnu to gpl? Or simply >> pkg_delete by --force is enough? >> >> Thank you, >> Xiao-Yong > > Try pkg_delete -f {name of all ghostscript files here}. Then install the > newest port version and be sure to run pkgdb -F afterwards so you can > fix the package database, such that it references the right ghostscript. > -Garrett Additionally I had to set GHOSTSCRIPT_PORT=print/ghostscript-gpl /etc/make.conf in order to get newly installed/upgraded ports to depend on gs-gpl instead of gs-gnu. I was never able to get gs-afpl to work properly. HTH, Micah From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:37:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7582C16A4EA for ; Wed, 30 Aug 2006 21:37:40 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB88343D8E for ; Wed, 30 Aug 2006 21:37:06 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so216537nzn for ; Wed, 30 Aug 2006 14:37:05 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=kumRL303qvuCtdindGM2y+DnKbTT7n9WzyPlKL2TXUadAkjC0AHTRI7bnhYFvAXHawz3sVAQmszDTE/FS8CVZNvUIOwwLoRz1W3kJ85kdyCOTQAW3KCpS+89GIahdrafkUWMW1d13p4Fbnbb2brSQqns8tHA8BWysgMUAqGyIF4= Received: by 10.65.84.4 with SMTP id m4mr143436qbl; Wed, 30 Aug 2006 14:37:02 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Wed, 30 Aug 2006 14:37:02 -0700 (PDT) Message-ID: <94ff3700608301437u4ea3280ama8a9cfda3edfda08@mail.gmail.com> Date: Wed, 30 Aug 2006 23:37:02 +0200 From: "Jordi Carrillo" To: skylar@cs.earlham.edu In-Reply-To: <44F6036E.7050203@cs.earlham.edu> MIME-Version: 1.0 References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> <44F6036E.7050203@cs.earlham.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: backyard1454-bsd@yahoo.com, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:37:40 -0000 Skylar, So, 50% is used for processes and the other 50% to handle hardware interrupts. Is that right? 2006/8/30, Skylar Thompson : > > Jordi Carrillo wrote: > > 2006/8/30, backyard : > >> > >> > >> > >> --- Jordi Carrillo wrote: > >> > >> > I've read that SMP should be disabled for > >> > performance issues (I did not know > >> > that before installing freebsd). I have a P4 3GHz > >> > with hyperthreading > >> > technology. I have the SMP-GENERIC kernel and it > >> > only launches one cpu. So, > >> > I've decided to disable SMP from BIOS. Is that ok?, > >> > knowing that I have a > >> > Smp enabled kernel? or should I install one without > >> > smp? If so, is there a > >> > way to install one already precompiled? > >> > Thanks in advance > >> > > >> > -- > >> > http://jordilin.wordpress.com > >> > _______________________________________________ > >> > 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" > >> > > >> > >> if the system runs with one cpu now and you don't > >> enable smp with HT with the sysctl variable then you > >> should be ok. If your not doing SMP then recompiling > >> the kernel for single processor mode will make things > >> run a little quicker because the SMP code won't come > >> into play. > >> > >> with HT disabling in FreeBSD is more for the security > >> issues about a potential exploit whereby one process > >> in one pipe can access the priveledged information of > >> a process in another pipe because the two cores share > >> one processor cache and thus one cache table. To my > >> knowledge this hasn't been exploited yet. > >> > >> If you just install the generic kernel you it should > >> be only the uniprocessor one. I would just do a: > >> > >> cd /usr/src && make buildworld && make > >> KERNCONF=GENERIC buildkernel && make KERNCONF=GENERIC > >> installkernel > >> > >> as opposed to a binary version assuming you haven't > >> updated yet you won't have to install world but I > >> believe it must have the build in the source tree to > >> build a kernel. On your P4 though the difference > >> between SMP and uniproc may not be worth the trouble > >> because I don't think much of a gain would be made. on > >> a P1 a much different story... > >> > >> if you aren't concerned with bad users or hackers > >> hitting the box I would just enable HT with the sysctl > >> variable. This will not make things run slower at all, > >> just (in theory) less secure, which is why the > >> veriable was created in the first place as I recall. > >> If you are concerned I would wait until you update > >> your system and then just build a GENERIC/CUSTOM > >> kernel without the SMP option set. > >> > >> > >> -brian > >> > > > > > > I will disable smp from bios. If I have a smp kernel, I suppose there > > will > > be no problem after all. Would that be ok? > > The problem with having SMP enabled is that the smp kernel only > > detects one > > cpu and the system monitor only features one cpu as well as gkrellm (in > > Linux it shows two cpus). When compiling the system monitor shows the > > cpu at > > a maximum of 50%, so what's going on with the other 50%? > > writing machdep.hlt_logical_cpus to 2 in loader.conf does not solve > > anything. > I believe FreeBSD uses the other logical CPU to handle hardware > interrupts, which can still help performance. You can check dmesg to see > how it's actually handling it. > > -- > -- Skylar Thompson (skylar@cs.earlham.edu) > -- http://www.cs.earlham.edu/~skylar/ > > > > > -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:37:43 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 3F91C16A4DD for ; Wed, 30 Aug 2006 21:37:43 +0000 (UTC) (envelope-from fbsd@a1poweruser.com) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id B545643D55 for ; Wed, 30 Aug 2006 21:37:31 +0000 (GMT) (envelope-from fbsd@a1poweruser.com) Received: from barbish ([70.39.69.56]) by mta10.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060830213730.NPFY24294.mta10.adelphia.net@barbish> for ; Wed, 30 Aug 2006 17:37:30 -0400 From: "fbsd" To: "freebsd-questions@FreeBSD. ORG" Date: Wed, 30 Aug 2006 17:37:25 -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) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Cc: Subject: php5/mysql5 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:37:43 -0000 Production server is running apache13/php4/mysql4. Have fresh 6.1 install on workbench PC. Workbench PC is being used to build apache13/php5/mysql51 environment for working php web application writing and reading mysql database. Installed mysql51-server then php5 and made sure make config had apache support. When I executed the web application I get Fatal error: Call to undefined function mysql_pconnect() in /usr/local/www/mls/signup.php on line 348. Is there some other port now required to get php to talk to mysql??? From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:40:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 ED86616A4E6 for ; Wed, 30 Aug 2006 21:40:40 +0000 (UTC) (envelope-from chad@shire.net) Received: from hobbiton.shire.net (mail.shire.net [166.70.252.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3EBF43D7D for ; Wed, 30 Aug 2006 21:40:34 +0000 (GMT) (envelope-from chad@shire.net) Received: from [67.171.127.191] (helo=[192.168.99.68]) by hobbiton.shire.net with esmtpa (Exim 4.51) id 1GIXnW-000OPU-A2 for freebsd-questions@freebsd.org; Wed, 30 Aug 2006 15:40:34 -0600 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> References: <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Wed, 30 Aug 2006 15:40:33 -0600 To: freebsd-questions Questions X-Mailer: Apple Mail (2.752.2) X-SA-Exim-Connect-IP: 67.171.127.191 X-SA-Exim-Mail-From: chad@shire.net X-SA-Exim-Scanned: No (on hobbiton.shire.net); SAEximRunCond expanded to false Subject: shared cache -- Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:40:41 -0000 On Aug 30, 2006, at 12:12 PM, backyard wrote: > with HT disabling in FreeBSD is more for the security > issues about a potential exploit whereby one process > in one pipe can access the priveledged information of > a process in another pipe because the two cores share > one processor cache and thus one cache table. To my > knowledge this hasn't been exploited yet. How is this any different than say an Intel Core Duo or Core 2 Duo? I believe they have a shared cache as well for each (real) processor core. Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:44:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8EE9D16A4DF for ; Wed, 30 Aug 2006 21:44:33 +0000 (UTC) (envelope-from skylar@cs.earlham.edu) Received: from quark.cs.earlham.edu (cs.earlham.edu [159.28.230.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C9C843D49 for ; Wed, 30 Aug 2006 21:44:29 +0000 (GMT) (envelope-from skylar@cs.earlham.edu) Received: from [128.95.231.218] (angband.gs.washington.edu [128.95.231.218]) (authenticated bits=0) by quark.cs.earlham.edu (8.13.6/8.13.3) with ESMTP id k7ULiI6P064403 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 Aug 2006 17:44:19 -0400 (EDT) (envelope-from skylar@cs.earlham.edu) X-Authentication-Warning: quark.cs.earlham.edu: Host angband.gs.washington.edu [128.95.231.218] claimed to be [128.95.231.218] Message-ID: <44F60697.5060407@cs.earlham.edu> Date: Wed, 30 Aug 2006 14:43:51 -0700 From: Skylar Thompson Organization: Earlham College Computer Science Department User-Agent: Mail/News 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: Jordi Carrillo References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> <44F6036E.7050203@cs.earlham.edu> <94ff3700608301437u4ea3280ama8a9cfda3edfda08@mail.gmail.com> In-Reply-To: <94ff3700608301437u4ea3280ama8a9cfda3edfda08@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig79325C935141CC1113A573C5" X-Greylist: Sender succeded SMTP AUTH authentication, not delayed by milter-greylist-1.6 (quark.cs.earlham.edu [159.28.230.3]); Wed, 30 Aug 2006 17:44:23 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.2/1623/Wed Jul 26 18:35:11 2006 on quark.cs.earlham.edu X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.56 on 159.28.230.3 X-Spam-Status: No, score=-2.5 required=8.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on quark.cs.earlham.edu Cc: backyard1454-bsd@yahoo.com, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: skylar@cs.earlham.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:44:33 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig79325C935141CC1113A573C5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Jordi Carrillo wrote: > Skylar, > So, 50% is used for processes and the other 50% to handle hardware > interrupts. Is that right? > I believe so, but the blurb that I read that in is from 2003. There's a good chance someone will jump in to correct me. :) It was in /usr/src/UPDATING: 20031022: Support for HyperThread logical CPUs has now been enabled by default. As a result, the HTT kernel option no longer exists. Instead, the logical CPUs are always started so that they can handle interrupts. However, the extra logical CPUs are prevented from executing user processes by default. To enable the logical CPUs, change the value of the machdep.hlt_logical_cpus from 1 to 0. This value can also be set from the loader as a tunable of the same name. --=20 -- Skylar Thompson (skylar@cs.earlham.edu) -- http://www.cs.earlham.edu/~skylar/ --------------enig79325C935141CC1113A573C5 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (SunOS) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9gaasc4yyULgN4YRAkITAJ4jrj89ed2JZyW1c97AFk2Po5a57QCdHSyH 1KSa3VR/TZM0QoobbxGvO0I= =GQz2 -----END PGP SIGNATURE----- --------------enig79325C935141CC1113A573C5-- From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:48:01 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 0605516A4DA for ; Wed, 30 Aug 2006 21:48:01 +0000 (UTC) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE23643D73 for ; Wed, 30 Aug 2006 21:48:00 +0000 (GMT) (envelope-from freebsd@philip.pjkh.com) Received: from bravo.pjkh.com (bravo.pjkh.com [72.36.232.219]) by bravo.pjkh.com (Postfix) with ESMTP id 9E01013C85B; Wed, 30 Aug 2006 16:53:54 -0500 (CDT) Received: by bravo.pjkh.com (Postfix, from userid 1000) id 1DB1F13C7E4; Wed, 30 Aug 2006 16:53:54 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by bravo.pjkh.com (Postfix) with ESMTP id 1C72D13C7D5; Wed, 30 Aug 2006 16:53:54 -0500 (CDT) Date: Wed, 30 Aug 2006 16:53:54 -0500 (CDT) From: Philip Hallstrom To: fbsd In-Reply-To: Message-ID: <20060830165348.C14571@bravo.pjkh.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV using ClamSMTP Cc: "freebsd-questions@FreeBSD. ORG" Subject: Re: php5/mysql5 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:48:01 -0000 > Production server is running apache13/php4/mysql4. > Have fresh 6.1 install on workbench PC. > Workbench PC is being used to build apache13/php5/mysql51 > environment > for working php web application writing and reading mysql database. > > Installed mysql51-server then php5 and made sure make config had > apache support. > > When I executed the web application I get > Fatal error: Call to undefined function mysql_pconnect() in > /usr/local/www/mls/signup.php on line 348. > > Is there some other port now required to get php to talk to mysql??? databases/php5-mysql From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:50:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 74FEC16A4DA for ; Wed, 30 Aug 2006 21:50:37 +0000 (UTC) (envelope-from eoghanj@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31AE243D6D for ; Wed, 30 Aug 2006 21:50:32 +0000 (GMT) (envelope-from eoghanj@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so269927nfc for ; Wed, 30 Aug 2006 14:50:31 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:in-reply-to:references:mime-version:x-priority:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=ZCr3kMMJpBPq6RM9zKK0ucjuCSsZjzgLwfCyp2bOW9uhdm2rXi2226ZK9gl2WxGLJJrrB7+0xH5OYsOX/PsGA/ACseVQaCgz3y3PFAhXkcHiW4v7g768ULs7n3IkiS8HcI1l2kxLURqCRlI2sYEAwsGdIV2jM+VLXFY3gLT327g= Received: by 10.49.8.1 with SMTP id l1mr311137nfi; Wed, 30 Aug 2006 14:50:31 -0700 (PDT) Received: from ?192.168.1.34? ( [212.2.169.171]) by mx.gmail.com with ESMTP id n23sm311472nfc.2006.08.30.14.50.30; Wed, 30 Aug 2006 14:50:31 -0700 (PDT) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v752.2) X-Priority: 3 (Normal) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <1509C56A-AB89-47BE-A9CE-5807B8719EB7@gmail.com> Content-Transfer-Encoding: 7bit From: eoghan Date: Wed, 30 Aug 2006 22:50:28 +0100 To: fbsd@a1poweruser.com X-Mailer: Apple Mail (2.752.2) Cc: "freebsd-questions@FreeBSD. ORG" Subject: Re: php5/mysql5 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:50:37 -0000 On 30 Aug 2006, at 22:37, fbsd wrote: > Production server is running apache13/php4/mysql4. > Have fresh 6.1 install on workbench PC. > Workbench PC is being used to build apache13/php5/mysql51 > environment > for working php web application writing and reading mysql database. > > Installed mysql51-server then php5 and made sure make config had > apache support. > > When I executed the web application I get > Fatal error: Call to undefined function mysql_pconnect() in > /usr/local/www/mls/signup.php on line 348. > > Is there some other port now required to get php to talk to mysql??? Hi You can install the php5-extensions port... /usr/ports/lang/php5-extensions and run a make config to decide on what you need. Hope that helps Eoghan From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:55:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 83C1F16A4DF for ; Wed, 30 Aug 2006 21:55:35 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F7B843D8B for ; Wed, 30 Aug 2006 21:55:27 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (host5.bedc.ondsl.gr [62.103.39.229]) (authenticated bits=128) by igloo.linux.gr (8.13.7/8.13.7/Debian-2) with ESMTP id k7ULt8l4003619 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Thu, 31 Aug 2006 00:55:09 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k7ULtOXR010048 for ; Thu, 31 Aug 2006 00:55:24 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k7ULtOMv010047 for freebsd-questions@freebsd.org; Thu, 31 Aug 2006 00:55:24 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 31 Aug 2006 00:55:24 +0300 From: Giorgos Keramidas To: freebsd-questions@freebsd.org Message-ID: <20060830215524.GB9584@gothmog.pc> References: <20060830143228.GA47646@saturn.pcs.ms> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060830143228.GA47646@saturn.pcs.ms> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.831, required 5, autolearn=not spam, AWL -0.23, BAYES_00 -2.60, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Subject: Re: CVS X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:55:35 -0000 On 2006-08-30 16:32, Martin Schweizer wrote: > Hello > > Which ports does I need for a cvs system (client and server)? I searched > against "cvs" in ports but it gets a lot of links. Any hints are welcome. You don't need any ports. CVS is part of the base system, and it can work both as a client and server. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 21:59:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C82CA16A4DE for ; Wed, 30 Aug 2006 21:59:27 +0000 (UTC) (envelope-from bsdneo@thechristies.net) Received: from mail02.secureserverdot.com (mail02.secureserverdot.com [216.14.208.16]) by mx1.FreeBSD.org (Postfix) with SMTP id 57E6C43D66 for ; Wed, 30 Aug 2006 21:59:22 +0000 (GMT) (envelope-from bsdneo@thechristies.net) Received: (qmail 11829 invoked by uid 399); 30 Aug 2006 21:59:19 -0000 Received: from unknown (HELO localhost) (127.0.0.1) by localhost.secureserverdot.com with SMTP; 30 Aug 2006 21:59:19 -0000 Received: from ool-435767e2.dyn.optonline.net (ool-435767e2.dyn.optonline.net [67.87.103.226]) by 216.14.208.16 (Horde MIME library) with HTTP; Wed, 30 Aug 2006 17:59:17 -0400 Message-ID: <20060830175917.vj0qnecnesccogok@216.14.208.16> Date: Wed, 30 Aug 2006 17:59:17 -0400 From: Pete C To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.1.1) Subject: linux-firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 21:59:27 -0000 did a 'make install' for linux-firefox I got an error that libXfixes.so.3 (as part of linux-glib2, IIRC) could not be found . . . after some googling and a few bad leads for some reason I did another make install and got no errors . . . but now linux-firefox won't run because libXfixes.so.3 is missing . . . Any clues appreciated . . . Pete C From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 22:02:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A90EC16A4E2 for ; Wed, 30 Aug 2006 22:02:51 +0000 (UTC) (envelope-from stanb@panix.com) Received: from mail3.panix.com (mail3.panix.com [166.84.1.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2001843D7E for ; Wed, 30 Aug 2006 22:02:41 +0000 (GMT) (envelope-from stanb@panix.com) Received: from mailspool3.panix.com (mailspool3.panix.com [166.84.1.78]) by mail3.panix.com (Postfix) with ESMTP id 9437813A898 for ; Wed, 30 Aug 2006 18:02:28 -0400 (EDT) Received: from teddy.fas.com (c-68-58-232-106.hsd1.sc.comcast.net [68.58.232.106]) by mailspool3.panix.com (Postfix) with ESMTP id 6FE3462E40 for ; Wed, 30 Aug 2006 18:02:28 -0400 (EDT) Received: from stan by teddy.fas.com with local (Exim 3.36 #1 (Debian)) id 1GIY8i-0007P1-00 for ; Wed, 30 Aug 2006 18:02:28 -0400 Date: Wed, 30 Aug 2006 18:02:28 -0400 From: stan To: Free BSD Questions list Message-ID: <20060830220228.GB28263@teddy.fas.com> Mail-Followup-To: Free BSD Questions list Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Editor: gVim X-Operating-System: Debian GNU/Linux X-Kernel-Version: 2.4.23 X-Uptime: 17:54:20 up 135 days, 19:01, 2 users, load average: 0.09, 0.05, 0.01 User-Agent: Mutt/1.5.4i Sender: Stan Brown Subject: 6.1 current instabilty on Sun Ultra 40's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 22:02:51 -0000 I can't get 6.1 to even compile a new kernel on 2 different Sun Ultra 40's Anyone have nay reason that it should not work on these machines? Both are dul processor BTW, should I try the non MP kernel? -- Unix is very simple, but it takes a genius to understand the simplicity. (Dennis Ritchie) From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 22:13:32 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 DF64016A5B7 for ; Wed, 30 Aug 2006 22:13:32 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83112.mail.mud.yahoo.com (web83112.mail.mud.yahoo.com [216.252.101.41]) by mx1.FreeBSD.org (Postfix) with SMTP id 7637843D46 for ; Wed, 30 Aug 2006 22:13:32 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 43474 invoked by uid 60001); 30 Aug 2006 20:52:39 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=iugck/QgXpyRZW1sznxerrBgDnrjUT+hf/JvUbpJrKe5YScfYhFnPtg9z7K34dexSslUi1W1kerp2rPN9x99nu8vFIC6CBaBCMP01V6GNKYK5UGPB+87PRn5LXet+q8utCp63azxpKNjwlxo95Hhpx4HdRtnr9qr76HQ/F7mY1I= ; Message-ID: <20060830205239.43472.qmail@web83112.mail.mud.yahoo.com> Received: from [63.240.228.37] by web83112.mail.mud.yahoo.com via HTTP; Wed, 30 Aug 2006 13:52:39 PDT Date: Wed, 30 Aug 2006 13:52:39 -0700 (PDT) From: backyard To: Jordi Carrillo , backyard1454-bsd@yahoo.com In-Reply-To: <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 22:13:33 -0000 --- Jordi Carrillo wrote: > 2006/8/30, backyard : > > > > > > > > --- Jordi Carrillo wrote: > > > > > I've read that SMP should be disabled for > > > performance issues (I did not know > > > that before installing freebsd). I have a P4 > 3GHz > > > with hyperthreading > > > technology. I have the SMP-GENERIC kernel and it > > > only launches one cpu. So, > > > I've decided to disable SMP from BIOS. Is that > ok?, > > > knowing that I have a > > > Smp enabled kernel? or should I install one > without > > > smp? If so, is there a > > > way to install one already precompiled? > > > Thanks in advance > > > > > > -- > > > http://jordilin.wordpress.com > > > _______________________________________________ > > > 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" > > > > > > > if the system runs with one cpu now and you don't > > enable smp with HT with the sysctl variable then > you > > should be ok. If your not doing SMP then > recompiling > > the kernel for single processor mode will make > things > > run a little quicker because the SMP code won't > come > > into play. > > > > with HT disabling in FreeBSD is more for the > security > > issues about a potential exploit whereby one > process > > in one pipe can access the priveledged information > of > > a process in another pipe because the two cores > share > > one processor cache and thus one cache table. To > my > > knowledge this hasn't been exploited yet. > > > > If you just install the generic kernel you it > should > > be only the uniprocessor one. I would just do a: > > > > cd /usr/src && make buildworld && make > > KERNCONF=GENERIC buildkernel && make > KERNCONF=GENERIC > > installkernel > > > > as opposed to a binary version assuming you > haven't > > updated yet you won't have to install world but I > > believe it must have the build in the source tree > to > > build a kernel. On your P4 though the difference > > between SMP and uniproc may not be worth the > trouble > > because I don't think much of a gain would be > made. on > > a P1 a much different story... > > > > if you aren't concerned with bad users or hackers > > hitting the box I would just enable HT with the > sysctl > > variable. This will not make things run slower at > all, > > just (in theory) less secure, which is why the > > veriable was created in the first place as I > recall. > > If you are concerned I would wait until you update > > your system and then just build a GENERIC/CUSTOM > > kernel without the SMP option set. > > > > > > -brian > > > > > I will disable smp from bios. If I have a smp > kernel, I suppose there will > be no problem after all. Would that be ok? > The problem with having SMP enabled is that the smp > kernel only detects one > cpu and the system monitor only features one cpu as > well as gkrellm (in > Linux it shows two cpus). When compiling the system > monitor shows the cpu at > a maximum of 50%, so what's going on with the other > 50%? > writing machdep.hlt_logical_cpus to 2 in loader.conf > does not solve > anything. > -- machdep.hyperthreading_allowed=1 in loader.conf from my reading on the web... is the variable you should probably be setting, the other variable will disable cpu's on the system or limit how many are used. It does not turn on HT. Linux does not have an option like this to disable HT, I believe it must be passed to the kernel at boot and I don't know what the exact switch is but the Linux community is not as concerned with the potential exploit as the *BSD community is and so they let HTs run under their SMP kernel. 50% is running idle, this is pretty normal, At least on the systems I've seen when it is building the system. You have to remember most of compiling is reading code and libraries then putting it together and back on the hard drive. Compiling is I/O intensive more then CPU intensive. If you set MAKEOPTS="-j5" in make.conf you will compile quicker use more cpu power, but it will maybe spike around 80%. usually this is set by 2X CPU_CORES +1 but it makes my dual p3 550Mhz Xeon build a system with the quickness... You maybe able to get away with "-j9" as my little formula might be based on Linux more then BSD and I know generally BSD allows for more make processes to be going at once. maybe 4x CPU_CORE +1 is more in order. Experiment until your loaded as high as you want to, but its nice to have Gnome/KDE going while you're building a system and watching a movie; so having 50% to play with isn't a bad thing... -brian From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 22:22:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C4DA916A4F1 for ; Wed, 30 Aug 2006 22:22:37 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF06F43D49 for ; Wed, 30 Aug 2006 22:21:46 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so222457nzn for ; Wed, 30 Aug 2006 15:21:41 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=kTw/wVDChRqwB3Cb+aDpmPpKKjHAG1Dcj72Ra2ej1ofx7BEZtrp73ugnYa1wMT4BXIV1D9jFpQ/cBjfBSteV+KFYRsGfcVdzgcUEUAqByYPNhg6RKC4AFviW0FZuh5wdkScg0lbJKH0I3W/kPh6T91ddM/P8pliDpZbebkMQIPk= Received: by 10.64.148.8 with SMTP id v8mr232850qbd; Wed, 30 Aug 2006 15:21:41 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Wed, 30 Aug 2006 15:21:40 -0700 (PDT) Message-ID: <94ff3700608301521r2f8f9476jdc0a30602b39bb21@mail.gmail.com> Date: Thu, 31 Aug 2006 00:21:41 +0200 From: "Jordi Carrillo" To: freebsd-questions@freebsd.org In-Reply-To: <94ff3700608301520o323feed3r342d9a92ac644d02@mail.gmail.com> MIME-Version: 1.0 References: <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> <20060830205239.43472.qmail@web83112.mail.mud.yahoo.com> <94ff3700608301520o323feed3r342d9a92ac644d02@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Fwd: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 22:22:38 -0000 2006/8/30, backyard : > > --- Jordi Carrillo wrote: > > > 2006/8/30, backyard : > > > > > > > > > > > > --- Jordi Carrillo wrote: > > > > > > > I've read that SMP should be disabled for > > > > performance issues (I did not know > > > > that before installing freebsd). I have a P4 > > 3GHz > > > > with hyperthreading > > > > technology. I have the SMP-GENERIC kernel and it > > > > only launches one cpu. So, > > > > I've decided to disable SMP from BIOS. Is that > > ok?, > > > > knowing that I have a > > > > Smp enabled kernel? or should I install one > > without > > > > smp? If so, is there a > > > > way to install one already precompiled? > > > > Thanks in advance > > > > > > > > -- > > > > http://jordilin.wordpress.com > > > > _______________________________________________ > > > > 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" > > > > > > > > > > if the system runs with one cpu now and you don't > > > enable smp with HT with the sysctl variable then > > you > > > should be ok. If your not doing SMP then > > recompiling > > > the kernel for single processor mode will make > > things > > > run a little quicker because the SMP code won't > > come > > > into play. > > > > > > with HT disabling in FreeBSD is more for the > > security > > > issues about a potential exploit whereby one > > process > > > in one pipe can access the priveledged information > > of > > > a process in another pipe because the two cores > > share > > > one processor cache and thus one cache table. To > > my > > > knowledge this hasn't been exploited yet. > > > > > > If you just install the generic kernel you it > > should > > > be only the uniprocessor one. I would just do a: > > > > > > cd /usr/src && make buildworld && make > > > KERNCONF=GENERIC buildkernel && make > > KERNCONF=GENERIC > > > installkernel > > > > > > as opposed to a binary version assuming you > > haven't > > > updated yet you won't have to install world but I > > > believe it must have the build in the source tree > > to > > > build a kernel. On your P4 though the difference > > > between SMP and uniproc may not be worth the > > trouble > > > because I don't think much of a gain would be > > made. on > > > a P1 a much different story... > > > > > > if you aren't concerned with bad users or hackers > > > hitting the box I would just enable HT with the > > sysctl > > > variable. This will not make things run slower at > > all, > > > just (in theory) less secure, which is why the > > > veriable was created in the first place as I > > recall. > > > If you are concerned I would wait until you update > > > your system and then just build a GENERIC/CUSTOM > > > kernel without the SMP option set. > > > > > > > > > -brian > > > > > > > > > I will disable smp from bios. If I have a smp > > kernel, I suppose there will > > be no problem after all. Would that be ok? > > The problem with having SMP enabled is that the smp > > kernel only detects one > > cpu and the system monitor only features one cpu as > > well as gkrellm (in > > Linux it shows two cpus). When compiling the system > > monitor shows the cpu at > > a maximum of 50%, so what's going on with the other > > 50%? > > writing machdep.hlt_logical_cpus to 2 in loader.conf > > does not solve > > anything. > > -- > > machdep.hyperthreading_allowed=1 in loader.conf > > from my reading on the web... > > is the variable you should probably be setting, the > other variable will disable cpu's on the system or > limit how many are used. It does not turn on HT. Linux > does not have an option like this to disable HT, I > believe it must be passed to the kernel at boot and I > don't know what the exact switch is but the Linux > community is not as concerned with the potential > exploit as the *BSD community is and so they let HTs > run under their SMP kernel. > > 50% is running idle, this is pretty normal, At least > on the systems I've seen when it is building the > system. You have to remember most of compiling is > reading code and libraries then putting it together > and back on the hard drive. Compiling is I/O intensive > more then CPU intensive. If you set > > MAKEOPTS="-j5" > > in make.conf you will compile quicker use more cpu > power, but it will maybe spike around 80%. > > usually this is set by 2X CPU_CORES +1 but it makes my > dual p3 550Mhz Xeon build a system with the > quickness... You maybe able to get away with "-j9" as > my little formula might be based on Linux more then > BSD and I know generally BSD allows for more make > processes to be going at once. maybe 4x CPU_CORE +1 is > more in order. Experiment until your loaded as high as > you want to, but its nice to have Gnome/KDE going > while you're building a system and watching a movie; > so having 50% to play with isn't a bad thing... > > -brian > Yes, having only 50% on compiling, let's you do other tasks, which is great if the soft to compile is very large such as openoffice and you only have one computer at home. -- http://jordilin.wordpress.com -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 23:11:53 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 488BF16A4DE for ; Wed, 30 Aug 2006 23:11:53 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC94443D58 for ; Wed, 30 Aug 2006 23:11:50 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so227607nzn for ; Wed, 30 Aug 2006 16:11:50 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=cYNk1JQOEP4uA12Cjzi+5lHl2NXUOPr65Vvq9lHTGB3cZh/J0XXDqrePGMPKpX++o8nzhCMMpdGtypOWf8UiIwTJCdiE9D+cpsjYXnKRpNs0H11jvFu6q5nICZo0au5DLUccR0+F6OT9LFqkR/hpV7Wd306gQZZNkIkFbABhrcA= Received: by 10.64.241.3 with SMTP id o3mr329698qbh; Wed, 30 Aug 2006 16:11:49 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Wed, 30 Aug 2006 16:11:49 -0700 (PDT) Message-ID: <94ff3700608301611t499f339embd78feaa2d18e083@mail.gmail.com> Date: Thu, 31 Aug 2006 01:11:49 +0200 From: "Jordi Carrillo" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: /dev filesystem at 100% capacity? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 23:11:53 -0000 I'm new to Freebsd, and the other day I installed FreeBSD and let FreeBSD to partition my hard disk. Now, when I do df -k I see that the devfs filesystem mounted on /dev is at 100% of capacity. $df -k devfs 1 1 0 100% /dev with 1 kb of capacity. is this normal, or there is sth wrong with this. Please do df -k and let me know, Thanks -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 23:16:36 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 F352016A4DA for ; Wed, 30 Aug 2006 23:16:35 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A8E743D45 for ; Wed, 30 Aug 2006 23:16:35 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so227995nzn for ; Wed, 30 Aug 2006 16:16:34 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Nvxh3K3eWXdCiRAYh+jwOkoV+cJkvDpfVeWfCAQR5NYs/vfAaebKguroIv1xR6IqobpxQfti2I91xtq0P5Z0yFTCaTFIW+yPR08f5LvM4ziEtvQxGfhkXRO94tQ3Cij4dbR8f5lF3+DW0LqkvhnEZ0PxYULILzhQk1rlJXaUnVo= Received: by 10.65.119.14 with SMTP id w14mr345239qbm; Wed, 30 Aug 2006 16:16:34 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Wed, 30 Aug 2006 16:16:34 -0700 (PDT) Message-ID: <94ff3700608301616q1b551c9ag86240bf328ae6ec8@mail.gmail.com> Date: Thu, 31 Aug 2006 01:16:34 +0200 From: "Jordi Carrillo" To: "Javier Henderson" , freebsd-questions@freebsd.org In-Reply-To: MIME-Version: 1.0 References: <94ff3700608301611t499f339embd78feaa2d18e083@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: /dev filesystem at 100% capacity? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 23:16:36 -0000 2006/8/31, Javier Henderson : > > > On Aug 30, 2006, at 7:11 PM, Jordi Carrillo wrote: > > > I'm new to Freebsd, and the other day I installed FreeBSD and let > > FreeBSD to > > partition my hard disk. Now, when I do df -k I see that the devfs > > filesystem > > mounted on /dev is at 100% of capacity. > > $df -k > > devfs 1 1 0 100% /dev > > with 1 kb of capacity. > > is this normal > > Yes. > > -jav > > Thanks, Jordi -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 23:17:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 318BB16A4DA for ; Wed, 30 Aug 2006 23:17:58 +0000 (UTC) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id D355143D49 for ; Wed, 30 Aug 2006 23:17:57 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (localhost [127.0.0.1]) by clunix.cl.msu.edu (8.13.6+Sun/8.13.6) with ESMTP id k7UNHuk8008757; Wed, 30 Aug 2006 19:17:56 -0400 (EDT) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.13.6+Sun/8.13.6/Submit) id k7UNHuju008756; Wed, 30 Aug 2006 19:17:56 -0400 (EDT) From: Jerry McAllister Message-Id: <200608302317.k7UNHuju008756@clunix.cl.msu.edu> To: jordilin@gmail.com (Jordi Carrillo) Date: Wed, 30 Aug 2006 19:17:56 -0400 (EDT) In-Reply-To: <94ff3700608301611t499f339embd78feaa2d18e083@mail.gmail.com> X-Mailer: ELM [version 2.5 PL7] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: /dev filesystem at 100% capacity? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 23:17:58 -0000 > > I'm new to Freebsd, and the other day I installed FreeBSD and let FreeBSD to > partition my hard disk. Now, when I do df -k I see that the devfs filesystem > mounted on /dev is at 100% of capacity. > $df -k > devfs 1 1 0 100% /dev > with 1 kb of capacity. > is this normal, or there is sth wrong with this. > Please do df -k and let me know, This is normal. It is a special filesystem, not a real one. ////jerry > Thanks > > -- > http://jordilin.wordpress.com > _______________________________________________ > 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 Wed Aug 30 23:22:14 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 103F416A4DF for ; Wed, 30 Aug 2006 23:22:14 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id A14AB43D6E for ; Wed, 30 Aug 2006 23:22:12 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id E701CDA0B9A for ; Wed, 30 Aug 2006 19:22:10 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Wed, 30 Aug 2006 19:22:12 -0400 X-Sasl-enc: mvvPxd+H+mKsrGTk5cSlPWykvPV9uCTU1GQTIt47iPsb 1156980131 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id AD962795B for ; Wed, 30 Aug 2006 19:22:11 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Thu, 31 Aug 2006 00:22:03 +0100 User-Agent: KMail/1.9.3 References: <200608302124.21833.list-freebsd-2004@morbius.sent.com> <20060830165204.AC8F.GERARD@seibercom.net> In-Reply-To: <20060830165204.AC8F.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608310022.05206.list-freebsd-2004@morbius.sent.com> Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 23:22:14 -0000 On Wednesday 30 August 2006 21:55, Gerard Seibert wrote: > RW wrote: > > What's the canonical way of mounting the Linux procfs at boot-time? > > > > I've seen several recommendations to add the following to fstab: > > > > linproc /compat/linux/proc linprocfs rw 0 0 > > > > But in a standard installation, this mount-point is really under /usr, > > which isn't mounted until pass 2. If I change the pass number to 2, it > > fails with an "unexpected inconsistencies" error. I presume this is > > because mount is trying to fsck it, and failing to find fsck_linprocfs. > > This is what I have in my /etc/fstab file: > > linprocfs /compat/linux/proc linprocfs rw 0 0 > > Is this what you are referring to? I tried it and it didn't work. Irrespective of whether it should begin linproc or linprocfs, /compat is a link to /usr/compat, and /usr isn't mounted at that point. Do you have a different arrangement? BTW I'm running 6.1 (upgraded from an original 5.3 install) From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 23:57:10 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AF2A116A4DA for ; Wed, 30 Aug 2006 23:57:10 +0000 (UTC) (envelope-from sigma_zk@yahoo.com) Received: from web52309.mail.yahoo.com (web52309.mail.yahoo.com [206.190.48.152]) by mx1.FreeBSD.org (Postfix) with SMTP id 2DB0843D55 for ; Wed, 30 Aug 2006 23:57:10 +0000 (GMT) (envelope-from sigma_zk@yahoo.com) Received: (qmail 52034 invoked by uid 60001); 30 Aug 2006 23:57:09 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=wOjZZI7pzfc6lVXGjDSinGGi0PKGGPddFduTBz6Pqr2KYq0updvWjnhJfzpy53IZwzZMivUTSnWLhGkmJo6uNWFizW0SWlFzR8D0gIp4R0ZMW6dYz4NjOPsWIjWjl9dlm979VCgZ8shaGROW/+SsdPmyWmXm+pEFu4C8caJOWLQ= ; Message-ID: <20060830235709.52032.qmail@web52309.mail.yahoo.com> Received: from [24.87.114.179] by web52309.mail.yahoo.com via HTTP; Wed, 30 Aug 2006 16:57:09 PDT Date: Wed, 30 Aug 2006 16:57:09 -0700 (PDT) From: "Sean M." To: freebsd-questions@freebsd.org In-Reply-To: <448xl6fxla.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: Fullscreen crashes (solved) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 23:57:10 -0000 I recompiled x11/nvidia-driver and rebooted, and that fixed it somehow. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 00:00:46 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 DF33B16A4FF for ; Thu, 31 Aug 2006 00:00:45 +0000 (UTC) (envelope-from mailing-lists@msdi.ca) Received: from mail02.msdihosting.net (9.67-18-64.networks.msdihosting.net [64.18.67.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0D3543D68 for ; Thu, 31 Aug 2006 00:00:20 +0000 (GMT) (envelope-from mailing-lists@msdi.ca) Received: from ian.msdi.ca ([70.83.204.175]) by mail02.msdihosting.net ((iPlanet Messaging Server 5.2 HotFix 1.21 (built Sep 8 2003))) with SMTP id CLI20599 for ; Wed, 30 Aug 2006 20:05:09 -0400 Message-Id: <7.0.1.0.2.20060830195856.06303008@msdi.ca> Message-Id: <7.0.1.0.2.20060828103622.07f11f10@msdi.ca> X-Mailer: QUALCOMM Windows Eudora Version 7.0.1.0 Date: Wed, 30 Aug 2006 19:59:07 -0400 To: freebsd-questions@freebsd.org From: Ian Lord Mime-Version: 1.0 X-DEBUG: 1 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Resolved??? Re: Apache 2.2 http accept filter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 00:00:46 -0000 At 20:01 2006-08-25, you wrote: >Did accept filter error problem get resolved? I do NOT have >NO_MODULES set in the kernel config or in /etc/make.conf anywhere, >and I checked: > > unicorn[126]# pwd > /boot/kernel > unicorn[127]# ll *http* > -r-xr-xr-x 1 root wheel 5544 Aug 25 12:05 accf_http.ko* > unicorn[128]# kldload accf_http.ko > kldload: can't load accf_http.ko: File exists > > unicorn[130]# grep -i http rc.conf > # apache22_http_accept_enable (bool): Set to "NO" by default. > # Set to yes to check for accf_http kernel > # put accf_http in the kernel config? not yet. > apache22_http_accept_enable="YES" > >Do I need to put something in /boot/modules? I already have >accf_http loaded, apparently because of the >apache22_http_accept_enable flag in rc.conf. > >Let me know if you've gotten anywhere with this. > >tack > >On Sat, 19 Aug 2006, Ian Lord wrote: > >>At 12:18 2006-08-19, you wrote: >>>Ian Lord wrote: >>>> >>>>>well, the apache22_http_accept_enable="YES" should do this for him, >>>>>but it seems like the problems stands elsewhere. >>>>>Ian, are you sure that these modules are present under the >>>>>/boot/modules directory? >>>>Hi, I just checked and the /boot/modules directory is empty so I >>>>guess the problem is there... >>>>Do I need to build a port or something to have them ? >>>You might have option NO_MODULES in your kernel config file. If >>>so, remove it and rebuild your kernel as described in the FreeBSD Handbook: >>>http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html >> >>Hmmm, the reason the the NO_MODULES is set to "yes" in my kernel, >>is because I use PAE >> >>Here is a snip from the "/usr/src/sys/i386/conf/PAE" file >># Don't build modules with this kernel config, since they are not built with >># the correct options headers. >>makeoptions NO_MODULES=yes >> >>So I guess since I am Using PAE, I just can't build the modules... >> >>So from there, what is the recommended solution ? >> >>I tried removing apache22_http_accept_enable="YES" from rc.conf >> >>and using >>AcceptFilter http none >>AcceptFilter https none >>in my httpd.conf file >> >>(I also tried not mentionning the AcceptFilter lines in http.conf) >> >>I still get the same problem >>ie: I get the error message >>[Sat Aug 19 13:00:14 2006] [warn] (2)No such file or directory: >>Failed to enable the 'httpready' Accept Filter >>[Sat Aug 19 13:00:14 2006] [warn] (2)No such file or directory: >>Failed to enable the 'httpready' Accept Filter >>[Sat Aug 19 13:00:14 2006] [warn] (2)No such file or directory: >>Failed to enable the 'httpready' Accept Filter >> >>_______________________________________________ >>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 still have problem with it... From what I understand, the problem comes from the fact that I use PAE. When you compile a kernel with PAE, it is clearly mentionnend we need to use the "no_module=YES" here is a snip from the file "/usr/src/sys/i386/conf/PAE" ~~ # Don't build modules with this kernel config, since they are not built with # the correct options headers. makeoptions NO_MODULES=yes ~~ So basically, the modules are not built :) So I guess that I cannot use acceptfilter with PAE The problem is that apache keeps on asking for the file so I have warning everytime I start apache... From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 00:06:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7C95016A4DA for ; Thu, 31 Aug 2006 00:06:52 +0000 (UTC) (envelope-from mime@traveller.cz) Received: from ss.eunet.cz (ss.eunet.cz [193.85.228.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93D8943D46 for ; Thu, 31 Aug 2006 00:06:51 +0000 (GMT) (envelope-from mime@traveller.cz) Received: from localhost.i.cz (ss.eunet.cz [193.85.228.13]) by ss.eunet.cz (8.13.6/8.13.6) with ESMTP id k7V06gkj029384 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 31 Aug 2006 02:06:42 +0200 (CEST) (envelope-from mime@traveller.cz) From: Michal Mertl To: skylar@cs.earlham.edu In-Reply-To: <44F6036E.7050203@cs.earlham.edu> References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> <44F6036E.7050203@cs.earlham.edu> Content-Type: text/plain Date: Thu, 31 Aug 2006 02:06:40 +0200 Message-Id: <1156982800.1017.37.camel@genius.i.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: backyard1454-bsd@yahoo.com, Jordi Carrillo , freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 00:06:52 -0000 Skylar Thompson wrote: > Jordi Carrillo wrote: > > 2006/8/30, backyard : > >> > >> > >> > >> --- Jordi Carrillo wrote: > >> > >> > I've read that SMP should be disabled for > >> > performance issues (I did not know > >> > that before installing freebsd). I have a P4 3GHz > >> > with hyperthreading > >> > technology. I have the SMP-GENERIC kernel and it > >> > only launches one cpu. So, > >> > I've decided to disable SMP from BIOS. Is that ok?, > >> > knowing that I have a > >> > Smp enabled kernel? or should I install one without > >> > smp? If so, is there a > >> > way to install one already precompiled? > >> > Thanks in advance > >> > > >> > -- > >> > http://jordilin.wordpress.com > >> > _______________________________________________ > >> > 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" > >> > > >> > >> if the system runs with one cpu now and you don't > >> enable smp with HT with the sysctl variable then you > >> should be ok. If your not doing SMP then recompiling > >> the kernel for single processor mode will make things > >> run a little quicker because the SMP code won't come > >> into play. > >> > >> with HT disabling in FreeBSD is more for the security > >> issues about a potential exploit whereby one process > >> in one pipe can access the priveledged information of > >> a process in another pipe because the two cores share > >> one processor cache and thus one cache table. To my > >> knowledge this hasn't been exploited yet. > >> > >> If you just install the generic kernel you it should > >> be only the uniprocessor one. I would just do a: > >> > >> cd /usr/src && make buildworld && make > >> KERNCONF=GENERIC buildkernel && make KERNCONF=GENERIC > >> installkernel > >> > >> as opposed to a binary version assuming you haven't > >> updated yet you won't have to install world but I > >> believe it must have the build in the source tree to > >> build a kernel. On your P4 though the difference > >> between SMP and uniproc may not be worth the trouble > >> because I don't think much of a gain would be made. on > >> a P1 a much different story... > >> > >> if you aren't concerned with bad users or hackers > >> hitting the box I would just enable HT with the sysctl > >> variable. This will not make things run slower at all, > >> just (in theory) less secure, which is why the > >> veriable was created in the first place as I recall. > >> If you are concerned I would wait until you update > >> your system and then just build a GENERIC/CUSTOM > >> kernel without the SMP option set. > >> > >> > >> -brian > >> > > > > > > I will disable smp from bios. If I have a smp kernel, I suppose there > > will > > be no problem after all. Would that be ok? > > The problem with having SMP enabled is that the smp kernel only > > detects one > > cpu and the system monitor only features one cpu as well as gkrellm (in > > Linux it shows two cpus). When compiling the system monitor shows the > > cpu at > > a maximum of 50%, so what's going on with the other 50%? > > writing machdep.hlt_logical_cpus to 2 in loader.conf does not solve > > anything. > I believe FreeBSD uses the other logical CPU to handle hardware > interrupts, which can still help perormance. You can check dmesg to see > how it's actually handling it. No! Kernel threads (e.g. handling interrupts) aren't that much different to normal processes. Logical CPUs on a single HTT capable CPU share most of the CPU logic, especially all the external stuff (handling interrupts). Scheduling handling of interrupts on the "secondary/logical" core wouldn't probably help performance at all (if that is at all possible). When FreeBSD sees logical CPUs it means HTT is either enabled in BIOS or that disabling HTT in BIOS does not hide the CPUs to FreeBSD (bug in BIOS/FreeBSD). Until you enable scheduler to schedule tasks to HTT cores (with machdep.hyperthreading_allowed=1 in loader.conf) (disabled by default due to mentioned security/performance reasons) machine won't utilize the logical HTT CPUs. Therefore total CPU utilization won't be more than 50%, because there are the (unused) logical CPUs which don't get scheduled tasks. As far as know - trying to use HTT normally hurts performance and only a very special load on a machine can show increase in overall performance. Newer Intel CPUs have better HTT (probably meaning less sharing of stuff among the HTT cores - towards current trend - multi-core) and there "they say" it performs quite good with real world load to handle the logical cores as separate CPUs. Of course (if you built purpose built appliance) you can squeeze more from the HW when you exactly know what you need to do - you have some task(s) which do the data analysis and kernel threads which do the interrupt processing/data shifting) - than effectively using HTT might be possible (I have never heard of anyone effectively using HTT). Newest Intel CPUs don't bother with HTT - they are multicore - close to "nothing is shared among (logical) CPUs". You would see each of these CPUs as a CPU in FreeBSD and they will get scheduled tasks to finish. Michal From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 00:28:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6DA9416A4DA for ; Thu, 31 Aug 2006 00:28:06 +0000 (UTC) (envelope-from skylar@cs.earlham.edu) Received: from quark.cs.earlham.edu (cs.earlham.edu [159.28.230.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB3CB43D5A for ; Thu, 31 Aug 2006 00:28:05 +0000 (GMT) (envelope-from skylar@cs.earlham.edu) Received: from [128.95.231.218] (angband.gs.washington.edu [128.95.231.218]) (authenticated bits=0) by quark.cs.earlham.edu (8.13.6/8.13.3) with ESMTP id k7V0RqMv071307 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 Aug 2006 20:27:54 -0400 (EDT) (envelope-from skylar@cs.earlham.edu) X-Authentication-Warning: quark.cs.earlham.edu: Host angband.gs.washington.edu [128.95.231.218] claimed to be [128.95.231.218] Message-ID: <44F62CEE.9040202@cs.earlham.edu> Date: Wed, 30 Aug 2006 17:27:26 -0700 From: Skylar Thompson Organization: Earlham College Computer Science Department User-Agent: Mail/News 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: Michal Mertl References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> <44F6036E.7050203@cs.earlham.edu> <1156982800.1017.37.camel@genius.i.cz> In-Reply-To: <1156982800.1017.37.camel@genius.i.cz> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig2ECE36925D056B72C1EA1CA0" X-Greylist: Sender succeded SMTP AUTH authentication, not delayed by milter-greylist-1.6 (quark.cs.earlham.edu [159.28.230.3]); Wed, 30 Aug 2006 20:27:55 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.2/1623/Wed Jul 26 18:35:11 2006 on quark.cs.earlham.edu X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.56 on 159.28.230.3 X-Spam-Status: No, score=-2.5 required=8.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on quark.cs.earlham.edu Cc: backyard1454-bsd@yahoo.com, Jordi Carrillo , freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: skylar@cs.earlham.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 00:28:06 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig2ECE36925D056B72C1EA1CA0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Michal Mertl wrote: > No! Kernel threads (e.g. handling interrupts) aren't that much differen= t > to normal processes. > > Logical CPUs on a single HTT capable CPU share most of the CPU logic, > especially all the external stuff (handling interrupts). Scheduling > handling of interrupts on the "secondary/logical" core wouldn't > probably help performance at all (if that is at all possible). > =20 Could you clarify note 20031022 in /usr/src/UPDATING? It states that HTT CPUs are used for interrupts if they are detected, even if they aren't used by regular processes. Was this something that just showed up in pre-6.x releases? --=20 -- Skylar Thompson (skylar@cs.earlham.edu) -- http://www.cs.earlham.edu/~skylar/ --------------enig2ECE36925D056B72C1EA1CA0 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (SunOS) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9izwsc4yyULgN4YRAhQcAJ9VJyNxsenAS5coRBEzG/q3eBTNWACcD4F3 1JASoj4DRP8F1rsJoudB/Y0= =GQK8 -----END PGP SIGNATURE----- --------------enig2ECE36925D056B72C1EA1CA0-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 00:30:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 36F6716A4F5 for ; Thu, 31 Aug 2006 00:30:23 +0000 (UTC) (envelope-from mikhailg@webanoide.org) Received: from overlord.navalradio.cl (overlord.navalradio.cl [201.236.67.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DE2A43D45 for ; Thu, 31 Aug 2006 00:30:22 +0000 (GMT) (envelope-from mikhailg@webanoide.org) Received: from [192.168.0.4] (ppp108-110.static.internode.on.net [150.101.108.110]) (authenticated bits=0) by overlord.navalradio.cl (8.13.6/8.13.6) with ESMTP id k7V0TrYp048553; Wed, 30 Aug 2006 20:29:57 -0400 (CLT) (envelope-from mikhailg@webanoide.org) Message-ID: <44F62D8C.1050903@webanoide.org> Date: Thu, 31 Aug 2006 10:30:04 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 1.5.0.5 (Macintosh/20060719) MIME-Version: 1.0 To: Cody Holland References: <4B3EE484EEA4F344BBB62F8316489986803423@corpsrv.RedMoon.local> In-Reply-To: <4B3EE484EEA4F344BBB62F8316489986803423@corpsrv.RedMoon.local> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-100.0 required=5.0 tests=USER_IN_WHITELIST autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on overlord.navalradio.cl Cc: freebsd-questions@freebsd.org Subject: Re: Customized Install CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 00:30:23 -0000 Cody Holland wrote: > I'm looking at trying to build my own customized FreeBSD install CD. The > purpose of this is to be able to install FreeBSD with customized kernel, > certain packages installed and some added scripts of my own. Being that I > have no idea how to do this I have two questions. > > 1. Is this feasible? > > 2. Is there some good literature regarding this on the internet that you > recommend? > > > Any information would be greatly appreciated! Hi, This might put you on the right track: man release(7) http://www.freebsd.org/doc/en_US.ISO8859-1/articles/releng/release-build.html Cheers, Mikhail. -- Mikhail Goriachev Webanoide Telephone: +61 (0)3 62252501 Mobile Phone: +61 (0)4 38255158 E-Mail: mikhailg@webanoide.org Web: http://www.webanoide.org PGP Key ID: 0x4E148A3B PGP Key Fingerprint: D96B 7C14 79A5 8824 B99D 9562 F50E 2F5D 4E14 8A3B From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 01:07:21 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AD36F16A4DA for ; Thu, 31 Aug 2006 01:07:21 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37A6743D4C for ; Thu, 31 Aug 2006 01:07:21 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 5064 invoked from network); 30 Aug 2006 20:07:20 -0500 Received: from 124-168-11-186.dyn.iinet.net.au (HELO localhost) (124.168.11.186) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 30 Aug 2006 20:07:20 -0500 Date: Thu, 31 Aug 2006 11:07:15 +1000 From: Norberto Meijome To: freebsd-questions@freebsd.org Message-ID: <20060831110715.6f3659a2@localhost> In-Reply-To: <20060830175917.vj0qnecnesccogok@216.14.208.16> References: <20060830175917.vj0qnecnesccogok@216.14.208.16> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Pete C Subject: Re: linux-firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 01:07:21 -0000 On Wed, 30 Aug 2006 17:59:17 -0400 Pete C wrote: > did a 'make install' for linux-firefox I got an error that > libXfixes.so.3 (as part of linux-glib2, IIRC) could not be found . . . > after some googling and a few bad leads for some reason I did another > make install and got no errors . . . but now linux-firefox won't run > because libXfixes.so.3 is missing . . . What linux- packages have you installed? $ pkg_info | grep linux linux-XFree86-libs-4.3.99.902_7 XFree86 libraries, Linux binary linux-atk-1.9.1 Accessibility Toolkit, Linux/i386 binary linux-blackdown-jdk-1.4.2_3 Blackdown Java Development Kit 1.4 for Linux linux-expat-1.95.8 Linux/i386 binary port of Expat XML-parsing library linux-firefox-1.5.0.6 Web browser based on the browser portion of Mozilla linux-flashplugin-7.0r63_1 Adobe Flash Player NPAPI Plugin linux-fontconfig-2.2.3_5 Linux/i386 binary of Fontconfig linux-glib2-2.6.6 Version 2.X Linux/i386 binary port of GLib linux-gtk2-2.6.10 GTK+ library, version 2.X, Linux binary linux-hicolor-icon-theme-0.5 A high-color icon theme shell from the FreeDesktproject linux-jpeg-6b.34 RPM of the JPEG lib linux-mplayerplug-in-3.25 Embed MPlayer into browser linux-pango-1.8.1 Linux pango binary linux-png-1.2.8_2 RPM of the PNG lib linux-realplayer-10.0.7.785.20060201 Linux RealPlayer 10 from RealNetworks linux-tiff-3.7.1 TIFF library, Linux/i386 binary linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries linux_base-fc-4_8 Base set of packages needed in Linux mode (for i386/amd64) linux_dri-6.5 Binary Linux DRI libraries for 3D hardware acceleration of linuxpluginwrapper-20051113_4 A wrapper allowing use of linux-plugins with native applica and: $ locate libXfixes /usr/X11R6/lib/libXfixes.a /usr/X11R6/lib/libXfixes.so /usr/X11R6/lib/libXfixes.so.3 /usr/compat/linux/usr/X11R6/lib/libXfixes.so.3 /usr/compat/linux/usr/X11R6/lib/libXfixes.so.3.0 /usr/ports/x11/libXfixes /usr/ports/x11/libXfixes/Makefile /usr/ports/x11/libXfixes/distinfo /usr/ports/x11/libXfixes/pkg-descr /usr/ports/x11/libXfixes/pkg-plist _________________________ {Beto|Norberto|Numard} Meijome "The greater danger for most of us is not that our aim is too high and we miss it. But that it is too low... and we reach it." Michelangelo (1475-1564) I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 01:40:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B5B3E16A4DD for ; Thu, 31 Aug 2006 01:40:22 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51CA643D46 for ; Thu, 31 Aug 2006 01:40:21 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 6492 invoked from network); 30 Aug 2006 20:40:20 -0500 Received: from 124-168-11-186.dyn.iinet.net.au (HELO localhost) (124.168.11.186) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 30 Aug 2006 20:40:20 -0500 Date: Thu, 31 Aug 2006 11:40:17 +1000 From: Norberto Meijome To: Pete C Message-ID: <20060831114017.14efd2ce@localhost> In-Reply-To: <20060830211849.uh8iwjmrbk8c4skc@216.14.208.16> References: <20060830175917.vj0qnecnesccogok@216.14.208.16> <20060831110715.6f3659a2@localhost> <20060830211849.uh8iwjmrbk8c4skc@216.14.208.16> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: linux-firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 01:40:22 -0000 On Wed, 30 Aug 2006 21:18:49 -0400 Pete C wrote: > On Wed, 30 Aug 2006 17:59:17 -0400 > > Pete C wrote: > > > >> did a 'make install' for linux-firefox I got an error that > >> libXfixes.so.3 (as part of linux-glib2, IIRC) could not be found . . . > >> after some googling and a few bad leads for some reason I did another > >> make install and got no errors . . . but now linux-firefox won't run > >> because libXfixes.so.3 is missing . . . > > > > What linux- packages have you installed? > > I get . . . > > [jaguar] ~# pkg_info | grep linux > linux-XFree86-libs-4.3.99.902_7 > XFree86 libraries, Linux binary > linux-atk-1.9.1 Accessibility Toolkit, Linux/i386 binary > linux-expat-1.95.7 Linux/i386 binary port of Expat XML-parsing library > linux-firefox-1.5.0.6 Web browser based on the browser portion of Mozilla > linux-fontconfig-2.2.3_2 Linux/i386 binary of Fontconfig > linux-glib2-2.6.6 Version 2.X Linux/i386 binary port of GLib > linux-hicolor-icon-theme-0.5 A high-color icon theme shell from the > FreeDesktop project > linux-jpeg-6b.34 RPM of the JPEG lib > linux-pango-1.8.1 Linux pango binary > linux-png-1.2.8_2 RPM of the PNG lib > linux-sun-jdk-1.4.2.10 Sun Java Development Kit 1.4 for Linux > linux-tiff-3.7.1 TIFF library, Linux/i386 binary > linux_base-8-8.0_14 Base set of packages needed in Linux mode (for i386/amd64) > linux_base-fc-4_8 Base set of packages needed in Linux mode (for i386/amd64) why do u have 2 _base ? u only need -fc (_base-8 is outdated) > > > > > and: > > $ locate libXfixes > > > > [jaguar] ~# locate libXfixes > /usr/X11R6/lib/libXfixes.a > /usr/X11R6/lib/libXfixes.so > /usr/X11R6/lib/libXfixes.so.3 > /usr/ports/x11/libXfixes > /usr/ports/x11/libXfixes/Makefile > /usr/ports/x11/libXfixes/distinfo > /usr/ports/x11/libXfixes/pkg-descr > /usr/ports/x11/libXfixes/pkg-plist > > Pete C > that' very strange... my linux libXfixes is /usr/compat/linux/usr/X11R6/lib/libXfixes.so.3 -> libXfixes.so.3.0 but neither of them is owned by any pkg (pkg_info -W ... shows zilch).... pkg_info -L linux-XFree* doesnt show them either... sorry, cant look much more into this now... this thing called 'work' keeps nagging ;) B _________________________ {Beto|Norberto|Numard} Meijome "I was born not knowing and have had only a little time to change that here and there." Richard Feynman I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 01:47:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0036316A500 for ; Thu, 31 Aug 2006 01:47:08 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EDE743D45 for ; Thu, 31 Aug 2006 01:47:08 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7V1l6uq052818 for ; Wed, 30 Aug 2006 20:47:06 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Wed, 30 Aug 2006 20:47:06 -0500 User-Agent: KMail/1.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608302047.06425.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: not adding daemons to rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 01:47:09 -0000 ive noticed that apache can be started manually using the apachectl tool, even if it is not enabled in /etc/rc.conf. do many other daemons have this ability? i have a dev server that i would like to not have many things enabled in the rc.conf, but i would like an easy way to just start specific daemons when i need. thanks, jonathan From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 02:11:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6EF0C16A4DE for ; Thu, 31 Aug 2006 02:11:23 +0000 (UTC) (envelope-from jaj13@web.de) Received: from fmmailgate02.web.de (fmmailgate02.web.de [217.72.192.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id E815C43D46 for ; Thu, 31 Aug 2006 02:11:22 +0000 (GMT) (envelope-from jaj13@web.de) Received: from smtp06.web.de (fmsmtp06.dlan.cinetic.de [172.20.5.172]) by fmmailgate02.web.de (Postfix) with ESMTP id CCCD81993E7E; Thu, 31 Aug 2006 04:09:32 +0200 (CEST) Received: from [83.99.31.181] (helo=[10.0.0.11]) by smtp06.web.de with esmtp (WEB.DE 4.107 #114) id 1GIbzo-00043B-00; Thu, 31 Aug 2006 04:09:32 +0200 Message-ID: <44F644DC.8030007@web.de> Date: Thu, 31 Aug 2006 04:09:32 +0200 From: Jona Joachim User-Agent: Thunderbird 1.5.0.5 (X11/20060730) MIME-Version: 1.0 To: Jonathan Horne References: <200608302047.06425.freebsd@dfwlp.com> In-Reply-To: <200608302047.06425.freebsd@dfwlp.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: jaj13@web.de X-Sender: jaj13@web.de Cc: freebsd-questions@freebsd.org Subject: Re: not adding daemons to rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 02:11:23 -0000 Jonathan Horne wrote: > ive noticed that apache can be started manually using the apachectl tool, even > if it is not enabled in /etc/rc.conf. do many other daemons have this > ability? i have a dev server that i would like to not have many things > enabled in the rc.conf, but i would like an easy way to just start specific > daemons when i need. Take a look at /usr/local/etc/rc.d You will see several scripts belonging to server applications you installed. Each one of these scripts can start or stop the service. For example: /usr/local/etc/rc.d/apache.sh start /usr/local/etc/rc.d/apache.sh stop When you put something into rc.conf it is actually this script that is executed, so every daemon that can be enabled in rc.conf can also be started/stopped using those scripts. Daemons coming with the base system have there scripts in the /etc/rc.d directory. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 02:17:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 5FD5E16A4DF for ; Thu, 31 Aug 2006 02:17:24 +0000 (UTC) (envelope-from dwc@stilyagin.com) Received: from puffy.asicommunications.com (puffy.asicommunications.com [216.9.200.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE32943D53 for ; Thu, 31 Aug 2006 02:17:23 +0000 (GMT) (envelope-from dwc@stilyagin.com) Received: from zloy.stilyagin.com (71-35-25-152.phnx.qwest.net [71.35.25.152]) by puffy.asicommunications.com (8.13.4/8.13.3) with ESMTP id k7V2HFNV029082 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Wed, 30 Aug 2006 19:17:16 -0700 (MST) Received: (from dwc@localhost) by zloy.stilyagin.com (8.13.4/8.13.4/Submit) id k7V2H9Oq010426; Wed, 30 Aug 2006 19:17:09 -0700 (MST) Date: Wed, 30 Aug 2006 19:17:09 -0700 From: Darrin Chandler To: Jonathan Horne Message-ID: <20060831021709.GK20373@zloy.stilyagin.com> References: <200608302047.06425.freebsd@dfwlp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200608302047.06425.freebsd@dfwlp.com> User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: not adding daemons to rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 02:17:24 -0000 On Wed, Aug 30, 2006 at 08:47:06PM -0500, Jonathan Horne wrote: > ive noticed that apache can be started manually using the apachectl tool, even > if it is not enabled in /etc/rc.conf. do many other daemons have this > ability? i have a dev server that i would like to not have many things > enabled in the rc.conf, but i would like an easy way to just start specific > daemons when i need. Why, yes. There's nothing "magical" about the rc mechanisms, and you are free to start daemons on your own. Be warned that there may be side effects with some daemons, being that they are not started the same way regarding login class or whatnot. But normally this won't be a problem. -- Darrin Chandler | Phoenix BSD Users Group dwchandler@stilyagin.com | http://bsd.phoenix.az.us/ http://www.stilyagin.com/ | From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 02:37:09 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CB4CF16A4DD for ; Thu, 31 Aug 2006 02:37:09 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F01D43D4C for ; Thu, 31 Aug 2006 02:37:09 +0000 (GMT) (envelope-from freebsd@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id 65D2B291B0B for ; Wed, 30 Aug 2006 23:37:02 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.208.251]) (amavisd-new, port 10024) with ESMTP id 98556-10 for ; Wed, 30 Aug 2006 23:37:08 -0300 (ADT) Received: by hub.org (Postfix, from userid 1046) id D8C7E291B0C; Wed, 30 Aug 2006 23:37:01 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id BF4D2291B0B for ; Wed, 30 Aug 2006 23:37:01 -0300 (ADT) Date: Wed, 30 Aug 2006 23:37:01 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-questions@freebsd.org Message-ID: <20060830233528.A82634@hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: BSDstats: Looking for OpenBSD / NetBSD users ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 02:37:09 -0000 I hate to admit that I've lost email, but I had one OpenBSD/FreeBSD user that was trying to help me get it working there ... but I lost his email ... so, please email me again :( And, I'd like to find a NetBSD user that is willing to help debug/tweak it over there, if there are any laying about here? I don't have either systems, so can't do my own testing :( Thx .. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 02:41:09 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 5E56316A4DA for ; Thu, 31 Aug 2006 02:41:09 +0000 (UTC) (envelope-from fbsd@a1poweruser.com) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC14B43D45 for ; Thu, 31 Aug 2006 02:41:08 +0000 (GMT) (envelope-from fbsd@a1poweruser.com) Received: from barbish ([70.39.69.56]) by mta10.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060831024108.FONQ24294.mta10.adelphia.net@barbish>; Wed, 30 Aug 2006 22:41:08 -0400 From: "fbsd" To: "Philip Hallstrom" Date: Wed, 30 Aug 2006 22:41:02 -0400 Message-ID: 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 IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20060830165348.C14571@bravo.pjkh.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Cc: "freebsd-questions@FreeBSD. ORG" Subject: RE: php5/mysql5 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: fbsd@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 02:41:09 -0000 > Production server is running apache13/php4/mysql4. > Have fresh 6.1 install on workbench PC. > Workbench PC is being used to build apache13/php5/mysql51 > environment > for working php web application writing and reading mysql database. > > Installed mysql51-server then php5 and made sure make config had > apache support. > > When I executed the web application I get > Fatal error: Call to undefined function mysql_pconnect() in > /usr/local/www/mls/signup.php on line 348. > > Is there some other port now required to get php to talk to mysql??? databases/php5-mysql -----Original Message----- From: Philip Hallstrom [mailto:freebsd@philip.pjkh.com] Sent: Wednesday, August 30, 2006 5:54 PM To: fbsd Cc: freebsd-questions@FreeBSD. ORG Subject: Re: php5/mysql5 That was the correct solution. Thanks From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 02:44:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BF15116A4DA for ; Thu, 31 Aug 2006 02:44:06 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F7A043D70 for ; Thu, 31 Aug 2006 02:44:06 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 6837F1A4D8C for ; Wed, 30 Aug 2006 19:44:06 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8F58453A93; Wed, 30 Aug 2006 22:44:05 -0400 (EDT) Date: Wed, 30 Aug 2006 22:44:05 -0400 From: Kris Kennaway To: Free BSD Questions list Message-ID: <20060831024405.GA50384@xor.obsecurity.org> References: <20060826002654.GA21168@teddy.fas.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RnlQjJ0d97Da+TV1" Content-Disposition: inline In-Reply-To: <20060826002654.GA21168@teddy.fas.com> User-Agent: Mutt/1.4.2.2i Subject: Re: AMD64 make buildworld failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 02:44:06 -0000 --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 25, 2006 at 08:26:54PM -0400, stan wrote: > I'm trying to do a buildworld (AMD64) on a Sum Ultra 40, but it's failing > like this: >=20 > cc -O2 -fno-strict-aliasing -pipe -DRRESTORE -DRESCUE -c > /usr/src/sbin/restore > /restore.c > cc -O2 -fno-strict-aliasing -pipe -DRRESTORE -DRESCUE -c > /usr/src/sbin/restore > /dirs.c > /usr/src/sbin/restore/dirs.c: In function `extractdirs': > /usr/src/sbin/restore/dirs.c:192: internal compiler error: Segmentation > fault: 1 > 1 > Please submit a full bug report, > with preprocessed source if appropriate. > See for instructions. > *** Error code 1 >=20 > Stop in /usr/src/sbin/restore. > *** Error code 1 >=20 > Stop in /usr/obj/usr/src/rescue/rescue. > *** Error code 1 >=20 > This is installed from the 6.1 Release CD, and then cvsup'd >=20 > Can anyone tell me where I should start looking. That URL, or the FreeBSD FAQ. Kris --RnlQjJ0d97Da+TV1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE9kz1Wry0BWjoQKURArdQAJ4ulkJadr1ELW0I52of7PA6kA31wwCgqRX9 cbwEAvrciqI8ZffsDDQmq/w= =buSA -----END PGP SIGNATURE----- --RnlQjJ0d97Da+TV1-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 02:50:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 16FCA16A4DD for ; Thu, 31 Aug 2006 02:50:34 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 917AE43D46 for ; Thu, 31 Aug 2006 02:50:33 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from mr02.lnh.mail.rcn.net ([207.172.157.22]) by smtp02.lnh.mail.rcn.net with ESMTP; 30 Aug 2006 22:50:32 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr02.lnh.mail.rcn.net (MOS 3.7.5a-GA) with ESMTP id MEH78172; Wed, 30 Aug 2006 22:50:31 -0400 (EDT) Received: from 209-6-203-219.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.203.219]) by smtp01.lnh.mail.rcn.net with ESMTP; 30 Aug 2006 22:50:29 -0400 X-IronPort-AV: i="4.08,191,1154923200"; d="scan'208"; a="267916039:sNHT33718384" From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17654.20089.979688.377694@jerusalem.litteratus.org> Date: Wed, 30 Aug 2006 22:50:33 -0400 To: freebsd-questions@freebsd.org In-Reply-To: <20060831021709.GK20373@zloy.stilyagin.com> References: <200608302047.06425.freebsd@dfwlp.com> <20060831021709.GK20373@zloy.stilyagin.com> X-Mailer: VM 7.17 under 21.5 (beta27) "fiddleheads" XEmacs Lucid X-Junkmail-Status: score=10/50, host=mr02.lnh.mail.rcn.net X-Junkmail-SD-Raw: score=unknown, refid=str=0001.0A090203.44F64D2F.0054,ss=1,fgs=0, ip=207.172.4.11, so=2006-05-09 23:27:51, dmn=5.2.113/2006-07-26 Subject: Re: not adding daemons to rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 02:50:34 -0000 Darrin Chandler writes: > On Wed, Aug 30, 2006 at 08:47:06PM -0500, Jonathan Horne wrote: > > ive noticed that apache can be started manually using the > > apachectl tool, even if it is not enabled in /etc/rc.conf. do > > many other daemons have this ability? i have a dev server > > that i would like to not have many things enabled in the > > rc.conf, but i would like an easy way to just start specific > > daemons when i need. > > Why, yes. There's nothing "magical" about the rc mechanisms, and > you are free to start daemons on your own. Be warned that there > may be side effects with some daemons, being that they are not > started the same way regarding login class or whatnot. But > normally this won't be a problem. The cool thing about using a properly designed script is it will be aware of all the things which need to be started first and try to start them is they aren't already running. For a hard-core development server maybe this doesn't matter ... but the closer one gets to a production environment, the more useful it tends to become. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 03:39:44 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BACEE16A4DA for ; Thu, 31 Aug 2006 03:39:44 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9214443D73 for ; Thu, 31 Aug 2006 03:39:39 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 11179 invoked from network); 30 Aug 2006 22:39:38 -0500 Received: from 124-168-11-186.dyn.iinet.net.au (HELO localhost) (124.168.11.186) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 30 Aug 2006 22:39:38 -0500 Date: Thu, 31 Aug 2006 13:39:35 +1000 From: Norberto Meijome To: stan Message-ID: <20060831133935.4b649079@localhost> In-Reply-To: <20060830220228.GB28263@teddy.fas.com> References: <20060830220228.GB28263@teddy.fas.com> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Free BSD Questions list Subject: Re: 6.1 current instabilty on Sun Ultra 40's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 03:39:44 -0000 On Wed, 30 Aug 2006 18:02:28 -0400 stan wrote: > I can't get 6.1 to even compile a new kernel on 2 different Sun > Ultra 40's Anyone have nay reason that it should not work on these machines? Stan, as a general rule, telling the list what you did and the (exact) error / problems you encountered will give better results... Sorry I can't be of help in this particular issue. _________________________ {Beto|Norberto|Numard} Meijome What you are afraid to do is a clear indicator of the next thing you need to do. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 03:42:20 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 76CCD16A4DE for ; Thu, 31 Aug 2006 03:42:20 +0000 (UTC) (envelope-from mcrogerm@stjohn.ac.th) Received: from stjohn.ac.th (ns.stjohn.ac.th [202.21.144.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4131C43D49 for ; Thu, 31 Aug 2006 03:42:18 +0000 (GMT) (envelope-from mcrogerm@stjohn.ac.th) Received: from tulip.stjohn.ac.th [203.151.134.104] by stjohn.ac.th with ESMTP (SMTPD-8.21) id A9C209B8; Thu, 31 Aug 2006 10:38:42 +0700 Message-Id: <5.2.0.9.0.20060831104131.00ab89e8@127.0.0.1> X-Sender: 2-server.international.stjohn.ac.th:mcrogerm@127.0.0.1 X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Thu, 31 Aug 2006 10:42:59 +0700 To: Derek Ragona From: Roger Merritt In-Reply-To: <20060830083647.H70030@betty.computinginnovations.com> References: <5.2.0.9.0.20060830075547.00aa9670@127.0.0.1> <5.2.0.9.0.20060830075547.00aa9670@127.0.0.1> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Monitor display problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 03:42:20 -0000 At 08:38 AM 8/30/2006 -0500, Derek Ragona wrote: >I would check the errat on the S3 you are using. It sounds like there may >be some kernel/system changes you may need to make since your lockups are >from going back to text mode from graphics mode. It is likely some >conflict this is causing is hardware related. Yeah, I agree it's hardware related, but I think there's a software solution. What's the 'errat' and where/how do I check it? -- Roger From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 03:42:31 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 53EAD16A4F0 for ; Thu, 31 Aug 2006 03:42:31 +0000 (UTC) (envelope-from danielby@slightlystrange.org) Received: from mtaout01-winn.ispmail.ntl.com (mtaout01-winn.ispmail.ntl.com [81.103.221.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D52043D46 for ; Thu, 31 Aug 2006 03:42:28 +0000 (GMT) (envelope-from danielby@slightlystrange.org) Received: from aamtaout02-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout01-winn.ispmail.ntl.com with ESMTP id <20060831034227.VBKK15018.mtaout01-winn.ispmail.ntl.com@aamtaout02-winn.ispmail.ntl.com> for ; Thu, 31 Aug 2006 04:42:27 +0100 Received: from catflap.slightlystrange.org ([82.21.101.251]) by aamtaout02-winn.ispmail.ntl.com with ESMTP id <20060831034227.PXVQ23938.aamtaout02-winn.ispmail.ntl.com@catflap.slightlystrange.org> for ; Thu, 31 Aug 2006 04:42:27 +0100 Received: from danielby by catflap.slightlystrange.org with local (Exim 4.63 #0) id 1GIdBi-000MYW-Ix by authid for ; Thu, 31 Aug 2006 04:25:54 +0100 Date: Thu, 31 Aug 2006 04:25:54 +0100 From: Daniel Bye To: freebsd-questions@freebsd.org Message-ID: <20060831032554.GA84168@catflap.slightlystrange.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <200608302047.06425.freebsd@dfwlp.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="a8Wt8u1KmwUX3Y2C" Content-Disposition: inline In-Reply-To: <200608302047.06425.freebsd@dfwlp.com> User-Agent: Mutt/1.4.2.2i X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: danielby@slightlystrange.org X-SA-Exim-Scanned: No (on catflap.slightlystrange.org); SAEximRunCond expanded to false Subject: Re: not adding daemons to rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Bye List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 03:42:31 -0000 --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 30, 2006 at 08:47:06PM -0500, Jonathan Horne wrote: > ive noticed that apache can be started manually using the apachectl tool,= even> if it is not enabled in /etc/rc.conf. do many other daemons have th= is=20 > ability? i have a dev server that i would like to not have many things= =20 > enabled in the rc.conf, but i would like an easy way to just start specif= ic=20 > daemons when i need. There is the "force" modifier which may be of help/interest. It works like this: # /usr/local/etc/rc.d/script forcestart This will, well, force the script to run, even if it's not explicitly enabled in /etc/rc.conf. Close to what you want? --=20 Daniel Bye PGP Key: http://www.slightlystrange.org/pgpkey-dan.asc PGP Key fingerprint: D349 B109 0EB8 2554 4D75 B79A 8B17 F97C 1622 166A _ ASCII ribbon campaign ( ) - against HTML, vCards and X - proprietary attachments in e-mail / \ --a8Wt8u1KmwUX3Y2C Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE9lbCixf5fBYiFmoRAtNTAJ9B3M1yrX3No6AsYVRcBQf7IzuH1wCeMi59 8BNhoCz33qsFJzP5VvO6RmI= =SpC2 -----END PGP SIGNATURE----- --a8Wt8u1KmwUX3Y2C-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 03:45:54 2006 Return-Path: X-Original-To: questions@freebsd.org 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 64D5616A4DD for ; Thu, 31 Aug 2006 03:45:54 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E7F243D49 for ; Thu, 31 Aug 2006 03:45:54 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id E86D01A4D8C; Wed, 30 Aug 2006 20:45:53 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B6F6451193; Wed, 30 Aug 2006 23:45:52 -0400 (EDT) Date: Wed, 30 Aug 2006 23:45:52 -0400 From: Kris Kennaway To: Laurence Sanford Message-ID: <20060831034551.GA95696@xor.obsecurity.org> References: <44F4BC29.7020804@wilderness.homeip.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qMm9M+Fa2AknHoGS" Content-Disposition: inline In-Reply-To: <44F4BC29.7020804@wilderness.homeip.net> User-Agent: Mutt/1.4.2.2i Cc: questions@freebsd.org Subject: Re: 6.1 crashing, no vm dump X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 03:45:54 -0000 --qMm9M+Fa2AknHoGS Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 29, 2006 at 05:14:01PM -0500, Laurence Sanford wrote: > I'm not much on posting mystery stuff for people to try to solve, but=20 > I'm at the end of my rope with this one. I have a box that's been pretty= =20 > stable until very recently, and I don't know if I may have missed=20 > something important that was posted somewhere about a problem, or what.= =20 > I can reproduce crashes with this system through disk activity though. >=20 > Example situation: >=20 > I'm downloading an ISO @ 300+ K/s, and ftp a 3 gig file from this system= =20 > to another system on my LAN at the same time. It will simply reboot. No= =20 > error message, nothing in the logs, it just reboots. That typically means "marginal or failing hardware". There's lots of discussion of people with similar problems to yours in the archive, but the short answer is: test and/or replace all your hardware components until you find which one it was (start with CPU fan, power supply, cabling, clean out accumulated dust, etc). Kris --qMm9M+Fa2AknHoGS Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE9ltuWry0BWjoQKURAjqMAKCMfxRPjT1u24WPi805ilqJHKMlvgCeP0jo NISq0NcK2dIXyrMPk5owKsg= =7SHE -----END PGP SIGNATURE----- --qMm9M+Fa2AknHoGS-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 03:54:44 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 38E8116A4E0 for ; Thu, 31 Aug 2006 03:54:44 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4EC043D82 for ; Thu, 31 Aug 2006 03:54:18 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 379861A4D8E; Wed, 30 Aug 2006 20:54:18 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 2DB77533CC; Wed, 30 Aug 2006 23:54:17 -0400 (EDT) Date: Wed, 30 Aug 2006 23:54:16 -0400 From: Kris Kennaway To: "Dr. Jennifer Nussbaum" Message-ID: <20060831035416.GA95969@xor.obsecurity.org> References: <20060828161718.P67591@scorpio.seibercom.net> <20060828205915.8181.qmail@web53409.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="jI8keyz6grp/JLjh" Content-Disposition: inline In-Reply-To: <20060828205915.8181.qmail@web53409.mail.yahoo.com> User-Agent: Mutt/1.4.2.2i Cc: Gerard Seibert , FreeBSD-Questions Subject: Re: Various package/ports problems X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 03:54:44 -0000 --jI8keyz6grp/JLjh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 28, 2006 at 01:59:14PM -0700, Dr. Jennifer Nussbaum wrote: > I wish i could, but i dont have physical access to the machine - its > in a remote location with no serial console. So if anything gets=20 > messed up during an upgrade, im in a hell of a lot of trouble. >=20 > I dont know when i'll be able to fix this problem so until i can upgrade > the OS i at least want to keep the rest of it up to date. The packages are compiled for 4.11-stable and do not work with systems much older than this (e.g. 4.8, as you discovered). You might have more luck compiling from the ports collection, although that too only supports 4.11 officially (and modern releases, of course). Kris --jI8keyz6grp/JLjh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE9l1nWry0BWjoQKURAutxAKDLEiISRPda5NG0M5aLZLdixnPi+wCdGWmj mPK/2lDowANw7ZS/qD4xHQY= =1yLQ -----END PGP SIGNATURE----- --jI8keyz6grp/JLjh-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 04:01:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 49AAD16A4DA for ; Thu, 31 Aug 2006 04:01:18 +0000 (UTC) (envelope-from stanb@panix.com) Received: from mail2.panix.com (mail2.panix.com [166.84.1.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id B050243D62 for ; Thu, 31 Aug 2006 04:01:09 +0000 (GMT) (envelope-from stanb@panix.com) Received: from mailspool3.panix.com (mailspool3.panix.com [166.84.1.78]) by mail2.panix.com (Postfix) with ESMTP id 896BE9D843; Thu, 31 Aug 2006 00:01:08 -0400 (EDT) Received: from teddy.fas.com (c-68-58-232-106.hsd1.sc.comcast.net [68.58.232.106]) by mailspool3.panix.com (Postfix) with ESMTP id 4D53B62E40; Thu, 31 Aug 2006 00:01:08 -0400 (EDT) Received: from stan by teddy.fas.com with local (Exim 3.36 #1 (Debian)) id 1GIdjn-0001k4-00; Thu, 31 Aug 2006 00:01:07 -0400 Date: Thu, 31 Aug 2006 00:01:07 -0400 From: stan To: Norberto Meijome Message-ID: <20060831040107.GA6371@teddy.fas.com> Mail-Followup-To: Norberto Meijome , Free BSD Questions list References: <20060830220228.GB28263@teddy.fas.com> <20060831133935.4b649079@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060831133935.4b649079@localhost> X-Editor: gVim X-Operating-System: Debian GNU/Linux X-Kernel-Version: 2.4.23 X-Uptime: 23:52:58 up 136 days, 59 min, 2 users, load average: 0.08, 0.07, 0.03 User-Agent: Mutt/1.5.4i Sender: Stan Brown Cc: Free BSD Questions list Subject: Re: 6.1 current instabilty on Sun Ultra 40's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 04:01:18 -0000 On Thu, Aug 31, 2006 at 01:39:35PM +1000, Norberto Meijome wrote: > On Wed, 30 Aug 2006 18:02:28 -0400 > stan wrote: > > > I can't get 6.1 to even compile a new kernel on 2 different Sun > > Ultra 40's Anyone have nay reason that it should not work on these machines? > > Stan, > as a general rule, telling the list what you did and the (exact) error / > problems you encountered will give better results... > > Sorry I can't be of help in this particular issue. > That would be a little hard to summarize, as it's taken a couple of months to come to the conclusion that FreeBSD is unusable on these machines. Partly because I only have 2 of them, one of which is in daily critical production running Linux. I had assumed that I might have hardware problems on the machine I'm trying to use for FreeBSD, despite having run _extensive_ hardware diagnostics. Yesterday, in desperation< I shut down the machine running Linux, and put the boot disk from the other machine in it. On that disk is a world, built from last weekends cvsup. I was able to reproduce it's instability to build a generic kernel. It fails with a signal (I believe) 11, Basically I was flagging others who may be considering buying this hardware, with the intent of running FreeBSD on it to not do so. Without having machines to give to developers, I don't really expect this situation to get corrected in the foreseeable future. Having said that, at this point I have a machine that I really can't use for the application it was purchased for. I'd be willing to do any testing the developers might be interested in doing on this machine. -- Unix is very simple, but it takes a genius to understand the simplicity. (Dennis Ritchie) From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 04:44:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D7C8216A4DA for ; Thu, 31 Aug 2006 04:44:34 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 624FF43D53 for ; Thu, 31 Aug 2006 04:44:34 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 13793 invoked from network); 30 Aug 2006 23:44:33 -0500 Received: from 210-84-37-4.dyn.iinet.net.au (HELO localhost) (210.84.37.4) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 30 Aug 2006 23:44:33 -0500 Date: Thu, 31 Aug 2006 14:44:28 +1000 From: Norberto Meijome To: stan Message-ID: <20060831144428.1956286a@localhost> In-Reply-To: <20060831040107.GA6371@teddy.fas.com> References: <20060830220228.GB28263@teddy.fas.com> <20060831133935.4b649079@localhost> <20060831040107.GA6371@teddy.fas.com> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Free BSD Questions list Subject: Re: 6.1 current instabilty on Sun Ultra 40's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 04:44:34 -0000 On Thu, 31 Aug 2006 00:01:07 -0400 stan wrote: > On that disk is a world, built from last weekends cvsup. I was able > to reproduce it's instability to build a generic kernel. It fails with > a signal (I believe) 11, fair enough :) btw, from past experience, sig_fault 11 usually points to faulty hardware (usually RAM...) - haven't found them much on BSD, but i'd get them all the time when using lesser hardware on linux (building kernel was a standard way to test the hardware back then).... but since you've ruled out hardware... i dont know what else :) good luck, B _________________________ {Beto|Norberto|Numard} Meijome Which is worse: ignorance or apathy? Don't know. Don't care. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 06:25:21 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 38B6616A4DD for ; Thu, 31 Aug 2006 06:25:21 +0000 (UTC) (envelope-from freebsd@gorlani.net) Received: from smtpa2.aruba.it (smtpa1.aruba.it [62.149.128.206]) by mx1.FreeBSD.org (Postfix) with SMTP id 5B13E43D4C for ; Thu, 31 Aug 2006 06:25:19 +0000 (GMT) (envelope-from freebsd@gorlani.net) Received: (qmail 24171 invoked by uid 89); 31 Aug 2006 06:25:14 -0000 Received: by simscan 1.1.0 ppid: 24164, pid: 24169, t: 0.1826s scanners: clamav: 0.80/m:29/d:680 Received: from unknown (HELO Enigma) (gorlani@gorlani.com@87.28.15.213) by smtp2.aruba.it with SMTP; 31 Aug 2006 06:25:14 -0000 Message-ID: <000701c6ccc6$38a842e0$c75afea9@Enigma> From: "freebsd" To: "FreeBSD Questions" Date: Thu, 31 Aug 2006 08:25:13 +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.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-Spam-Rating: smtp2.aruba.it 1.6.2 0/1000/N Subject: Unable to install on CompaQ D310 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 06:25:21 -0000 Hi all I tied to install 6.1 on a CompaQ D310. At the beginning I only got a BTX Halt. Then after googling around I found a similar problem on the D510 and disabled DMA in the BIOS. Now the system boots (the same with the floppy set), but when it comes to partitioning I got "No disk drives found!". The ATA controller is found in the dmesg log and the CD is obviously working. The machine is a 2.4 P4 with 768Mb and 60Gb ata disk. Any ideas? From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 06:29:52 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 C5FD716A4DA for ; Thu, 31 Aug 2006 06:29:52 +0000 (UTC) (envelope-from badaei@yahoo.com) Received: from web55208.mail.re4.yahoo.com (web55208.mail.re4.yahoo.com [206.190.58.172]) by mx1.FreeBSD.org (Postfix) with SMTP id 3CD1343D46 for ; Thu, 31 Aug 2006 06:29:52 +0000 (GMT) (envelope-from badaei@yahoo.com) Received: (qmail 62897 invoked by uid 60001); 31 Aug 2006 06:29:51 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type; b=TKOtIrC3B8SIxxLt49TBzMkUM6RMVzm6uTC3W6WFdx2MW3BHbJFCLnGka0OR+txT6LMCp2xWEVq3ltxlt/xFVJa9gfaK0jMtQZCnOoDwTuNy5enZkn2Qde6H2bX8MCEYIMBluREwg3lsnrMu4duoksL7vlg0WxjZ2G7KaqVhTy0= ; Message-ID: <20060831062951.62895.qmail@web55208.mail.re4.yahoo.com> Received: from [72.134.0.217] by web55208.mail.re4.yahoo.com via HTTP; Thu, 31 Aug 2006 13:29:51 ICT Date: Thu, 31 Aug 2006 13:29:51 +0700 (ICT) From: babak badaei To: freebsd-questions@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: Any suggestion regarding /DEV wipe out on freebsd 4.7? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: babak badaei List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 06:29:52 -0000 Hello, A few days ago I was not able to log into my machine using SSH. I got this following message "Server refused to allocate pty". I was, somewhat fortunately, able to log using SCP. So SCP works. The file system looked good for the most part; until I checked out "/DEV". Almost everything was GONE! Including MAKEDEV. Not sure what to do. Possible clue: Before this happened, last time I was actually logged in via SSH, I ran a dropdb command on one of my postgres databases and got an error message saying I did not have permission to "/DEV/NULL". Not sure what to do, I set permissions to allow write on "NULL". I have done "dropdb" many times before and had never seen that message. If anyone has any clue as do how I may restore /DEV; or how this could have happened. I would appreciate your input. I am running freeBSD 4.7 with 2GB of memory on an Intel Xeon machine. Only thing left in /DEV is a file for each harddrive partition. Thanks! From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 07:04:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 989DA16A4DD for ; Thu, 31 Aug 2006 07:04:12 +0000 (UTC) (envelope-from chiiz@rambler.ru) Received: from mxb.rambler.ru (mxb.rambler.ru [81.19.66.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3226743D45 for ; Thu, 31 Aug 2006 07:04:11 +0000 (GMT) (envelope-from chiiz@rambler.ru) Received: from rambler.ru (mail18.rambler.ru [81.19.71.20]) by mxb.rambler.ru (Postfix) with ESMTP id EFC1D1EE9B6 for ; Thu, 31 Aug 2006 11:04:10 +0400 (MSD) Received: from [80.255.179.26] (account chiiz@rambler.ru) by mail18.rambler.ru (CommuniGate Pro WebUser 4.2.10) with HTTP id 19391848 for freebsd-questions@FreeBSD.org; Thu, 31 Aug 2006 11:04:10 +0400 From: "Misha Pupkin" To: freebsd-questions@FreeBSD.org X-Mailer: CommuniGate Pro WebUser Interface v.4.2.10 Date: Thu, 31 Aug 2006 11:04:10 +0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251"; format="flowed" Content-Transfer-Encoding: 8bit Cc: Subject: (no subject) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 07:04:12 -0000 Excuse for my English. Pair ideas for promotion FreeBSD! 1) Everyone search for a place in the organization desktop on base FreeBSD Probably, it is necessary to use as follows On one computer to force to work at once some monitors, some keyboards and mouses. To whom it is necessary to those can work in a word-processor to you OpenOffice, who on the Internet please Firefox, etc. if needs to get access up to MS products (for example Navision) that please rDesktop. It is possible to save on licenses and on hardware! 2) The distributed{allocated} calculations to make the standard decision I.e. all network as one computer! This a chesspiece! MS before will not reach never. I.e. if not capacity that suffices buy one more machine both put anywhere and you will receive result. 3) Then so the idea to not compete with MS and to be in its{her} current i.e. To not try to replace MS Server, and to do{make} back Domen. To do{make} Net Share. 4) Then one more problem will be never solved windows by systems. It not effective utilization HDD, i.e. a minimum now hdd on 40Gb, Windows c the maximum borrows{occupies} with programs 10Gb, i.e. 30 stands idle! And if at me the park of 50 machines that is received 30õ50 = 1500Gb decent space, naturally effective from them will be likely 500Gb but too it is not bad! To use it it is possible for additional backups and personal needs where it is not required to raised{increased} reliability. Though it is possible to organize network RAID. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 07:20:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E4BAC16A501 for ; Thu, 31 Aug 2006 07:20:43 +0000 (UTC) (envelope-from matti.k@bigpond.net.au) Received: from omta01ps.mx.bigpond.com (omta01ps.mx.bigpond.com [144.140.82.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D1E443D45 for ; Thu, 31 Aug 2006 07:20:38 +0000 (GMT) (envelope-from matti.k@bigpond.net.au) Received: from platypus.freebsd.home ([138.130.171.234]) by omta01ps.mx.bigpond.com with ESMTP id <20060831072036.CBKZ29999.omta01ps.mx.bigpond.com@platypus.freebsd.home>; Thu, 31 Aug 2006 07:20:36 +0000 Date: Thu, 31 Aug 2006 17:17:28 +1000 From: matti k To: Philip Hallstrom Message-ID: <20060831171728.15b8767a@platypus.freebsd.home> In-Reply-To: <20060829180800.C70930@bravo.pjkh.com> References: <20060829180800.C70930@bravo.pjkh.com> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Any issue having multiple sound cards running at the same time in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 07:20:44 -0000 On Tue, 29 Aug 2006 18:09:48 -0500 (CDT) Philip Hallstrom wrote: > Hi all - > > I've got a freebsd server in the garage that has a low end > soundblaster (I think) card in it that I've been using to play > music. Works just fine. We moved and now I'd like to be able to have > different music play in different rooms (living, family, and > outside). I can do all the other wiring for speakers... > > But was wondering if there are any problems having three sound cards > in the box and have them all work at the same time. I'm currently > using flac123 to play music and would probably continue to do so... > > Thoughts? I've had 3 sound cards running simultaneously, playing differnet mp3's and OGG's using 3 instances of xmms. From memory I ran it for about an hour before i pulled the plug. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 08:33:32 2006 Return-Path: X-Original-To: questions@FreeBSD.org 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 BCAF616A4E0 for ; Thu, 31 Aug 2006 08:33:32 +0000 (UTC) (envelope-from adswithliz@merger-marketing.net) Received: from web36909.mail.mud.yahoo.com (web36909.mail.mud.yahoo.com [209.191.85.77]) by mx1.FreeBSD.org (Postfix) with SMTP id 57A4243D72 for ; Thu, 31 Aug 2006 08:33:25 +0000 (GMT) (envelope-from adswithliz@merger-marketing.net) Received: (qmail 81079 invoked by uid 60001); 31 Aug 2006 08:33:24 -0000 Message-ID: <20060831083324.81077.qmail@web36909.mail.mud.yahoo.com> Received: from [202.134.173.115] by web36909.mail.mud.yahoo.com via HTTP; Thu, 31 Aug 2006 01:33:24 PDT Date: Thu, 31 Aug 2006 01:33:24 -0700 (PDT) From: Elizabeth Sherry To: 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.5 Cc: Subject: Advertising opportunity on http://www.freebsd.org X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 08:33:32 -0000 Hi, My name is Liz and I am an Internet Advertising Coordinator for a marketing company located in California. We are engaged in an advertising campaign for our clients, and found your site, http://www.freebsd.org/old/ports/games.html to be a great match for our needs. At the moment, we are not looking for banner advertisements. Do you have flexibility with your advertising programs? If you do, please don’t hesitate to contact me and I’ll explain more about what I’m looking for. Also, if you have any advertising information available including rates, I’d appreciate it if you could include those in your reply. Thank you for your time and attention and I hope to hear from you soon. Sincerely, (Liz) Advertising Coordinator (adswithliz@merger-marketing.net) Merger Marketing Sun Valley, CA From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 08:38:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BE9C916A4E0 for ; Thu, 31 Aug 2006 08:38:38 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 221F943D46 for ; Thu, 31 Aug 2006 08:38:38 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from admin.sem.ipt.ru ([192.168.12.1] helo=srv.sem.ipt.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GIi4J-000IY8-As; Thu, 31 Aug 2006 12:38:35 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GIi1k-000ITI-Eo; Thu, 31 Aug 2006 12:35:56 +0400 To: Pete C References: <20060830175917.vj0qnecnesccogok@216.14.208.16> From: Boris Samorodov Date: Thu, 31 Aug 2006 12:35:56 +0400 In-Reply-To: <20060830175917.vj0qnecnesccogok@216.14.208.16> (Pete C.'s message of "Wed, 30 Aug 2006 17:59:17 -0400") Message-ID: <05531507@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: linux-firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 08:38:38 -0000 On Wed, 30 Aug 2006 17:59:17 -0400 Pete C wrote: > did a 'make install' for linux-firefox I got an error that > libXfixes.so.3 (as part of linux-glib2, IIRC) could not be found . . . > after some googling and a few bad leads for some reason I did another > make install and got no errors . . . but now linux-firefox won't run > because libXfixes.so.3 is missing . . . > Any clues appreciated . . . Did you read /usr/ports/UPDATING (20060616: AFFECTS users of emulation/linux_base-*)? WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 08:52:02 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 8D06616A4E0 for ; Thu, 31 Aug 2006 08:52:02 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4734743D53 for ; Thu, 31 Aug 2006 08:52:01 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 027425E35; Thu, 31 Aug 2006 12:52:00 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id D57645E31; Thu, 31 Aug 2006 12:51:59 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.6/8.13.6) id k7V8qQlJ051830; Thu, 31 Aug 2006 12:52:26 +0400 (MSD) (envelope-from ru) Date: Thu, 31 Aug 2006 12:52:25 +0400 From: Ruslan Ermilov To: Thomas Vogt Message-ID: <20060831085225.GF14958@rambler-co.ru> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9ADF8FXzFeE7X4jE" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.12-2006-07-14 X-Virus-Scanned: No virus found Cc: freebsd-questions@FreeBSD.org Subject: Re: who do you install freebsd without sysinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 08:52:02 -0000 --9ADF8FXzFeE7X4jE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable [ added freebsd-questios@ ] On Thu, Aug 31, 2006 at 02:08:59AM +0200, Thomas Vogt wrote: > Hello >=20 > In this emails=20 > = you=20 > wrote that you don't install freebsd with sysinstall. May I ask you how y= ou=20 > do this? Maybe in some way like this:=20 > ? >=20 > I'm just curious. >=20 Plenty of options, depending on the available environment and needs. 1) Add a spare disk to an existing FreeBSD box, and populate it using installworld/installkernel/distribution targets and specifying DESTDIR pointing to a mounted spare disk. 2) Boot from live-system on CD-ROM, prepare and partition the disk(s), install distributions manually through install.sh scripts. 3) Boot from live-system on CD-ROM, prepare and partition the disk(s), CVSup, build/install from sources. 4) Boot in a PXE/TFTP/NFS diskless environment (details are in the Handbook), install distributions using a shell script as above. Distributions may come from either remote CD-ROM media, or be prepared by "make release" and made available over NFS to diskless clients. A modification of this approach includes a mass deployment option that involves writing (relatively simple) local installation scripts that automate the tasks. Many other options... Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --9ADF8FXzFeE7X4jE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE9qNJqRfpzJluFF4RAve6AJ4/eDSqYu69nVM1t8p3bSxkhqeIiQCcCY7M 4AwH75qPPejIor5YvnOcskI= =onMy -----END PGP SIGNATURE----- --9ADF8FXzFeE7X4jE-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 09:06:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 91E3A16A4DE for ; Thu, 31 Aug 2006 09:06:19 +0000 (UTC) (envelope-from nvass@teledomenet.gr) Received: from matrix.teledomenet.gr (dns1.teledomenet.gr [213.142.128.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7FD443D55 for ; Thu, 31 Aug 2006 09:06:17 +0000 (GMT) (envelope-from nvass@teledomenet.gr) Received: from iris ([192.168.1.71]) by matrix.teledomenet.gr (8.12.10/8.12.10) with ESMTP id k7V96FEY007135; Thu, 31 Aug 2006 12:06:16 +0300 From: Nikos Vassiliadis To: freebsd-questions@freebsd.org, babak badaei Date: Thu, 31 Aug 2006 12:05:04 +0300 User-Agent: KMail/1.9.1 References: <20060831062951.62895.qmail@web55208.mail.re4.yahoo.com> In-Reply-To: <20060831062951.62895.qmail@web55208.mail.re4.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608311205.05468.nvass@teledomenet.gr> Cc: Subject: Re: Any suggestion regarding /DEV wipe out on freebsd 4.7? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 09:06:19 -0000 On Thursday 31 August 2006 09:29, babak badaei wrote: > Hello, > > A few days ago I was not able to log into my machine using SSH. I got this > following message "Server refused to allocate pty". I was, somewhat > fortunately, able to log using SCP. So SCP works. The file system looked > good for the most part; until I checked out "/DEV". Almost everything was > GONE! Including MAKEDEV. Not sure what to do. > > Possible clue: Before this happened, last time I was actually logged in via > SSH, I ran a dropdb command on one of my postgres databases and got an > error message saying I did not have permission to "/DEV/NULL". Not sure > what to do, I set permissions to allow write on "NULL". I have done > "dropdb" many times before and had never seen that message. > > If anyone has any clue as do how I may restore /DEV; or how this could have > happened. I would appreciate your input. I am running freeBSD 4.7 with 2GB > of memory on an Intel Xeon machine. Only thing left in /DEV is a file for > each harddrive partition. > > Thanks! > According to a 4.10-something box I have, the only plain files in /dev/ are MAKEDEV and MAKEDEV.local. So, get a fresh copy from cvs and then create the devices you need( man MAKEDEV if you don't know how to do this). cvs -d anoncvs@anoncvs.freebsd.org:/home/ncvs checkout \ -r RELENG_4_7_0_RELEASE src/etc/MAKEDEV src/etc/MAKEDEV.local HTH, nikos From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 09:07:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9EDEE16A4DA for ; Thu, 31 Aug 2006 09:07:00 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2250D43D55 for ; Thu, 31 Aug 2006 09:06:59 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from srv.sem.ipt.ru ([192.168.12.1]) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GIiVk-000IdG-R2; Thu, 31 Aug 2006 13:06:56 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GIiYZ-0000DA-Dg; Thu, 31 Aug 2006 13:09:51 +0400 To: RW References: <200608302124.21833.list-freebsd-2004@morbius.sent.com> <20060830165204.AC8F.GERARD@seibercom.net> <200608310022.05206.list-freebsd-2004@morbius.sent.com> From: Boris Samorodov Date: Thu, 31 Aug 2006 13:09:51 +0400 In-Reply-To: <200608310022.05206.list-freebsd-2004@morbius.sent.com> (RW's message of "Thu, 31 Aug 2006 00:22:03 +0100") Message-ID: <02019648@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 09:07:00 -0000 On Thu, 31 Aug 2006 00:22:03 +0100 RW wrote: > On Wednesday 30 August 2006 21:55, Gerard Seibert wrote: > > RW wrote: > > > What's the canonical way of mounting the Linux procfs at boot-time? > > > > > > I've seen several recommendations to add the following to fstab: > > > > > > linproc /compat/linux/proc linprocfs rw 0 0 > > > > > > But in a standard installation, this mount-point is really under /usr, > > > which isn't mounted until pass 2. If I change the pass number to 2, it > > > fails with an "unexpected inconsistencies" error. I presume this is > > > because mount is trying to fsck it, and failing to find fsck_linprocfs. > > > > This is what I have in my /etc/fstab file: > > > > linprocfs /compat/linux/proc linprocfs rw 0 0 > > > > Is this what you are referring to? > I tried it and it didn't work. Irrespective of whether it should begin linproc > or linprocfs, /compat is a link to /usr/compat, and /usr isn't mounted at > that point. Do you have a different arrangement? Can't confirm that the problem exists: $ uname -a FreeBSD srv.sem.ipt.ru 6.1-STABLE FreeBSD 6.1-STABLE #2: Wed May 17 23:26:59 MSD 2006 bsam@srv.sem.ipt.ru:/usr/obj/usr/src/sys/SRV i386 But what do you mean "/usr isn't mounted at that point?". Have you read man fstab? > BTW I'm running 6.1 (upgraded from an original 5.3 install) Usually an output of "uname -a" is much more informative here. 6.1 may mean release, release + security patches, stable... And a platform also is of interest here. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 10:02:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6BD4216A4EE for ; Thu, 31 Aug 2006 10:02:54 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4419143D49 for ; Thu, 31 Aug 2006 10:02:53 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so296767nzn for ; Thu, 31 Aug 2006 03:02:52 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=CEMKAa//PwPMCnQvVSog40lhOuuUBdQ86gzMrfgcLo94D7coiK9zKpqtZySnDqN2iIleXLd3YjtC719o6g5ztVXWbZovNuVDnqX4W+TqV1Temyg+/h0meZcjXJlQ9UMbLlvDeFpBEIiyyplJc+35DVZ/fAY+R25oPUyAbZj9Qe8= Received: by 10.65.157.13 with SMTP id j13mr802561qbo; Thu, 31 Aug 2006 03:02:52 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Thu, 31 Aug 2006 03:02:52 -0700 (PDT) Message-ID: <94ff3700608310302n15217834icb82dc320480a330@mail.gmail.com> Date: Thu, 31 Aug 2006 12:02:52 +0200 From: "Jordi Carrillo" To: skylar@cs.earlham.edu In-Reply-To: <44F62CEE.9040202@cs.earlham.edu> MIME-Version: 1.0 References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> <44F6036E.7050203@cs.earlham.edu> <1156982800.1017.37.camel@genius.i.cz> <44F62CEE.9040202@cs.earlham.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: backyard1454-bsd@yahoo.com, Michal Mertl , phoenix.lists@gmail.com, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 10:02:54 -0000 2006/8/31, Skylar Thompson : > > Michal Mertl wrote: > > No! Kernel threads (e.g. handling interrupts) aren't that much different > > to normal processes. > > > > Logical CPUs on a single HTT capable CPU share most of the CPU logic, > > especially all the external stuff (handling interrupts). Scheduling > > handling of interrupts on the "secondary/logical" core wouldn't > > probably help performance at all (if that is at all possible). > > > > Could you clarify note 20031022 in /usr/src/UPDATING? It states that HTT > CPUs are used for interrupts if they are detected, even if they aren't > used by regular processes. Was this something that just showed up in > pre-6.x releases? > > -- > -- Skylar Thompson (skylar@cs.earlham.edu) > -- http://www.cs.earlham.edu/~skylar/ > > > > > Another question that's wondering me is why FreeBSD with the SMP kernel the gnome system monitor (Applications->System Tools->System Monitor) only shows one CPU when Linux with a SMP kernel shows two CPUs -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 11:25:25 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D1E8B16A4DF for ; Thu, 31 Aug 2006 11:25:25 +0000 (UTC) (envelope-from jonathan@hst.org.za) Received: from sirian.hst.org.za (sirian.hst.org.za [209.203.2.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DE8843D67 for ; Thu, 31 Aug 2006 11:25:17 +0000 (GMT) (envelope-from jonathan@hst.org.za) Received: from localhost (localhost.hst.org.za [127.0.0.1]) by sirian.hst.org.za (Postfix) with ESMTP id B13C631CF3A for ; Thu, 31 Aug 2006 13:23:27 +0200 (SAST) Received: from sirian.hst.org.za ([127.0.0.1]) by localhost (sirian.hst.org.za [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 73319-01 for ; Thu, 31 Aug 2006 13:23:27 +0200 (SAST) Received: by sirian.hst.org.za (Postfix, from userid 1004) id 3309E31CF2F; Thu, 31 Aug 2006 13:23:27 +0200 (SAST) Received: from sysadmin.int.dbn.hst.org.za (sysadmin.int.dbn.hst.org.za [10.1.1.20]) by sirian.hst.org.za (Postfix) with ESMTP id 1D20831CF11 for ; Thu, 31 Aug 2006 13:23:26 +0200 (SAST) From: Jonathan McKeown Organization: Health Systems Trust To: freebsd-questions@freebsd.org Date: Thu, 31 Aug 2006 13:25:04 +0200 User-Agent: KMail/1.7.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608311325.04759.jonathan@hst.org.za> X-Spam-Checker-Version: SpamAssassin 2.61 (1.212.2.1-2003-12-09-exp) on sirian.hst.org.za X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=7.0 tests=BAYES_00 autolearn=ham version=2.61 X-Virus-Scanned: by amavisd-new at hst.org.za Subject: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 11:25:25 -0000 I'm setting up a remote server with two identical hard drives, running FreeBSD-6.1. I want to set the drives up as a mirror for data redundancy. I also want to be able to break the mirror when I need to update the OS or installed software, so that if anything goes wrong with the update on one drive I can boot back to the other one, or if all is well, re-establish the mirror and synchronise to the updated system. I have serial console access including BIOS console redirection. Based on web and Usenet/mailing list searches, gmirror looks more straightforward for this simple case, gvinum more flexible but poorly documented, and the most recent comments I can find (still all 6+ months ago) seem to suggest that gvinum hasn't completely stabilised for production yet. Is this a fair assessment? Are there any factors I've missed? Which solution is likely to suit the situation better? Jonathan From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 11:34:15 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B652716A4DD for ; Thu, 31 Aug 2006 11:34:15 +0000 (UTC) (envelope-from stanb@panix.com) Received: from mail2.panix.com (mail2.panix.com [166.84.1.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE83B43D45 for ; Thu, 31 Aug 2006 11:34:14 +0000 (GMT) (envelope-from stanb@panix.com) Received: from mailspool3.panix.com (mailspool3.panix.com [166.84.1.78]) by mail2.panix.com (Postfix) with ESMTP id 339689D84C; Thu, 31 Aug 2006 07:34:14 -0400 (EDT) Received: from teddy.fas.com (c-68-58-232-106.hsd1.sc.comcast.net [68.58.232.106]) by mailspool3.panix.com (Postfix) with ESMTP id 669C462E41; Thu, 31 Aug 2006 07:34:14 -0400 (EDT) Received: from stan by teddy.fas.com with local (Exim 3.36 #1 (Debian)) id 1GIkoH-00055v-00; Thu, 31 Aug 2006 07:34:13 -0400 Date: Thu, 31 Aug 2006 07:34:13 -0400 From: stan To: Norberto Meijome Message-ID: <20060831113413.GA19466@teddy.fas.com> Mail-Followup-To: Norberto Meijome , Free BSD Questions list References: <20060830220228.GB28263@teddy.fas.com> <20060831133935.4b649079@localhost> <20060831040107.GA6371@teddy.fas.com> <20060831144428.1956286a@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060831144428.1956286a@localhost> X-Editor: gVim X-Operating-System: Debian GNU/Linux X-Kernel-Version: 2.4.23 X-Uptime: 07:29:13 up 136 days, 8:35, 2 users, load average: 0.08, 0.03, 0.01 User-Agent: Mutt/1.5.4i Sender: Stan Brown Cc: Free BSD Questions list Subject: Re: 6.1 current instabilty on Sun Ultra 40's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 11:34:15 -0000 On Thu, Aug 31, 2006 at 02:44:28PM +1000, Norberto Meijome wrote: > On Thu, 31 Aug 2006 00:01:07 -0400 > stan wrote: > > > On that disk is a world, built from last weekends cvsup. I was able > > to reproduce it's instability to build a generic kernel. It fails with > > a signal (I believe) 11, > > fair enough :) > > btw, from past experience, sig_fault 11 usually points to faulty hardware > (usually RAM...) - haven't found them much on BSD, but i'd get them all the > time when using lesser hardware on linux (building kernel was a standard way to > test the hardware back then).... but since you've ruled out hardware... i dont > know what else :) > I agree, that's one of the reasons it took me so long to decide to shut the production machine down to verify whether it _was_ hardware or not. I was extermely disapointed when I was able to reproduce the problem on known good hardware, as the unit i'm trying to put FreeBSD on is still under waranty. I don't really know how to go about creating a reproducable enough problem that is simple enough to submit a bug report, so I supose my only option is to find another use for this machine. too bad, beacuse I can easily buy yese machines, which isn't always the case in a corporate environment. -- Unix is very simple, but it takes a genius to understand the simplicity. (Dennis Ritchie) From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 11:57:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 507CE16A4DA for ; Thu, 31 Aug 2006 11:57:54 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id C17AD43D46 for ; Thu, 31 Aug 2006 11:57:53 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so588772wxd for ; Thu, 31 Aug 2006 04:57:53 -0700 (PDT) Received: by 10.70.84.6 with SMTP id h6mr370714wxb; Thu, 31 Aug 2006 04:43:50 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id i19sm1012235wxd.2006.08.31.04.43.49; Thu, 31 Aug 2006 04:43:50 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id C12BFBBD4 for ; Thu, 31 Aug 2006 07:43:48 -0400 (EDT) Received: from [192.168.0.4] (boss.seibercom.net [192.168.0.4]) (Authenticated sender: gerard@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTP id 83207B825 for ; Thu, 31 Aug 2006 07:43:48 -0400 (EDT) Date: Thu, 31 Aug 2006 07:44:04 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom In-Reply-To: <02019648@srv.sem.ipt.ru> References: <200608310022.05206.list-freebsd-2004@morbius.sent.com> <02019648@srv.sem.ipt.ru> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20060831073909.25BC.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Mailer: Becky! ver. 2.25 [en] X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 11:57:54 -0000 Boris Samorodov wrote: > > I tried it and it didn't work. Irrespective of whether it should begin linproc > > or linprocfs, /compat is a link to /usr/compat, and /usr isn't mounted at > > that point. Do you have a different arrangement? Would it be possible to submit the output of 'dmesg' here? BTW, are you also attempting to load 'proc'? // fstab // [...] proc /proc procfs rw 0 0 // ***** // -- Gerard Seibert gerard@seibercom.net Think about it: The *average* American has one tit and one testicle. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 12:11:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2B43A16A4DA for ; Thu, 31 Aug 2006 12:11:23 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id A452743D45 for ; Thu, 31 Aug 2006 12:11:22 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so315711nzn for ; Thu, 31 Aug 2006 05:11:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=Ort9sFpkcGiPxLkMM5ITCShdK/wqgYSghHtBTIJ+xq+oCEEF39ILWh7HfJqztZN9MgK58gAmQ+ZmV/MX862fk+9JYO5XDdGF9T6ojmSyq6RWiVHc/98DEIkJsYuWyKCcO5WobC3SE869/Eo1sNmPjPWgwP8OTwMZPGvNCmO9t5g= Received: by 10.65.232.12 with SMTP id j12mr1021152qbr; Thu, 31 Aug 2006 05:11:22 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Thu, 31 Aug 2006 05:11:21 -0700 (PDT) Message-ID: <73d604760608310511y120c5365yc139490ef5be343f@mail.gmail.com> Date: Thu, 31 Aug 2006 17:41:21 +0530 From: "Viswas Nair" To: "Andriy Babiy" In-Reply-To: <540EE4AEDEEAE3418715F9B95446582D7FDD27@groucho.dmsivan.com> MIME-Version: 1.0 References: <540EE4AEDEEAE3418715F9B95446582D7FDD27@groucho.dmsivan.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Playing Audio CDs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 12:11:23 -0000 I use fluxbox :( no kde On 8/31/06, Andriy Babiy wrote: > > --- Viswas Nair wrote: > > I am new to BSD and have mplayer installed > > (Gmplayer) and I do not see the > > option to play an Audio CD, only CDs, files and > > DVDs. How do I get Audio > > CD's to play? Can they be mounted, if so how? Is > > there any > > specific audio alone CD player (GUI based) that you > > suggest? > > KsCD in KDE environment. You don't need to mount an AudioCD. Make sure > you connected your CD/DVD device audio output to the sound card. > > > Also, whats the most commonly used or popular CD + > > DVD burning software used > > in BSD? > > Try k3b. I like it. > > > Thanks in advance. > > Andriy > > From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 12:30:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4D9A716A4E5 for ; Thu, 31 Aug 2006 12:30:08 +0000 (UTC) (envelope-from markus.hoenicka@mhoenicka.de) Received: from webmailv3.ispgateway.de (webmailv3.ispgateway.de [80.67.16.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8212843D55 for ; Thu, 31 Aug 2006 12:30:07 +0000 (GMT) (envelope-from markus.hoenicka@mhoenicka.de) Received: from localhost (webmailv3.ispgateway.de [127.0.0.1]) by webmailv3.ispgateway.de (8.12.8/8.12.8) with ESMTP id k7VCU5rl009818 for ; Thu, 31 Aug 2006 14:30:05 +0200 Received: from pc51997.klinik.uni-regensburg.de (pc51997.klinik.uni-regensburg.de [132.199.174.149]) by domainfactory-webmail.de (IMP) with HTTP for <472582@localhost>; Thu, 31 Aug 2006 14:30:05 +0200 Message-ID: <1157027405.44f6d64d1b27f@www.domainfactory-webmail.de> Date: Thu, 31 Aug 2006 14:30:05 +0200 From: Markus Hoenicka To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.8 X-Originating-IP: 132.199.174.149 Subject: firefox starts up always in the first virtual screen in XFCE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 12:30:08 -0000 Hi all, I don't know whether this qualifies as a bug. In any case it is only a mild annoyance, but if anyone knows how to fix it, please let me know. I upgraded to FreeBSD 6.1 from 5.4 with all ports updated to the latest about one week ago. My desktop is XFCE, which is configured with 6 virtual screens. If you start an X program, its window will pop up in the screen that was active at that time. This works for all programs except for firefox. The Firefox window will always pop up in the first virtual screen. I can then move it wherever I desire, so that's just an inconvenience, but its a clear regression to the behaviour before I upgraded to 6.1. Any clues? regards, Markus -- Markus Hoenicka markus.hoenicka@cats.de (Spam-protected email: replace the quadrupeds with "mhoenicka") http://www.mhoenicka.de From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 12:39:11 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C198316A4DA for ; Thu, 31 Aug 2006 12:39:11 +0000 (UTC) (envelope-from mime@traveller.cz) Received: from ss.eunet.cz (ss.eunet.cz [193.85.228.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22A3143D58 for ; Thu, 31 Aug 2006 12:39:10 +0000 (GMT) (envelope-from mime@traveller.cz) Received: from localhost.i.cz (ss.eunet.cz [193.85.228.13]) by ss.eunet.cz (8.13.6/8.13.6) with ESMTP id k7VCcmjF062937 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 31 Aug 2006 14:38:48 +0200 (CEST) (envelope-from mime@traveller.cz) From: Michal Mertl To: skylar@cs.earlham.edu In-Reply-To: <44F62CEE.9040202@cs.earlham.edu> References: <94ff3700608301020l34251166nbdb4d72842e1bb86@mail.gmail.com> <20060830181240.65785.qmail@web83106.mail.mud.yahoo.com> <94ff3700608301302n13f9aabcs935fbe6403601d30@mail.gmail.com> <44F6036E.7050203@cs.earlham.edu> <1156982800.1017.37.camel@genius.i.cz> <44F62CEE.9040202@cs.earlham.edu> Content-Type: text/plain Date: Thu, 31 Aug 2006 14:38:46 +0200 Message-Id: <1157027926.1045.13.camel@genius.i.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: backyard1454-bsd@yahoo.com, Jordi Carrillo , freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 12:39:11 -0000 Skylar Thompson wrote: > Michal Mertl wrote: > > No! Kernel threads (e.g. handling interrupts) aren't that much different > > to normal processes. > > > > Logical CPUs on a single HTT capable CPU share most of the CPU logic, > > especially all the external stuff (handling interrupts). Scheduling > > handling of interrupts on the "secondary/logical" core wouldn't > > probably help performance at all (if that is at all possible). > > > > Could you clarify note 20031022 in /usr/src/UPDATING? It states that HTT > CPUs are used for interrupts if they are detected, even if they aren't > used by regular processes. Was this something that just showed up in > pre-6.x releases? > I think it means that if an interrupt would for some reason be signalled to the unused logical core it wouldn't be lost or something. Michal From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 12:43:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B8A3B16A4DE for ; Thu, 31 Aug 2006 12:43:41 +0000 (UTC) (envelope-from freebsd@orchid.homeunix.org) Received: from orchid.homeunix.org (aud102.neoplus.adsl.tpnet.pl [83.27.11.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3D5E43D5E for ; Thu, 31 Aug 2006 12:43:37 +0000 (GMT) (envelope-from freebsd@orchid.homeunix.org) Received: from [192.168.1.66] (blackacidevil.orchid.homeunix.org [192.168.1.66]) (authenticated bits=0) by orchid.homeunix.org (8.13.6/8.13.6) with ESMTP id k7VChSrK057712 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Thu, 31 Aug 2006 14:43:35 +0200 (CEST) (envelope-from freebsd@orchid.homeunix.org) Message-ID: <44F6D968.6020708@orchid.homeunix.org> Date: Thu, 31 Aug 2006 14:43:20 +0200 From: Karol Kwiatkowski User-Agent: Thunderbird 1.5.0.5 (X11/20060731) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <200608302047.06425.freebsd@dfwlp.com> <20060831032554.GA84168@catflap.slightlystrange.org> In-Reply-To: <20060831032554.GA84168@catflap.slightlystrange.org> X-Enigmail-Version: 0.94.1.0 OpenPGP: id=06E09309; url=http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig6CDC1583E44FB6A89F6E5171" X-Virus-Scanned: ClamAV 0.88.4/1779/Thu Aug 31 09:56:15 2006 on orchid.homeunix.org X-Virus-Status: Clean Subject: Re: not adding daemons to rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@orchid.homeunix.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 12:43:41 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig6CDC1583E44FB6A89F6E5171 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable On 31/08/2006 05:25, Daniel Bye wrote: > On Wed, Aug 30, 2006 at 08:47:06PM -0500, Jonathan Horne wrote: >> ive noticed that apache can be started manually using the apachectl to= ol, even> if it is not enabled in /etc/rc.conf. do many other daemons ha= ve this=20 >> ability? i have a dev server that i would like to not have many thing= s=20 >> enabled in the rc.conf, but i would like an easy way to just start spe= cific=20 >> daemons when i need. >=20 > There is the "force" modifier which may be of help/interest. It works > like this: >=20 > # /usr/local/etc/rc.d/script forcestart >=20 > This will, well, force the script to run, even if it's not explicitly > enabled in /etc/rc.conf. It does more, it will force the script to run even if a daemon is running. What OP is looking for is 'one' prefix: # /usr/local/etc/rc.d/script onestart # /usr/local/etc/rc.d/script onestop After rc.subr(8) manpage: ------ run_rc_command argument [...] force Skip the checks for rcvar being set to ``YES'', and sets rc_force=3DYES. This ignores argument_precmd returning non-zero, and ignores any of the required_* tests failing, and always returns a zero exit status. one Skip the checks for rcvar being set to ``YES'', but performs all the other prerequisite tests. ------ HTH, Karol --=20 Karol Kwiatkowski OpenPGP: http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc --------------enig6CDC1583E44FB6A89F6E5171 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9tlwezeoPAwGIYsRCNanAJ4kpdkT3J/Orf0OhoOJ4CWcUIndGgCfaRbY sogq+d1FWNuRkBRCnC6Z3Lk= =tqqd -----END PGP SIGNATURE----- --------------enig6CDC1583E44FB6A89F6E5171-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 12:55:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B60A316A4DE for ; Thu, 31 Aug 2006 12:55:08 +0000 (UTC) (envelope-from up@3.am) Received: from richard2.pil.net (richard2.pil.net [208.8.16.11]) by mx1.FreeBSD.org (Postfix) with SMTP id A6BBF43D46 for ; Thu, 31 Aug 2006 12:55:06 +0000 (GMT) (envelope-from up@3.am) Received: (qmail 58237 invoked by uid 1825); 31 Aug 2006 12:54:21 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 31 Aug 2006 12:54:21 -0000 Date: Thu, 31 Aug 2006 08:54:21 -0400 (EDT) From: up@3.am X-X-Sender: up@richard2.pil.net To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: 6.1 kernel messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 12:55:08 -0000 Having just migrated a server from 4.10-STABLE to 6.1-STABLE, I'm curious about some kernel messages in dmesg that I hadn't seen before: asr0: [GIANT-LOCKED] (adaptec RAID adapter) uhci0: [GIANT-LOCKED] (USB driver) atkbd0: [GIANT-LOCKED] (keyboard driver) I'm running SMP with 2 CPUs...a quick google shows that some people think it may be cause for concern but others do not. Is it? Then there's this: acpi0: on motherboard acpi0: Power Button (fixed) acpi: bad write to port 0x070 (8), val 0x43 acpi: bad read from port 0x071 (8) That driver isn't in my kernel which is derived from GENERIC; I found info on it in PAE: # Compile acpi in statically since the module isn't built properly. Most # machines which support large amounts of memory require acpi. device acpi I only have 1GB of RAM in this server, so can I simply ignore this? James Smallacombe PlantageNet, Inc. CEO and Janitor up@3.am http://3.am ========================================================================= From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 13:10:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D3B3916A4EB for ; Thu, 31 Aug 2006 13:10:41 +0000 (UTC) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (dsl081-142-072.chi1.dsl.speakeasy.net [64.81.142.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4899C43D4C for ; Thu, 31 Aug 2006 13:10:41 +0000 (GMT) (envelope-from derek@betty.computinginnovations.com) Received: from betty.computinginnovations.com (localhost.computinginnovations.com [127.0.0.1]) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k7VDAGcg011225; Thu, 31 Aug 2006 08:10:17 -0500 (CDT) Received: from localhost (derek@localhost) by betty.computinginnovations.com (8.13.6/8.12.11/Submit) with ESMTP id k7VDAE5U011222; Thu, 31 Aug 2006 08:10:15 -0500 (CDT) Date: Thu, 31 Aug 2006 08:10:14 -0500 (CDT) From: Derek Ragona To: Roger Merritt In-Reply-To: <5.2.0.9.0.20060831104131.00ab89e8@127.0.0.1> Message-ID: <20060831074138.B76487@betty.computinginnovations.com> References: <5.2.0.9.0.20060830075547.00aa9670@127.0.0.1> <5.2.0.9.0.20060830075547.00aa9670@127.0.0.1> <5.2.0.9.0.20060831104131.00ab89e8@127.0.0.1> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-ComputingInnovations-MailScanner-Information: Please contact the ISP for more information X-ComputingInnovations-MailScanner: Found to be clean X-ComputingInnovations-MailScanner-From: derek@betty.computinginnovations.com X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Monitor display problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 13:10:41 -0000 Sorry about my bad typing, I meant eratta. I would look at http://www.s3graphics.com/ And look for documentation on issues running X -Derek On Thu, 31 Aug 2006, Roger Merritt wrote: > At 08:38 AM 8/30/2006 -0500, Derek Ragona wrote: >> I would check the errat on the S3 you are using. It sounds like there may >> be some kernel/system changes you may need to make since your lockups are >> from going back to text mode from graphics mode. It is likely some >> conflict this is causing is hardware related. > > Yeah, I agree it's hardware related, but I think there's a software solution. > What's the 'errat' and where/how do I check it? > > > -- > Roger > > > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > MailScanner thanks transtec Computers for their support. > > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 13:39:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6563D16A4DE for ; Thu, 31 Aug 2006 13:39:22 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id E42FD43D46 for ; Thu, 31 Aug 2006 13:39:21 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 1207 invoked from network); 31 Aug 2006 08:39:20 -0500 Received: from 210-84-37-4.dyn.iinet.net.au (HELO localhost) (210.84.37.4) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 31 Aug 2006 08:39:20 -0500 Date: Thu, 31 Aug 2006 23:39:16 +1000 From: Norberto Meijome To: Markus Hoenicka Message-ID: <20060831233916.0a0cfcaf@localhost> In-Reply-To: <1157027405.44f6d64d1b27f@www.domainfactory-webmail.de> References: <1157027405.44f6d64d1b27f@www.domainfactory-webmail.de> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: firefox starts up always in the first virtual screen in XFCE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 13:39:22 -0000 On Thu, 31 Aug 2006 14:30:05 +0200 Markus Hoenicka wrote: > I upgraded to FreeBSD 6.1 from 5.4 with all ports updated to the latest about > one week ago. My desktop is XFCE, which is configured with 6 virtual screens. > If you start an X program, its window will pop up in the screen that was > active at that time. This works for all programs except for firefox. The > Firefox window will always pop up in the first virtual screen. I can then > move it wherever I desire, so that's just an inconvenience, but its a clear > regression to the behaviour before I upgraded to 6.1. sounds like a session manager saved "firefox on this desktop"... not sure which one would do it when you start it up (usually they restore programs on startup...) again, i could be completely wrong :D _________________________ {Beto|Norberto|Numard} Meijome "In order to avoid being called a flirt, she always yielded easily." Charles, Count Talleyrand I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 14:05:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 733A316A4DF for ; Thu, 31 Aug 2006 14:05:06 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83103.mail.mud.yahoo.com (web83103.mail.mud.yahoo.com [216.252.101.32]) by mx1.FreeBSD.org (Postfix) with SMTP id F0B1143D46 for ; Thu, 31 Aug 2006 14:05:05 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 23283 invoked by uid 60001); 31 Aug 2006 14:05:05 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=jOgECJIfas30NPMsqhO1aMcFE2hJKkXhdMdScpGkx/+uktkwBG6FutjX/yFp69Ka+a+b2mTyzHWqwmZxYik58nwXqBBmjxqBbktkfFjyxdKqdYC+W/gW20omYVh5D16mmkJdM/bl8BYw4wwnZ5UiXNsI9yCpYW0MB0fg0aCdOOc= ; Message-ID: <20060831140505.23281.qmail@web83103.mail.mud.yahoo.com> Received: from [63.240.228.37] by web83103.mail.mud.yahoo.com via HTTP; Thu, 31 Aug 2006 07:05:05 PDT Date: Thu, 31 Aug 2006 07:05:05 -0700 (PDT) From: backyard To: skylar@cs.earlham.edu, Jordi Carrillo In-Reply-To: <44F6036E.7050203@cs.earlham.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: backyard1454-bsd@yahoo.com, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 14:05:06 -0000 --- Skylar Thompson wrote: > Jordi Carrillo wrote: > > 2006/8/30, backyard : > >> > >> > >> > >> --- Jordi Carrillo wrote: > >> > >> > I've read that SMP should be disabled for > >> > performance issues (I did not know > >> > that before installing freebsd). I have a P4 > 3GHz > >> > with hyperthreading > >> > technology. I have the SMP-GENERIC kernel and > it > >> > only launches one cpu. So, > >> > I've decided to disable SMP from BIOS. Is that > ok?, > >> > knowing that I have a > >> > Smp enabled kernel? or should I install one > without > >> > smp? If so, is there a > >> > way to install one already precompiled? > >> > Thanks in advance > >> > > >> > -- > >> > http://jordilin.wordpress.com > >> > _______________________________________________ > >> > 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" > >> > > >> > >> if the system runs with one cpu now and you don't > >> enable smp with HT with the sysctl variable then > you > >> should be ok. If your not doing SMP then > recompiling > >> the kernel for single processor mode will make > things > >> run a little quicker because the SMP code won't > come > >> into play. > >> > >> with HT disabling in FreeBSD is more for the > security > >> issues about a potential exploit whereby one > process > >> in one pipe can access the priveledged > information of > >> a process in another pipe because the two cores > share > >> one processor cache and thus one cache table. To > my > >> knowledge this hasn't been exploited yet. > >> > >> If you just install the generic kernel you it > should > >> be only the uniprocessor one. I would just do a: > >> > >> cd /usr/src && make buildworld && make > >> KERNCONF=GENERIC buildkernel && make > KERNCONF=GENERIC > >> installkernel > >> > >> as opposed to a binary version assuming you > haven't > >> updated yet you won't have to install world but I > >> believe it must have the build in the source tree > to > >> build a kernel. On your P4 though the difference > >> between SMP and uniproc may not be worth the > trouble > >> because I don't think much of a gain would be > made. on > >> a P1 a much different story... > >> > >> if you aren't concerned with bad users or hackers > >> hitting the box I would just enable HT with the > sysctl > >> variable. This will not make things run slower at > all, > >> just (in theory) less secure, which is why the > >> veriable was created in the first place as I > recall. > >> If you are concerned I would wait until you > update > >> your system and then just build a GENERIC/CUSTOM > >> kernel without the SMP option set. > >> > >> > >> -brian > >> > > > > > > I will disable smp from bios. If I have a smp > kernel, I suppose there > > will > > be no problem after all. Would that be ok? > > The problem with having SMP enabled is that the > smp kernel only > > detects one > > cpu and the system monitor only features one cpu > as well as gkrellm (in > > Linux it shows two cpus). When compiling the > system monitor shows the > > cpu at > > a maximum of 50%, so what's going on with the > other 50%? > > writing machdep.hlt_logical_cpus to 2 in > loader.conf does not solve > > anything. > I believe FreeBSD uses the other logical CPU to > handle hardware > interrupts, which can still help performance. You > can check dmesg to see > how it's actually handling it. > > -- > -- Skylar Thompson (skylar@cs.earlham.edu) > -- http://www.cs.earlham.edu/~skylar/ > > > While that is one method of hamdling SMP I'm fairly certain FreeBSD does not use this model. The problem with one CPU handling interrupts and one handling processes is if your doing a 9000x9000 element matrix inversion to calculate say the wave function for uranium (yeah not right, but this be some nasty math so bear with me); then even if the math library is thread aware, one CPU will be frying eggs, and the other one will be twiddling it's thumbs waiting on interrupts to process. Most likely an ACPI_THERMALZONE... >From memory on my readings of Implementation of FreeBSD 5.4 ( I think thats the title, but the Black Book written by the BSD gurus...) It was decided the SMP scheduler would handle processes and interrupts simultainiously as scheduled and modified with affinities to avoid switching which CPU cache has the running process. This might be why HT is slower because it only has one CPU cache so trying to keep things on one core doesn't improve performance at all because either core can access the cache. Since HT was not the brightest thing Intel could have done (kind of like 20-bit addressing...) and since AMD has Dual cores they need to compete with I don't think tweaking scheduler code to remove affinities on HT would be in the works. I don't even know if that would help either, just thinking out loud. But Interrupts are handled by both CPUs once the additional CPUs are launched by the boot CPU via the kernel. The scheduler is designed to keep all the pipes in the plant running with process/interuppts. -brian From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 14:29:31 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9C4A816A4DA for ; Thu, 31 Aug 2006 14:29:31 +0000 (UTC) (envelope-from danielby@slightlystrange.org) Received: from catflap.slightlystrange.org (cpc3-cmbg1-0-0-cust506.cmbg.cable.ntl.com [82.21.101.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C81343D4C for ; Thu, 31 Aug 2006 14:29:30 +0000 (GMT) (envelope-from danielby@slightlystrange.org) Received: from danielby by catflap.slightlystrange.org with local (Exim 4.63 #0) id 1GInXt-0007wk-8R by authid for ; Thu, 31 Aug 2006 15:29:29 +0100 Date: Thu, 31 Aug 2006 15:29:29 +0100 From: Daniel Bye To: freebsd-questions@freebsd.org Message-ID: <20060831142928.GA30234@catflap.slightlystrange.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <200608302047.06425.freebsd@dfwlp.com> <20060831032554.GA84168@catflap.slightlystrange.org> <44F6D968.6020708@orchid.homeunix.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr" Content-Disposition: inline In-Reply-To: <44F6D968.6020708@orchid.homeunix.org> User-Agent: Mutt/1.4.2.2i X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: danielby@slightlystrange.org X-SA-Exim-Scanned: No (on catflap.slightlystrange.org); SAEximRunCond expanded to false Subject: Re: not adding daemons to rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Bye List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 14:29:31 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 31, 2006 at 02:43:20PM +0200, Karol Kwiatkowski wrote: > It does more, it will force the script to run even if a daemon is > running. What OP is looking for is 'one' prefix: Ah! Even better. Thanks for the tip. Dan --=20 Daniel Bye PGP Key: http://www.slightlystrange.org/pgpkey-dan.asc PGP Key fingerprint: D349 B109 0EB8 2554 4D75 B79A 8B17 F97C 1622 166A _ ASCII ribbon campaign ( ) - against HTML, vCards and X - proprietary attachments in e-mail / \ --liOOAslEiF7prFVr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE9vJIixf5fBYiFmoRAj8XAJ46JFhkSOSaTFa9tOQBlkiy+IKpyACgweVf PVvSuwzYRhX9TvRdlkjSQng= =fKQF -----END PGP SIGNATURE----- --liOOAslEiF7prFVr-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 14:44:45 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1047216A4DD for ; Thu, 31 Aug 2006 14:44:45 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out1.smtp.messagingengine.com (out1.smtp.messagingengine.com [66.111.4.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABC5D43D49 for ; Thu, 31 Aug 2006 14:44:44 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 73403DA0EEF for ; Thu, 31 Aug 2006 10:44:43 -0400 (EDT) Received: from heartbeat2.internal ([10.202.2.161]) by frontend3.internal (MEProxy); Thu, 31 Aug 2006 10:44:44 -0400 X-Sasl-enc: LzNch44Ub28PdO3d82BbHSnZPzsXVI8nj9mFdN2kbk8Z 1157035483 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 9D896D43E for ; Thu, 31 Aug 2006 10:44:43 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Thu, 31 Aug 2006 15:44:39 +0100 User-Agent: KMail/1.9.3 References: <200608302124.21833.list-freebsd-2004@morbius.sent.com> <200608310022.05206.list-freebsd-2004@morbius.sent.com> <02019648@srv.sem.ipt.ru> In-Reply-To: <02019648@srv.sem.ipt.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608311544.40586.list-freebsd-2004@morbius.sent.com> Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 14:44:45 -0000 On Thursday 31 August 2006 10:09, Boris Samorodov wrote: > On Thu, 31 Aug 2006 00:22:03 +0100 RW wrote: > Can't confirm that the problem exists: > $ uname -a > FreeBSD srv.sem.ipt.ru 6.1-STABLE FreeBSD 6.1-STABLE #2: Wed May 17 > 23:26:59 MSD 2006 bsam@srv.sem.ipt.ru:/usr/obj/usr/src/sys/SRV i386 > > But what do you mean "/usr isn't mounted at that point?". Have you > read man fstab? Probably I mistinterpreted man fstab, but it's complaining that /compat/linux doesn't exist even though it does: ls -ld /compat /usr/compat /usr/compat/linux lrwxr-xr-x 1 root wheel 10 Jun 7 2005 /compat -> usr/compat drwxr-xr-x 3 root wheel 512 Jun 8 2005 /usr/compat drwxr-xr-x 22 root wheel 512 Aug 22 03:51 /usr/compat/linux > > BTW I'm running 6.1 (upgraded from an original 5.3 install) > > Usually an output of "uname -a" is much more informative here. 6.1 may > mean release, release + security patches, stable... And a platform > also is of interest here. 6.1-RELEASE-p4 i386 From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 14:45:23 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 F1EF916A4E1 for ; Thu, 31 Aug 2006 14:45:23 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83112.mail.mud.yahoo.com (web83112.mail.mud.yahoo.com [216.252.101.41]) by mx1.FreeBSD.org (Postfix) with SMTP id 3779843D5C for ; Thu, 31 Aug 2006 14:45:22 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 59434 invoked by uid 60001); 31 Aug 2006 14:45:21 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=MNNqjtoQkzvvyLogDr19poB9QVRQl1LHrk5KaklAm6+9YbEaKBl8J3BOcLebMjt8//8PKv2Yc00gC1EUnZ0fppa5jYvmp8MksFVSwi5SvEGGaq9qqfG8CYStDOyYlyErttdJWuPpDbg/KUJqJvRP7HMcW7mqXDBirKweKcps4V0= ; Message-ID: <20060831144521.59432.qmail@web83112.mail.mud.yahoo.com> Received: from [63.240.228.37] by web83112.mail.mud.yahoo.com via HTTP; Thu, 31 Aug 2006 07:45:21 PDT Date: Thu, 31 Aug 2006 07:45:21 -0700 (PDT) From: backyard To: Michal Mertl , skylar@cs.earlham.edu In-Reply-To: <1156982800.1017.37.camel@genius.i.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: backyard1454-bsd@yahoo.com, Jordi Carrillo , freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 14:45:24 -0000 --- Michal Mertl wrote: > Skylar Thompson wrote: > > Jordi Carrillo wrote: > > > 2006/8/30, backyard > : > > >> > > >> > > >> > > >> --- Jordi Carrillo wrote: > > >> > > >> > I've read that SMP should be disabled for > > >> > performance issues (I did not know > > >> > that before installing freebsd). I have a P4 > 3GHz > > >> > with hyperthreading > > >> > technology. I have the SMP-GENERIC kernel and > it > > >> > only launches one cpu. So, > > >> > I've decided to disable SMP from BIOS. Is > that ok?, > > >> > knowing that I have a > > >> > Smp enabled kernel? or should I install one > without > > >> > smp? If so, is there a > > >> > way to install one already precompiled? > > >> > Thanks in advance > > >> > > > >> > -- > > >> > http://jordilin.wordpress.com > > >> > > _______________________________________________ > > >> > 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" > > >> > > > >> > > >> if the system runs with one cpu now and you > don't > > >> enable smp with HT with the sysctl variable > then you > > >> should be ok. If your not doing SMP then > recompiling > > >> the kernel for single processor mode will make > things > > >> run a little quicker because the SMP code won't > come > > >> into play. > > >> > > >> with HT disabling in FreeBSD is more for the > security > > >> issues about a potential exploit whereby one > process > > >> in one pipe can access the priveledged > information of > > >> a process in another pipe because the two cores > share > > >> one processor cache and thus one cache table. > To my > > >> knowledge this hasn't been exploited yet. > > >> > > >> If you just install the generic kernel you it > should > > >> be only the uniprocessor one. I would just do > a: > > >> > > >> cd /usr/src && make buildworld && make > > >> KERNCONF=GENERIC buildkernel && make > KERNCONF=GENERIC > > >> installkernel > > >> > > >> as opposed to a binary version assuming you > haven't > > >> updated yet you won't have to install world but > I > > >> believe it must have the build in the source > tree to > > >> build a kernel. On your P4 though the > difference > > >> between SMP and uniproc may not be worth the > trouble > > >> because I don't think much of a gain would be > made. on > > >> a P1 a much different story... > > >> > > >> if you aren't concerned with bad users or > hackers > > >> hitting the box I would just enable HT with the > sysctl > > >> variable. This will not make things run slower > at all, > > >> just (in theory) less secure, which is why the > > >> veriable was created in the first place as I > recall. > > >> If you are concerned I would wait until you > update > > >> your system and then just build a > GENERIC/CUSTOM > > >> kernel without the SMP option set. > > >> > > >> > > >> -brian > > >> > > > > > > > > > I will disable smp from bios. If I have a smp > kernel, I suppose there > > > will > > > be no problem after all. Would that be ok? > > > The problem with having SMP enabled is that the > smp kernel only > > > detects one > > > cpu and the system monitor only features one cpu > as well as gkrellm (in > > > Linux it shows two cpus). When compiling the > system monitor shows the > > > cpu at > > > a maximum of 50%, so what's going on with the > other 50%? > > > writing machdep.hlt_logical_cpus to 2 in > loader.conf does not solve > > > anything. > > > I believe FreeBSD uses the other logical CPU to > handle hardware > > interrupts, which can still help perormance. You > can check dmesg to see > > how it's actually handling it. > > No! Kernel threads (e.g. handling interrupts) aren't > that much different > to normal processes. > > Logical CPUs on a single HTT capable CPU share most > of the CPU logic, > especially all the external stuff (handling > interrupts). Scheduling > handling of interrupts on the "secondary/logical" > core wouldn't > probably help performance at all (if that is at all > possible). > > When FreeBSD sees logical CPUs it means HTT is > either enabled in BIOS or > that disabling HTT in BIOS does not hide the CPUs to > FreeBSD (bug in > BIOS/FreeBSD). > > Until you enable scheduler to schedule tasks to HTT > cores (with > machdep.hyperthreading_allowed=1 in loader.conf) > (disabled by default > due to mentioned security/performance reasons) > machine won't utilize the > logical HTT CPUs. Therefore total CPU utilization > won't be more than > 50%, because there are the (unused) logical CPUs > which don't get > scheduled tasks. > are you sure about this??? I would have figured the scheduler wouldn't see the other core at all without this option set and so it wouldn't be used in calculating load at all. 50% on a compile is fairly normal from my experience. I don't have too much experience with HT as I always opt for true SMP so I can't speak with authority on the matter. but if top isn't showing CPU 1 or 0 next to a process then it isn't computing the load on multiple cores... Also if dmesg |grep cpu doesn't show application cpu1 (and on through all your cores)... launched then the system isn't looking at the HT core at all. -brian From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 14:49:44 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 69FAC16A4DE for ; Thu, 31 Aug 2006 14:49:44 +0000 (UTC) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (clunix.cl.msu.edu [35.9.2.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 902FC43D4C for ; Thu, 31 Aug 2006 14:49:35 +0000 (GMT) (envelope-from jerrymc@clunix.cl.msu.edu) Received: from clunix.cl.msu.edu (localhost [127.0.0.1]) by clunix.cl.msu.edu (8.13.6+Sun/8.13.6) with ESMTP id k7VEnYn1011480; Thu, 31 Aug 2006 10:49:34 -0400 (EDT) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.13.6+Sun/8.13.6/Submit) id k7VEnY5k011479; Thu, 31 Aug 2006 10:49:34 -0400 (EDT) From: Jerry McAllister Message-Id: <200608311449.k7VEnY5k011479@clunix.cl.msu.edu> To: list-freebsd-2004@morbius.sent.com (RW) Date: Thu, 31 Aug 2006 10:49:34 -0400 (EDT) In-Reply-To: <200608311544.40586.list-freebsd-2004@morbius.sent.com> X-Mailer: ELM [version 2.5 PL7] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 14:49:44 -0000 > > On Thursday 31 August 2006 10:09, Boris Samorodov wrote: > > On Thu, 31 Aug 2006 00:22:03 +0100 RW wrote: > > > Can't confirm that the problem exists: > > $ uname -a > > FreeBSD srv.sem.ipt.ru 6.1-STABLE FreeBSD 6.1-STABLE #2: Wed May 17 > > 23:26:59 MSD 2006 bsam@srv.sem.ipt.ru:/usr/obj/usr/src/sys/SRV i386 > > > > But what do you mean "/usr isn't mounted at that point?". Have you > > read man fstab? > > Probably I mistinterpreted man fstab, but it's complaining that /compat/linux > doesn't exist even though it does: > > ls -ld /compat /usr/compat /usr/compat/linux > lrwxr-xr-x 1 root wheel 10 Jun 7 2005 /compat -> usr/compat > drwxr-xr-x 3 root wheel 512 Jun 8 2005 /usr/compat > drwxr-xr-x 22 root wheel 512 Aug 22 03:51 /usr/compat/linux I haven't followed this thread, so I may be way off here, but... In the above, /compat is a link to usr/compat. (note the -> symbol) I suspect that you cannot mount on a link, and that mount doesn't follow links. You probably would have to mount on /usr/compat directly or make /compat a real directory and not a link or something. ////jerry > > > > > BTW I'm running 6.1 (upgraded from an original 5.3 install) > > > > Usually an output of "uname -a" is much more informative here. 6.1 may > > mean release, release + security patches, stable... And a platform > > also is of interest here. > > 6.1-RELEASE-p4 i386 > _______________________________________________ > 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 Thu Aug 31 14:53:30 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 38D5D16A4DA for ; Thu, 31 Aug 2006 14:53:30 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83113.mail.mud.yahoo.com (web83113.mail.mud.yahoo.com [216.252.101.42]) by mx1.FreeBSD.org (Postfix) with SMTP id 44FD543D6B for ; Thu, 31 Aug 2006 14:53:29 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 12805 invoked by uid 60001); 31 Aug 2006 14:53:28 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=Ash797Ir+70DopfKRLfekJh0cvxB5CbnEQdOLz/ExiauFuv+TmNG3UGrbPWZOMgDSw2vQ1eZ61wZgXG3uDfiKs0AbSx8Gx2XOxGpt3LJ8WHDIa8bqCieSpTg2zKV6wCaixGQE65H0rdok2L6Z+5fXTiG+bRCNJsd31BccLzsVMY= ; Message-ID: <20060831145328.12803.qmail@web83113.mail.mud.yahoo.com> Received: from [63.240.228.37] by web83113.mail.mud.yahoo.com via HTTP; Thu, 31 Aug 2006 07:53:28 PDT Date: Thu, 31 Aug 2006 07:53:28 -0700 (PDT) From: backyard To: Ruslan Ermilov , Thomas Vogt In-Reply-To: <20060831085225.GF14958@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-questions@FreeBSD.org Subject: Re: who do you install freebsd without sysinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 14:53:30 -0000 --- Ruslan Ermilov wrote: > [ added freebsd-questios@ ] > > On Thu, Aug 31, 2006 at 02:08:59AM +0200, Thomas > Vogt wrote: > > Hello > > > > In this emails > > > > you > > wrote that you don't install freebsd with > sysinstall. May I ask you how you > > do this? Maybe in some way like this: > > > ? > > > > I'm just curious. > > > Plenty of options, depending on the available > environment and > needs. > > 1) Add a spare disk to an existing FreeBSD box, and > populate > it using installworld/installkernel/distribution > targets > and specifying DESTDIR pointing to a mounted > spare disk. > > 2) Boot from live-system on CD-ROM, prepare and > partition the > disk(s), install distributions manually through > install.sh > scripts. > > 3) Boot from live-system on CD-ROM, prepare and > partition the > disk(s), CVSup, build/install from sources. > > 4) Boot in a PXE/TFTP/NFS diskless environment > (details are > in the Handbook), install distributions using a > shell > script as above. Distributions may come from > either > remote CD-ROM media, or be prepared by "make > release" > and made available over NFS to diskless clients. > A modification of this approach includes a mass > deployment > option that involves writing (relatively simple) > local > installation scripts that automate the tasks. > > Many other options... > > > Cheers, > -- > Ruslan Ermilov > ru@FreeBSD.org > FreeBSD committer > Out of curiosity... So If I made a custom boot cd I could boot a dead box, setup the drives and slices, CVSUP the system I want to build, tweak the build environment for the proper temporary build locations and build a system from source and install that system to the now live box, boot it and be done? I've always wondered about this because I always remake the system I've just installed because I'm usually dealing with deprecated hardware and all the architecture tweaks I could use help... If that run on is confusing basically to setup FreeBSD like a gentoo install from scratch with a system CD. also along these lines how do I make the system allow me to seed the entropy engine? Usually after an install it asks to fill in a screen full of junk, but with a custom install it doesn't do this for me, at least not the last time I tried. Just curious, especially if I attempt the above procedure. -brian From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 15:08:07 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 14B9216A4DF; Thu, 31 Aug 2006 15:08:07 +0000 (UTC) (envelope-from freebsdlists@bsdunix.ch) Received: from conversation.bsdunix.ch (ns1.bsdunix.ch [82.220.1.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CEBA43D53; Thu, 31 Aug 2006 15:08:06 +0000 (GMT) (envelope-from freebsdlists@bsdunix.ch) Received: from localhost (localhost.bsdunix.ch [127.0.0.1]) by conversation.bsdunix.ch (Postfix) with ESMTP id 89BDE5C95; Thu, 31 Aug 2006 17:08:05 +0200 (CEST) X-Virus-Scanned: by amavisd-new at mail.bsdunix.ch Received: from conversation.bsdunix.ch ([127.0.0.1]) by localhost (conversation.bsdunix.ch [127.0.0.1]) (amavisd-new, port 10024) with LMTP id iTJ6dD2xY+AH; Thu, 31 Aug 2006 17:08:05 +0200 (CEST) Received: from [212.101.1.83] (bert.mlan.solnet.ch [212.101.1.83]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by conversation.bsdunix.ch (Postfix) with ESMTP id 499A65C8E; Thu, 31 Aug 2006 17:08:05 +0200 (CEST) From: Thomas To: backyard1454-bsd@yahoo.com In-Reply-To: <20060831145328.12803.qmail@web83113.mail.mud.yahoo.com> References: <20060831145328.12803.qmail@web83113.mail.mud.yahoo.com> Content-Type: text/plain Date: Thu, 31 Aug 2006 17:08:04 +0200 Message-Id: <1157036884.25625.23.camel@bert.mlan.solnet.ch> Mime-Version: 1.0 X-Mailer: Evolution 2.7.92 SolNet.ch Swiss ISP Content-Transfer-Encoding: 7bit Cc: Ruslan Ermilov , freebsd-questions@FreeBSD.org Subject: Re: who do you install freebsd without sysinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:08:07 -0000 Am Donnerstag, den 31.08.2006, 07:53 -0700 schrieb backyard: > > --- Ruslan Ermilov wrote: --snipp--- > Out of curiosity... > also along these lines how do I make the system allow > me to seed the entropy engine? Usually after an > install it asks to fill in a screen full of junk, but > with a custom install it doesn't do this for me, at > least not the last time I tried. Just curious, > especially if I attempt the above procedure. I use the following in my PXE installation: echo kern.random.sys.seeded = 1 >> /etc/sysctl.conf in my post_install.sh config. Cheers Thomas PS: Ignore the subject it was late. s,who,how From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 15:18:11 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 A3BD216A4E7 for ; Thu, 31 Aug 2006 15:18:11 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 202B143D55 for ; Thu, 31 Aug 2006 15:17:58 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id CCFE660E7; Thu, 31 Aug 2006 19:17:56 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id 92BA860D8; Thu, 31 Aug 2006 19:17:56 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.6/8.13.6) id k7VFINnU057478; Thu, 31 Aug 2006 19:18:23 +0400 (MSD) (envelope-from ru) Date: Thu, 31 Aug 2006 19:18:23 +0400 From: Ruslan Ermilov To: backyard Message-ID: <20060831151823.GE56996@rambler-co.ru> References: <20060831085225.GF14958@rambler-co.ru> <20060831145328.12803.qmail@web83113.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nHwqXXcoX0o6fKCv" Content-Disposition: inline In-Reply-To: <20060831145328.12803.qmail@web83113.mail.mud.yahoo.com> User-Agent: Mutt/1.5.12-2006-07-14 X-Virus-Scanned: No virus found Cc: freebsd-questions@FreeBSD.org Subject: Re: who do you install freebsd without sysinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:18:11 -0000 --nHwqXXcoX0o6fKCv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 31, 2006 at 07:53:28AM -0700, backyard wrote: > Out of curiosity... >=20 > So If I made a custom boot cd I could boot a dead box, > setup the drives and slices, CVSUP the system I want > to build, tweak the build environment for the proper > temporary build locations and build a system from > source and install that system to the now live box, > boot it and be done? >=20 Basically yes. When booting from CD though, I'll have to mdconfig(8) and re-mount at least /tmp, maybe /var as well. > also along these lines how do I make the system allow > me to seed the entropy engine? Usually after an > install it asks to fill in a screen full of junk, but > with a custom install it doesn't do this for me, at > least not the last time I tried. Just curious, > especially if I attempt the above procedure. >=20 Well, it does this only if the below conditions are met: 1) You have enabled sshd(8) in sysinstall(8), so it's enabled in /etc/rc.conf. 2) This is the first boot, /etc/rc.d/sshd needs to generate new SSH keys but random(4) hasn't been seeded yet. (random(4) is seeded by the /random and /var/db/random/* files.) So, if you did a custom install and then rebooted for the first time, but did not yet enable sshd(8), the cron(8) will save some entropy, so the time you need it to generate SSH keys there will already be some entropy available. But if you absolutely need to reseed manually, boot into single-user mode, and type rm /entropy /var/db/entropy/* Then proceed with normal booting. If sshd(8) is enabled, it will ask you to enter some entropy. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --nHwqXXcoX0o6fKCv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE9v2/qRfpzJluFF4RAogsAJ90i80IWj749Lx/a5KcjWfeCu7/ggCdEpb+ CtfFjC9RR+vaeM5l3Y/6ej0= =/Cmh -----END PGP SIGNATURE----- --nHwqXXcoX0o6fKCv-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 15:19:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 653D616A4DE for ; Thu, 31 Aug 2006 15:19:24 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83115.mail.mud.yahoo.com (web83115.mail.mud.yahoo.com [216.252.101.44]) by mx1.FreeBSD.org (Postfix) with SMTP id 60B7F43DBE for ; Thu, 31 Aug 2006 15:18:58 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 42789 invoked by uid 60001); 31 Aug 2006 15:18:57 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=MtvEWh77TpHDqU4N0MjLP72z0dsMY9oIfycWdEaOqK1ED9dwwSd42TD+b0TKfCwJsLCgOa6S3lQGlIWGWnBsNU0jeSF3ZzC9ZY0nzzfFiDCtIGhrA9W79cUwAHiBOut7xT8dnEGZBMJL2ASSugCm01tF3nHnAI2r+uCsZH9tBDI= ; Message-ID: <20060831151857.42787.qmail@web83115.mail.mud.yahoo.com> Received: from [63.240.228.37] by web83115.mail.mud.yahoo.com via HTTP; Thu, 31 Aug 2006 08:18:57 PDT Date: Thu, 31 Aug 2006 08:18:57 -0700 (PDT) From: backyard To: "Chad Leigh -- Shire.Net LLC" , freebsd-questions Questions In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: Subject: Re: shared cache -- Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:19:24 -0000 --- "Chad Leigh -- Shire.Net LLC" wrote: > > On Aug 30, 2006, at 12:12 PM, backyard wrote: > > > with HT disabling in FreeBSD is more for the > security > > issues about a potential exploit whereby one > process > > in one pipe can access the priveledged information > of > > a process in another pipe because the two cores > share > > one processor cache and thus one cache table. To > my > > knowledge this hasn't been exploited yet. > > > How is this any different than say an Intel Core Duo > or Core 2 Duo? > I believe they have a shared cache as well for each > (real) processor > core. > > Chad > > --- > Chad Leigh -- Shire.Net LLC > Your Web App and Email hosting provider > chad at shire.net > > I would say there is no difference if what you say is true. A Multi-Core chip is only true SMP if the two cores share no resources internally and thus are capable of running process separate from each other entirely. independantly and with their own internal caches. The process shouldn't have to wait on a lock to access it's cache, which I would have to assume occurs on these HT machines; which is probably why they have degraded performance. The cache should only be shared if a process explicity copies its content to the other cores cache. If should not be possible for both Cores to see the same internal cache. To my knowledge the AMDx2 follow this model with independant cores only sharing a common die. This ensures the context and priveledge of one running process cannot be compromised by a non-priveldeged process waiting on say a login attempt to root, and then grabbing the password from the common cache before the privelidged process can clean up. I don't think this flaw has been exploited yet, but the boys at OpenBSD found it (from memory, pretty sure it was one of them) and it has spread through the BSD community as it has potentially dire consequences. Personally I'm done with Intel so I don't think I'll ever have this issue. Afterall they're still the reason my computer boots up with 640k of RAM... I also think AMD has come from being a clone to being on top of the market, but this is my personal opinion. The fact Core Duos are only 32-bit means Intel is still only concerned with shortend gains on the Windows market, not long term migration to 64-bit PCs like everyone else... And banking on Microsoft has never been a solid idea; its too bad banks use Windows; there's a security nightmare, but a topic in and of itself... -brian From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 15:23:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A874416A4DA for ; Thu, 31 Aug 2006 15:23:27 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2125C43D53 for ; Thu, 31 Aug 2006 15:23:26 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from admin.sem.ipt.ru ([192.168.12.1] helo=srv.sem.ipt.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GIoO3-000JWs-EL; Thu, 31 Aug 2006 19:23:23 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GIoQs-0000D5-By; Thu, 31 Aug 2006 19:26:18 +0400 To: RW References: <200608302124.21833.list-freebsd-2004@morbius.sent.com> <200608310022.05206.list-freebsd-2004@morbius.sent.com> <02019648@srv.sem.ipt.ru> <200608311544.40586.list-freebsd-2004@morbius.sent.com> From: Boris Samorodov Date: Thu, 31 Aug 2006 19:26:18 +0400 In-Reply-To: <200608311544.40586.list-freebsd-2004@morbius.sent.com> (RW's message of "Thu, 31 Aug 2006 15:44:39 +0100") Message-ID: <37691525@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:23:27 -0000 On Thu, 31 Aug 2006 15:44:39 +0100 RW wrote: > On Thursday 31 August 2006 10:09, Boris Samorodov wrote: > > On Thu, 31 Aug 2006 00:22:03 +0100 RW wrote: > > Can't confirm that the problem exists: > > $ uname -a > > FreeBSD srv.sem.ipt.ru 6.1-STABLE FreeBSD 6.1-STABLE #2: Wed May 17 > > 23:26:59 MSD 2006 bsam@srv.sem.ipt.ru:/usr/obj/usr/src/sys/SRV i386 > > > > But what do you mean "/usr isn't mounted at that point?". Have you > > read man fstab? > Probably I mistinterpreted man fstab, If you show us what did you misinterpret, we may be able to help you. > but it's complaining that /compat/linux Who? Can you provide us with some more info? Any logs? You mentioned that "it's complaining..." for the first time. And show us your /etc/fstab, please. > doesn't exist even though it does: > ls -ld /compat /usr/compat /usr/compat/linux > lrwxr-xr-x 1 root wheel 10 Jun 7 2005 /compat -> usr/compat > drwxr-xr-x 3 root wheel 512 Jun 8 2005 /usr/compat > drwxr-xr-x 22 root wheel 512 Aug 22 03:51 /usr/compat/linux > > > BTW I'm running 6.1 (upgraded from an original 5.3 install) > > > > Usually an output of "uname -a" is much more informative here. 6.1 may > > mean release, release + security patches, stable... And a platform > > also is of interest here. > 6.1-RELEASE-p4 i386 OK. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 15:24:46 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 7001716A504 for ; Thu, 31 Aug 2006 15:24:46 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83105.mail.mud.yahoo.com (web83105.mail.mud.yahoo.com [216.252.101.34]) by mx1.FreeBSD.org (Postfix) with SMTP id C237E43D92 for ; Thu, 31 Aug 2006 15:24:45 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 21663 invoked by uid 60001); 31 Aug 2006 15:24:45 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=aLDzmmdijsstPinn9p5vzT+JIdBly/KENPAsljr1h2E3eapVbHZYyyWA/9OaMJQNCGr0ghqDNbOE6WjytDarK1ZuXhoBTeFM6DIhi544sp9U6l3G+OZSulEi+tYOxIn8acsmGKPoz5DtDtar2Nyuf7EuA7FYzUbzdb2QMlu4vv0= ; Message-ID: <20060831152445.21661.qmail@web83105.mail.mud.yahoo.com> Received: from [63.240.228.37] by web83105.mail.mud.yahoo.com via HTTP; Thu, 31 Aug 2006 08:24:45 PDT Date: Thu, 31 Aug 2006 08:24:45 -0700 (PDT) From: backyard To: Ruslan Ermilov , backyard In-Reply-To: <20060831151823.GE56996@rambler-co.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-questions@FreeBSD.org Subject: Re: who do you install freebsd without sysinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:24:46 -0000 --- Ruslan Ermilov wrote: > On Thu, Aug 31, 2006 at 07:53:28AM -0700, backyard > wrote: > > Out of curiosity... > > > > So If I made a custom boot cd I could boot a dead > box, > > setup the drives and slices, CVSUP the system I > want > > to build, tweak the build environment for the > proper > > temporary build locations and build a system from > > source and install that system to the now live > box, > > boot it and be done? > > > Basically yes. When booting from CD though, I'll > have > to mdconfig(8) and re-mount at least /tmp, maybe > /var > as well. > > > also along these lines how do I make the system > allow > > me to seed the entropy engine? Usually after an > > install it asks to fill in a screen full of junk, > but > > with a custom install it doesn't do this for me, > at > > least not the last time I tried. Just curious, > > especially if I attempt the above procedure. > > > Well, it does this only if the below conditions are > met: > > 1) You have enabled sshd(8) in sysinstall(8), so > it's > enabled in /etc/rc.conf. > > 2) This is the first boot, /etc/rc.d/sshd needs to > generate new SSH keys but random(4) hasn't been > seeded yet. (random(4) is seeded by the /random > and /var/db/random/* files.) > > So, if you did a custom install and then rebooted > for > the first time, but did not yet enable sshd(8), the > cron(8) will save some entropy, so the time you need > it to generate SSH keys there will already be some > entropy available. > > But if you absolutely need to reseed manually, boot > into single-user mode, and type > > rm /entropy /var/db/entropy/* > > Then proceed with normal booting. If sshd(8) is > enabled, it will ask you to enter some entropy. > > > Cheers, > -- > Ruslan Ermilov > ru@FreeBSD.org > FreeBSD committer > ok, I figured it was something simple enough like that... how does cron save entropy??? I've noticed "saving entropy files" at shutdown but have always wondered what it is using. or does it just read from /dev/random? -brian From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 15:29:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 892C616A4DD for ; Thu, 31 Aug 2006 15:29:22 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22FE443D5E for ; Thu, 31 Aug 2006 15:29:20 +0000 (GMT) (envelope-from josh.carroll@gmail.com) Received: by wr-out-0506.google.com with SMTP id 68so231506wri for ; Thu, 31 Aug 2006 08:29:19 -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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=N2C8rYTdKzIwRAlPqJWgDGNgfTnelf0h+EGQd+KqI80YwyNNfo6mbpCobAeoS/80L5D2lvdOvl5k6N+yaS0pu3mevg7IwaTmsYDVingjPcAqI2X5Z+gTeHA/fvSUk2CIy6Ig8AMXfNOlfPodw7pv8M30KTjPsGle7ZSQoQ0LsJM= Received: by 10.90.66.9 with SMTP id o9mr202763aga; Thu, 31 Aug 2006 08:29:19 -0700 (PDT) Received: by 10.90.56.6 with HTTP; Thu, 31 Aug 2006 08:29:19 -0700 (PDT) Message-ID: <8cb6106e0608310829i5bbc416x3482330f76b17da4@mail.gmail.com> Date: Thu, 31 Aug 2006 08:29:19 -0700 From: "Josh Carroll" To: "freebsd-questions Questions" In-Reply-To: <20060831151857.42787.qmail@web83115.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060831151857.42787.qmail@web83115.mail.mud.yahoo.com> Subject: Re: shared cache -- Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@psualum.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:29:22 -0000 Core 2 Duos have the EM64T extensions. Core Duos (Yonah) are a mobile chip only, not a full line of processors like the Core 2 architecture (Merom, Conroe, Woodcrest). I suspect the Core 2 chips do not suffer from the same security implications as HT-enabled processors. I'm not certain, but I think each processor has access to half the cache so the only reason it's shared is that it's on the same die and both cores are using parts of it. Josh > The fact Core Duos are only 32-bit means Intel is still > only concerned with shortend gains on the Windows > market, not long term migration to 64-bit PCs like > everyone else... And banking on Microsoft has never > been a solid idea; its too bad banks use Windows; > there's a security nightmare, but a topic in and of > itself... > > -brian > > _______________________________________________ > 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 Thu Aug 31 15:38:33 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 9BC8416A4DA for ; Thu, 31 Aug 2006 15:38:33 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2174443D45 for ; Thu, 31 Aug 2006 15:38:33 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id 05E985E07; Thu, 31 Aug 2006 19:38:32 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id D932A5CE9; Thu, 31 Aug 2006 19:38:31 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.6/8.13.6) id k7VFcwlN057719; Thu, 31 Aug 2006 19:38:58 +0400 (MSD) (envelope-from ru) Date: Thu, 31 Aug 2006 19:38:58 +0400 From: Ruslan Ermilov To: backyard Message-ID: <20060831153858.GH56996@rambler-co.ru> References: <20060831151823.GE56996@rambler-co.ru> <20060831152445.21661.qmail@web83105.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="smOfPzt+Qjm5bNGJ" Content-Disposition: inline In-Reply-To: <20060831152445.21661.qmail@web83105.mail.mud.yahoo.com> User-Agent: Mutt/1.5.12-2006-07-14 X-Virus-Scanned: No virus found Cc: freebsd-questions@FreeBSD.org Subject: Re: who do you install freebsd without sysinstall? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 15:38:33 -0000 --smOfPzt+Qjm5bNGJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 31, 2006 at 08:24:45AM -0700, backyard wrote: > how does cron save entropy??? I've noticed "saving > entropy files" at shutdown but have always wondered > what it is using. or does it just read from > /dev/random? >=20 # Save some entropy so that /dev/random can re-seed on boot. */11 * * * * operator /usr/libexec/save-entropy The latter saves some amount of /dev/random for further seeding. /entropy is saved by /etc/rc.d/random, when it stops. random_stop() { # Write some entropy so when the machine reboots /dev/random # can be reseeded # I think two mechanisms exist because a solution involving cron(8) works better, but cron(8) is not guaranteed to be up and running (untypical but anyway), so additionally an entropy is also saved once on shutdown. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --smOfPzt+Qjm5bNGJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE9wKSqRfpzJluFF4RAn3pAJ9WvvPAMZXw2IE9gI+xAu9nA4i4iQCfdvGL i8kOp57ax+jbQknhfas1+iI= =XJeU -----END PGP SIGNATURE----- --smOfPzt+Qjm5bNGJ-- From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 16:05:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 79F3516A4ED for ; Thu, 31 Aug 2006 16:05:40 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5B5D43D49 for ; Thu, 31 Aug 2006 16:05:39 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so641504uge for ; Thu, 31 Aug 2006 09:05:38 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jFU1K8mIfCjdfld9ad7X5mb/8J9buBqgaRaH9OmzkqsVxVztkvoU2ry6Ox4w0psbm67rYxuLkwQLejNcfrcBNHyT3+3A6CyvngesyEKIszg9ejYXiAzURxxH/xtRDU000YDUOVjYqlAaCoTkK9XfyaJj1UEGdB8mPqyW/Sq9EJQ= Received: by 10.66.222.9 with SMTP id u9mr618702ugg; Thu, 31 Aug 2006 09:05:38 -0700 (PDT) Received: by 10.67.98.16 with HTTP; Thu, 31 Aug 2006 09:05:37 -0700 (PDT) Message-ID: <80f4f2b20608310905p21a6190dh63fe5cd0a4e47c48@mail.gmail.com> Date: Thu, 31 Aug 2006 12:05:37 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <44F628DC.9040502@mawer.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20608300735l6d27916ar6eef3b420322b00c@mail.gmail.com> <80f4f2b20608300918v6fdd7185w524301b1974bd4d2@mail.gmail.com> <44F628DC.9040502@mawer.org> Subject: Re: free-bsd's mount_smbfs having issues with EMC Celerra X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 16:05:40 -0000 "The right stuff": sudo mount_smbfs -I -W -d 550 -f 550 //@/ That's about it. On 8/30/06, Antony Mawer wrote: > On 31/08/2006 2:18 AM, Jim Stapleton wrote: > > nevermind, my own dumb mistake with the connection string, first I > > didn't have the right stuff for logging into a domain, second time > > around when that was fixed, I had a "/" where there should have been > > an "@". > > What was "the right stuff" for logging into a domain? Can you give an > example command line? > > We've seen some machines where we had to add the -W parameter with the > domain name (as the workgroup name, go figure) in order to get > mount_smbfs to work... yet smbclient will happily figure this out itself. > > Cheers > Antony > From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 16:12:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C5D7516A4DD for ; Thu, 31 Aug 2006 16:12:38 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18F6C43D86 for ; Thu, 31 Aug 2006 16:12:24 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so643912uge for ; Thu, 31 Aug 2006 09:12:24 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=qwoW+0uosTslsizxxM9pFfQd7qE38ufFAqJknakrFquiYcO0fLW1u4RRYp88uWXcWncORH8bfgqX2horSWLmZc8pZMJsFGQD5dj4soo8zLRZRFiv72IFXbKtn4QmRAA5RxodjqeEFjj3kbt9y5/aK/A3/qQOH6BA1qImjWp0dnc= Received: by 10.66.216.20 with SMTP id o20mr612301ugg; Thu, 31 Aug 2006 09:12:24 -0700 (PDT) Received: by 10.67.98.16 with HTTP; Thu, 31 Aug 2006 09:12:24 -0700 (PDT) Message-ID: <80f4f2b20608310912l45efdedcxc72c67f6adab562c@mail.gmail.com> Date: Thu, 31 Aug 2006 12:12:24 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: can someone point me to some good and descriptive VPN documentation for my use? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 16:12:38 -0000 I'm trying to VPN in to work from home, and the IT group there only supports windows. There are Cisco pre-configured clients for Linux, MacOS X, and Windows available, but not BSD. I tried running the Linux binary, but it wanted to move to a nonexistant driectory, and didn't tell me which directory it couldn't find, so I couldn't make the proper symlink. I looked through the VPN via IPSEC portion of the handbook, but was left wanting. Anyone know of a better howto? My questions from the VPN/IPSEC section: (1) My machine isn't the router - can it still work? (2) I don't want to send a lot of garbage to the VPN connection, should I connect the loopback (127.0.0.1), my local ip (192.168.1.84), or create a new loopback or virtual network connection (how?) Thanks, -Jim Stapleton From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 16:28:10 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0AEA816A4DE for ; Thu, 31 Aug 2006 16:28:10 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out4.blueyonder.co.uk (smtp-out4.blueyonder.co.uk [195.188.213.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9990743D6A for ; Thu, 31 Aug 2006 16:28:03 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.146] (helo=anti-virus03-09) by smtp-out4.blueyonder.co.uk with smtp (Exim 4.52) id 1GIpOc-0002ij-NN; Thu, 31 Aug 2006 17:28:02 +0100 Received: from [82.41.35.166] (helo=[192.168.0.2]) by asmtp-out4.blueyonder.co.uk with esmtp (Exim 4.52) id 1GIpOb-0006vy-JM; Thu, 31 Aug 2006 17:28:01 +0100 Message-ID: <44F70E11.7020203@dial.pipex.com> Date: Thu, 31 Aug 2006 17:28:01 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.13) Gecko/20060515 X-Accept-Language: en MIME-Version: 1.0 To: Jim Stapleton References: <80f4f2b20608310912l45efdedcxc72c67f6adab562c@mail.gmail.com> In-Reply-To: <80f4f2b20608310912l45efdedcxc72c67f6adab562c@mail.gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: can someone point me to some good and descriptive VPN documentation for my use? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 16:28:10 -0000 Jim Stapleton wrote: > I'm trying to VPN in to work from home, and the IT group there only > supports windows. There are Cisco pre-configured clients for Linux, > MacOS X, and Windows available, but not BSD. > > I tried running the Linux binary, but it wanted to move to a > nonexistant driectory, and didn't tell me which directory it couldn't > find, so I couldn't make the proper symlink. You could try a strings on the binary to try to find the directory - assuming that's the only problem, of course :-) --Alex From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 16:28:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8697216A4E1 for ; Thu, 31 Aug 2006 16:28:37 +0000 (UTC) (envelope-from luyt@guild-evo.org) Received: from smtp-vbr3.xs4all.nl (smtp-vbr3.xs4all.nl [194.109.24.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6524043D7F for ; Thu, 31 Aug 2006 16:28:31 +0000 (GMT) (envelope-from luyt@guild-evo.org) Received: from [172.20.2.48] ([62.58.152.52]) (authenticated bits=0) by smtp-vbr3.xs4all.nl (8.13.6/8.13.6) with ESMTP id k7VGST7I051446 for ; Thu, 31 Aug 2006 18:28:30 +0200 (CEST) (envelope-from luyt@guild-evo.org) From: Luyt To: freebsd-questions@freebsd.org Date: Thu, 31 Aug 2006 18:28:27 +0200 User-Agent: KMail/1.8.2 References: <44D79242.3050108@enternet.hu> In-Reply-To: <44D79242.3050108@enternet.hu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200608311828.27739.luyt@guild-evo.org> X-Virus-Scanned: by XS4ALL Virus Scanner Subject: Re: Thin terminals for FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 16:28:37 -0000 On Monday 07 August 2006 21:19, Nagy L=E1szl=F3 wrote: > I need to setup an environment where some users (10 to 20 employees) > will use terminals to run programs. They need to run a few popular > programs: thunderbird, firefox, adobe acrobat, openoffice and gaim.=20 Jamie Zawinski has done such a thing in his DNA Lounge club; albeit using=20 Linux. He describes this project in detail: http://www.dnalounge.com/backstage/src/kiosk/ =2D-=20 "The ability of the OSS process to collect and harness=20 the collective IQ of thousands of individuals across=20 the Internet is simply amazing." - Vinod Vallopillil http://www.catb.org/~esr/halloween/halloween4.html From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 16:55:31 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EDB2D16A5CE for ; Thu, 31 Aug 2006 16:55:30 +0000 (UTC) (envelope-from tofik@oxygen.az) Received: from mail.ultel.net (ns2.ultel.net [81.21.80.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D15F43D53 for ; Thu, 31 Aug 2006 16:55:27 +0000 (GMT) (envelope-from tofik@oxygen.az) Received: from mail.ultel.net (localhost.ultel.net [127.0.0.1]) by mail.ultel.net (Postfix) with ESMTP id 9904B171E4; Thu, 31 Aug 2006 21:55:25 +0500 (AZST) Received: from [192.168.1.3] (unknown [81.21.81.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.ultel.net (Postfix) with ESMTP id F15DD171DB; Thu, 31 Aug 2006 21:55:14 +0500 (AZST) Message-ID: <44F7145C.9080705@oxygen.az> Date: Thu, 31 Aug 2006 21:54:52 +0500 From: Tofik Suleymanov MIME-Version: 1.0 To: Jonathan Horne References: <200608302047.06425.freebsd@dfwlp.com> In-Reply-To: <200608302047.06425.freebsd@dfwlp.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-questions@freebsd.org Subject: Re: not adding daemons to rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 16:55:31 -0000 Jonathan Horne wrote: > ive noticed that apache can be started manually using the apachectl tool, even > if it is not enabled in /etc/rc.conf. do many other daemons have this > ability? i have a dev server that i would like to not have many things > enabled in the rc.conf, but i would like an easy way to just start specific > daemons when i need. > > thanks, > jonathan > _______________________________________________ > 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 always use: /usr/local/etc/rc.d/scriptname forcestart or /etc/rc.d/scriptname forcestart But this just overrides "enable" keyword in rc scripts and of course will not start your service in the next boot. Sincerely, Tofig Suleymanov From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 17:14:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 44A1D16A4DD for ; Thu, 31 Aug 2006 17:14:12 +0000 (UTC) (envelope-from efinleywork@efinley.com) Received: from postmaster.etv.net (postmaster.etv.net [208.14.190.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCC0343D6B for ; Thu, 31 Aug 2006 17:14:09 +0000 (GMT) (envelope-from efinleywork@efinley.com) Received: from work.efinley.com ([205.161.203.55] helo=elliotdevelop) by postmaster.etv.net with smtp (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GIq7B-00061F-1O; Thu, 31 Aug 2006 11:14:08 -0600 Message-ID: <0a5801c6cd20$dca47210$37cba1cd@emerytelcom.com> From: "Elliot Finley" To: "Jonathan McKeown" , References: <200608311325.04759.jonathan@hst.org.za> Date: Thu, 31 Aug 2006 11:11:58 -0600 Organization: Emery Telcom 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.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Cc: Subject: Re: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Elliot Finley List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 17:14:12 -0000 I use gmirror for this very purpose. It works well. ----- Original Message ----- From: "Jonathan McKeown" To: Sent: Thursday, August 31, 2006 5:25 AM Subject: Mirroring: gvinum or gmirror? > I'm setting up a remote server with two identical hard drives, running > FreeBSD-6.1. I want to set the drives up as a mirror for data redundancy. I > also want to be able to break the mirror when I need to update the OS or > installed software, so that if anything goes wrong with the update on one > drive I can boot back to the other one, or if all is well, re-establish the > mirror and synchronise to the updated system. I have serial console access > including BIOS console redirection. > > Based on web and Usenet/mailing list searches, gmirror looks more > straightforward for this simple case, gvinum more flexible but poorly > documented, and the most recent comments I can find (still all 6+ months ago) > seem to suggest that gvinum hasn't completely stabilised for production yet. > > Is this a fair assessment? Are there any factors I've missed? Which solution > is likely to suit the situation better? > > Jonathan > _______________________________________________ > 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 Thu Aug 31 17:17:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BF97C16A4DA for ; Thu, 31 Aug 2006 17:17:51 +0000 (UTC) (envelope-from david.robillard@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23C7443D45 for ; Thu, 31 Aug 2006 17:17:50 +0000 (GMT) (envelope-from david.robillard@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so667277uge for ; Thu, 31 Aug 2006 10:17:50 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hila+VnjLxqTsQqRP+Ng0EQX0Nx9sZfaGJgmPFV3FZDBjDJEFbAs9Cq/P8ZvEhIT2HVPN0RsgiLHAE96WrKlxAMIA/OARk+xGDqjwXFysXpN2KMZGZWBAbymXfxqOLFjakNTrMVOchdHUB+5XEroyTyMbiWSnHmllHhaxsxW3Xg= Received: by 10.67.89.5 with SMTP id r5mr668098ugl; Thu, 31 Aug 2006 10:17:50 -0700 (PDT) Received: by 10.67.106.17 with HTTP; Thu, 31 Aug 2006 10:17:50 -0700 (PDT) Message-ID: <226ae0c60608311017j1a4bea9cg6dbaa12414d74716@mail.gmail.com> Date: Thu, 31 Aug 2006 13:17:50 -0400 From: "David Robillard" To: "Jonathan McKeown" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: FreeBSD Questions Mailing List Subject: Re: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 17:17:51 -0000 > I'm setting up a remote server with two identical hard drives, running > FreeBSD-6.1. I want to set the drives up as a mirror for data redundancy. I > also want to be able to break the mirror when I need to update the OS or > installed software, so that if anything goes wrong with the update on one > drive I can boot back to the other one, or if all is well, re-establish the > mirror and synchronise to the updated system. I have serial console access > including BIOS console redirection. > > Based on web and Usenet/mailing list searches, gmirror looks more > straightforward for this simple case, gvinum more flexible but poorly > documented, and the most recent comments I can find (still all 6+ months ago) > seem to suggest that gvinum hasn't completely stabilised for production yet. > > Is this a fair assessment? Are there any factors I've missed? Which solution > is likely to suit the situation better? > > Jonathan Hello Jonathan, I run gmirror on all machines which don't have a hardware RAID controller. I've had drive failures in the past and gmirror handled it very well. It's now a lot better under 6.1 then 5.x (mostly concerning the kernel dump area and the swapoff option in rc.conf(5)). Take a look at Ralf S. Engelschall's documentation on the subject: http://people.freebsd.org/~rse/mirror/ Bonus Tip of the day! If you ever have two disk drives which are not identical, such as these: ad0: 4112MB at ata0-master UDMA33 ad3: 4028MB at ata1-slave UDMA33 Then make sure you install FreeBSD on the bigger one (i.e. here that would be ad0) then setup gmirror. If you do the oposite, you will have a "Consumers too small" error when you try to bring the mirror together. Finally, keep in mind that gmirror is only good for RAID 1. If you need more powerfull volume management tools such as Veritas Volume Manager or Sun DiskSuite, then you need gvinum. Regards, David -- David Robillard UNIX systems administrator & Oracle DBA CISSP, RHCE & Sun Certified Security Administrator Montreal: +1 514 966 0122 From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 17:50:00 2006 Return-Path: X-Original-To: FreeBSD-Questions@FreeBSD.org 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 66A9A16A4E1 for ; Thu, 31 Aug 2006 17:50:00 +0000 (UTC) (envelope-from dkelly@Grumpy.DynDNS.org) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49B6543D49 for ; Thu, 31 Aug 2006 17:49:59 +0000 (GMT) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 22869 invoked by uid 0); 31 Aug 2006 17:49:57 -0000 Received: from unknown (HELO Grumpy.DynDNS.org) (216.186.148.249) by smtp2.knology.net with SMTP; 31 Aug 2006 17:49:57 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id 1961E28420; Thu, 31 Aug 2006 12:49:53 -0500 (CDT) Date: Thu, 31 Aug 2006 12:49:52 -0500 From: David Kelly To: FreeBSD-Questions@FreeBSD.org Message-ID: <20060831174952.GA44046@Grumpy.DynDNS.org> References: <20060830232723.GU10101@multics.mit.edu> <98f5a8830608301731s2b0663e3g94b0bd32f8a06a78@mail.gmail.com> <950621ad0608310654h78ae0023g346abd108815ae72@mail.gmail.com> <20060831110112.J82634@hub.org> <78a2305a0608310830l923f83pbd03b2c89d417505@mail.gmail.com> <44F70598.2040408@Gravier.org> <78a2305a0608310857pd155323t68597a6e2380977c@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <78a2305a0608310857pd155323t68597a6e2380977c@mail.gmail.com> User-Agent: Mutt/1.4.2.2i Cc: Subject: Re: The future of NetBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD-Questions@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 17:50:00 -0000 On Thu, Aug 31, 2006 at 08:57:32AM -0700, Andy Ruhl wrote: > On 8/31/06, Gilles Gravier wrote: > >Ahem... so no Apache... but why games, X11, compiler? > > So don't install the games set, the X set, or the comp set if you > don't want that stuff. > > I think the point I'm trying to make is, apache is certainly not > something *most* people will use. When Andy first said "no Apache" I mistakenly heard him to say "in the kernel". Have heard others wanting to move http servers into the kernel for (hopefully) better performance. IMHO this is the Microsoft Mistake, to throw everything in including the kitchen sink. OTOH a function such as sendfile() when integrated into the kernel can know more about optimizing buffers, and is a good compromise. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 17:57:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C0FB316A4DA for ; Thu, 31 Aug 2006 17:57:07 +0000 (UTC) (envelope-from efinleywork@efinley.com) Received: from postmaster.etv.net (postmaster.etv.net [208.14.190.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 751C143D49 for ; Thu, 31 Aug 2006 17:57:07 +0000 (GMT) (envelope-from efinleywork@efinley.com) Received: from work.efinley.com ([205.161.203.55] helo=elliotdevelop) by postmaster.etv.net with smtp (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GIqlI-0007Eh-O8; Thu, 31 Aug 2006 11:56:43 -0600 Message-ID: <0a7c01c6cd26$a76b5b80$37cba1cd@emerytelcom.com> From: "Elliot Finley" To: "David Robillard" , "Jonathan McKeown" References: <226ae0c60608311017j1a4bea9cg6dbaa12414d74716@mail.gmail.com> Date: Thu, 31 Aug 2006 11:53:06 -0600 Organization: Emery Telcom 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.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Cc: FreeBSD Questions Mailing List Subject: Re: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Elliot Finley List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 17:57:07 -0000 ----- Original Message ----- From: "David Robillard" To: "Jonathan McKeown" Cc: "FreeBSD Questions Mailing List" Sent: Thursday, August 31, 2006 11:17 AM Subject: Re: Mirroring: gvinum or gmirror? > Bonus Tip of the day! If you ever have two disk drives which are not > identical, such as these: > > ad0: 4112MB at ata0-master UDMA33 > ad3: 4028MB at ata1-slave UDMA33 > > Then make sure you install FreeBSD on the bigger one (i.e. here that > would be ad0) then setup gmirror. If you do the oposite, you will have > a "Consumers too small" error when you try to bring the mirror > together. I could be wrong, but that seems backwards. Elliot From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 18:03:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EEE2F16A515 for ; Thu, 31 Aug 2006 18:03:28 +0000 (UTC) (envelope-from efinleywork@efinley.com) Received: from postmaster.etv.net (postmaster.etv.net [208.14.190.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 670AE43D46 for ; Thu, 31 Aug 2006 18:03:28 +0000 (GMT) (envelope-from efinleywork@efinley.com) Received: from work.efinley.com ([205.161.203.55] helo=elliotdevelop) by postmaster.etv.net with smtp (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GIqsh-000BWq-7i; Thu, 31 Aug 2006 12:03:22 -0600 Message-ID: <0a9c01c6cd27$b8b38830$37cba1cd@emerytelcom.com> From: "Elliot Finley" To: "David Robillard" , "Jonathan McKeown" References: <226ae0c60608311017j1a4bea9cg6dbaa12414d74716@mail.gmail.com> Date: Thu, 31 Aug 2006 11:53:06 -0600 Organization: Emery Telcom 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.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Cc: FreeBSD Questions Mailing List Subject: Re: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Elliot Finley List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 18:03:29 -0000 ----- Original Message ----- From: "David Robillard" To: "Jonathan McKeown" Cc: "FreeBSD Questions Mailing List" Sent: Thursday, August 31, 2006 11:17 AM Subject: Re: Mirroring: gvinum or gmirror? > Bonus Tip of the day! If you ever have two disk drives which are not > identical, such as these: > > ad0: 4112MB at ata0-master UDMA33 > ad3: 4028MB at ata1-slave UDMA33 > > Then make sure you install FreeBSD on the bigger one (i.e. here that > would be ad0) then setup gmirror. If you do the oposite, you will have > a "Consumers too small" error when you try to bring the mirror > together. I could be wrong, but that seems backwards. Elliot From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 18:08:53 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7CF5B16A523 for ; Thu, 31 Aug 2006 18:08:53 +0000 (UTC) (envelope-from david.robillard@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADDED43D46 for ; Thu, 31 Aug 2006 18:08:48 +0000 (GMT) (envelope-from david.robillard@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so684626uge for ; Thu, 31 Aug 2006 11:08:48 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=HZo1wsulcaHnEARrvoeIitQ0EI4uTsF3RDuMKK0mGJPAXNKGoTOJGHExRSMGzCjO7ogGoQ3TQa6zr2derWjUoIGN1HUBTPeDa+iXPDQAvpIR/EhYt7hjCA/8Qw3LMuv/y+H6x9sbRW2NmB5p9VI8vFemsYuakZxZ2VJgqBV/x3E= Received: by 10.67.10.12 with SMTP id n12mr688007ugi; Thu, 31 Aug 2006 11:08:48 -0700 (PDT) Received: by 10.67.106.17 with HTTP; Thu, 31 Aug 2006 11:08:47 -0700 (PDT) Message-ID: <226ae0c60608311108l263442b6j122835ba73ff645c@mail.gmail.com> Date: Thu, 31 Aug 2006 14:08:47 -0400 From: "David Robillard" To: "Elliot Finley" In-Reply-To: <0a7c01c6cd26$a76b5b80$37cba1cd@emerytelcom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <226ae0c60608311017j1a4bea9cg6dbaa12414d74716@mail.gmail.com> <0a7c01c6cd26$a76b5b80$37cba1cd@emerytelcom.com> Cc: Jonathan McKeown , FreeBSD Questions Mailing List Subject: Re: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 18:08:53 -0000 On 8/31/06, Elliot Finley wrote: >> ad0: 4112MB at ata0-master UDMA33 >> ad3: 4028MB at ata1-slave UDMA33 >> > > Then make sure you install FreeBSD on the bigger one (i.e. here that > > would be ad0) then setup gmirror. If you do the oposite, you will have > > a "Consumers too small" error when you try to bring the mirror > > together. > > I could be wrong, but that seems backwards. I know, that's also what I thought before I had the problem. (hence the Tip of Day!) It's quite easy to understand when you think about it. Let's say we have the same disk drives as above in which ad0 is bigger then ad3. So you install the OS on the smaller ad3 disk first. Then you setup gmirror on the bigger disk ad0. You then dump(8) the OS from ad3 onto the broken mirror gm0 which is made up of ad0. Next you reboot on gm0 (hence on ad0). You clear ad3 which is not used anymore and try to `sudo gmirror insert gm0 /dev/ad3` = WRONG! Why? Because what you're actually doing is trying to synchronise a bigger submirror disk (ad0) onto a smaller submirror disk (ad3). Hence gmirror(8) complains that the container is too small. What you want to do is the oposite. Which is to first install FreeBSD on the bigger drive, then setup a broken submirror gm0 onto the smaller disk. Dump(8) FreeBSD onto this new gm0 mirror. Reboot on that gm0 mirror. Then finally synchronise the small submirror onto the bigger disk onto which you had FreeBSD installed first. But be my guest, try it out and you'll see :) Here's what you get once the whole thing is finished: [drobilla@klotho] ~ {336}$ gmirror list Geom name: gm0 State: COMPLETE Components: 2 Balance: round-robin Slice: 4096 Flags: NONE GenID: 0 SyncID: 1 ID: 2054366258 Providers: 1. Name: mirror/gm0 Mediasize: 4223729152 (3.9G) Sectorsize: 512 Mode: r5w5e6 Consumers: 1. Name: ad0 Mediasize: 4311982080 (4.0G) Sectorsize: 512 Mode: r1w1e1 State: ACTIVE Priority: 0 Flags: NONE GenID: 0 SyncID: 1 ID: 4020171026 2. Name: ad3 Mediasize: 4223729664 (3.9G) Sectorsize: 512 Mode: r1w1e1 State: ACTIVE Priority: 0 Flags: NONE GenID: 0 SyncID: 1 ID: 411377980 Cheers, David -- David Robillard UNIX systems administrator & Oracle DBA CISSP, RHCE & Sun Certified Security Administrator Montreal: +1 514 966 0122 From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 18:20:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D119516A4DF for ; Thu, 31 Aug 2006 18:20:19 +0000 (UTC) (envelope-from paul@gromit.dlib.vt.edu) Received: from gromit.dlib.vt.edu (gromit.dlib.vt.edu [128.173.49.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA3143D80 for ; Thu, 31 Aug 2006 18:20:16 +0000 (GMT) (envelope-from paul@gromit.dlib.vt.edu) Received: from zappa.Chelsea-Ct.Org (pool-71-254-75-132.ronkva.east.verizon.net [71.254.75.132]) by gromit.dlib.vt.edu (8.13.6/8.13.4) with ESMTP id k7VIKDpo099516 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 31 Aug 2006 14:20:14 -0400 (EDT) (envelope-from paul@gromit.dlib.vt.edu) Received: from zappa.Chelsea-Ct.Org (localhost [127.0.0.1]) by zappa.Chelsea-Ct.Org (8.13.7/8.13.7) with ESMTP id k7VIKCNS038808 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 31 Aug 2006 14:20:13 -0400 (EDT) (envelope-from paul@gromit.dlib.vt.edu) Received: (from paul@localhost) by zappa.Chelsea-Ct.Org (8.13.7/8.13.7/Submit) id k7VIKC8B038807 for freebsd-questions@freebsd.org; Thu, 31 Aug 2006 14:20:12 -0400 (EDT) (envelope-from paul@gromit.dlib.vt.edu) From: Paul Mather To: freebsd-questions@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 31 Aug 2006 14:20:10 -0400 Message-Id: <1157048410.15393.60.camel@zappa.Chelsea-Ct.Org> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port X-Greylist: Sender succeeded STARTTLS authentication, not delayed by milter-greylist-2.0.2 (gromit.dlib.vt.edu [128.173.49.29]); Thu, 31 Aug 2006 14:20:15 -0400 (EDT) Subject: Netgear FA511 + Linksys BEFSR41 v.2 = 6.1-STABLE woes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 18:20:19 -0000 Someone recently gave me a Linksys BEFSR41 v.2 10/100 four-port switch/NAT router. I had previously been using an eight-port 10baseT hub. To take advantage of the higher bandwidth now available on my LAN, I bought some NICs from eBay to upgrade the 10baseT ones to 100baseT. Unfortunately, I'm having problems with the Netgear FA511 Cardbus NIC I bought for the Dell Inspiron 8600 laptop I'm using. Sometimes, transfer speeds plummet (e.g., when doing an FTP across the LAN), and often it will have problems configuring via DHCP during boot (with "dc0: watchdog timeout" kernel messages appearing every so often during the process). To get it to configure via DHCP when it acts up like this, I have to eject and plug back in the card. Sometimes I have to do this several times before the NIC finally is configured via DHCP. :-( The trouble is, I don't know if the problem lies with the Netgear FA511 card or with the Linksys BEFSR41, or is a problem with the FreeBSD driver. I am running 6.1-STABLE, rebuilt very recently. When I plug in the Netgear FA511 I get the following console output: cardbus0: Resource not specified in CIS: id=14, size=400 dc0: port 0xd000-0xd0ff mem 0xf6001000-0xf60013ff irq 11 at device 0.0 on cardbus0 miibus0: on dc0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pcconf -vl says the following about the card: dc0@pci3:0:0: class=0x020000 card=0x511a1385 chip=0x19851317 rev=0x11 hdr=0x00 vendor = 'ADMtek Inc' device = 'AN985 FastNIC CardBus 10/100 Fast Ethernet Adapter' class = network subclass = ethernet The strange thing is that the MAC address of the card is not probed successfully. I have an AN985-based Linksys LN100TX PCI NIC that reports much the same information (minus the "cardbus0: ..." line, and "dc0: ..." instead of Netgear), but it also reports "dc0: Ethernet address: 00:0c:41:21:..." after the ukphy0 information. I get no such line with the Netgear NIC. The "cardbus0: Resource not specified in CIS: id=14, size=400" does look worrying. The MAC address assigned to the card by the OS is 00:00:00:00:00:00, and this is also the MAC address reported in Windows. Surely this can't be right? The OUIs I could find assigned to Netgear are 00-09-5B, 00-0F-B5, 00-14-6C, and 00-18-4D; 00-00-00 is supposed to be Xerox. The card appears to work in Windows, but sometimes has speed problems, as in FreeBSD. Does the weird MAC address, along with the "cardbus0: Resource not specified in CIS: id=14, size=400" indicate that perhaps the EEPROM is faulty/incomplete, or could it be the FreeBSD dc driver can't correctly probe the information? The Netgear FA511 is on the hardware compatibility list for 6.1 as being fully supported; I checked before I bought it. On the other hand, the reason I wonder whether the problem lies with the Linksys BEFSR41 router is that I also had problems with the 3Com 3C589C EtherLink III 10baseT Cardbus NIC I formerly used with the laptop. The 3Com NIC worked fine with FreeBSD (using the ep driver). However, it would often cause problems with the LAN when attached to the Linksys BEFSR41 when multiple 100baseT devices were active. I have two desktop systems using Intel PRO/100 PCI NICs (with the fxp driver) that would suffer speed degradation problems during bulk transfers across the LAN when the laptop was connected to it. Does the Linksys BEFSR41 v.2 get muddled with autonegotiation? (It is running 1.46.02, Aug 03 2004 firmware.) For example, I appear to have better results in Windows with the Netgear FA511 if I force the media to 100baseT full-duplex, but if I try to do this in FreeBSD then the LED on the Linksys indicating full duplex/collision does not illuminate (but the link and 100baseT ones do). Furthermore, the NIC never gets configured via DHCP; just endless occasional "dc0: watchdog timeout" messages. So, do I have a faulty Netgear FA511 Cardbus NIC? Is my Linksys BEFSR41 v.2 flaky? Is this just one of those deadly combinations (I don't have problems when just the two fxp devices are connected to the LAN)? Will a different Linksys firmware fix the problem (if so, which version)? I'd love to know (and quickly, as I have to return the Netgear FA511 if it is faulty). Cheers, Paul. -- e-mail: paul@gromit.dlib.vt.edu "Without music to decorate it, time is just a bunch of boring production deadlines or dates by which bills must be paid." --- Frank Vincent Zappa From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 18:42:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8DDC916A4E6 for ; Thu, 31 Aug 2006 18:42:02 +0000 (UTC) (envelope-from markus.hoenicka@mhoenicka.de) Received: from rrzmta2.rz.uni-regensburg.de (rrzmta2.rz.uni-regensburg.de [132.199.1.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB8EB43D5F for ; Thu, 31 Aug 2006 18:41:56 +0000 (GMT) (envelope-from markus.hoenicka@mhoenicka.de) Received: from rrzmta2.rz.uni-regensburg.de (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id 29B40695E1; Thu, 31 Aug 2006 20:42:03 +0200 (CEST) Received: from yeti.mininet (rrzras2-5.rz.uni-regensburg.de [132.199.209.5]) by rrzmta2.rz.uni-regensburg.de (Postfix) with ESMTP id CB4DD695C1; Thu, 31 Aug 2006 20:41:53 +0200 (CEST) X-Mailer: emacs 21.3.1 (via feedmail 8 Q); VM 7.19 under Emacs 21.3.1 From: "Markus Hoenicka" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17655.9701.697186.616321@yeti.mininet> Date: Thu, 31 Aug 2006 20:09:41 +0200 To: Norberto Meijome In-Reply-To: <20060831233916.0a0cfcaf@localhost> References: <1157027405.44f6d64d1b27f@www.domainfactory-webmail.de> <20060831233916.0a0cfcaf@localhost> Cc: freebsd-questions@freebsd.org Subject: Re: firefox starts up always in the first virtual screen in XFCE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 18:42:02 -0000 Hi, your comment rang a bell. The Firefox window was apparently maximized when I upgraded the box. Firefox remembers the previous window size, and it seems like the (updated) XFCE window manager now thinks that the (updated) Firefox window is too big, and displays it on virtual screen 1 as a fallback strategy. I resized the window a little, closed Firefox, and opened it again - now it will open on the very screen which happens to be active. Problem solved. Poster embarrassed. Thanks a lot. regards, Markus Norberto Meijome writes: > sounds like a session manager saved "firefox on this desktop"... not sure which > one would do it when you start it up (usually they restore programs on > startup...) > -- Markus Hoenicka markus.hoenicka@cats.de (Spam-protected email: replace the quadrupeds with "mhoenicka") http://www.mhoenicka.de From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 19:18:26 2006 Return-Path: X-Original-To: questions@freebsd.org 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 A97C516A4E5 for ; Thu, 31 Aug 2006 19:18:26 +0000 (UTC) (envelope-from toomas.aas@raad.tartu.ee) Received: from mail.neti.ee (smtp-out-1.neti.ee [194.126.101.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48C6843D45 for ; Thu, 31 Aug 2006 19:18:25 +0000 (GMT) (envelope-from toomas.aas@raad.tartu.ee) Received: from [88.196.100.181] (88-196-100-181-dsl.trt.estpak.ee [88.196.100.181]) by Relayhost2.neti.ee (Postfix) with ESMTP id DA13C17483 for ; Thu, 31 Aug 2006 22:18:23 +0300 (EEST) Message-ID: <44F735FE.1060402@raad.tartu.ee> Date: Thu, 31 Aug 2006 22:18:22 +0300 From: Toomas Aas User-Agent: Thunderbird 1.5.0.2 (X11/20060424) MIME-Version: 1.0 To: questions@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-2.2.1 (20041222) (Debian) at neti.ee Cc: Subject: Re: 6.1 kernel messages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 19:18:26 -0000 up@3.am wrote: > Having just migrated a server from 4.10-STABLE to 6.1-STABLE, I'm curious > about some kernel messages in dmesg that I hadn't seen before: > > asr0: [GIANT-LOCKED] (adaptec RAID adapter) > uhci0: [GIANT-LOCKED] (USB driver) > atkbd0: [GIANT-LOCKED] (keyboard driver) > > I'm running SMP with 2 CPUs...a quick google shows that some people think > it may be cause for concern but others do not. Is it? I don't think it's a problem - at least not a major problem that you need to lose sleep over, unless you're a kernel hacker. It just means that those particular drivers have not yet been updated to support fine-grained kernel locking and so the Giant lock is acquired on the entire kernel when these drivers run - meaning that other processes can't be serviced by the kernel at the same time. In FreeBSD 4.x this kind of message didn't exist because having only one process accessing the kernel at any one time was the *only* possibility back then. > Then there's this: > > acpi0: on motherboard > acpi0: Power Button (fixed) > acpi: bad write to port 0x070 (8), val 0x43 > acpi: bad read from port 0x071 (8) AFAIK this is FreeBSD telling you that your machine's BIOS is trying to access memory areas where it has no business going. I started seeing those messages on my 6.1-STABLE home box sometime in June this year and have been ignoring them. So far, nothing bad seems to have happened. Sorry for somewhat vague answers, but seeing as nobody has offered anything more scientific... -- Toomas Aas From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 19:31:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4892016A4DA for ; Thu, 31 Aug 2006 19:31:00 +0000 (UTC) (envelope-from efinleywork@efinley.com) Received: from postmaster.etv.net (postmaster.etv.net [208.14.190.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id E811743D49 for ; Thu, 31 Aug 2006 19:30:59 +0000 (GMT) (envelope-from efinleywork@efinley.com) Received: from work.efinley.com ([205.161.203.55] helo=elliotdevelop) by postmaster.etv.net with smtp (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GIsFd-000Kjk-88; Thu, 31 Aug 2006 13:30:58 -0600 Message-ID: <0b1301c6cd33$fb77dac0$37cba1cd@emerytelcom.com> From: "Elliot Finley" To: "David Robillard" References: <226ae0c60608311017j1a4bea9cg6dbaa12414d74716@mail.gmail.com> <0a7c01c6cd26$a76b5b80$37cba1cd@emerytelcom.com> <226ae0c60608311108l263442b6j122835ba73ff645c@mail.gmail.com> Date: Thu, 31 Aug 2006 13:30:18 -0600 Organization: Emery Telcom 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.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Cc: Jonathan McKeown , FreeBSD Questions Mailing List Subject: Re: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Elliot Finley List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 19:31:00 -0000 ----- Original Message ----- From: "David Robillard" To: "Elliot Finley" Cc: "Jonathan McKeown" ; "FreeBSD Questions Mailing List" Sent: Thursday, August 31, 2006 12:08 PM Subject: Re: Mirroring: gvinum or gmirror? > On 8/31/06, Elliot Finley wrote: > >> ad0: 4112MB at ata0-master UDMA33 > >> ad3: 4028MB at ata1-slave UDMA33 > >> > > > Then make sure you install FreeBSD on the bigger one (i.e. here that > > > would be ad0) then setup gmirror. If you do the oposite, you will have > > > a "Consumers too small" error when you try to bring the mirror > > > together. > > > > I could be wrong, but that seems backwards. > > I know, that's also what I thought before I had the problem. (hence > the Tip of Day!) > > It's quite easy to understand when you think about it. Let's say we > have the same disk drives as above in which ad0 is bigger then ad3. > > So you install the OS on the smaller ad3 disk first. Then you setup > gmirror on the bigger disk ad0. You then dump(8) the OS from ad3 onto > the broken mirror gm0 which is made up of ad0. Next you reboot on gm0 > (hence on ad0). You clear ad3 which is not used anymore and try to > `sudo gmirror insert gm0 /dev/ad3` = WRONG! Well yes, if you do it this way, you are correct. Why not just install the OS on the smaller drive, skip the dump step and just use the installed drive as the first drive in your mirror. That's how I've been doing it and it works great. I've got a write-up of the steps required to do this if you or anyone else needs them. I also routinely disconnect one of the drives in my mirror before a major upgrade to the OS or ports so that if I mess it up, I can boot back to the previous state. I have a write-up of the steps needed to do this remotely over ssh (again, if you or anyone else needs them). Elliot From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 19:35:21 2006 Return-Path: X-Original-To: FreeBSD-Questions@FreeBSD.org 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 4D6BD16A4DE for ; Thu, 31 Aug 2006 19:35:21 +0000 (UTC) (envelope-from dkelly@Grumpy.DynDNS.org) Received: from smtp.knology.net (smtp.knology.net [24.214.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABE6243D49 for ; Thu, 31 Aug 2006 19:35:20 +0000 (GMT) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 12115 invoked by uid 0); 31 Aug 2006 19:35:19 -0000 Received: from unknown (HELO Grumpy.DynDNS.org) (216.186.148.249) by smtp2.knology.net with SMTP; 31 Aug 2006 19:35:19 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id 1735228420; Thu, 31 Aug 2006 14:35:18 -0500 (CDT) Date: Thu, 31 Aug 2006 14:35:17 -0500 From: David Kelly To: FreeBSD-Questions@FreeBSD.org Message-ID: <20060831193517.GA44752@Grumpy.DynDNS.org> References: <950621ad0608310654h78ae0023g346abd108815ae72@mail.gmail.com> <20060831142321.27596.qmail@web30602.mail.mud.yahoo.com> <6a506d980608311020j156ac46cyb92f1c7bec80d439@mail.gmail.com> <8a0028260608311033l7c16e7bq4ea5c87561095714@mail.gmail.com> <20060831183956.GA43568@elvis.mu.org> <8a0028260608311147n4cd9563hf816d2993edc2f17@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8a0028260608311147n4cd9563hf816d2993edc2f17@mail.gmail.com> User-Agent: Mutt/1.4.2.2i Cc: Subject: Re: The future of NetBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD-Questions@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 19:35:21 -0000 On Thu, Aug 31, 2006 at 07:47:48PM +0100, Jeff Rollin wrote: > > As I said, Yahoo are the one big company I remember being cited as using a > BSD. My point was not that "Yahoo does not give back to the FreeBSD > project," but that the BSD licence *allows* them not to give back in a way > that the GPL does not allow (say) Google not to give back to the Linux > project(s). If I understand what Yahoo! is doing with FreeBSD, GPL totally permits. GPL only requires publishing the changes if one publishes the binaries. Yahoo!'s uses are internal so for example, Yahoo! would not have to "give back" any changes to gcc so long as they do not release their gcc to anyone else. The big advantage for Yahoo! to contribute changes back into FreeBSD is that Yahoo! doesn't have to maintain a totally separate branch, and doesn't have to deal with reconciling the enhancements from others. As a mere user I am very thankful for Yahoo! and Apple's contributions toward the advancement of FreeBSD. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 20:24:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6D62916A4DD for ; Thu, 31 Aug 2006 20:24:40 +0000 (UTC) (envelope-from mime@traveller.cz) Received: from ss.eunet.cz (ss.eunet.cz [193.85.228.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6FAA43D46 for ; Thu, 31 Aug 2006 20:24:39 +0000 (GMT) (envelope-from mime@traveller.cz) Received: from localhost.i.cz (ss.eunet.cz [193.85.228.13]) by ss.eunet.cz (8.13.6/8.13.6) with ESMTP id k7VKO2K5032553 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 31 Aug 2006 22:24:03 +0200 (CEST) (envelope-from mime@traveller.cz) From: Michal Mertl To: backyard1454-bsd@yahoo.com In-Reply-To: <20060831144521.59432.qmail@web83112.mail.mud.yahoo.com> References: <20060831144521.59432.qmail@web83112.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-2 Date: Thu, 31 Aug 2006 22:24:01 +0200 Message-Id: <1157055841.1012.16.camel@genius.i.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.6.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit Cc: Jordi Carrillo , skylar@cs.earlham.edu, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 20:24:40 -0000 backyard pí¹e v èt 31. 08. 2006 v 07:45 -0700: > --- Michal Mertl wrote: > > > Skylar Thompson wrote: > > > Jordi Carrillo wrote: > > > > 2006/8/30, backyard > > : > > > >> > > > >> > > > >> > > > >> --- Jordi Carrillo wrote: > > > >> > > > >> > I've read that SMP should be disabled for > > > >> > performance issues (I did not know > > > >> > that before installing freebsd). I have a P4 > > 3GHz > > > >> > with hyperthreading > > > >> > technology. I have the SMP-GENERIC kernel and > > it > > > >> > only launches one cpu. So, > > > >> > I've decided to disable SMP from BIOS. Is > > that ok?, > > > >> > knowing that I have a > > > >> > Smp enabled kernel? or should I install one > > without > > > >> > smp? If so, is there a > > > >> > way to install one already precompiled? > > > >> > Thanks in advance > > > >> > > > > >> > -- > > > >> > http://jordilin.wordpress.com > > > >> > > > _______________________________________________ > > > >> > 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" > > > >> > > > > >> > > > >> if the system runs with one cpu now and you > > don't > > > >> enable smp with HT with the sysctl variable > > then you > > > >> should be ok. If your not doing SMP then > > recompiling > > > >> the kernel for single processor mode will make > > things > > > >> run a little quicker because the SMP code won't > > come > > > >> into play. > > > >> > > > >> with HT disabling in FreeBSD is more for the > > security > > > >> issues about a potential exploit whereby one > > process > > > >> in one pipe can access the priveledged > > information of > > > >> a process in another pipe because the two cores > > share > > > >> one processor cache and thus one cache table. > > To my > > > >> knowledge this hasn't been exploited yet. > > > >> > > > >> If you just install the generic kernel you it > > should > > > >> be only the uniprocessor one. I would just do > > a: > > > >> > > > >> cd /usr/src && make buildworld && make > > > >> KERNCONF=GENERIC buildkernel && make > > KERNCONF=GENERIC > > > >> installkernel > > > >> > > > >> as opposed to a binary version assuming you > > haven't > > > >> updated yet you won't have to install world but > > I > > > >> believe it must have the build in the source > > tree to > > > >> build a kernel. On your P4 though the > > difference > > > >> between SMP and uniproc may not be worth the > > trouble > > > >> because I don't think much of a gain would be > > made. on > > > >> a P1 a much different story... > > > >> > > > >> if you aren't concerned with bad users or > > hackers > > > >> hitting the box I would just enable HT with the > > sysctl > > > >> variable. This will not make things run slower > > at all, > > > >> just (in theory) less secure, which is why the > > > >> veriable was created in the first place as I > > recall. > > > >> If you are concerned I would wait until you > > update > > > >> your system and then just build a > > GENERIC/CUSTOM > > > >> kernel without the SMP option set. > > > >> > > > >> > > > >> -brian > > > >> > > > > > > > > > > > > I will disable smp from bios. If I have a smp > > kernel, I suppose there > > > > will > > > > be no problem after all. Would that be ok? > > > > The problem with having SMP enabled is that the > > smp kernel only > > > > detects one > > > > cpu and the system monitor only features one cpu > > as well as gkrellm (in > > > > Linux it shows two cpus). When compiling the > > system monitor shows the > > > > cpu at > > > > a maximum of 50%, so what's going on with the > > other 50%? > > > > writing machdep.hlt_logical_cpus to 2 in > > loader.conf does not solve > > > > anything. > > > > > I believe FreeBSD uses the other logical CPU to > > handle hardware > > > interrupts, which can still help perormance. You > > can check dmesg to see > > > how it's actually handling it. > > > > No! Kernel threads (e.g. handling interrupts) aren't > > that much different > > to normal processes. > > > > Logical CPUs on a single HTT capable CPU share most > > of the CPU logic, > > especially all the external stuff (handling > > interrupts). Scheduling > > handling of interrupts on the "secondary/logical" > > core wouldn't > > probably help performance at all (if that is at all > > possible). > > > > When FreeBSD sees logical CPUs it means HTT is > > either enabled in BIOS or > > that disabling HTT in BIOS does not hide the CPUs to > > FreeBSD (bug in > > BIOS/FreeBSD). > > > > Until you enable scheduler to schedule tasks to HTT > > cores (with > > machdep.hyperthreading_allowed=1 in loader.conf) > > (disabled by default > > due to mentioned security/performance reasons) > > machine won't utilize the > > logical HTT CPUs. Therefore total CPU utilization > > won't be more than > > 50%, because there are the (unused) logical CPUs > > which don't get > > scheduled tasks. > > > > are you sure about this??? Almost sure but can't check at the moment. I believe there were problems when all HTT CPUs weren't launched sometimes (when HTT wasn't disabled with BIOS), so the logical CPU cores are started and fully visible but only run the idle kernel thread (are 100% idle). > I would have figured the scheduler wouldn't see the > other core at all without this option set and so it > wouldn't be used in calculating load at all. 50% on a > compile is fairly normal from my experience. I don't > have too much experience with HT as I always opt for > true SMP so I can't speak with authority on the > matter. > > but if > > top > > isn't showing CPU 1 or 0 next to a process then it > isn't computing the load on multiple cores... Also if > > dmesg |grep cpu > > doesn't show application cpu1 (and on through all your > cores)... launched then the system isn't looking at > the HT core at all. > > > -brian > From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 20:31:39 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 417A516A4DF for ; Thu, 31 Aug 2006 20:31:39 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id C69EA43D45 for ; Thu, 31 Aug 2006 20:31:38 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 57863D9F438 for ; Thu, 31 Aug 2006 16:31:37 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Thu, 31 Aug 2006 16:31:38 -0400 X-Sasl-enc: ylz1PH5MpkTB2JAGKYkPup7+7qfL7wMQOI1ruPOYv5pY 1157056297 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id BAECE7B63 for ; Thu, 31 Aug 2006 16:31:37 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Thu, 31 Aug 2006 21:31:33 +0100 User-Agent: KMail/1.9.3 References: <200608302124.21833.list-freebsd-2004@morbius.sent.com> <200608311544.40586.list-freebsd-2004@morbius.sent.com> <37691525@srv.sem.ipt.ru> In-Reply-To: <37691525@srv.sem.ipt.ru> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200608312131.34848.list-freebsd-2004@morbius.sent.com> Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 20:31:39 -0000 On Thursday 31 August 2006 16:26, Boris Samorodov wrote: > On Thu, 31 Aug 2006 15:44:39 +0100 RW wrote: > > On Thursday 31 August 2006 10:09, Boris Samorodov wrote: > > > On Thu, 31 Aug 2006 00:22:03 +0100 RW wrote: > > but it's complaining that /compat/linux > > Who? Can you provide us with some more info? Any logs? I don't know how to get the logs written to disk, the startup process aborts before /var is mounted. I see the output from "fsck -p -F" , it then says: mount: /usr/compat: no such file or directory mounting /etc/fstab filesytems failed, startup aborted I'm then given the prompt to pick a shell. Avoiding the symlink by using /usr/compat/linux/proc still causes a failure. However, if I use a mountpoint on the root partition it mounts correctly. > And show us your /etc/fstab, please. fstab is below, ------------------------------------------------------------------------------------- $ cat /etc/fstab.f # Device Mountpoint FStype Options Dump Pass# /dev/ad4s1b.bde none swap sw 0 0 /dev/ad6s1b.bde none swap sw 0 0 proc /proc procfs rw 0 0 linprocfs /compat/linux/proc linprocfs rw 0 0 /dev/ad4s1a / ufs rw 1 1 /dev/ad4s1g /home ufs rw 2 2 /dev/ad4s1e /tmp ufs rw 2 2 /dev/ad4s1f /usr ufs rw 2 2 /dev/ad4s1d /var ufs rw 2 2 /dev/acd0 /dvdrw cd9660 ro,noauto 0 0 /dev/acd1 /dvd cd9660 ro,noauto 0 0 /dev/ad6s1d /data ufs rw 2 2 /dev/ad0s2a /old ufs rw 2 2 /dev/ad0s2g /old/home ufs rw 2 2 /dev/ad0s2d /old/var ufs rw 2 2 /dev/ad0s2f /old/usr ufs rw 2 2 /dev/ad0s1 /dos/c msdos rw 0 0 /dev/da0s1 /mnt/cam msdos rw,noauto 0 0 From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 21:07:55 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 840BD16A4DE for ; Thu, 31 Aug 2006 21:07:55 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA61643D4C for ; Thu, 31 Aug 2006 21:07:44 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so432229nzn for ; Thu, 31 Aug 2006 14:07:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=eR01sMcYRfejh3KQcWVUTvDWB/FefSnGewlx4nbEKD3X6Lka0WEov2R8KbXuRgHYgUknEv0nEfpBcs4bKzuHlrpaMUzg6LVQR07vDGnJ4JjJpzFA6A7xxVhfHAGm0EHt/S0Z/JC2kQVfN7aJU2kkeYaWNJCAGNKBrOnQrZQFtkc= Received: by 10.65.114.11 with SMTP id r11mr1799238qbm; Thu, 31 Aug 2006 14:07:43 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Thu, 31 Aug 2006 14:07:43 -0700 (PDT) Message-ID: <94ff3700608311407i18fed256n4b1e604d735f45c7@mail.gmail.com> Date: Thu, 31 Aug 2006 23:07:43 +0200 From: "Jordi Carrillo" To: backyard1454-bsd@yahoo.com In-Reply-To: <20060831144521.59432.qmail@web83112.mail.mud.yahoo.com> MIME-Version: 1.0 References: <1156982800.1017.37.camel@genius.i.cz> <20060831144521.59432.qmail@web83112.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Michal Mertl , skylar@cs.earlham.edu, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 21:07:55 -0000 2006/8/31, backyard : > > --- Michal Mertl wrote: > > > Skylar Thompson wrote: > > > Jordi Carrillo wrote: > > > > 2006/8/30, backyard > > : > > > >> > > > >> > > > >> > > > >> --- Jordi Carrillo wrote: > > > >> > > > >> > I've read that SMP should be disabled for > > > >> > performance issues (I did not know > > > >> > that before installing freebsd). I have a P4 > > 3GHz > > > >> > with hyperthreading > > > >> > technology. I have the SMP-GENERIC kernel and > > it > > > >> > only launches one cpu. So, > > > >> > I've decided to disable SMP from BIOS. Is > > that ok?, > > > >> > knowing that I have a > > > >> > Smp enabled kernel? or should I install one > > without > > > >> > smp? If so, is there a > > > >> > way to install one already precompiled? > > > >> > Thanks in advance > > > >> > > > > >> > -- > > > >> > http://jordilin.wordpress.com > > > >> > > > _______________________________________________ > > > >> > 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" > > > >> > > > > >> > > > >> if the system runs with one cpu now and you > > don't > > > >> enable smp with HT with the sysctl variable > > then you > > > >> should be ok. If your not doing SMP then > > recompiling > > > >> the kernel for single processor mode will make > > things > > > >> run a little quicker because the SMP code won't > > come > > > >> into play. > > > >> > > > >> with HT disabling in FreeBSD is more for the > > security > > > >> issues about a potential exploit whereby one > > process > > > >> in one pipe can access the priveledged > > information of > > > >> a process in another pipe because the two cores > > share > > > >> one processor cache and thus one cache table. > > To my > > > >> knowledge this hasn't been exploited yet. > > > >> > > > >> If you just install the generic kernel you it > > should > > > >> be only the uniprocessor one. I would just do > > a: > > > >> > > > >> cd /usr/src && make buildworld && make > > > >> KERNCONF=GENERIC buildkernel && make > > KERNCONF=GENERIC > > > >> installkernel > > > >> > > > >> as opposed to a binary version assuming you > > haven't > > > >> updated yet you won't have to install world but > > I > > > >> believe it must have the build in the source > > tree to > > > >> build a kernel. On your P4 though the > > difference > > > >> between SMP and uniproc may not be worth the > > trouble > > > >> because I don't think much of a gain would be > > made. on > > > >> a P1 a much different story... > > > >> > > > >> if you aren't concerned with bad users or > > hackers > > > >> hitting the box I would just enable HT with the > > sysctl > > > >> variable. This will not make things run slower > > at all, > > > >> just (in theory) less secure, which is why the > > > >> veriable was created in the first place as I > > recall. > > > >> If you are concerned I would wait until you > > update > > > >> your system and then just build a > > GENERIC/CUSTOM > > > >> kernel without the SMP option set. > > > >> > > > >> > > > >> -brian > > > >> > > > > > > > > > > > > I will disable smp from bios. If I have a smp > > kernel, I suppose there > > > > will > > > > be no problem after all. Would that be ok? > > > > The problem with having SMP enabled is that the > > smp kernel only > > > > detects one > > > > cpu and the system monitor only features one cpu > > as well as gkrellm (in > > > > Linux it shows two cpus). When compiling the > > system monitor shows the > > > > cpu at > > > > a maximum of 50%, so what's going on with the > > other 50%? > > > > writing machdep.hlt_logical_cpus to 2 in > > loader.conf does not solve > > > > anything. > > > > > I believe FreeBSD uses the other logical CPU to > > handle hardware > > > interrupts, which can still help perormance. You > > can check dmesg to see > > > how it's actually handling it. > > > > No! Kernel threads (e.g. handling interrupts) aren't > > that much different > > to normal processes. > > > > Logical CPUs on a single HTT capable CPU share most > > of the CPU logic, > > especially all the external stuff (handling > > interrupts). Scheduling > > handling of interrupts on the "secondary/logical" > > core wouldn't > > probably help performance at all (if that is at all > > possible). > > > > When FreeBSD sees logical CPUs it means HTT is > > either enabled in BIOS or > > that disabling HTT in BIOS does not hide the CPUs to > > FreeBSD (bug in > > BIOS/FreeBSD). > > > > Until you enable scheduler to schedule tasks to HTT > > cores (with > > machdep.hyperthreading_allowed=1 in loader.conf) > > (disabled by default > > due to mentioned security/performance reasons) > > machine won't utilize the > > logical HTT CPUs. Therefore total CPU utilization > > won't be more than > > 50%, because there are the (unused) logical CPUs > > which don't get > > scheduled tasks. > > > > are you sure about this??? > I would have figured the scheduler wouldn't see the > other core at all without this option set and so it > wouldn't be used in calculating load at all. 50% on a > compile is fairly normal from my experience. I don't > have too much experience with HT as I always opt for > true SMP so I can't speak with authority on the > matter. > > but if > > top > > isn't showing CPU 1 or 0 next to a process then it > isn't computing the load on multiple cores... Also if > > dmesg |grep cpu > > doesn't show application cpu1 (and on through all your > cores)... launched then the system isn't looking at > the HT core at all. > > > -brian > When you do a "top" in the column marked as "C" should put a 1 or 0 in each process depending on the cpu the process is being executed. Well, top does so, only if you write the line machdep.hyperthreading_allowed=1 in your loader.conf. So, anyone having a pentium with hyperthreading, when you install freebsd it will install the SMP-GENERIC kernel (my case) and then you must enable it by writing machdep.hyperthreading_allowed=1. If you don't then the other cpu is not taken into account (at least when you do a top only appear 0s in every process, and no 1s). Is my explanation correct? -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 21:09:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4BDE916A4E1 for ; Thu, 31 Aug 2006 21:09:27 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id C436743D45 for ; Thu, 31 Aug 2006 21:09:26 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from srv.sem.ipt.ru ([192.168.12.1]) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GItmv-000KE7-2K; Fri, 01 Sep 2006 01:09:25 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GItpj-0000js-8t; Fri, 01 Sep 2006 01:12:19 +0400 To: RW References: <200608302124.21833.list-freebsd-2004@morbius.sent.com> <200608311544.40586.list-freebsd-2004@morbius.sent.com> <37691525@srv.sem.ipt.ru> <200608312131.34848.list-freebsd-2004@morbius.sent.com> From: Boris Samorodov Date: Fri, 01 Sep 2006 01:12:19 +0400 In-Reply-To: <200608312131.34848.list-freebsd-2004@morbius.sent.com> (RW's message of "Thu, 31 Aug 2006 21:31:33 +0100") Message-ID: <14480764@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 21:09:27 -0000 On Thu, 31 Aug 2006 21:31:33 +0100 RW wrote: > On Thursday 31 August 2006 16:26, Boris Samorodov wrote: > > On Thu, 31 Aug 2006 15:44:39 +0100 RW wrote: > > > On Thursday 31 August 2006 10:09, Boris Samorodov wrote: > > > > On Thu, 31 Aug 2006 00:22:03 +0100 RW wrote: > > > but it's complaining that /compat/linux > > > > Who? Can you provide us with some more info? Any logs? > I don't know how to get the logs written to disk, the startup process aborts > before /var is mounted. > I see the output from "fsck -p -F" , it then says: > mount: /usr/compat: no such file or directory > mounting /etc/fstab filesytems failed, startup aborted > I'm then given the prompt to pick a shell. Oh, you should say it at the very first letter! > Avoiding the symlink by using /usr/compat/linux/proc still causes a failure. > However, if I use a mountpoint on the root partition it mounts correctly. > > And show us your /etc/fstab, please. > fstab is below, > ------------------------------------------------------------------------------------- > $ cat /etc/fstab.f > # Device Mountpoint FStype Options Dump Pass# > /dev/ad4s1b.bde none swap sw 0 0 > /dev/ad6s1b.bde none swap sw 0 0 > proc /proc procfs rw 0 0 > linprocfs /compat/linux/proc linprocfs rw 0 0 Move this line down and place it after mounting of /usr. > /dev/ad4s1a / ufs rw 1 1 > /dev/ad4s1g /home ufs rw 2 2 > /dev/ad4s1e /tmp ufs rw 2 2 > /dev/ad4s1f /usr ufs rw 2 2 > /dev/ad4s1d /var ufs rw 2 2 > /dev/acd0 /dvdrw cd9660 ro,noauto 0 0 > /dev/acd1 /dvd cd9660 ro,noauto 0 0 > /dev/ad6s1d /data ufs rw 2 2 > /dev/ad0s2a /old ufs rw 2 2 > /dev/ad0s2g /old/home ufs rw 2 2 > /dev/ad0s2d /old/var ufs rw 2 2 > /dev/ad0s2f /old/usr ufs rw 2 2 > /dev/ad0s1 /dos/c msdos rw 0 0 > /dev/da0s1 /mnt/cam msdos rw,noauto 0 0 WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 21:24:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2717116A4E1 for ; Thu, 31 Aug 2006 21:24:58 +0000 (UTC) (envelope-from johnfhoover@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A3E943D88 for ; Thu, 31 Aug 2006 21:24:48 +0000 (GMT) (envelope-from johnfhoover@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so536247nfc for ; Thu, 31 Aug 2006 14:24:45 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=g1o3RyiBMWvVA0bYdZ+xUzbZxp5uS5Qm72r05gu4kW0LhN7qyktzHAyOgyuEHKE4Y2U/fF8HMTUZjHMrwYyG6D4u1o6xduPF9x0MuIfRKF8mK325BUjWqaZKLxrM2u03nKN4Z4xmwmEyGJBc2n6sQ7XayAx/tjfVYZHZcC5W0rY= Received: by 10.66.221.19 with SMTP id t19mr799888ugg; Thu, 31 Aug 2006 14:24:45 -0700 (PDT) Received: by 10.67.102.9 with HTTP; Thu, 31 Aug 2006 14:24:44 -0700 (PDT) Message-ID: <573015470608311424o674e71dfu2beaf9e0a120347@mail.gmail.com> Date: Thu, 31 Aug 2006 16:24:45 -0500 From: "John Hoover" To: "Elliot Finley" , "FreeBSD Mailing List" In-Reply-To: <0b1301c6cd33$fb77dac0$37cba1cd@emerytelcom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <226ae0c60608311017j1a4bea9cg6dbaa12414d74716@mail.gmail.com> <0a7c01c6cd26$a76b5b80$37cba1cd@emerytelcom.com> <226ae0c60608311108l263442b6j122835ba73ff645c@mail.gmail.com> <0b1301c6cd33$fb77dac0$37cba1cd@emerytelcom.com> Cc: Subject: Re: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 21:24:58 -0000 > I've got a write-up of the steps required to do this if you or anyone else > needs them. I also routinely disconnect one of the drives in my mirror > before a major upgrade to the OS or ports so that if I mess it up, I can > boot back to the previous state. I have a write-up of the steps needed to > do this remotely over ssh (again, if you or anyone else needs them). > > Elliot > I for one would like to see your writeup. As I'm starting to experiment with gmirror I think it would be helpful. John. -- ------------------------------------- John F Hoover johnfhoover@gmail.com From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 22:37:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 499E816A4E2 for ; Thu, 31 Aug 2006 22:37:48 +0000 (UTC) (envelope-from feelingwei@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D38D43D55 for ; Thu, 31 Aug 2006 22:37:40 +0000 (GMT) (envelope-from feelingwei@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so548726nfc for ; Thu, 31 Aug 2006 15:37:39 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=kyDu6ytZGuDF+eO4XuYQcqfqK4zNV+mk4DBxVRj9ycolLhjp3kFaDhCRok0Dh2UbjpnQCLYrLuCOWje8dSfoKsXQXPIEyR6eJySsaZqQYeNGsJRGvfHdZMkavoNRtjyYBrV/XMx19B9ymLcOTd6TzTwfJ2gjffuG1Qj+CLNevNo= Received: by 10.48.48.18 with SMTP id v18mr2226096nfv; Thu, 31 Aug 2006 15:37:39 -0700 (PDT) Received: by 10.49.12.2 with HTTP; Thu, 31 Aug 2006 15:37:39 -0700 (PDT) Message-ID: Date: Fri, 1 Sep 2006 08:37:39 +1000 From: "Wei Hu" To: freebsd-questions@freebsd.org In-Reply-To: <73d604760608310511y120c5365yc139490ef5be343f@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <540EE4AEDEEAE3418715F9B95446582D7FDD27@groucho.dmsivan.com> <73d604760608310511y120c5365yc139490ef5be343f@mail.gmail.com> Subject: Re: Playing Audio CDs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 22:37:48 -0000 mount your CD, change to the mount point, then, for example, issue the command: gmaplyer *.mp3 On 8/31/06, Viswas Nair wrote: > > --- Viswas Nair wrote: > > > I am new to BSD and have mplayer installed > > > (Gmplayer) and I do not see the > > > option to play an Audio CD, only CDs, files and > > > DVDs. How do I get Audio > > > CD's to play? Can they be mounted, if so how? Is > > > there any > > > specific audio alone CD player (GUI based) that you > > > suggest? From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 22:53:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AE27416A4E5 for ; Thu, 31 Aug 2006 22:53:58 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AC9543D53 for ; Thu, 31 Aug 2006 22:53:57 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 52868DA104A for ; Thu, 31 Aug 2006 18:53:56 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Thu, 31 Aug 2006 18:53:57 -0400 X-Sasl-enc: 862j0AQ4WRHBNI2IXIJSlznzt3YWm57CSH0f3LYy9rxz 1157064837 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 2087748 for ; Thu, 31 Aug 2006 18:53:56 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Thu, 31 Aug 2006 23:53:53 +0100 User-Agent: KMail/1.9.3 References: <200608302124.21833.list-freebsd-2004@morbius.sent.com> <200608312131.34848.list-freebsd-2004@morbius.sent.com> <14480764@srv.sem.ipt.ru> In-Reply-To: <14480764@srv.sem.ipt.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608312353.54312.list-freebsd-2004@morbius.sent.com> Subject: Re: Mounting Linux Procfs at Boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 22:53:58 -0000 On Thursday 31 August 2006 22:12, Boris Samorodov wrote: > Move this line down and place it after mounting of /usr. Thanks. That was actually one of the first things I tried, I guess I must have screwed-up something else at the time. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 23:18:36 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C9D3016A5E0 for ; Thu, 31 Aug 2006 23:18:36 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A89C43D45 for ; Thu, 31 Aug 2006 23:18:36 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 64925D9F1AF for ; Thu, 31 Aug 2006 19:18:34 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Thu, 31 Aug 2006 19:18:35 -0400 X-Sasl-enc: o5xrYCXLlE2x8O8wnkgY/ITeELDv0kEBsP007f5M2jmH 1157066315 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 2304715E7F for ; Thu, 31 Aug 2006 19:18:35 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2006 00:18:20 +0100 User-Agent: KMail/1.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609010018.23366.list-freebsd-2004@morbius.sent.com> Subject: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 23:18:36 -0000 There used to be a port of Cyrusoft's Mulberry mail client that installed the Linux rpm version; then Cyrusoft went bankrupt and the port dissappeared. Mulberry is now available for free as a standalone Linux binary: http://www.mulberrymail.com Has anyone got this working? If you just run the binary it opens and can be be configured to read an imap mailbox, but a lot of the error and warning pop-up boxes are missing text and buttons. There are probably other problems, but without the error messages it's hard to say. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 23:27:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E79F216A4DD for ; Thu, 31 Aug 2006 23:27:06 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83102.mail.mud.yahoo.com (web83102.mail.mud.yahoo.com [216.252.101.31]) by mx1.FreeBSD.org (Postfix) with SMTP id 3AF8A43D58 for ; Thu, 31 Aug 2006 23:27:04 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 75595 invoked by uid 60001); 31 Aug 2006 23:27:03 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=j1v9CLzI2jkQhgKJLiYVe2eE1EYtQd8Hbzo2GNYmwrLknQie+U59o71WHfhOE+r7KqhJdv7OXSDAybe9qpHtZh5I3AfVkPsgFgz3mQPVhgi0BN7HaD2r2naIiYTz6XpBOnh0ng+E7Z/NIYyZbQXV7ssJaaNgaMhr3REMchD+6SE= ; Message-ID: <20060831232703.75593.qmail@web83102.mail.mud.yahoo.com> Received: from [68.95.198.128] by web83102.mail.mud.yahoo.com via HTTP; Thu, 31 Aug 2006 16:27:03 PDT Date: Thu, 31 Aug 2006 16:27:03 -0700 (PDT) From: backyard To: Jordi Carrillo , backyard1454-bsd@yahoo.com In-Reply-To: <94ff3700608311407i18fed256n4b1e604d735f45c7@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: Michal Mertl , skylar@cs.earlham.edu, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 23:27:07 -0000 --- Jordi Carrillo wrote: > 2006/8/31, backyard : > > > > --- Michal Mertl wrote: > > > > > Skylar Thompson wrote: > > > > Jordi Carrillo wrote: > > > > > 2006/8/30, backyard > > > : > > > > >> > > > > >> > > > > >> > > > > >> --- Jordi Carrillo > wrote: > > > > >> > > > > >> > I've read that SMP should be disabled for > > > > >> > performance issues (I did not know > > > > >> > that before installing freebsd). I have a > P4 > > > 3GHz > > > > >> > with hyperthreading > > > > >> > technology. I have the SMP-GENERIC kernel > and > > > it > > > > >> > only launches one cpu. So, > > > > >> > I've decided to disable SMP from BIOS. Is > > > that ok?, > > > > >> > knowing that I have a > > > > >> > Smp enabled kernel? or should I install > one > > > without > > > > >> > smp? If so, is there a > > > > >> > way to install one already precompiled? > > > > >> > Thanks in advance > > > > >> > > > > > >> > -- > > > > >> > http://jordilin.wordpress.com > > > > >> > > > > _______________________________________________ > > > > >> > 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" > > > > >> > > > > > >> > > > > >> if the system runs with one cpu now and you > > > don't > > > > >> enable smp with HT with the sysctl variable > > > then you > > > > >> should be ok. If your not doing SMP then > > > recompiling > > > > >> the kernel for single processor mode will > make > > > things > > > > >> run a little quicker because the SMP code > won't > > > come > > > > >> into play. > > > > >> > > > > >> with HT disabling in FreeBSD is more for > the > > > security > > > > >> issues about a potential exploit whereby > one > > > process > > > > >> in one pipe can access the priveledged > > > information of > > > > >> a process in another pipe because the two > cores > > > share > > > > >> one processor cache and thus one cache > table. > > > To my > > > > >> knowledge this hasn't been exploited yet. > > > > >> > > > > >> If you just install the generic kernel you > it > > > should > > > > >> be only the uniprocessor one. I would just > do > > > a: > > > > >> > > > > >> cd /usr/src && make buildworld && make > > > > >> KERNCONF=GENERIC buildkernel && make > > > KERNCONF=GENERIC > > > > >> installkernel > > > > >> > > > > >> as opposed to a binary version assuming you > > > haven't > > > > >> updated yet you won't have to install world > but > > > I > > > > >> believe it must have the build in the > source > > > tree to > > > > >> build a kernel. On your P4 though the > > > difference > > > > >> between SMP and uniproc may not be worth > the > > > trouble > > > > >> because I don't think much of a gain would > be > > > made. on > > > > >> a P1 a much different story... > > > > >> > > > > >> if you aren't concerned with bad users or > > > hackers > > > > >> hitting the box I would just enable HT with > the > > > sysctl > > > > >> variable. This will not make things run > slower > > > at all, > > > > >> just (in theory) less secure, which is why > the > > > > >> veriable was created in the first place as > I > > > recall. > > > > >> If you are concerned I would wait until you > > > update > > > > >> your system and then just build a > > > GENERIC/CUSTOM > > > > >> kernel without the SMP option set. > > > > >> > > > > >> > > > > >> -brian > > > > >> > > > > > > > > > > > > > > > I will disable smp from bios. If I have a > smp > > > kernel, I suppose there > > > > > will > > > > > be no problem after all. Would that be ok? > > > > > The problem with having SMP enabled is that > the > > > smp kernel only > > > > > detects one > > > > > cpu and the system monitor only features one > cpu > > > as well as gkrellm (in > > > > > Linux it shows two cpus). When compiling the > > > system monitor shows the > > > > > cpu at > > > > > a maximum of 50%, so what's going on with > the > > > other 50%? > > > > > writing machdep.hlt_logical_cpus to 2 in > > > loader.conf does not solve > > > > > anything. > > > > > > > I believe FreeBSD uses the other logical CPU > to > > > handle hardware > > > > interrupts, which can still help perormance. > You > > > can check dmesg to see > > > > how it's actually handling it. > > > > > > No! Kernel threads (e.g. handling interrupts) > aren't > > > that much different > > > to normal processes. > > > > > > Logical CPUs on a single HTT capable CPU share > most > > > of the CPU logic, > > > especially all the external stuff (handling > > > interrupts). Scheduling > > > handling of interrupts on the > "secondary/logical" > > > core wouldn't > > > probably help performance at all (if that is at > all > > > possible). > > > > > > When FreeBSD sees logical CPUs it means HTT is > > > either enabled in BIOS or > > > that disabling HTT in BIOS does not hide the > CPUs to > > > FreeBSD (bug in > > > BIOS/FreeBSD). > > > > > > Until you enable scheduler to schedule tasks to > HTT > > > cores (with > > > machdep.hyperthreading_allowed=1 in loader.conf) > > > (disabled by default > > > due to mentioned security/performance reasons) > > > machine won't utilize the > > > logical HTT CPUs. Therefore total CPU > utilization > > > won't be more than > > > 50%, because there are the (unused) logical CPUs > > > which don't get > > > scheduled tasks. > > > > > > > are you sure about this??? > > I would have figured the scheduler wouldn't see > the > > other core at all without this option set and so > it > > wouldn't be used in calculating load at all. 50% > on a > > compile is fairly normal from my experience. I > don't > > have too much experience with HT as I always opt > for > > true SMP so I can't speak with authority on the > > matter. > > > > but if > > > > top > > > > isn't showing CPU 1 or 0 next to a process then it > > isn't computing the load on multiple cores... Also > if > > > > dmesg |grep cpu > > > > doesn't show application cpu1 (and on through all > your > > cores)... launched then the system isn't looking > at > > the HT core at all. > > > > > > -brian > > > > When you do a "top" in the column marked as "C" > should put a 1 or 0 in each > process depending on the cpu the process is being > executed. Well, top does > so, only if you write the line > machdep.hyperthreading_allowed=1 in your > loader.conf. So, anyone having a pentium with > hyperthreading, when you > install freebsd it will install the SMP-GENERIC > kernel (my case) and then > you must enable it by writing > machdep.hyperthreading_allowed=1. If you don't > then the other cpu is not taken into account (at > least when you do a top > only appear 0s in every process, and no 1s). Is my > explanation correct? > > > -- > http://jordilin.wordpress.com > _______________________________________________ > 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" > sounds like it to me. except by what you mean by "taken in to account" top is only reading internal scheduler information so it will display 1 and 0 or 3 4 5 6 however many cores/cpus you have that make things up. I just don't want to mislead or misunderstand the machdep.hyperthreading_allowed=1 variable tells an SMP Kernel to allow the scheduler to send task to the second core. Thus allowing SMP execution of processes and interrupts. I know I am likely abriviating what acutally internally occurs. this does not affect top other then top will read the schedule tasks and if processes are on the second core it will report C=1. But your a lucky dog it always seems I have to rebuild the installed kernel to enable SMP with my systems. Very frustrating, but forces me to immediately update the tree. The point is the above variable is in the BSD world and must be set if you want HT to work. Linux does things their own way, which is why I'm nuking my Gentoo partition this weekend; way too much chaos for me. -brian From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 23:39:03 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 02E0F16A4DF for ; Thu, 31 Aug 2006 23:39:03 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id D243143D5F for ; Thu, 31 Aug 2006 23:38:57 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k7VNcuqI072422 for ; Thu, 31 Aug 2006 18:38:56 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Thu, 31 Aug 2006 18:38:55 -0500 User-Agent: KMail/1.9.3 References: <80f4f2b20608310912l45efdedcxc72c67f6adab562c@mail.gmail.com> <44F70E11.7020203@dial.pipex.com> In-Reply-To: <44F70E11.7020203@dial.pipex.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200608311838.55754.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: can someone point me to some good and descriptive VPN documentation for my use? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 23:39:03 -0000 On Thursday 31 August 2006 11:28, Alex Zbyslaw wrote: > Jim Stapleton wrote: > > I'm trying to VPN in to work from home, and the IT group there only > > supports windows. There are Cisco pre-configured clients for Linux, > > MacOS X, and Windows available, but not BSD. > > > > I tried running the Linux binary, but it wanted to move to a > > nonexistant driectory, and didn't tell me which directory it couldn't > > find, so I couldn't make the proper symlink. > > You could try a strings on the binary to try to find the directory - > assuming that's the only problem, of course :-) > > --Alex > > the most important question is, what type of vpn concentrator do you have? if it happens to be a cisco vpn3000, the try this: /usr/ports/security/vpnc other wise, google "[your vpn model] freebsd" and see what turns up. cheers, jonathan From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 00:17:03 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3446416A4DF for ; Fri, 1 Sep 2006 00:17:03 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from mail.stovebolt.com (mail.stovebolt.com [66.221.101.248]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB37043D53 for ; Fri, 1 Sep 2006 00:17:02 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from [192.168.2.102] (adsl-65-67-100-201.dsl.rcsntx.swbell.net [65.67.100.201]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.stovebolt.com (Postfix) with ESMTP id 333D2114314 for ; Thu, 31 Aug 2006 19:12:11 -0500 (CDT) Date: Thu, 31 Aug 2006 19:16:55 -0500 From: pauls@utdallas.edu To: freebsd-questions@freebsd.org Message-ID: In-Reply-To: <200609010018.23366.list-freebsd-2004@morbius.sent.com> References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> X-Mailer: Mulberry/4.0.5 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========EF5F197D5D7DF4779FDD==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 00:17:03 -0000 --==========EF5F197D5D7DF4779FDD========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On September 1, 2006 12:18:20 AM +0100 RW=20 wrote: > There used to be a port of Cyrusoft's Mulberry mail client that > installed the Linux rpm version; then Cyrusoft went bankrupt and the > port dissappeared. > > Mulberry is now available for free as a standalone Linux binary: > > http://www.mulberrymail.com > > Has anyone got this working? If you just run the binary it opens and > can be be configured to read an imap mailbox, but a lot of the error > and warning pop-up boxes are missing text and buttons. There are > probably other problems, but without the error messages it's hard to > say. That's what the port was doing when I tried it. I installed the new 4.0.5 release, and it works fine. Nothing is missing=20 (that I noticed.) I'm running 6.0 RELEASE with linux_base-fc-4_8. And I *love* Mulberry. Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========EF5F197D5D7DF4779FDD==========-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 00:21:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9A09C16A4E0 for ; Fri, 1 Sep 2006 00:21:12 +0000 (UTC) (envelope-from g.one@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id C245743D64 for ; Fri, 1 Sep 2006 00:21:07 +0000 (GMT) (envelope-from g.one@mac.com) Received: from mac.com (smtpin04-en2 [10.13.10.149]) by smtpout.mac.com (Xserve/8.12.11/smtpout14/MantshX 4.0) with ESMTP id k810L7w2027499 for ; Thu, 31 Aug 2006 17:21:07 -0700 (PDT) Received: from [192.168.2.3] (cpe-065-191-021-225.nc.res.rr.com [65.191.21.225]) (authenticated bits=0) by mac.com (Xserve/smtpin04/MantshX 4.0) with ESMTP id k810L4cH027022 for ; Thu, 31 Aug 2006 17:21:06 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v752.2) To: freebsd-questions@freebsd.org Message-Id: From: g Date: Thu, 31 Aug 2006 20:21:04 -0400 X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAQAAA+k= X-Language-Identified: TRUE Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: newbie. how to compile gcc-4.1.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 00:21:12 -0000 hi everyone, i'm trying to compile and install gcc-4.1.1 from the port section. errors: Syntax error: redirection unexpected *** Error code 2 Stop in /usr/home/g/Applications/gcc-4 ... /build-i386-unknown- freebsd6.1/fixincludes. *** Error code 1 i tried making the object code in another location, by mkdir'ing a directory, cd'ing to that directory then running configure, make, after some processing i get the error messages how do i fix this? thanks, g. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 01:22:45 2006 Return-Path: X-Original-To: questions@freebsd.org 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 90F3016A4DE for ; Fri, 1 Sep 2006 01:22:45 +0000 (UTC) (envelope-from abc@ai1.anchorage.mtaonline.net) Received: from ai1.anchorage.mtaonline.net (ai1.anchorage.mtaonline.net [12.21.201.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id D86EA43D86 for ; Fri, 1 Sep 2006 01:22:31 +0000 (GMT) (envelope-from abc@ai1.anchorage.mtaonline.net) Received: from en26.ai1.anchorage.mtaonline.net (root@en26 [192.168.0.26]) by ai1.anchorage.mtaonline.net (8.12.9p2/8.12.9) with ESMTP id k811MsLu032255 for ; Thu, 31 Aug 2006 17:22:55 -0800 (AKDT) (envelope-from abc@ai1.anchorage.mtaonline.net) Received: (from abc@localhost) by en26.ai1.anchorage.mtaonline.net (8.12.11/8.12.11) id k811LXog001366; Fri, 1 Sep 2006 01:21:33 GMT (envelope-from abc@ai1.anchorage.mtaonline.net) Date: Fri, 1 Sep 2006 01:21:33 GMT From: abc@ai1.anchorage.mtaonline.net Message-Id: <200609010121.k811LXog001366@en26.ai1.anchorage.mtaonline.net> X-Authentication-Warning: en26.ai1.anchorage.mtaonline.net: abc set sender to abc@ai1.anchorage.mtaonline.net using -f To: "freebsd-questions" X-Mailer: Umail v2.9.7 Cc: Subject: VIA C3 - cant boot CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 01:22:45 -0000 i have an ML6000 (no floppy) and have downloaded the 4.11 mini-iso image, and burned it to a CD-RW. CPU: VIA C3 Nehemiah (666.55-MHz 686-class CPU) after rebooting, the CD is found, and a boot attempt is made. within 5 seconds, the kernel locks up after about 3 seconds of the kernel data+234238 text+23432 stuff and the /-\|/-\ twirling prompt, leaving a "/" as the first character on the next line. the ISO is the exact size it should be, and i could "gzip -t mfsroot.gz" in the /boot directory without error - so i guess it's a good image. i am running 4.10 currently, and have no boot problems off the hard drive. any ideas as to what could cause this lock-up at boot time? i thought the ISO's are made with the mkisofs --no-emul-boot, yet the CD is recognized as a 2.88 floppy, and boots 0:fd(0,a)/boot/loader. i never booted off CD's before, and don't know what i should expect exactly. thanks. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 01:34:14 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 24A2516A4E1 for ; Fri, 1 Sep 2006 01:34:14 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9987A43D45 for ; Fri, 1 Sep 2006 01:34:13 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 7F6CA1A4DCF; Thu, 31 Aug 2006 18:34:13 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C516B513F0; Thu, 31 Aug 2006 21:34:12 -0400 (EDT) Date: Thu, 31 Aug 2006 21:34:12 -0400 From: Kris Kennaway To: g Message-ID: <20060901013412.GA64506@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="J/dobhs11T7y2rNN" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: newbie. how to compile gcc-4.1.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 01:34:14 -0000 --J/dobhs11T7y2rNN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 31, 2006 at 08:21:04PM -0400, g wrote: > hi everyone, >=20 > i'm trying to compile and install gcc-4.1.1 from the port section. >=20 > errors: >=20 > Syntax error: redirection unexpected > *** Error code 2 >=20 > Stop in /usr/home/g/Applications/gcc-4 ... /build-i386-unknown-=20 > freebsd6.1/fixincludes. > *** Error code 1 >=20 > i tried making the object code in another location, by mkdir'ing a =20 > directory, cd'ing to that directory then running configure, make, =20 > after some processing i get the error messages >=20 > how do i fix this? First, you didn't show us enough of the error. Second, you apparently edited the error so it's hard to tell what is really going on. Can you please post more context? Also tell us what version of FreeBSD you're running. Kris --J/dobhs11T7y2rNN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE944UWry0BWjoQKURAro0AKDGu7rb4b3dcz3txKCNOzcZZ3BXbgCdGZxH 1sj83HhkkZ7zrK0LCKecz/U= =YfIV -----END PGP SIGNATURE----- --J/dobhs11T7y2rNN-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 03:30:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3672F16A4DA for ; Fri, 1 Sep 2006 03:30:07 +0000 (UTC) (envelope-from jekillen@prodigy.net) Received: from smtp106.sbc.mail.mud.yahoo.com (smtp106.sbc.mail.mud.yahoo.com [68.142.198.205]) by mx1.FreeBSD.org (Postfix) with SMTP id B377943D46 for ; Fri, 1 Sep 2006 03:30:06 +0000 (GMT) (envelope-from jekillen@prodigy.net) Received: (qmail 1003 invoked from network); 1 Sep 2006 03:30:05 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=prodigy.net; h=Received:Mime-Version:Content-Transfer-Encoding:Message-Id:Content-Type:To:From:Subject:Date:X-Mailer; b=vYD8QOCnWGJqbuHMuUpum8l87fF5v+qUwlzgc+xVFOS2jnGcTW0cYhUrMsZK3j3H7ZWi2MNP9qlcNoiP10PtJ0QMjlelpr30YhoYqISFOrISfba98JzcLhNDh7u/pttOA2RBOk2/hTV6C3XfETC1pntHYUcTyx9Qn3EzBMuu35Y= ; Received: from unknown (HELO ?75.7.236.228?) (jekillen@prodigy.net@75.7.236.228 with plain) by smtp106.sbc.mail.mud.yahoo.com with SMTP; 1 Sep 2006 03:30:05 -0000 Mime-Version: 1.0 (Apple Message framework v622) Content-Transfer-Encoding: 7bit Message-Id: <5a3c1a09aae17bdc67ac1f11f8d37f59@prodigy.net> Content-Type: text/plain; charset=US-ASCII; format=flowed To: FreeBSD Mailing List From: jekillen Date: Thu, 31 Aug 2006 20:33:54 -0700 X-Mailer: Apple Mail (2.622) Subject: Help re nvnet driver X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 03:30:07 -0000 Hello: I have a machine with two SLI slots and two regular pci slots. The motherboard is Gigabyte with nVidia network interface built in. I have one regular pci slot taken with a video card and one with a D-Link nic. I need another nic and as it stands either the video card goes or I get a functional nvnet driver. The system has refused to deal with the nvnet interface and the compilation of the driver for it was initially unsuccessful. I posted a note to this list about it at the time and was told after some delay that the nvnet driver was 'broken'. My plan is to use one of the extended pci slots for a SCSI adapter which leaves the other extended slot unused(and unusable if I understand correctly). The machine has no built in video. Can anyone tell me if there is a functioning nvnet driver avail- able presently and if it will run on v6.0. My present use of the machine is as a development machine and I need to configure Apache for mock virtual sites with both an internal network connection and a mock external connection. Eventually, I will have the machine actually connected to a public address so for that I need the extra net work interface card also. I think I can get by with six internal addresses alias to the same card and split them up as far as Apache is concerned but having the use of the built in network interface will be a great help. Other wise every thing is satisfactory with FreeBSD on this machine. I'm building a third machine along the same lines (but it has more standard pci slots and only one extended slot which will also be for a SCSI adapter card). I'm shoe horning my budget for the project so that isn't a viable alternative for me at this time. Thanks in advance. Jeff K. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 06:14:32 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3594216A4DE for ; Fri, 1 Sep 2006 06:14:32 +0000 (UTC) (envelope-from dantasrotole@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.238]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FD5343D70 for ; Fri, 1 Sep 2006 06:14:27 +0000 (GMT) (envelope-from dantasrotole@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so903406wxd for ; Thu, 31 Aug 2006 23:14:26 -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:thread-index:x-mimeole:message-id; b=ckgpEjBuWA+pwBmAVo/ALnAOZ8wXIAOXL3m+2RBNr+MAMzQcnJ29bwddjDv2afLNQUVfqV0FLp+OAj3oxWpK7Qxa6wuIlQ6IJKQiRgPWKrh6gEh3uTieFbuGtyCcSlluisqU7Q5Ea4D3GegUlA+qeseMBg6ez4035Wsiza2Ys1c= Received: by 10.70.51.17 with SMTP id y17mr1803067wxy; Thu, 31 Aug 2006 23:14:26 -0700 (PDT) Received: from rotole ( [200.181.86.245]) by mx.gmail.com with ESMTP id h13sm1951908wxd.2006.08.31.23.14.24; Thu, 31 Aug 2006 23:14:26 -0700 (PDT) From: "Erick Dantas Rotole" To: Date: Fri, 1 Sep 2006 03:14:23 -0300 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcbNjd5e8YZkXfyLT8unzwSDubkg6g== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Message-ID: <44f7cfc2.28506000.1fe6.24a1@mx.gmail.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Freebsd -Squid - danguardian- Winbind- XMalloc Error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 06:14:32 -0000 I have a box with freebsd 6.1, squid-2.5.13_1 (Ntlm authentication), dansguardian-2.9.6.1_1 and samba-3.0.22,1 2gb RAM 2 cpu. When The box has 800MB memory active, 1.2GB memory inact and 0 free memory. I get the error "FATAL: xmalloc: Unable to allocate 65535 bytes" and the squid process restart. I really need help, I have already search google and the list but haven't found the solution. Thanks From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 07:30:55 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C65CF16A4DD for ; Fri, 1 Sep 2006 07:30:55 +0000 (UTC) (envelope-from freebsd-questions@voidcaptain.com) Received: from mx4.x15.net (mx4.x15.net [69.55.237.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 837FA43D45 for ; Fri, 1 Sep 2006 07:30:55 +0000 (GMT) (envelope-from freebsd-questions@voidcaptain.com) Received: from j1.x15.net [63.196.213.76] by mx4.x15.net with ESMTP id 608060222X1GJ3UM0009nLFw; Fri, 01 Sep 2006 07:30:54 +0000 Message-ID: <44F7E18F.9040505@voidcaptain.com> Date: Fri, 01 Sep 2006 00:30:23 -0700 From: Pete Slagle MIME-Version: 1.0 To: RW References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> In-Reply-To: <200609010018.23366.list-freebsd-2004@morbius.sent.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 07:30:55 -0000 RW wrote: > There used to be a port of Cyrusoft's Mulberry mail client that installed the > Linux rpm version; then Cyrusoft went bankrupt and the port dissappeared. > > Mulberry is now available for free as a standalone Linux binary: > > http://www.mulberrymail.com > > Has anyone got this working? If you just run the binary it opens and can be > be configured to read an imap mailbox, but a lot of the error and warning > pop-up boxes are missing text and buttons. There are probably other problems, > but without the error messages it's hard to say. Is this relevant? http://trac.mulberrymail.com/mulberry/wiki/linuxproblems From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 07:40:11 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D7E5F16A4DA for ; Fri, 1 Sep 2006 07:40:11 +0000 (UTC) (envelope-from bennett@cs.niu.edu) Received: from mp.cs.niu.edu (mp.cs.niu.edu [131.156.68.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7857843D45 for ; Fri, 1 Sep 2006 07:40:11 +0000 (GMT) (envelope-from bennett@cs.niu.edu) Received: from mp.cs.niu.edu (bennett@localhost [127.0.0.1]) by mp.cs.niu.edu (8.13.8/8.13.8) with ESMTP id k817dWYT011316; Fri, 1 Sep 2006 02:39:32 -0500 (CDT) Date: Fri, 1 Sep 2006 02:39:32 -0500 (CDT) From: Scott Bennett Message-Id: <200609010739.k817dWGc011315@mp.cs.niu.edu> To: backyard1454-bsd@yahoo.com Cc: Jordi Carrillo , freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 07:40:11 -0000 On Thu, 31 Aug 2006 07:05:05 -0700 (PDT) backyard1454-bsd@yahoo.com wrote: >--- Skylar Thompson wrote: > >> Jordi Carrillo wrote: >> > 2006/8/30, backyard : >> >> >> >> >> >> >> >> --- Jordi Carrillo wrote: >> >> >> >> > I've read that SMP should be disabled for >> >> > performance issues (I did not know >> >> > that before installing freebsd). I have a P4 >> 3GHz >> >> > with hyperthreading >> >> > technology. I have the SMP-GENERIC kernel and >> it >> >> > only launches one cpu. So, 5.4 made that the default, as has been noted here previously. See, for example, http://www.freebsd.org/cgi/getmsg.cgi?fetch=239087+242169+/usr/local/www/db/text/2006/freebsd-questions/20060806.freebsd-questions (Beware of linewrap in the URL.) >> >> > I've decided to disable SMP from BIOS. Is that >> ok?, Sure, but why? Unless you have a multi-user system whose users whose skills at cracking systems based upon hardware security deficiencies, why would you wish to forego roughly 13%-38% of your P4's processing capacity? >> >> > knowing that I have a >> >> > Smp enabled kernel? or should I install one >> without >> >> > smp? If so, is there a The GENERIC kernel is a uniprocessor kernel. The SMP kernel specifies the SMP option and then simply includes the rest of the GENERIC configuration. If you're running GENERIC, then the sysctl variable won't make any difference. If you're running SMP, then you need to change the variable to 1. (See the above referenced posting URL.) >> >> > way to install one already precompiled? If you didn't build SMP, then you probably are running GENERIC. IIRC, the system as distributed has only a GENERIC kernel already built. >> >> > [stuff deleted --SB] >> >> > >> >> >> >> if you aren't concerned with bad users or hackers >> >> hitting the box I would just enable HT with the >> sysctl >> >> variable. This will not make things run slower at >> all, >> >> just (in theory) less secure, which is why the >> >> veriable was created in the first place as I >> recall. >> >> If you are concerned I would wait until you >> update >> >> your system and then just build a GENERIC/CUSTOM >> >> kernel without the SMP option set. >> >> >> >> >> >> -brian >> >> >> > >> > >> > I will disable smp from bios. If I have a smp >> kernel, I suppose there >> > will >> > be no problem after all. Would that be ok? >> > The problem with having SMP enabled is that the >> smp kernel only >> > detects one >> > cpu and the system monitor only features one cpu >> as well as gkrellm (in >> > Linux it shows two cpus). When compiling the >> system monitor shows the >> > cpu at >> > a maximum of 50%, so what's going on with the >> other 50%? >> > writing machdep.hlt_logical_cpus to 2 in >> loader.conf does not solve >> > anything. Why would you expect it to solve anything? >> I believe FreeBSD uses the other logical CPU to >> handle hardware >> interrupts, which can still help performance. You >> can check dmesg to see >> how it's actually handling it. >> >> -- >> -- Skylar Thompson (skylar@cs.earlham.edu) >> -- http://www.cs.earlham.edu/~skylar/ >> >> >> > >While that is one method of hamdling SMP I'm fairly >certain FreeBSD does not use this model. The problem >with one CPU handling interrupts and one handling >processes is if your doing a 9000x9000 element matrix >inversion to calculate say the wave function for >uranium (yeah not right, but this be some nasty math >so bear with me); then even if the math library is >thread aware, one CPU will be frying eggs, and the >other one will be twiddling it's thumbs waiting on >interrupts to process. Most likely an >ACPI_THERMALZONE... > >>From memory on my readings of Implementation of >FreeBSD 5.4 ( I think thats the title, but the Black >Book written by the BSD gurus...) It was decided the >SMP scheduler would handle processes and interrupts >simultainiously as scheduled and modified with >affinities to avoid switching which CPU cache has the >running process. This might be why HT is slower >because it only has one CPU cache so trying to keep >things on one core doesn't improve performance at all >because either core can access the cache. Since HT was >not the brightest thing Intel could have done (kind of >like 20-bit addressing...) and since AMD has Dual >cores they need to compete with I don't think tweaking >scheduler code to remove affinities on HT would be in >the works. I don't even know if that would help >either, just thinking out loud. Processor groups were invented to deal with HT-enabled CPUs. Processors in the same group are understood to have essentially no cost involved in moving a thread from one logical processor to another, whereas the traditional costs of moving a thread from one real CPU to another are still accounted for by affinity to the processor group. How the concept and implementation of processor groups with change now that multi-cored chips exist I do not know. Moving a thread among multiple cores on the same chip incurs some costs, unlike the HT case, yet that cost is different, perhaps *greater*, than the cost of moving a thread to a separate chip. Consider that the current dual-cored chips have separate caches and TLBs, so in that respect, the cost of moving a thread between cores is similar to moving a thread between chips. However, the two cores *share* some resources, such as bandwidth to/from the world outside the chip, whereas two separate chips may have a certain degree of parallel access (e.g., signalling other chips or cards, data transmission to/from cards) depending upon which busses are accessed, in which case there would be some actual benefit (cost reduction) in moving a thread to a different chip rather than to another core in the same chip. > >But Interrupts are handled by both CPUs once the >additional CPUs are launched by the boot CPU via the >kernel. The scheduler is designed to keep all the >pipes in the plant running with process/interuppts. > >-brian > Scott Bennett, Comm. ASMELG, CFIAG ********************************************************************** * Internet: bennett at cs.niu.edu * *--------------------------------------------------------------------* * "A well regulated and disciplined militia, is at all times a good * * objection to the introduction of that bane of all free governments * * -- a standing army." * * -- Gov. John Hancock, New York Journal, 28 January 1790 * ********************************************************************** From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 08:41:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 360E216A4DA for ; Fri, 1 Sep 2006 08:41:24 +0000 (UTC) (envelope-from bennett@cs.niu.edu) Received: from mp.cs.niu.edu (mp.cs.niu.edu [131.156.68.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB9D643D4C for ; Fri, 1 Sep 2006 08:41:23 +0000 (GMT) (envelope-from bennett@cs.niu.edu) Received: from mp.cs.niu.edu (bennett@localhost [127.0.0.1]) by mp.cs.niu.edu (8.13.8/8.13.8) with ESMTP id k818fCGW012645; Fri, 1 Sep 2006 03:41:12 -0500 (CDT) Date: Fri, 1 Sep 2006 03:41:12 -0500 (CDT) From: Scott Bennett Message-Id: <200609010841.k818fCrc012644@mp.cs.niu.edu> To: backyard Cc: Questions , "Chad Leigh -- Shire.Net LLC" Subject: Re: shared cache -- Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 08:41:24 -0000 On Thu, 31 Aug 2006 08:18:57 -0700 (PDT) backyard wrote: >--- "Chad Leigh -- Shire.Net LLC" >wrote: > >> >> On Aug 30, 2006, at 12:12 PM, backyard wrote: >> >> > with HT disabling in FreeBSD is more for the >> security >> > issues about a potential exploit whereby one >> process >> > in one pipe can access the priveledged information >> of >> > a process in another pipe because the two cores >> share >> > one processor cache and thus one cache table. To >> my >> > knowledge this hasn't been exploited yet. >> >> >> How is this any different than say an Intel Core Duo >> or Core 2 Duo? >> I believe they have a shared cache as well for each >> (real) processor >> core. I'm not sure about the Core Duo, but I think it has two separate, fixed-sized caches. The Core 2 Duo supposedly keeps a total of 4 MB of L2 cache, but dynamically manages how much is currently used by each core, still keeping what they use separate (i.e., each core can only access what is allocated to it). >> >> Chad >> >> --- >> Chad Leigh -- Shire.Net LLC >> Your Web App and Email hosting provider >> chad at shire.net >> >> > >I would say there is no difference if what you say is >true. A Multi-Core chip is only true SMP if the two >cores share no resources internally and thus are >capable of running process separate from each other >entirely. independantly and with their own internal >caches. The process shouldn't have to wait on a lock >to access it's cache, which I would have to assume >occurs on these HT machines; which is probably why >they have degraded performance. The cache should only >be shared if a process explicity copies its content to >the other cores cache. If should not be possible for >both Cores to see the same internal cache. To my Thus far, Intel's dual-cored processors do not have HT enabled, though the circuitry may well be present. Intel has said publicly that they may make HT available again at some point, so that each core would have two logical processors. If Intel does that, then presumably the FreeBSD kernel would need a third level of processor relationships in addition to the distinction between processors in the same group (i.e., logical processors in a particular real processor) versus processors in different groups (i.e., logical processors in different real processors). >knowledge the AMDx2 follow this model with independant >cores only sharing a common die. This ensures the >context and priveledge of one running process cannot >be compromised by a non-priveldeged process waiting on >say a login attempt to root, and then grabbing the >password from the common cache before the privelidged >process can clean up. Many people have panned HT, but HT does make it possible to keep more components of a real processor (e.g., DAT, TLB, FPU, address and data lines to the off- chip world, etc.) in active use more of the time. This is an issue that is separate from the issues involving multiple real processors on one die. It is, of course, too bad that Intel's design allows the logical processors to cross-access their cache spaces, but I doubt that that particular weakness has hurt anyone much. A greater problem for some installations is the accounting problem caused by the fact that a logical processor waiting for a hardware lock set by another logical processor in the same core appears to have 100% CPU utilization during the lockout. In other words, 100% utilization of both logical processors is equivalent to something on the order of 110% - 140% utilization of a single logical processor that has no competition from another logical processor. So which thread is getting overcharged? The software cannot determine the answer. And what institutional accounting policy should be in effect to handle billing for CPU time in an HT-enabled environment, given this indeterminacy? > >I don't think this flaw has been exploited yet, but >the boys at OpenBSD found it (from memory, pretty sure >it was one of them) and it has spread through the BSD >community as it has potentially dire consequences. > >Personally I'm done with Intel so I don't think I'll >ever have this issue. Afterall they're still the >reason my computer boots up with 640k of RAM... I also >think AMD has come from being a clone to being on top >of the market, but this is my personal opinion. The >fact Core Duos are only 32-bit means Intel is still >only concerned with shortend gains on the Windows >market, not long term migration to 64-bit PCs like That's not quite entirely true. According to the Intel web site, some models of Core chips don't list EM64T as a supported feature, but some of the *do*. The Core Solo and Core Duo series do not show EM64T as a feature, but the entire Mobile Core 2 Duo series, the Core 2 Extreme X6800, and the entire Core 2 Duo Desktop series do list EM64T as a supported feature. >everyone else... And banking on Microsoft has never >been a solid idea; its too bad banks use Windows; >there's a security nightmare, but a topic in and of >itself... Indeed. (Ugh!) > >-brian > Scott Bennett, Comm. ASMELG, CFIAG ********************************************************************** * Internet: bennett at cs.niu.edu * *--------------------------------------------------------------------* * "A well regulated and disciplined militia, is at all times a good * * objection to the introduction of that bane of all free governments * * -- a standing army." * * -- Gov. John Hancock, New York Journal, 28 January 1790 * ********************************************************************** From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 08:58:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3542116A4DD for ; Fri, 1 Sep 2006 08:58:12 +0000 (UTC) (envelope-from jas@math.jussieu.fr) Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79ACD43D45 for ; Fri, 1 Sep 2006 08:58:11 +0000 (GMT) (envelope-from jas@math.jussieu.fr) Received: from riemann.math.jussieu.fr (riemann.math.jussieu.fr [134.157.13.3]) by shiva.jussieu.fr (8.13.7/jtpda-5.4) with ESMTP id k818w87O069896 for ; Fri, 1 Sep 2006 10:58:08 +0200 (CEST) X-Ids: 166 Received: from grobner1.math.jussieu.fr (galois2.math.jussieu.fr [134.157.13.117]) by riemann.math.jussieu.fr (8.13.6/jtpda-5.4) with ESMTP id k818vxdR064562 for ; Fri, 1 Sep 2006 10:58:00 +0200 (CEST) Received: from galois2.math.jussieu.fr (localhost.localdomain [127.0.0.1]) by grobner1.math.jussieu.fr (8.13.7/jtpda-5.4) with ESMTP id k818vwTp017284 for ; Fri, 1 Sep 2006 10:57:58 +0200 Received: (from jas@localhost) by galois2.math.jussieu.fr (8.13.7/8.13.7/Submit) id k818vwLJ017283 for freebsd-questions@freebsd.org; Fri, 1 Sep 2006 10:57:58 +0200 Date: Fri, 1 Sep 2006 10:57:58 +0200 From: Albert Shih To: freebsd-questions@freebsd.org Message-ID: <20060901085758.GG4521@math.jussieu.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.6i X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.56 on 134.157.13.3 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (shiva.jussieu.fr [134.157.0.166]); Fri, 01 Sep 2006 10:58:08 +0200 (CEST) X-Virus-Scanned: ClamAV 0.88.2/1783/Thu Aug 31 22:56:17 2006 on shiva.jussieu.fr X-Virus-Status: Clean X-Miltered: at shiva.jussieu.fr with ID 44F7F620.002 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! Subject: Confuse with proc.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: shih@math.jussieu.fr List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 08:58:12 -0000 Hi all I'm little confuse with all new model of proc. Long time ago there are only Pentium x86/32bits and I can buy a server and known my FreeBSD run perfectly in all case I known the proc work. Now I've see there are many different model of intel proc (on HP web site), there are Xeon/ Xeon MP (with EMT64)/ dual core etc.... Where can I find a compatibility matix between those proc and the FreeBSD release (I don't need 64bits...) Regards. -- Albert SHIH Universite de Paris 7 (Denis DIDEROT) U.F.R. de Mathematiques. 7 ième étage, plateau D, bureau 10 Tel : 01 44 27 86 88 FAX : 01 44 27 69 35 GSM(UFR) : 06 85 05 58 43 Heure local/Local time: Fri Sep 1 10:54:23 CEST 2006 From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 09:31:20 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 09FE116A4DA for ; Fri, 1 Sep 2006 09:31:20 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id D13D843D4C for ; Fri, 1 Sep 2006 09:31:17 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [172.16.3.238] (gateway.ash.thebunker.net [213.129.64.4]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k819UiEN026868 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 1 Sep 2006 10:30:50 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k819UiEN026868 Message-ID: <44F7FDBC.5000800@infracaninophile.co.uk> Date: Fri, 01 Sep 2006 10:30:36 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060817) MIME-Version: 1.0 To: shih@math.jussieu.fr References: <20060901085758.GG4521@math.jussieu.fr> In-Reply-To: <20060901085758.GG4521@math.jussieu.fr> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enig4013648E7DD658F8F18E50F6" X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [81.187.76.162]); Fri, 01 Sep 2006 10:31:12 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1783/Thu Aug 31 21:56:17 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_TESTING,SPF_SOFTFAIL autolearn=no version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: Confuse with proc.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 09:31:20 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig4013648E7DD658F8F18E50F6 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Albert Shih wrote: > Where can I find a compatibility matix between those proc and the FreeB= SD > release (I don't need 64bits...) To generalise: if it's an i386 compatible processor, then FreeBSD will wo= rk with it in 32 bit mode -- that's any FreeBSD version. That includes AMD6= 4 chips like the Opteron. If it has the EMT64 extensions then FreeBSD 5.x or above should run in 64= bit mode. If it's an AMD64 processor, then FreeBSD 5.x or above will run in 6= 4bit mode. There may be some exceptions to that statement, but they will be quite fe= w and far between, I've certainly never run into problems like that. Of course, the kicker tends to be the other devices on the system -- moth= er board chipsets are much more likely to result in compatibility problems t= han the CPU itself. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. Flat 3 7 Priory Courtyard PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW, UK --------------enig4013648E7DD658F8F18E50F6 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE9/3E8Mjk52CukIwRA12dAJ9Q9YTSl9nraQ8/Ob9dWIv9kiOvmwCcCaUF qAWFvA7iPs2KbN5hZFrJoEI= =kPo7 -----END PGP SIGNATURE----- --------------enig4013648E7DD658F8F18E50F6-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 09:53:36 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 51A4816A4DA for ; Fri, 1 Sep 2006 09:53:36 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id A389643D45 for ; Fri, 1 Sep 2006 09:53:35 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id q2so831262uge for ; Fri, 01 Sep 2006 02:53:34 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=A5UNc9q88GN1vCtkDOtjaGZRgKrjOS2Cv+5pDavjDKXsWLa++A5+8QTNYkrBYCS5b0WSVvDKyBaP5Rk+IxhXxFUbI88useGjFvqJPQ2GNRNhdgNYD7Kq4n0VcdUNNMP1S8bx/Ghry4w3MWhyvMdEVZa1uaUoJhZ72XleAVvmoGQ= Received: by 10.66.222.9 with SMTP id u9mr1079160ugg; Fri, 01 Sep 2006 02:53:34 -0700 (PDT) Received: by 10.67.98.16 with HTTP; Fri, 1 Sep 2006 02:53:34 -0700 (PDT) Message-ID: <80f4f2b20609010253g353a2f9cg9335949217951e4d@mail.gmail.com> Date: Fri, 1 Sep 2006 05:53:34 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <200608311838.55754.freebsd@dfwlp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20608310912l45efdedcxc72c67f6adab562c@mail.gmail.com> <44F70E11.7020203@dial.pipex.com> <200608311838.55754.freebsd@dfwlp.com> Subject: Re: can someone point me to some good and descriptive VPN documentation for my use? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 09:53:36 -0000 d'oh, thanks, I was looking for vpn in "net" and "net-mgmt", didn't think of grepping the security directory. Thanks! -Jim Stapleton On 8/31/06, Jonathan Horne wrote: > On Thursday 31 August 2006 11:28, Alex Zbyslaw wrote: > > Jim Stapleton wrote: > > > I'm trying to VPN in to work from home, and the IT group there only > > > supports windows. There are Cisco pre-configured clients for Linux, > > > MacOS X, and Windows available, but not BSD. > > > > > > I tried running the Linux binary, but it wanted to move to a > > > nonexistant driectory, and didn't tell me which directory it couldn't > > > find, so I couldn't make the proper symlink. > > > > You could try a strings on the binary to try to find the directory - > > assuming that's the only problem, of course :-) > > > > --Alex > > > > > > the most important question is, what type of vpn concentrator do you have? if > it happens to be a cisco vpn3000, the try this: > > /usr/ports/security/vpnc > > other wise, google "[your vpn model] freebsd" and see what turns up. > > cheers, > jonathan > _______________________________________________ > 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 Fri Sep 1 11:42:11 2006 Return-Path: X-Original-To: questions@freebsd.org 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 52B6B16A4E1 for ; Fri, 1 Sep 2006 11:42:11 +0000 (UTC) (envelope-from derek@computinginnovations.com) Received: from betty.computinginnovations.com (dsl081-142-072.chi1.dsl.speakeasy.net [64.81.142.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id A575343D5C for ; Fri, 1 Sep 2006 11:42:10 +0000 (GMT) (envelope-from derek@computinginnovations.com) Received: from p17.computinginnovations.com (dhcp-10-20-30-150.computinginnovations.com [10.20.30.150]) (authenticated bits=0) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k81BdRCj003044; Fri, 1 Sep 2006 06:39:28 -0500 (CDT) Message-Id: <6.0.0.22.2.20060901063758.025ecff0@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Fri, 01 Sep 2006 06:38:59 -0500 To: abc@ai1.anchorage.mtaonline.net, "freebsd-questions" From: Derek Ragona In-Reply-To: <200609010121.k811LXog001366@en26.ai1.anchorage.mtaonline.n et> References: <200609010121.k811LXog001366@en26.ai1.anchorage.mtaonline.net> Mime-Version: 1.0 X-ComputingInnovations-MailScanner-Information: Please contact the ISP for more information X-ComputingInnovations-MailScanner: Found to be clean X-ComputingInnovations-MailScanner-From: derek@computinginnovations.com X-Spam-Status: No Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: VIA C3 - cant boot CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 11:42:11 -0000 Try booting another bootable CD. It sounds like the CD you burned didn't burn properly. You can find bootable images in other OS's at bootdisk.org or FreeDOS.org. -Derek At 08:21 PM 8/31/2006, abc@ai1.anchorage.mtaonline.net wrote: >i have an ML6000 (no floppy) and have downloaded >the 4.11 mini-iso image, and burned it to a CD-RW. > >CPU: VIA C3 Nehemiah (666.55-MHz 686-class CPU) > >after rebooting, the CD is found, and a boot >attempt is made. within 5 seconds, the kernel >locks up after about 3 seconds of the >kernel data+234238 text+23432 stuff and the >/-\|/-\ twirling prompt, leaving a "/" as the >first character on the next line. > >the ISO is the exact size it should be, and >i could "gzip -t mfsroot.gz" in the /boot >directory without error - so i guess it's >a good image. i am running 4.10 currently, >and have no boot problems off the hard drive. > >any ideas as to what could cause this lock-up >at boot time? i thought the ISO's are made with >the mkisofs --no-emul-boot, yet the CD is recognized >as a 2.88 floppy, and boots 0:fd(0,a)/boot/loader. >i never booted off CD's before, and don't know >what i should expect exactly. > >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" > >-- >This message has been scanned for viruses and >dangerous content by MailScanner, and is >believed to be clean. >MailScanner thanks transtec Computers for their support. -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 11:54:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A714416A4EA for ; Fri, 1 Sep 2006 11:54:38 +0000 (UTC) (envelope-from listen@andvari.de) Received: from smtprelay06.ispgateway.de (smtprelay06.ispgateway.de [80.67.18.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 898B543D49 for ; Fri, 1 Sep 2006 11:54:37 +0000 (GMT) (envelope-from listen@andvari.de) Received: (qmail 7119 invoked from network); 1 Sep 2006 11:54:35 -0000 Received: from unknown (HELO medea.martinmoeller.homeip.net) (152499@[84.168.88.91]) (envelope-sender ) by smtprelay06.ispgateway.de (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 1 Sep 2006 11:54:35 -0000 Received: from medea.martinmoeller.homeip.net (localhost [127.0.0.1]) by medea.martinmoeller.homeip.net (8.13.8/8.13.8) with ESMTP id k81BsWZB067933 for ; Fri, 1 Sep 2006 13:54:33 +0200 (CEST) (envelope-from listen@andvari.de) Received: (from mm@localhost) by medea.martinmoeller.homeip.net (8.13.8/8.13.8/Submit) id k81BsPJd067701 for freebsd-questions@freebsd.org; Fri, 1 Sep 2006 13:54:25 +0200 (CEST) (envelope-from listen@andvari.de) X-Authentication-Warning: medea.martinmoeller.homeip.net: mm set sender to listen@andvari.de using -f Date: Fri, 1 Sep 2006 13:54:24 +0200 From: Martin =?iso-8859-1?Q?M=F6ller?= To: FreeBSD User List Message-ID: <20060901115424.GA63532@medea.martinmoeller.homeip.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable X-URL: http://www.martinmoeller.net/ X-PGP-Info: I prefer encrypted mail. Please use PGP/GnuPG! X-PGP-Key-ID: 0x06746BEE X-PGP-Fingerprint: 9D2E 943F A669 50E4 A638 E42F 2699 2A76 0674 6BEE X-Location: EU - Deutschland / Allemagne / Germany X-Accept-Language: de fr en X-Uptime: 1:38 User-Agent: Mutt/1.5.12-2006-07-14 Subject: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 11:54:38 -0000 Does anybody know, why the FreeBSD developers decided to use sendmail as the standard MTA? Has there been a discussion about it and where could I find information about it? --=20 Martin M=F6ller Using FreeBSD RELENG_6 for amd/64 From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 12:30:01 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1CE6516A4DF for ; Fri, 1 Sep 2006 12:30:01 +0000 (UTC) (envelope-from bkoenig@cs.tu-berlin.de) Received: from efacilitas.de (smtp.efacilitas.de [85.10.196.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8481A43D45 for ; Fri, 1 Sep 2006 12:29:58 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-42-252.dynamic.qsc.de [212.202.42.252]) by efacilitas.de (Postfix) with ESMTP id 472A34B273; Fri, 1 Sep 2006 14:29:57 +0200 (CEST) Received: from [192.168.1.2] (muhkuh.local [192.168.1.2]) by eurystheus.local (Postfix) with ESMTP id 712FD52859; Fri, 1 Sep 2006 14:29:55 +0200 (CEST) Message-ID: <44F827CF.2050307@cs.tu-berlin.de> Date: Fri, 01 Sep 2006 14:30:07 +0200 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: =?ISO-8859-1?Q?Martin_M=F6ller?= References: <20060901115424.GA63532@medea.martinmoeller.homeip.net> In-Reply-To: <20060901115424.GA63532@medea.martinmoeller.homeip.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: FreeBSD User List Subject: Re: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 12:30:01 -0000 Martin Möller schrieb: > Does anybody know, why the FreeBSD developers decided to use sendmail as > the standard MTA? Has there been a discussion about it and where could I > find information about it? It's strong, flexible, its licence is suitable... Why do you ask? Björn From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 12:37:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C77CE16A4DA for ; Fri, 1 Sep 2006 12:37:27 +0000 (UTC) (envelope-from eculp@bafirst.com) Received: from 72-12-2-214.wan.networktel.net (72-12-2-214.wan.networktel.net [72.12.2.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49CCD43D46 for ; Fri, 1 Sep 2006 12:37:27 +0000 (GMT) (envelope-from eculp@bafirst.com) Received: from localhost (localhost [127.0.0.1]) (uid 80) by 72-12-2-214.wan.networktel.net with local; Fri, 01 Sep 2006 07:37:26 -0500 id 00095849.44F82986.00002247 Received: from dsl-189-129-2-180.prod-infinitum.com.mx (dsl-189-129-2-180.prod-infinitum.com.mx [189.129.2.180]) by mail.bafirst.com (Horde MIME library) with HTTP; Fri, 01 Sep 2006 07:37:26 -0500 Message-ID: <20060901073726.w09d0hlx1csssw0o@mail.bafirst.com> Date: Fri, 01 Sep 2006 07:37:26 -0500 From: eculp@bafirst.com To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) 4.1-cvs Subject: log is showing - kernel: (da0:mpt0:0:0:0): Queue Full X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 12:37:27 -0000 I have a log with a lot of these messages. I have no idea what the messages mean. This is a Dell 2850 IIRC, colocated in another country. Is this as bad as it sounds and is there a kernel configuration setting that would solve this? The server is running up to date current. I know, but it is too late to change it. It was a test machine that was substituted for a broken server in an emergency situation and has been there ever since. Would a remote downgrade to Releng 6 be recommendable. If so just how dangerous would that be. I can visualize installing it over what is there and then rebuilding everything but I'm a bit worried that it wouldn't reboot. If not I will need to weather the storms until the 7.0 release. If it weren't so far away I wouldn't worry. Thanks for any help or suggestions, ed The full message that is repeated is Aug 31 18:10:01 far kernel: (da0:mpt0:0:0:0): tagged openings now 132 Aug 31 18:10:01 far kernel: (da0:mpt0:0:0:0): Retrying Command Aug 31 18:10:01 far kernel: (da0:mpt0:0:0:0): Queue Full Aug 31 18:10:01 far kernel: (da0:mpt0:0:0:0): tagged openings now 131 Aug 31 18:10:01 far kernel: (da0:mpt0:0:0:0): Retrying Command Aug 31 18:10:01 far kernel: (da0:mpt0:0:0:0): Queue Full with only the tagged openings now sequence changing. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 12:41:50 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C24D916A4DE for ; Fri, 1 Sep 2006 12:41:50 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6948B43D6D for ; Fri, 1 Sep 2006 12:41:50 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 5AAE9DA1278 for ; Fri, 1 Sep 2006 08:41:49 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Fri, 01 Sep 2006 08:41:49 -0400 X-Sasl-enc: 2tSji755+1vEEmYaIdEt+Xtulv+phsVZTx1dQNjbrKZP 1157114509 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 8A31085D2 for ; Fri, 1 Sep 2006 08:41:49 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2006 13:41:45 +0100 User-Agent: KMail/1.9.3 References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> <44F7E18F.9040505@voidcaptain.com> In-Reply-To: <44F7E18F.9040505@voidcaptain.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609011341.46942.list-freebsd-2004@morbius.sent.com> Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 12:41:50 -0000 On Friday 01 September 2006 08:30, Pete Slagle wrote: > RW wrote: > > Has anyone got this working? If you just run the binary it opens and can > > be be configured to read an imap mailbox, but a lot of the error and > > warning pop-up boxes are missing text and buttons. There are probably > > other problems, but without the error messages it's hard to say. > > Is this relevant? Not any more, but that wiki entry was created several hours after I posted. > http://trac.mulberrymail.com/mulberry/wiki/linuxproblems That fixed the problems with text. I hope a proper package can be made out of this - having installed files and user data under ~/.mulberry would be a pain to maintain. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 12:56:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B374516A4DD for ; Fri, 1 Sep 2006 12:56:33 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from pne-smtpout2-sn2.hy.skanova.net (pne-smtpout2-sn2.hy.skanova.net [81.228.8.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4022A43D46 for ; Fri, 1 Sep 2006 12:56:33 +0000 (GMT) (envelope-from erikt@midgard.homeip.net) Received: from falcon.midgard.homeip.net (83.253.29.241) by pne-smtpout2-sn2.hy.skanova.net (7.2.075) id 44F2F2F700153277 for freebsd-questions@freebsd.org; Fri, 1 Sep 2006 14:56:32 +0200 Received: (qmail 39992 invoked from network); 1 Sep 2006 14:56:31 +0200 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with SMTP; 1 Sep 2006 14:56:31 +0200 Received: (qmail 92219 invoked by uid 1001); 1 Sep 2006 14:56:31 +0200 Date: Fri, 1 Sep 2006 14:56:31 +0200 From: Erik Trulsson To: Martin =?iso-8859-1?Q?M=F6ller?= Message-ID: <20060901125631.GA92179@owl.midgard.homeip.net> Mail-Followup-To: Martin =?iso-8859-1?Q?M=F6ller?= , FreeBSD User List References: <20060901115424.GA63532@medea.martinmoeller.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <20060901115424.GA63532@medea.martinmoeller.homeip.net> User-Agent: Mutt/1.5.11 Cc: FreeBSD User List Subject: Re: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 12:56:33 -0000 On Fri, Sep 01, 2006 at 01:54:24PM +0200, Martin M=F6ller wrote: > Does anybody know, why the FreeBSD developers decided to use sendmail as > the standard MTA? Has there been a discussion about it and where could I > find information about it? Historical reasons mainly. Sendmail was originally developed on BSD and shipped with BSD at least since 4.2BSD (which was released in 1986, several years before the FreeBSD project was created.) The FreeBSD developers simply kept using what was already in the source tree since there were no overriding reason not to. There has been discussions from time to time about replacing Sendmail with some other MTA but the general opinion seems to be that Sendmail works well enough and that changing the standard MTA would be too disruptive for too many people. For those people who prefer to use some other MTA it is not difficult to install one from ports and use it instead of Sendmail.=20 --=20 Erik Trulsson ertr1013@student.uu.se From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 13:32:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 313D316A4E0 for ; Fri, 1 Sep 2006 13:32:22 +0000 (UTC) (envelope-from obrieng@nm.cbc.ca) Received: from mail02.nm.cbc.ca (mail02.nm.cbc.ca [159.33.1.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF70A43D4C for ; Fri, 1 Sep 2006 13:31:22 +0000 (GMT) (envelope-from obrieng@nm.cbc.ca) Received: from hub.cbc.ca (hub.nm.cbc.ca [192.168.1.119]) by mail02.nm.cbc.ca (Postfix) with ESMTP id F1BBB274469 for ; Fri, 1 Sep 2006 09:31:07 -0400 (EDT) Received: from localhost (localhost.cbc.ca [127.0.0.1]) by hub.cbc.ca (Postfix) with ESMTP id C8F7F6A47D for ; Fri, 1 Sep 2006 09:31:07 -0400 (EDT) Received: from hub.cbc.ca ([127.0.0.1]) by localhost (hub.cbc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 78042-01-20 for ; Fri, 1 Sep 2006 09:31:06 -0400 (EDT) Received: from [1.151.32.16] (intd.cbc.ca [159.33.1.75]) by hub.cbc.ca (Postfix) with ESMTP id A562E6A47A for ; Fri, 1 Sep 2006 09:31:06 -0400 (EDT) Message-ID: <44F8361A.8020507@nm.cbc.ca> Date: Fri, 01 Sep 2006 09:31:06 -0400 From: Gabriel O'Brien User-Agent: Thunderbird 1.5.0.5 (X11/20060828) MIME-Version: 1.0 To: FreeBSD User List References: <20060901115424.GA63532@medea.martinmoeller.homeip.net> <20060901125631.GA92179@owl.midgard.homeip.net> In-Reply-To: <20060901125631.GA92179@owl.midgard.homeip.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at hub.cbc.ca Subject: Re: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 13:32:22 -0000 Erik Trulsson wrote: > For those people who prefer to use some other MTA it is not difficult to > install one from ports and use it instead of Sendmail. Indeed. While I do sometimes question the sense of defaulting to sendmail due to its baggage, it's so trivial to change the MTA that it's largely a non-issue. In the interest of being close to a "reference implementation" of BSD it does make some sense as a default even if I'd never run it on a prod box myself. It hardly seems worth the churn. Insert $0.02 here. cheers, Gabriel -- Gabriel O'Brien IT Analyst, MPS-EN-CBC.ca w: 416-205-8740 m: 416-996-5679 From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 13:34:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A00A016A4DF for ; Fri, 1 Sep 2006 13:34:43 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out4.blueyonder.co.uk (smtp-out4.blueyonder.co.uk [195.188.213.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3682043D6A for ; Fri, 1 Sep 2006 13:34:42 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.142] (helo=anti-virus02-09) by smtp-out4.blueyonder.co.uk with smtp (Exim 4.52) id 1GJ9AP-0006FQ-81; Fri, 01 Sep 2006 14:34:41 +0100 Received: from [82.41.35.166] (helo=[192.168.0.2]) by asmtp-out2.blueyonder.co.uk with esmtp (Exim 4.52) id 1GJ9AN-000825-BK; Fri, 01 Sep 2006 14:34:39 +0100 Message-ID: <44F836EF.4050302@dial.pipex.com> Date: Fri, 01 Sep 2006 14:34:39 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.13) Gecko/20060515 X-Accept-Language: en MIME-Version: 1.0 To: Jim Stapleton References: <80f4f2b20608310912l45efdedcxc72c67f6adab562c@mail.gmail.com> <44F70E11.7020203@dial.pipex.com> <200608311838.55754.freebsd@dfwlp.com> <80f4f2b20609010253g353a2f9cg9335949217951e4d@mail.gmail.com> In-Reply-To: <80f4f2b20609010253g353a2f9cg9335949217951e4d@mail.gmail.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: can someone point me to some good and descriptive VPN documentation for my use? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 13:34:43 -0000 Jim Stapleton wrote: > d'oh, thanks, I was looking for vpn in "net" and "net-mgmt", didn't > think of grepping the security directory. cd /usr/ports; make search name=vpn --Alex From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 20:37:06 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 F406916A4DA for ; Tue, 29 Aug 2006 20:37:05 +0000 (UTC) (envelope-from badaei@yahoo.com) Received: from web55205.mail.re4.yahoo.com (web55205.mail.re4.yahoo.com [206.190.58.169]) by mx1.FreeBSD.org (Postfix) with SMTP id 8A2BF43D4C for ; Tue, 29 Aug 2006 20:37:05 +0000 (GMT) (envelope-from badaei@yahoo.com) Received: (qmail 62001 invoked by uid 60001); 29 Aug 2006 20:37:05 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:In-Reply-To:MIME-Version:Content-Type; b=aLj8NtByO1gXxDXQ9doxa+z3poYMjax6GLkSB7umpNEvf0wMQbDJDbm/Pu7voD3k/qhWSG+aBjbe+SzP+iY/Xtq51EsL1C8jf4JHPiDSpIaHbvpMhjsqkGi18c93bD/sN4LsCVYK2OJajchhHKfgm4CT0HaqwB5OHrRp/TLx6CQ= ; Message-ID: <20060829203705.61999.qmail@web55205.mail.re4.yahoo.com> Received: from [72.134.0.217] by web55205.mail.re4.yahoo.com via HTTP; Tue, 29 Aug 2006 13:37:05 PDT Date: Tue, 29 Aug 2006 13:37:05 -0700 (PDT) From: babak badaei To: freebsd-questions@FreeBSD.ORG In-Reply-To: <200608291014.k7TAEerO008049@lurza.secnetix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailman-Approved-At: Fri, 01 Sep 2006 13:37:56 +0000 Cc: Subject: Re: What could cause /DEV to clear out? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: babak badaei List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 20:37:06 -0000 Hello, Thanks for the reply! Here is the information requested below: UNAME -A: FreeBSD 4.7-RC FreeBSD 4.7-RC #0: Sun Apr 13 21:43:57 PDT 2003 LS -al: drwxr-xr-x 2 root wheel 18432 Aug 28 03:01 . drwxr-xr-x 22 root wheel 1024 Apr 7 16:32 .. crw-r----- 1 root operator 13, 0x00030002 Sep 17 2002 da0s2c crw-r----- 2 root operator 13, 0x00030003 Sep 17 2002 da0s2d lrwxr-xr-x 1 root wheel 12 Sep 17 2002 log -> /var/run/log lrwxr-xr-x 1 root wheel 13 Sep 17 2002 mouse -> /dev/sysmouse -rw-rw-r-- 1 root wheel 115 Aug 29 03:01 null crw-r----- 1 root operator 13, 0x00030001 Sep 17 2002 rda0s2b crw-r----- 2 root operator 13, 0x00030003 Sep 17 2002 rda0s2d -rw-r--r-- 1 root wheel 0 Aug 29 03:01 stderr MOUNT | GREP dev: /dev/da0s1a on / (ufs, local) /dev/da0s2h on /home (ufs, local, soft-updates) /dev/da0s2e on /usr (ufs, local, soft-updates) /dev/da0s2f on /var (ufs, local, soft-updates) /dev/da0s2g on /var/tmp (ufs, local, soft-updates) Any ideas? Can I somehow restore the missing files? What could cause this? I am certain I did not do it; no one else has root. Thank you. ----- Original Message ---- From: Oliver Fromme To: freebsd-arch@FreeBSD.ORG; freebsd-questions@FreeBSD.ORG; babak badaei Sent: Tuesday, August 29, 2006 3:14:40 AM Subject: Re: What could cause /DEV to clear out? babak badaei wrote: > Today I was not able to log into my machine using SSH. I got this > following message "Server refused to allocate pty". I was, somewhat > fortunately, able to log using SCP. So SCP works. You can use "ssh -T" which disables allocation of a pty (pseudo tty). You probably won't be able to use full- screen programs (such as vi), and maybe your shell's editing functions won't work (depending on the shell), but at least you will get a shell prompt. See the ssh(1) manual page for details. > The file system > looked good for the most part; until I checked out "/DEV". Almost > everything was GONE! Including MAKEDEV. Not sure what to do. What version of FreeBSD are you running? FreeBSD 5 and 6 use DEVFS, so MAKEDEV isn't required anymore (it wouldn't work anyway). If you're still running FreeBSD 4, then there should be /dev/MAKEDEV. > Possible clue: Before this happened, last time I was actually > logged in via SSH, I ran a dropdb command on one of my postgres > databases and got an error message saying I did not have permission > to "/DEV/NULL". Not sure what to do, I set permissions to allow write > on "NULL". I have done "dropdb" many times before and had never seen > that message. Please give the output from these commands: uname -a ls -al /dev mount | grep dev > I hope this is in the right forum. This is the closest thing to right > place for this question in my mind but if this is in the wrong place > please direct me to the right forum. Why do you think -arch would be the most appropriate place? This should rather go to -questions (I've redirected it). Best regards Oliver -- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "anyone new to programming should be kept as far from C++ as possible; actually showing the stuff should be considered a criminal offence" -- Jacek Generowicz _______________________________________________ freebsd-arch@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-arch To unsubscribe, send any mail to "freebsd-arch-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Tue Aug 29 21:19:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D9C6616A4DE for ; Tue, 29 Aug 2006 21:19:08 +0000 (UTC) (envelope-from ljzimmerman@mindspring.com) Received: from elasmtp-mealy.atl.sa.earthlink.net (elasmtp-mealy.atl.sa.earthlink.net [209.86.89.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B14F43D49 for ; Tue, 29 Aug 2006 21:19:08 +0000 (GMT) (envelope-from ljzimmerman@mindspring.com) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=dk20050327; d=mindspring.com; b=Lva0rliOU6pwoB4DPvnssV3KPlSAwPNAIhdNRSG65KBnTYQpTq8SF2H5npFzYuS6; h=Received:From:To:Subject:Date:MIME-Version:Content-Type:X-Mailer:X-MimeOLE:Thread-Index:Message-ID:X-ELNK-Trace:X-Originating-IP; Received: from [67.41.202.96] (helo=SOLO) by elasmtp-mealy.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1GIAzD-0004Ht-7j for freebsd-questions@freebsd.org; Tue, 29 Aug 2006 17:19:07 -0400 From: "Laurie Zimmerman" To: Date: Tue, 29 Aug 2006 15:19:10 -0600 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Thread-Index: AcbLsMSgz2RFJmF2Q12Zw3wL/7HU+Q== Message-ID: X-ELNK-Trace: 7af7ba7d06856c32a8c1b1165d75cb81416dc04816f3191c691d51fa635a7962fbc544eadcb24d3dc9c3e3df0488b9f5350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 67.41.202.96 X-Mailman-Approved-At: Fri, 01 Sep 2006 13:38:24 +0000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: MONOWALL WAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2006 21:19:08 -0000 Hi, I have a client who would like to share a DSL connection with a neighboring office. I would like to put my clients network (they only need to share Internet) on a separate IP network behind a monowall. My question is, will monowall allow a private address (the LAN IP of router) to be its WAN address? Thanks Laurie From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 01:16:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AF50716A4DD for ; Wed, 30 Aug 2006 01:16:57 +0000 (UTC) (envelope-from root@rithy4u.net) Received: from ix.khmerserver.net (ygmsmtp.khmerserver.net [203.82.224.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41FA943D5A for ; Wed, 30 Aug 2006 01:16:52 +0000 (GMT) (envelope-from root@rithy4u.net) Received: from khsvrpckh001cio ([192.168.1.112]) by ix.khmerserver.net (rithy4uMailServer) with SMTP id k7U1Ahmu025958 for ; Wed, 30 Aug 2006 08:10:47 +0700 (ICT) (envelope-from root@rithy4u.net) YGLCResent-Message-Id: <200608300110.k7U1Ahmu025958@ix.khmerserver.net> YGLCMessage-Id: <200608300110.k7U1Ahmu025958@ix.khmerserver.net> Message-ID: <000a01c6cbd1$80ff3490$7001a8c0@khmerserver.net> From: "rithy4u- CEO" To: Date: Wed, 30 Aug 2006 08:13:25 +0700 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-YGMC-MailScanner-Information: Please contact YGMC IT Dept X-YGMC-MailScanner: Found to be clean X-YGMC-MailScanner-From: root@rithy4u.net X-YGMC-MailScanner-To: freebsd-questions@freebsd.org X-Spam-Status: No X-Mailman-Approved-At: Fri, 01 Sep 2006 13:39:03 +0000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: FreeBSD router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 01:16:57 -0000 Dear all, I want to know, between Cisco Router and a compiled of FreeBSD Router whi= ch one is better? Is it posible to build a Router Appliance on FreeBSD inst= ead of using ISO of Cisco? Richard Ben, CIO --=20 This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From owner-freebsd-questions@FreeBSD.ORG Wed Aug 30 10:43:12 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 72C0016A4DD for ; Wed, 30 Aug 2006 10:43:12 +0000 (UTC) (envelope-from capelo2@yahoo.com) Received: from web54505.mail.yahoo.com (web54505.mail.yahoo.com [206.190.49.155]) by mx1.FreeBSD.org (Postfix) with SMTP id DFF6B43D55 for ; Wed, 30 Aug 2006 10:43:11 +0000 (GMT) (envelope-from capelo2@yahoo.com) Received: (qmail 97614 invoked by uid 60001); 30 Aug 2006 10:43:11 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=56vFzzLKjUkKY+Vzwy9wf9YVf28auZ40tJ4GeNgGwGpuVKan0U5MvRsCZ9yFXFRhd+dtRHwFsB1qkAPcbSiVHW0Qlw+bxXtNeZnwds3TojUYluyZEM5IZFPCyPtjSfmtAlor6YcLoiTW7ZlvlCkhu8WmZ99oQ0PN8s03huaNp7I= ; Message-ID: <20060830104311.97612.qmail@web54505.mail.yahoo.com> Received: from [80.87.94.135] by web54505.mail.yahoo.com via HTTP; Wed, 30 Aug 2006 03:43:11 PDT Date: Wed, 30 Aug 2006 03:43:11 -0700 (PDT) From: Benjamin Quaynor To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 X-Mailman-Approved-At: Fri, 01 Sep 2006 13:39:18 +0000 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Please Help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 10:43:12 -0000 Hello, I need a command line to start my services. Best Regards, Ben --------------------------------- Do you Yahoo!? Get on board. You're invited to try the new Yahoo! Mail. From owner-freebsd-questions@FreeBSD.ORG Thu Aug 31 14:22:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7A90E16A4DA for ; Thu, 31 Aug 2006 14:22:54 +0000 (UTC) (envelope-from backyard1454-bsd@yahoo.com) Received: from web83112.mail.mud.yahoo.com (web83112.mail.mud.yahoo.com [216.252.101.41]) by mx1.FreeBSD.org (Postfix) with SMTP id 11C3C43D45 for ; Thu, 31 Aug 2006 14:22:54 +0000 (GMT) (envelope-from backyard1454-bsd@yahoo.com) Received: (qmail 49806 invoked by uid 60001); 31 Aug 2006 14:22:53 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=isakFbMdmdZJmvrCxpAK7dLHV31jBcSYdQxnuGZhSn8ES4x+1b73BiNyA69MGAdV0Jmp0PUy+zT2QGo/PXa/R+hiiE1HqQiwr8S/PcdDMXNTnRhuFYozt3ZxJWMeYyMxu6DQXY/baMM5W3uNy+kz0pfNp/3u0JBjYtmHTj4CK0E= ; Message-ID: <20060831142253.49804.qmail@web83112.mail.mud.yahoo.com> Received: from [63.240.228.37] by web83112.mail.mud.yahoo.com via HTTP; Thu, 31 Aug 2006 07:22:53 PDT Date: Thu, 31 Aug 2006 07:22:53 -0700 (PDT) From: backyard To: Jordi Carrillo , skylar@cs.earlham.edu In-Reply-To: <94ff3700608310302n15217834icb82dc320480a330@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Fri, 01 Sep 2006 13:44:30 +0000 Cc: backyard1454-bsd@yahoo.com, Michal Mertl , phoenix.lists@gmail.com, freebsd-questions@freebsd.org Subject: Re: SMP detection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: backyard1454-bsd@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 14:22:54 -0000 --- Jordi Carrillo wrote: > 2006/8/31, Skylar Thompson : > > > > Michal Mertl wrote: > > > No! Kernel threads (e.g. handling interrupts) > aren't that much different > > > to normal processes. > > > > > > Logical CPUs on a single HTT capable CPU share > most of the CPU logic, > > > especially all the external stuff (handling > interrupts). Scheduling > > > handling of interrupts on the > "secondary/logical" core wouldn't > > > probably help performance at all (if that is at > all possible). > > > > > > > Could you clarify note 20031022 in > /usr/src/UPDATING? It states that HTT > > CPUs are used for interrupts if they are detected, > even if they aren't > > used by regular processes. Was this something that > just showed up in > > pre-6.x releases? > > > > -- > > -- Skylar Thompson (skylar@cs.earlham.edu) > > -- http://www.cs.earlham.edu/~skylar/ > > > > > > > > > > Another question that's wondering me is why > FreeBSD with the SMP kernel > the gnome system monitor (Applications->System > Tools->System Monitor) only > shows one CPU when Linux with a SMP kernel shows two > CPUs > > > -- > http://jordilin.wordpress.com > I'm assuming you talking about an HT SMP scenario... Linux is running the second core, but *BSD will not unless you tell it too. I'll check with my dually once I get home but I'm fairly certain even if your running an SMP kernel if the other CPU isn't used, it isn't going to tell you what processes are running on it, because nothing is scheduled to run on it. Linux doesn't care about the possible exploits and so by default runs both HT cores. Look at it like this I have two hands, I could put two P99C-ASs in them, but if only one has a magazine in it why and I going to claim I got two pieces??? Basically by not setting the "...hyperthreading_allowed..." variable you have removed the magazine from one of your cores... But I will check because I seem to recall there being some kind of issue like this with my 5.4 box that I just kind of shrugged off at the time. I thought it was with KDE not gnome though... It should show both or all your cores and what is running. But it can't show you what is running on a CPU the kernel has disavowed. -brian From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 13:45:11 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 C65C716A4DD for ; Fri, 1 Sep 2006 13:45:11 +0000 (UTC) (envelope-from obrieng@nm.cbc.ca) Received: from mail02.nm.cbc.ca (mail02.nm.cbc.ca [159.33.1.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5A9743D79 for ; Fri, 1 Sep 2006 13:45:03 +0000 (GMT) (envelope-from obrieng@nm.cbc.ca) Received: from hub.cbc.ca (hub.nm.cbc.ca [192.168.1.119]) by mail02.nm.cbc.ca (Postfix) with ESMTP id 5641B274215 for ; Fri, 1 Sep 2006 09:45:03 -0400 (EDT) Received: from localhost (localhost.cbc.ca [127.0.0.1]) by hub.cbc.ca (Postfix) with ESMTP id 3518A6A47D for ; Fri, 1 Sep 2006 09:45:03 -0400 (EDT) Received: from hub.cbc.ca ([127.0.0.1]) by localhost (hub.cbc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 77690-02-4 for ; Fri, 1 Sep 2006 09:45:02 -0400 (EDT) Received: from [1.151.32.16] (intd.cbc.ca [159.33.1.75]) by hub.cbc.ca (Postfix) with ESMTP id 93DB86A47A for ; Fri, 1 Sep 2006 09:45:02 -0400 (EDT) Message-ID: <44F8395D.7090608@nm.cbc.ca> Date: Fri, 01 Sep 2006 09:45:01 -0400 From: Gabriel O'Brien User-Agent: Thunderbird 1.5.0.5 (X11/20060828) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org References: <20060830104311.97612.qmail@web54505.mail.yahoo.com> In-Reply-To: <20060830104311.97612.qmail@web54505.mail.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at hub.cbc.ca Cc: Subject: Re: Please Help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 13:45:11 -0000 You should try to post a bit more information, what "services"? Which version of FreeBSD? Take a look at 'man rc.conf' and the scripts in /etc/rc.d and /usr/local/etc/rc.d You'll probably want something like '/etc/rc.d/mydaemon start' cheers, Gabriel -- Gabriel O'Brien IT Analyst, MPS-EN-CBC.ca w: 416-205-8740 m: 416-996-5679 Benjamin Quaynor wrote: > Hello, > > > I need a command line to start my services. > > > Best Regards, > > Ben From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 13:54:05 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A757C16A4E5 for ; Fri, 1 Sep 2006 13:54:05 +0000 (UTC) (envelope-from david.robillard@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DF5A43D76 for ; Fri, 1 Sep 2006 13:54:03 +0000 (GMT) (envelope-from david.robillard@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so985142uge for ; Fri, 01 Sep 2006 06:54:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Nit5D7Blzv2lB2ds1L+kbJzbdAtoo94Wtd3rgWnPNQrfMc14VIjZAzOXKs8XcSlHH0w3TanRhcL9Y59LrJlwAlYxGVaQZWda+Nv1ZUjSZn4q94lqBFpcAiPk/jQSFJzKM98Vmll0VkPMU6nw+TErd1+WG7m21tvQb4ps9Iv31uY= Received: by 10.66.219.11 with SMTP id r11mr1204899ugg; Fri, 01 Sep 2006 06:54:02 -0700 (PDT) Received: by 10.67.106.17 with HTTP; Fri, 1 Sep 2006 06:54:02 -0700 (PDT) Message-ID: <226ae0c60609010654o51671db1id6e394be7bd30ef7@mail.gmail.com> Date: Fri, 1 Sep 2006 09:54:02 -0400 From: "David Robillard" To: "Elliot Finley" In-Reply-To: <0b1301c6cd33$fb77dac0$37cba1cd@emerytelcom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <226ae0c60608311017j1a4bea9cg6dbaa12414d74716@mail.gmail.com> <0a7c01c6cd26$a76b5b80$37cba1cd@emerytelcom.com> <226ae0c60608311108l263442b6j122835ba73ff645c@mail.gmail.com> <0b1301c6cd33$fb77dac0$37cba1cd@emerytelcom.com> Cc: Jonathan McKeown , FreeBSD Questions Mailing List Subject: Re: Mirroring: gvinum or gmirror? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 13:54:05 -0000 On 8/31/06, Elliot Finley wrote: > Well yes, if you do it this way, you are correct. Why not just install the > OS on the smaller drive, skip the dump step and just use the installed drive > as the first drive in your mirror. That's how I've been doing it and it > works great. > > I've got a write-up of the steps required to do this if you or anyone else > needs them. I also routinely disconnect one of the drives in my mirror > before a major upgrade to the OS or ports so that if I mess it up, I can > boot back to the previous state. I have a write-up of the steps needed to > do this remotely over ssh (again, if you or anyone else needs them). > > Elliot Sounds like a good idea indeed. I've always followed Ralf S. Engelschall's instructions at http://people.freebsd.org/~rse/mirror/ which involves using dump(8) to transfer the data onto the second disk once it's setup as a gmirror provider. I must admit I never thought back on those instructions because they work very well. It was only recently that I had to deal with older hardware for which I had to salvage some old 4Gb disk drives. So, if you don't mind, I would very much appreciate if you could share your documentation with me. In case you're interested, I can offer you a space on my website should you want to have them online. Cheers, David -- David Robillard UNIX systems administrator & Oracle DBA CISSP, RHCE & Sun Certified Security Administrator Montreal: +1 514 966 0122 From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 14:04:49 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C35C516A4DA for ; Fri, 1 Sep 2006 14:04:49 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A60443D6A for ; Fri, 1 Sep 2006 14:04:49 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 952 invoked from network); 1 Sep 2006 14:04:48 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 1 Sep 2006 14:04:48 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 9B53D28449; Fri, 1 Sep 2006 10:04:46 -0400 (EDT) To: "freebsd neophyte" References: <4cfd6b120608291618r6c6010b2y5379d6a0d527de7e@mail.gmail.com> <44k64q9s61.fsf@be-well.ilk.org> <4cfd6b120608301135o4adbe66fi9676607d343fec7b@mail.gmail.com> From: Lowell Gilbert Date: Fri, 01 Sep 2006 10:04:45 -0400 In-Reply-To: <4cfd6b120608301135o4adbe66fi9676607d343fec7b@mail.gmail.com> (freebsd neophyte's message of "Wed, 30 Aug 2006 11:35:00 -0700") Message-ID: <44lkp3u1he.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: problems with creating bind9 under a jail (make: don't know how to make /usr/jail/bind9/usr/lib/libc.a. Stop) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 14:04:49 -0000 "freebsd neophyte" writes: > as for pulling from the FTP server. what i wanted to say was that i > booted from a CD, but used an FTP server as my install medium. as for > cvsup, i used the following: /usr/share/examples/cvsup/stable-supfile. > as for the existing source tree, i used sysinstall to add all the > sources, and then i used cvsup to update them. Perhaps you failed to "adopt" them, as recommended in the cvsup FAQ on www.cvsup.org? From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 14:05:49 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B811616A4DA for ; Fri, 1 Sep 2006 14:05:49 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail8.sea5.speakeasy.net (mail8.sea5.speakeasy.net [69.17.117.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A5A143D73 for ; Fri, 1 Sep 2006 14:05:48 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 26093 invoked from network); 1 Sep 2006 14:05:48 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail8.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 1 Sep 2006 14:05:48 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 1103328449; Fri, 1 Sep 2006 10:05:46 -0400 (EDT) To: scuba@centroin.com.br References: <20060830161613.N91154@trex.centroin.com.br> From: Lowell Gilbert Date: Fri, 01 Sep 2006 10:05:46 -0400 In-Reply-To: <20060830161613.N91154@trex.centroin.com.br> (scuba@centroin.com.br's message of "Wed, 30 Aug 2006 16:25:54 -0300 (BRT)") Message-ID: <44hczru1fp.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: mkisofs: out of memory X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 14:05:49 -0000 scuba@centroin.com.br writes: > Hi all, > > I'm trying to write a DVD-RW with a directory created with > rsnapshot, but there are some problem with mkisofs: "Not enough > memory" > > # mkisofs -R -J -o /data/rsnap.iso /data/.snapshots > mkisofs: Cannot allocate memory. Not enough memory > > The machine has more then 350MB of free memory and 1GB of > swap, but mkisofs exausts memory and start to use swap when the > problem happen. > The volume I'm trying to copy has 4 GB. > The same problem happen with growisofs, and K3b front end. > > System FreeBSD 5.4. > Any clue? limits(1)? From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 14:17:19 2006 Return-Path: X-Original-To: questions@freebsd.org 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 E817E16A4DA for ; Fri, 1 Sep 2006 14:17:19 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9115743D45 for ; Fri, 1 Sep 2006 14:17:19 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 13761 invoked from network); 1 Sep 2006 14:17:19 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 1 Sep 2006 14:17:18 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 69F9828449; Fri, 1 Sep 2006 10:17:18 -0400 (EDT) To: abc@ai1.anchorage.mtaonline.net References: <200609010121.k811LXog001366@en26.ai1.anchorage.mtaonline.net> From: Lowell Gilbert Date: Fri, 01 Sep 2006 10:17:18 -0400 In-Reply-To: <200609010121.k811LXog001366@en26.ai1.anchorage.mtaonline.net> (abc@ai1.anchorage.mtaonline.net's message of "Fri, 1 Sep 2006 01:21:33 GMT") Message-ID: <44d5afu0wh.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions Subject: Re: VIA C3 - cant boot CD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 14:17:20 -0000 abc@ai1.anchorage.mtaonline.net writes: > i have an ML6000 (no floppy) and have downloaded > the 4.11 mini-iso image, and burned it to a CD-RW. > > CPU: VIA C3 Nehemiah (666.55-MHz 686-class CPU) > > after rebooting, the CD is found, and a boot > attempt is made. within 5 seconds, the kernel > locks up after about 3 seconds of the > kernel data+234238 text+23432 stuff and the > /-\|/-\ twirling prompt, leaving a "/" as the > first character on the next line. > > the ISO is the exact size it should be, and > i could "gzip -t mfsroot.gz" in the /boot > directory without error - so i guess it's > a good image. i am running 4.10 currently, > and have no boot problems off the hard drive. > > any ideas as to what could cause this lock-up > at boot time? i thought the ISO's are made with > the mkisofs --no-emul-boot, yet the CD is recognized > as a 2.88 floppy, and boots 0:fd(0,a)/boot/loader. > i never booted off CD's before, and don't know > what i should expect exactly. I have the same board, and it booted 6.1 just fine from CD. If I understand correctly, you're saying that it also booted 4.10 fine from CD. In that case, my first suspicion would be your particular CD. If you want to test the downloaded image, use checksums; the tests you did are too haphazard to give full confidence. Note that CD booting techniques have changed a few times over the years as the standards have changed. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 15:06:17 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8E87E16A4DA for ; Fri, 1 Sep 2006 15:06:17 +0000 (UTC) (envelope-from mistry.7@osu.edu) Received: from mail.united-ware.com (am-productions.biz [69.61.164.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 159A943D46 for ; Fri, 1 Sep 2006 15:06:16 +0000 (GMT) (envelope-from mistry.7@osu.edu) Received: from [192.168.1.100] (cpe-24-210-75-119.columbus.res.rr.com [24.210.75.119]) (authenticated bits=0) by mail.united-ware.com (8.13.6/8.13.6) with ESMTP id k81FIGrA006297 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 1 Sep 2006 11:18:23 -0400 (EDT) (envelope-from mistry.7@osu.edu) From: Anish Mistry To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2006 11:06:25 -0400 User-Agent: KMail/1.9.1 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2189337.27cqqvPgH0"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200609011106.47921.mistry.7@osu.edu> X-Spam-Status: No, score=1.7 required=5.0 tests=BAYES_05,MYFREEBSD2, RCVD_IN_NJABL_DUL,SPF_HELO_SOFTFAIL,SPF_SOFTFAIL autolearn=no version=3.1.3 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on mail.united-ware.com X-Virus-Scanned: ClamAV 0.88.4/1783/Thu Aug 31 16:56:17 2006 on mail.united-ware.com X-Virus-Status: Clean Subject: Symbolic Links in /dev of a jail X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 15:06:17 -0000 --nextPart2189337.27cqqvPgH0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline In my quest to get asterisk+iaxmodem+hylafax working together in a=20 jail I've run into one final roadblock. I can't seem to figure out=20 how to create a symbolic link (ln -s doesn't work) in /dev in the=20 jail environment while in the jailed environment. When trying to=20 create a link with ln I receive: ln -s somedev targetdev ln: targetdev: Operation not permitted Adding a link entry to devfs.conf in the jail fails too since it=20 receives the same error. I can create a link in the jailed /dev from=20 the host environment, so there seems to be some restriction on=20 creating links in /dev while in the jail. The reason I need to be=20 able to do this is that iaxmodem needs to create a /dev/ttyIAX device=20 to point to the correct ttyp0 device when it starts in the jail. Any suggestions would be appreciated. Thanks, =2D-=20 Anish Mistry --nextPart2189337.27cqqvPgH0 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBE+EyHxqA5ziudZT0RAj1mAKDOiqSaku7GGSUAgNdyvTA9ykiKdgCg3851 KlcdRDFLWVGdi5s0YT23avU= =9+fA -----END PGP SIGNATURE----- --nextPart2189337.27cqqvPgH0-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 15:18:04 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 5BEDF16A4E8 for ; Fri, 1 Sep 2006 15:18:04 +0000 (UTC) (envelope-from jerrymc@msu.edu) Received: from sys12.mail.msu.edu (sys12.mail.msu.edu [35.9.75.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BB6E43D68 for ; Fri, 1 Sep 2006 15:18:01 +0000 (GMT) (envelope-from jerrymc@msu.edu) Received: from jerrymc by sys12.mail.msu.edu with local (Exim 4.52 #1) id 1GJAmO-0007Bl-Ru; Fri, 01 Sep 2006 11:18:00 -0400 References: <20060830104311.97612.qmail@web54505.mail.yahoo.com> In-Reply-To: <20060830104311.97612.qmail@web54505.mail.yahoo.com> From: "Jerold McAllister" To: Benjamin Quaynor Date: Fri, 01 Sep 2006 11:17:53 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: X-Virus: None found by Clam AV Cc: freebsd-questions@FreeBSD.org Subject: Re: Please Help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 15:18:04 -0000 Benjamin Quaynor writes: > Hello, > > I need a command line to start my services. > What services? What are you really asking? Do you want to know what command to type in (for what things?) or do you want a command prompt where you can type in a command? Etc, etc, etc, Without some more information, it is impossible to make any suggestions without much more information. ////jerry > Best Regards, > > Ben > > _______________________________________________ > 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 Fri Sep 1 15:29:17 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 AC89816A4E0 for ; Fri, 1 Sep 2006 15:29:17 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D0EC43D77 for ; Fri, 1 Sep 2006 15:29:17 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 43A2EDA1443 for ; Fri, 1 Sep 2006 11:29:16 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Fri, 01 Sep 2006 11:29:16 -0400 X-Sasl-enc: 4N1yfYq55V8XTPB46Py/NLcGmNC3771yNI54er8sAfXi 1157124556 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 6DB2E10B4F for ; Fri, 1 Sep 2006 11:29:16 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2006 16:29:12 +0100 User-Agent: KMail/1.9.3 References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> <44F7E18F.9040505@voidcaptain.com> <200609011341.46942.list-freebsd-2004@morbius.sent.com> In-Reply-To: <200609011341.46942.list-freebsd-2004@morbius.sent.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609011629.13700.list-freebsd-2004@morbius.sent.com> Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 15:29:17 -0000 On Friday 01 September 2006 13:41, RW wrote: > On Friday 01 September 2006 08:30, Pete Slagle wrote: > > RW wrote: > > > Has anyone got this working? If you just run the binary it opens and > > > can be be configured to read an imap mailbox, but a lot of the error > > > and warning pop-up boxes are missing text and buttons. There are > > > probably other problems, but without the error messages it's hard to > > > say. > > > > Is this relevant? > > Not any more, but that wiki entry was created several hours after I posted. Sorry, I thought you were questioning the relevance to FreeBSD (since the problem exists in Linux too), but on reflection I see you were asking if the link is relevant. > > http://trac.mulberrymail.com/mulberry/wiki/linuxproblems > > That fixed the problems with text. I hope a proper package can be made out > of this - having installed files and user data under ~/.mulberry would be a > pain to maintain. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 15:37:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 095D416A4DD for ; Fri, 1 Sep 2006 15:37:19 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from smtp1.utdallas.edu (smtp1.utdallas.edu [129.110.10.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 394D643D66 for ; Fri, 1 Sep 2006 15:37:14 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from utd59514.utdallas.edu (utd59514.utdallas.edu [129.110.3.28]) by smtp1.utdallas.edu (Postfix) with ESMTP id 579F6388E6A for ; Fri, 1 Sep 2006 10:37:09 -0500 (CDT) Date: Fri, 01 Sep 2006 10:33:58 -0500 From: Paul Schmehl To: freebsd-questions@freebsd.org Message-ID: In-Reply-To: <200609011341.46942.list-freebsd-2004@morbius.sent.com> References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> <44F7E18F.9040505@voidcaptain.com> <200609011341.46942.list-freebsd-2004@morbius.sent.com> X-Mailer: Mulberry/4.0.5 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========137F34E32F16E7AA116A==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 15:37:19 -0000 --==========137F34E32F16E7AA116A========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Friday, September 01, 2006 13:41:45 +0100 RW=20 wrote: > On Friday 01 September 2006 08:30, Pete Slagle wrote: >> RW wrote: >> > Has anyone got this working? If you just run the binary it opens and >> > can be be configured to read an imap mailbox, but a lot of the error >> > and warning pop-up boxes are missing text and buttons. There are >> > probably other problems, but without the error messages it's hard to >> > say. >> >> Is this relevant? > > Not any more, but that wiki entry was created several hours after I > posted. > >> http://trac.mulberrymail.com/mulberry/wiki/linuxproblems > > That fixed the problems with text. I hope a proper package can be made > out of this - having installed files and user data under ~/.mulberry > would be a pain to maintain. > I'm working on an update to the port, which I will submit to the = maintainer. In the meantime, the problem is that you need to have the xml files in the=20 Resources directory in a directory of the same name under your ~/.mulberry=20 directory, but it's not created when you initiate Mulberry for the first=20 time. You can easily correct this by creating a symlink: ls -s /usr/local/lib/mulberry/Resources/ ~/.mulberry/ That will solve your problem. Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========137F34E32F16E7AA116A==========-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 15:55:26 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 938F716A4DA for ; Fri, 1 Sep 2006 15:55:26 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 274FE43D46 for ; Fri, 1 Sep 2006 15:55:26 +0000 (GMT) (envelope-from joao.barros@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1297866pye for ; Fri, 01 Sep 2006 08:55:25 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=pmjtACS4piu6RvpRNvp+0cJKpmbGkw4aWCJDqoX6yrq9GRRKi/TiAN4JBlQAdkuLkX2TNvQJU6lcG6ZvWFigoABEIOGALS5Tt8FBA0g1R9wf7rXAsSaDl/riE/UFDQDDl6K7YzYEexcdiwgxtV5xZYdnm//L6RBh6TgCXGcdE0Y= Received: by 10.35.119.11 with SMTP id w11mr3277638pym; Fri, 01 Sep 2006 08:55:25 -0700 (PDT) Received: by 10.35.114.2 with HTTP; Fri, 1 Sep 2006 08:55:25 -0700 (PDT) Message-ID: <70e8236f0609010855t1a517f33y4702a106b9f74540@mail.gmail.com> Date: Fri, 1 Sep 2006 16:55:25 +0100 From: "Joao Barros" To: "rithy4u- CEO" In-Reply-To: <000a01c6cbd1$80ff3490$7001a8c0@khmerserver.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000a01c6cbd1$80ff3490$7001a8c0@khmerserver.net> Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 15:55:26 -0000 On 8/30/06, rithy4u- CEO wrote: > Dear all, > > I want to know, between Cisco Router and a compiled of FreeBSD Router which one is better? Is it posible to build a Router Appliance on FreeBSD instead of using ISO of Cisco? > > > Richard Ben, CIO I think to best answer your question one needs to know what that router needs to do and how much do you want to spend on it. -- Joao Barros From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 16:10:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4068416A4DE for ; Fri, 1 Sep 2006 16:10:51 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id 001C843D55 for ; Fri, 1 Sep 2006 16:10:48 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so1060381wxd for ; Fri, 01 Sep 2006 09:10:48 -0700 (PDT) Received: by 10.70.7.4 with SMTP id 4mr3938807wxg; Fri, 01 Sep 2006 09:10:48 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id h11sm2665447wxd.2006.09.01.09.10.47; Fri, 01 Sep 2006 09:10:48 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id D518AB905 for ; Fri, 1 Sep 2006 12:10:46 -0400 (EDT) Received: from [192.168.0.4] (boss.seibercom.net [192.168.0.4]) (Authenticated sender: gerard@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTP id 35931B8D6 for ; Fri, 1 Sep 2006 12:10:46 -0400 (EDT) Date: Fri, 01 Sep 2006 12:11:05 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom In-Reply-To: <44F8361A.8020507@nm.cbc.ca> References: <20060901125631.GA92179@owl.midgard.homeip.net> <44F8361A.8020507@nm.cbc.ca> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20060901115919.6B6F.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Mailer: Becky! ver. 2.25 [en] X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 16:10:51 -0000 Gabriel O'Brien wrote: > Indeed. While I do sometimes question the sense of defaulting to > sendmail due to its baggage, it's so trivial to change the MTA that it's > largely a non-issue. In the interest of being close to a "reference > implementation" of BSD it does make some sense as a default even if I'd > never run it on a prod box myself. It hardly seems worth the churn. > > Insert $0.02 here. I agree for the most part. There is an option to install another MTA when installing FBSD. However, it might be nice if there were instructions on how to accomplish the following. 1) Totally shut down Sendmail 2) Changes to periodic.conf 3) How to prevent Sendmail from being built when performing 'buildworld' I know that the documentation does exist, but it is not all centrally located. At least I do not think it is. If Postfix is installed during the installation of FBSD, the end user is not even presented with the necessary items to place in the /etc/rc.conf file. That should be done automatically by the sysinstall process, as well as modifying the periodic.conf and make.conf files. I recently replied to a post on the Postfix forum when a user had installed Postfix when installing FBSD and consequently had no idea why it was not working correctly. I realize that he should have been better informed as to how it was to be configured; however, the sysinstall or if installed via ports, the posts installation routine should have given a more complete description of what is or should be done to complete the installation. Just my 2¢. -- Gerard Seibert gerard@seibercom.net Think about it: The *average* American has one tit and one testicle. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 16:35:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1C25D16A4F0 for ; Fri, 1 Sep 2006 16:35:57 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18EBF43DB9 for ; Fri, 1 Sep 2006 16:33:53 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 7BF87DA1467 for ; Fri, 1 Sep 2006 12:33:33 -0400 (EDT) Received: from heartbeat2.internal ([10.202.2.161]) by frontend3.internal (MEProxy); Fri, 01 Sep 2006 12:33:34 -0400 X-Sasl-enc: r00OPQ63HSXiiuauyFBpeC9p9RtrAIdG4skIgRP1yT67 1157128413 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id D20FFD60C for ; Fri, 1 Sep 2006 12:33:33 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2006 17:33:30 +0100 User-Agent: KMail/1.9.3 References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> <200609011341.46942.list-freebsd-2004@morbius.sent.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609011733.31688.list-freebsd-2004@morbius.sent.com> Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 16:35:57 -0000 On Friday 01 September 2006 16:33, Paul Schmehl wrote: > --On Friday, September 01, 2006 13:41:45 +0100 RW > > wrote: > > On Friday 01 September 2006 08:30, Pete Slagle wrote: > >> RW wrote: > >> > Has anyone got this working? If you just run the binary it opens and > >> > can be be configured to read an imap mailbox, but a lot of the error > >> > and warning pop-up boxes are missing text and buttons. There are > >> > probably other problems, but without the error messages it's hard to > >> > say. > >> > >> Is this relevant? > > > > Not any more, but that wiki entry was created several hours after I > > posted. > > > >> http://trac.mulberrymail.com/mulberry/wiki/linuxproblems > > > > That fixed the problems with text. I hope a proper package can be made > > out of this - having installed files and user data under ~/.mulberry > > would be a pain to maintain. > > I'm working on an update to the port, which I will submit to the > maintainer. > > In the meantime, the problem is that you need to have the xml files in the > Resources directory in a directory of the same name under your ~/.mulberry > directory, but it's not created when you initiate Mulberry for the first > time. > > You can easily correct this by creating a symlink: > > ls -s /usr/local/lib/mulberry/Resources/ ~/.mulberry/ The problem was that extracting Mulberry.tgz produces a hidden .mulberry directory in the current directory, which should be in ~/ before running the binary. I extracted in a temporary location, failed to spot this hidden directory, and just moved the binary to ~/bin/. Removing ~/.mulberry and re-extracting in my home directory fixed the problem. BTW it actually contains plugin and icon directories as well as resources. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 17:02:01 2006 Return-Path: X-Original-To: FreeBSD-questions@FreeBSD.org Delivered-To: FreeBSD-questions@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 645) id 324BE16A4DD; Fri, 1 Sep 2006 17:02:01 +0000 (UTC) To: FreeBSD-questions@FreeBSD.org Message-Id: <20060901170201.324BE16A4DD@hub.freebsd.org> Date: Fri, 1 Sep 2006 17:02:01 +0000 (UTC) From: grog@FreeBSD.ORG (Greg Lehey) Cc: Subject: How to get best results from FreeBSD-questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 17:02:01 -0000 How to get the best results from FreeBSD questions. =================================================== Last update $Date: 2005/08/10 02:21:44 $ This is a regular posting to the FreeBSD questions mailing list. If you got it in answer to a message you sent, it means that the sender thinks that at least one of the following things was wrong with your message: - You left out a subject line, or the subject line was not appropriate. - You formatted it in such a way that it was difficult to read. - You asked more than one unrelated question in one message. - You sent out a message with an incorrect date, time or time zone. - You sent out the same message more than once. - You sent an 'unsubscribe' message to FreeBSD-questions. If you have done any of these things, there is a good chance that you will get more than one copy of this message from different people. Read on, and your next message will be more successful. This document is also available on the web at http://www.lemis.com/questions.html. ===================================================================== Contents: I: Introduction II: How to unsubscribe from FreeBSD-questions III: Should I ask -questions or -hackers? IV: How to submit a question to FreeBSD-questions V: How to answer a question to FreeBSD-questions I: Introduction =============== This is a regular posting aimed to help both those seeking advice from FreeBSD-questions (the "newcomers"), and also those who answer the questions (the "hackers"). Note that the term "hacker" has nothing to do with breaking into other people's computers. The correct term for the latter activity is "cracker", but the popular press hasn't found out yet. The FreeBSD hackers disapprove strongly of cracking security, and have nothing to do with it. In the past, there has been some friction which stems from the different viewpoints of the two groups. The newcomers accused the hackers of being arrogant, stuck-up, and unhelpful, while the hackers accused the newcomers of being stupid, unable to read plain English, and expecting everything to be handed to them on a silver platter. Of course, there's an element of truth in both these claims, but for the most part these viewpoints come from a sense of frustration. In this document, I'd like to do something to relieve this frustration and help everybody get better results from FreeBSD-questions. In the following section, I recommend how to submit a question; after that, we'll look at how to answer one. II: How to unsubscribe from FreeBSD-questions ============================================== When you subscribed to FreeBSD-questions, you got a welcome message from freebsd-questions-request@FreeBSD.ORG. In this message, amongst other things, it told you how to unsubscribe. Here's a typical message: Welcome to the freebsd-questions@freebsd.org mailing list! If you ever want to unsubscribe or change your options (eg, switch to or from digest mode, change your password, etc.), visit your subscription page at: http://lists.freebsd.org/mailman/options/freebsd-questions/me@me.org (obviously, substitute your mail address for "me@me.org"). You can also make such adjustments via email by sending a message to: freebsd-questions-request@freebsd.org with the word 'help' in the subject or body (don't include the quotes), and you will get back a message with instructions. You must know your password to change your options (including changing the password, itself) or to unsubscribe. Normally, Mailman will remind you of your freebsd.org mailing list passwords once every month, although you can disable this if you prefer. This reminder will also include instructions on how to unsubscribe or change your account options. There is also a button on your options page that will email your current password to you. Here's the general information for the list you've subscribed to, in case you don't already have it: FREEBSD-QUESTIONS User questions This is the mailing list for questions about FreeBSD. You should not send "how to" questions to the technical lists unless you consider the question to be pretty technical. Normally, unsubscribing is even simpler than the message suggests: you don't need to specify your mail ID unless it is different from the one which you specified when you subscribed. If Majordomo replies and tells you (incorrectly) that you're not on the list, this may mean one of two things: 1. You have changed your mail ID since you subscribed. That's where keeping the original message from majordomo comes in handy. For example, the sample message above shows my mail ID as grog@lemis.de. Since then, I have changed it to grog@lemis.com. If I were to try to remove grog@lemis.com from the list, it would fail: I would have to specify the name with which I joined. 2. You're subscribed to a mailing list which is subscribed to FreeBSD-questions. If that's the case, you'll have to figure out which one it is and get your name taken off that one. If you're not sure which one it might be, check the headers of the messages you receive from freebsd-questions: maybe there's a clue there. If you've done all this, and you still can't figure out what's going on, send a message to Postmaster@FreeBSD.org, and he will sort things out for you. Don't send a message to FreeBSD-questions: they can't help you. III: Should I ask -questions or -hackers? ========================================= Two mailing lists handle general questions about FreeBSD, FreeBSD-questions and FreeBSD-hackers. In some cases, it's not really clear which group you should ask. The following criteria should help for 99% of all questions, however: If the question is of a general nature, first check whether this isn't a Frequently Asked Question (FAQ). There's a list of these questions at http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/index.html, and also on your own system (once you've installed it) at /usr/share/doc/en/books/faq/index.html. Check there, and if you don't find an answer, ask FreeBSD-questions. Examples might be questions about installing FreeBSD or the use of a particular UNIX utility. If you think the question relates to a bug, but you're not sure, or you don't know how to look for it, send the message to FreeBSD-questions. If the question relates to a bug, and you're almost sure that it's a bug (for example, you can pinpoint the place in the code where it happens, and you maybe have a fix), then send the message to FreeBSD-hackers. You should also enter a problem report with the send-pr utility. If the question relates to enhancements to FreeBSD, and you can make suggestions about how to implement them, then send the message to FreeBSD-hackers. If the question is of particularly technical nature, such as implementation details or suggestions for improvements, then send the message to FreeBSD-hackers. There are also a number of other specialized mailing lists, for example FreeBSD-isp, which caters to the interests of ISPs (Internet Service Providers) who run FreeBSD. If you happen to be an ISP, this doesn't mean you should automatically send your questions to FreeBSD-isp. The criteria above still apply, and it's in your interest to stick to them, since you're more likely to get good results that way. IV: How to submit a question ============================= When submitting a question to FreeBSD-questions, consider the following points: 1. Remember that nobody gets paid for answering a FreeBSD question. They do it of their own free will. You can influence this free will positively by submitting a well-formulated question supplying as much relevant information as possible. You can influence this free will negatively by submitting an incomplete, illegible, or rude question. It's perfectly possible to send a message to FreeBSD-questions and not get an answer even if you follow these rules. It's much more possible to not get an answer if you don't. In the rest of this document, we'll look at how to get the most out of your question to FreeBSD-questions. 2. Not everybody who answers FreeBSD questions reads every message: they look at the subject line and decide whether it interests them. Clearly, it's in your interest to specify a subject. ``FreeBSD problem'' or ``Help'' aren't enough. If you provide no subject at all, many people won't bother reading it. If your subject isn't specific enough, the people who can answer it may not read it. 3. When sending a new message, well, send a new message. Don't reply to some other message, erase the old content and change the subject line. That leaves an In-reply-to: header which many mail readers use to thread messages, so your message shows up as a reply to some other message. People often delete messages a whole thread at a time, so apart from irritating people, you also run a chance of having the message deleted unread. 4. Format your message so that it is legible, and PLEASE DON'T SHOUT!!!!!. We appreciate that a lot of people don't speak English as their first language, and we try to make allowances for that, but it's really painful to try to read a message written full of typos or without any line breaks. A lot of badly formatted messages come from bad mailers or badly configured mailers. The following mailers are known to send out badly formatted messages without you finding out about them: Eudora exmh Microsoft Exchange Microsoft Internet Mail Microsoft Outlook Netscape As you can see, the mailers in the Microsoft world are frequent offenders. If at all possible, use a UNIX mailer. If you must use a mailer under Microsoft environments, make sure it is set up correctly. Try not to use MIME: a lot of people use mailers which don't get on very well with MIME. For further information on this subject, check out http://www.lemis.com/email.html. 5. Make sure your time and time zone are set correctly. This may seem a little silly, since your message still gets there, but many of the people you are trying to reach get several hundred messages a day. They frequently sort the incoming messages by subject and by date, and if your message doesn't come before the first answer, they may assume they missed it and not bother to look. 6. Don't include unrelated questions in the same message. Firstly, a long message tends to scare people off, and secondly, it's more difficult to get all the people who can answer all the questions to read the message. 7. Specify as much information as possible. This is a difficult area, and we need to expand on what information you need to submit, but here's a start: If you get error messages, don't say ``I get error messages'', say (for example) ``I get the error message 'No route to host'''. If your system panics, don't say ``My system panicked'', say (for example) ``my system panicked with the message 'free vnode isn't'''. If you have difficulty installing FreeBSD, please tell us what hardware you have. In particular, it's important to know the IRQs and I/O addresses of the boards installed in your machine. If you have difficulty getting PPP to run, describe the configuration. Which version of PPP do you use? What kind of authentication do you have? Do you have a static or dynamic IP address? What kind of messages do you get in the log file? 8. If you don't get an answer immediately, or if you don't even see your own message appear on the list immediately, don't resend the message. Wait at least 24 hours. The FreeBSD mailer offloads messages to a number of subordinate mailers around the world, and sometimes it can take several hours for the mail to get through. And once it gets through, the one person who might know the answer will probably just have gone to bed in his part of the world. 9. If you do all this, and you still don't get an answer, there could be other reasons. For example, the problem is so complicated that nobody knows the answer, or the person who does know the answer was offline. If you don't get an answer after, say, a week, it might help to re-send the message. If you don't get an answer to your second message, though, you're probably not going to get one from this forum. Resending the same message again and again will only make you unpopular. To summarize, let's assume you know the answer to the following question (yes, it's the same one in each case :-). You choose which of these two questions you would be more prepared to answer: Message 1: Subject: (none) I just can't get hits damn silly FereBSD system to workd, and Im really good at this tsuff, but I have never seen anythign sho difficult to install, it jst wont work whatever I try so why don't y9ou guys tell me what I doing wrong. ---------------------------------------------------------------------- Message 2: Subject: Problems installing FreeBSD I've just got the FreeBSD 2.1.5 CD-ROM from Walnut Creek, and I'm having a lot of difficulty installing it. I have a 66 MHz 486 with 16 MB of memory and an Adaptec 1540A SCSI board, a 1.2GB Quantum Fireball disk and a Toshiba 3501XA CD-ROM drive. The installation works just fine, but when I try to reboot the system, I get the message "Missing Operating System". ---------------------------------------------------------------------- V: How to follow up to a question ================================= Often you will want to send in additional information to a question you have already sent. The best way to do this is to reply to your original message. This has three advantages: 1. You include the original message text, so people will know what you're talking about. Don't forget to trim unnecessary text out, though. 2. The text in the subject line stays the same (you did remember to put one in, didn't you?). Many mailers will sort messages by subject. This helps group messages together. 3. The message reference numbers in the header will refer to the previous message. Some mailers, such as mutt, can thread messages, showing the exact relationships between the messages. VI: How to answer a question ============================ Before you answer a question to FreeBSD-questions, consider: 1. A lot of the points on submitting questions also apply to answering questions. Read them. 2. Has somebody already answered the question? The easiest way to check this is to sort your incoming mail by subject: then (hopefully) you'll see the question followed by any answers, all together. If somebody has already answered it, it doesn't automatically mean that you shouldn't send another answer. But it makes sense to read all the other answers first. 3. Do you have something to contribute beyond what has already been said? In general, "Yeah, me too" answers don't help much, although there are exceptions, like when somebody is describing a problem he's having, and he doesn't know whether it's his fault or whether there's something wrong with the hardware or software. If you do send a "me too" answer, you should also include any further relevant information. 4. Are you sure you understand the question? Very frequently, the person who asks the question is confused or doesn't express himself very well. Even with the best understanding of the system, it's easy to send a reply which doesn't answer the question. This doesn't help: you'll leave the person who submitted the question more frustrated or confused than ever. If nobody else answers, and you're not too sure either, you can always ask for more information. 5. Are you sure your answer is correct? If not, wait a day or so. If nobody else comes up with a better answer, you can still reply and say, for example, "I don't know if this is correct, but since nobody else has replied, why don't you try replacing your ATAPI CD-ROM with a frog?". 6. Unless there's a good reason to do otherwise, reply to the sender and to FreeBSD-questions. Many people on the FreeBSD-questions are "lurkers": they learn by reading messages sent and replied to by others. If you take a message which is of general interest off the list, you're depriving these people of their information. Be careful with group replies; lots of people send messages with hundreds of CCs. If this is the case, be sure to trim the Cc: lines appropriately. 7. Include relevant text from the original message. Trim it to the minimum, but don't overdo it. It should still be possible for somebody who didn't read the original message to understand what you're talking about. 8. Use some technique to identify which text came from the original message, and which text you add. I personally find that prepending ``> '' to the original message works best. Leaving white space after the ``> '' and leave empty lines between your text and the original text both make the result more readable. 9. Put your response in the correct place (after the text to which it replies). It's very difficult to read a thread of responses where each reply comes before the text to which it replies. 10. Most mailers change the subject line on a reply by prepending a text such as ``Re: ''. If your mailer doesn't do it automatically, you should do it manually. 11. If the submitter didn't abide by format conventions (lines too long, inappropriate subject line), please fix it. In the case of an incorrect subject line (such as ``HELP!!??''), change the subject line to (say) ``Re: Difficulties with sync PPP (was: HELP!!??)''. That way other people trying to follow the thread will have less difficulty following it. In such cases, it's appropriate to say what you did and why you did it, but try not to be rude. If you find you can't answer without being rude, don't answer. If you just want to reply to a message because of its bad format, just reply to the submitter, not to the list. You can just send him this message in reply, if you like. $Id: Howto-ask-questions,v 1.6 2005/08/10 02:21:44 grog Exp $ _______________________________________________ Thanks to Josh Paetzel for updating this document to describe mailman. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 17:02:01 2006 Return-Path: X-Original-To: FreeBSD-questions@FreeBSD.org Delivered-To: FreeBSD-questions@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 645) id 36D4316A4DF; Fri, 1 Sep 2006 17:02:01 +0000 (UTC) To: FreeBSD-questions@FreeBSD.org Message-Id: <20060901170201.36D4316A4DF@hub.freebsd.org> Date: Fri, 1 Sep 2006 17:02:01 +0000 (UTC) From: grog@FreeBSD.ORG (Greg Lehey) Cc: Subject: "The Complete FreeBSD": errata and addenda X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 17:02:01 -0000 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, The Complete FreeBSD, published by O'Reilly, is no exception. Inevitably, a number of bugs and changes have surfaced. "The Complete FreeBSD" has been through a total of five editions, including its predecessor "Installing and Running FreeBSD". Two of these have been reprinted with corrections. I maintain a series of errata pages. Start at http://www.lemis.com/errata-4.html to find out how to get the errata information. Note also that the book has now been released for free download in PDF form. Instead of downloading the changed pages, you may prefer to download the entire book. See http://www.lemis.com/grog/Documentation/CFBSD/ for more information. Have you found a problem with the book, or maybe something confusing? Please let me know: I'm no longer constantly updating it, but I may be able to help Greg From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 17:29:01 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1760F16A4EC for ; Fri, 1 Sep 2006 17:29:01 +0000 (UTC) (envelope-from obrieng@nm.cbc.ca) Received: from mail02.nm.cbc.ca (mail02.nm.cbc.ca [159.33.1.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5722343D53 for ; Fri, 1 Sep 2006 17:28:26 +0000 (GMT) (envelope-from obrieng@nm.cbc.ca) Received: from hub.cbc.ca (hub.nm.cbc.ca [192.168.1.119]) by mail02.nm.cbc.ca (Postfix) with ESMTP id 96417274527 for ; Fri, 1 Sep 2006 13:28:20 -0400 (EDT) Received: from localhost (localhost.cbc.ca [127.0.0.1]) by hub.cbc.ca (Postfix) with ESMTP id 75FD26A47F for ; Fri, 1 Sep 2006 13:28:20 -0400 (EDT) Received: from hub.cbc.ca ([127.0.0.1]) by localhost (hub.cbc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 84330-01-74 for ; Fri, 1 Sep 2006 13:28:19 -0400 (EDT) Received: from [1.151.32.16] (intd.cbc.ca [159.33.1.75]) by hub.cbc.ca (Postfix) with ESMTP id C00986A47D for ; Fri, 1 Sep 2006 13:28:19 -0400 (EDT) Message-ID: <44F86DB2.2040202@nm.cbc.ca> Date: Fri, 01 Sep 2006 13:28:18 -0400 From: Gabriel O'Brien User-Agent: Thunderbird 1.5.0.5 (X11/20060828) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060901125631.GA92179@owl.midgard.homeip.net> <44F8361A.8020507@nm.cbc.ca> <20060901115919.6B6F.GERARD@seibercom.net> In-Reply-To: <20060901115919.6B6F.GERARD@seibercom.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at hub.cbc.ca Subject: Re: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 17:29:01 -0000 Gerard Seibert wrote: > I agree for the most part. There is an option to install another MTA > when installing FBSD. However, it might be nice if there were > instructions on how to accomplish the following. I agree with you, logically I would say that perhaps this should go in the Postfix/exim/(insert favorite MTA here) ports. Postfix already asks you if you want to update your /etc/mail/mailer.conf and it wouldn't be much more effort to add the make.conf change, etc. as well. Might be a good patch to create/suggest to the maintainers. Even a verbose message to the console on 'make install' would be a good start. cheers, Gabriel -- Gabriel O'Brien IT Analyst, MPS-EN-CBC.ca w: 416-205-8740 m: 416-996-5679 From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 18:03:38 2006 Return-Path: X-Original-To: questions@freebsd.org 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 958F016A4DD for ; Fri, 1 Sep 2006 18:03:38 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [199.26.172.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 372F543D46 for ; Fri, 1 Sep 2006 18:03:37 +0000 (GMT) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id k81I3jTq018558 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 1 Sep 2006 11:03:45 -0700 (PDT) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id k81I3jCh018557 for questions@freebsd.org; Fri, 1 Sep 2006 11:03:45 -0700 (PDT) Received: by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA10312; Fri, 1 Sep 06 10:58:08 PDT Date: Fri, 1 Sep 06 10:58:08 PDT From: perryh@pluto.rain.com (Perry Hutchison) Message-Id: <10609011758.AA10312@pluto.rain.com> To: questions@freebsd.org Cc: Subject: Trouble building abiword in the Ports Collection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 18:03:38 -0000 What I have done: * Installed 6.1, including the Ports Collection, from CD. * Ran portsnap fetch. * Attempted portsnap update. ? It sez this only works after an extract. What is the point of installing the collection from CD if it has to be completely reinstalled from a download anyway? * Ran portsnap extract. * Built richtext, apparently successfully. * Attempted to build abiword. It complained about a glibc version problem, and said to run gnomelogalyzer.sh. gnomelogalyzer.sh found nothing specific, but said to run 'portupgrade -a' on general principles. ? Why should this be needed? Shouldn't a freshly-downloaded portsnap already be up to date? * Attempted 'portupgrade -a'. It ran for several hours, fetching and building a huge amount of stuff (most of which I don't think I want), and pausing several times for answers to imponderable configuration questions, before eventually failing. ? Shouldn't those configuration screens have a "help" function, for those of us who have no clue what some of the options amount to? * Reran 'portupgrade -a' to get a smaller logfile, showing only the errors (since presumably the successful builds won't be redone). This time it complains about the pkgdb. ? Now what? Is it time to "rm -rf /usr/ports /var/db/pkg" and start completely over (and if so, what should I do differently this time)? =============== logfile from second 'portupgrade -a' =============== # date ; portupgrade -a ; date Fri Sep 1 10:34:20 PDT 2006 [Updating the pkgdb in /var/db/pkg ... /var/db/pkg/pkgdb.db: unexpected file type or format -- Invalid argument; rebuild needed] [Rebuilding the pkgdb in /var/db/pkg ... [Updating the pkgdb in /var/db/pkg ... /var/db/pkg/pkgdb.db: unexpected file type or format -- Invalid argument; rebuild needed] [Rebuilding the pkgdb in /var/db/pkg ... /var/db/pkg/pkgdb.db: unexpected file type or format -- Invalid argument: Cannot update the pkgdb!]: Cannot update the pkgdb!] Command failed [exit code 1]: /usr/local/sbin/pkgdb -aFQ Fri Sep 1 10:34:24 PDT 2006 # ls -l /var/db/pkg/pkgdb.db -rw-r--r-- 1 root wheel 5963776 Sep 1 01:42 /var/db/pkg/pkgdb.db # file /var/db/pkg/pkgdb.db /var/db/pkg/pkgdb.db: Berkeley DB 1.85/1.86 (Btree, version 3, native byte-order) From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 18:08:56 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 DF02916A4DD for ; Fri, 1 Sep 2006 18:08:56 +0000 (UTC) (envelope-from plathrop@squaretrade.com) Received: from new-mail.squaretrade.com (new-mail.squaretrade.com [64.56.206.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 888E043D46 for ; Fri, 1 Sep 2006 18:08:56 +0000 (GMT) (envelope-from plathrop@squaretrade.com) Received: from localhost (unknown [127.0.0.1]) by new-mail.squaretrade.com (Postfix) with ESMTP id 2EB1A27A4E9E; Fri, 1 Sep 2006 11:08:56 -0700 (PDT) X-Virus-Scanned: amavisd-new at squaretrade.com Received: from new-mail.squaretrade.com ([127.0.0.1]) by localhost (knockout.prod.squaretrade.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id YtBUNGJ16KaH; Fri, 1 Sep 2006 11:08:55 -0700 (PDT) Received: from [192.168.219.1] (unknown [192.168.219.1]) by new-mail.squaretrade.com (Postfix) with ESMTP id 6963C27A4C1E; Fri, 1 Sep 2006 11:08:55 -0700 (PDT) Message-ID: <44F87733.2020405@squaretrade.com> Date: Fri, 01 Sep 2006 11:08:51 -0700 From: Paul Lathrop User-Agent: Thunderbird 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: freebsd-questions@freebsd.org X-Enigmail-Version: 0.94.1.1 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigF60FAB28AA9FFD362852A797" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Snapshot performance X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 18:08:57 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigF60FAB28AA9FFD362852A797 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi all, We're working on deploying a new mail server on FreeBSD 6.1-STABLE. One of the major selling points was the ability to take filesystem snapshots in order to make backups from a consistent filesystem on such a high-traffic system. Unfortunately, when I take a snapshot, performance slows to a crawl - to the point where the system stops responding to network requests (ping, SMTP, etc.). Also, the snapshot takes 10-15 minutes to complete. Is this a typical situation? Will I need to schedule downtime for backups in spite of this nifty new feature? Am I doing something wrong? Could use some advice. Regards, Paul Lathrop Systems Administrator SquareTrade, Inc. --------------enigF60FAB28AA9FFD362852A797 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE+Hc3X6ecHn3cW4kRAn62AJ9gO6FbNwrJXVFAFFyKKSQRJTLCXQCdF3C0 yuTmmfoQB0iEiyPAmSOXJ/g= =RUwp -----END PGP SIGNATURE----- --------------enigF60FAB28AA9FFD362852A797-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 18:17:10 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 70FDA16A4E0 for ; Fri, 1 Sep 2006 18:17:10 +0000 (UTC) (envelope-from mmiranda@123.com.sv) Received: from asgard1.americatelsal.com (asgard.americatelsal.com [200.13.161.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A2A143D5F for ; Fri, 1 Sep 2006 18:17:08 +0000 (GMT) (envelope-from mmiranda@123.com.sv) Received: (qmail 61085 invoked from network); 1 Sep 2006 18:33:12 -0000 Received: from unknown (HELO ?192.168.10.124?) (200.13.161.68) by asgard1.americatelsal.com with SMTP; 1 Sep 2006 18:33:12 -0000 Message-ID: <44F87981.4070207@123.com.sv> Date: Fri, 01 Sep 2006 12:18:41 -0600 From: Miguel User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: what happed to mod_perl in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 18:17:10 -0000 Hi, my cgi scripts doesnt work in 6.1, and i dont see any entry about mod_perl in httpd.conf, how do i enable it? --- Miguel From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 18:22:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1483D16A4E5 for ; Fri, 1 Sep 2006 18:22:40 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from smtp1.utdallas.edu (smtp1.utdallas.edu [129.110.10.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD09243D46 for ; Fri, 1 Sep 2006 18:22:39 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from utd59514.utdallas.edu (utd59514.utdallas.edu [129.110.3.28]) by smtp1.utdallas.edu (Postfix) with ESMTP id 493F8388F1C for ; Fri, 1 Sep 2006 13:22:39 -0500 (CDT) Date: Fri, 01 Sep 2006 13:19:28 -0500 From: Paul Schmehl To: freebsd-questions@freebsd.org Message-ID: In-Reply-To: <200609011733.31688.list-freebsd-2004@morbius.sent.com> References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> <200609011341.46942.list-freebsd-2004@morbius.sent.com> <200609011733.31688.list-freebsd-2004@morbius.sent.com> X-Mailer: Mulberry/4.0.5 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========CFBB4728EEC6D872E551==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 18:22:40 -0000 --==========CFBB4728EEC6D872E551========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Friday, September 01, 2006 17:33:30 +0100 RW=20 wrote: >> You can easily correct this by creating a symlink: >> >> ls -s /usr/local/lib/mulberry/Resources/ ~/.mulberry/ > This is incorrect. It should be: ln -s /usr/local/lib/mulberry/Resources ~/.mulberry/ > The problem was that extracting Mulberry.tgz produces a hidden .mulberry > directory in the current directory, which should be in ~/ before > running the binary. I extracted in a temporary location, failed to spot > this hidden directory, and just moved the binary to ~/bin/. Removing > ~/.mulberry and re-extracting in my home directory fixed the problem. > BTW it actually contains plugin and icon directories as well as > resources. > Yes, but that only works for you. For people setting up servers for=20 mulitple users, that's not a good solution. When you launch mulberry for the first time, it will create the ~/.mulberry = directory as well as the Plugins and Calendar and other subdirectories that = are needed for *your* customized version of mulberry, but the Resources=20 directory is *not* created. That's why you're missing the text. In order to make a "generic" installer, the port has to place all those=20 directories in a central location, but you must create a symling to=20 Resources *or* just copy all the files to your own ~/.mulberry/Resources/=20 directory. That's the *correct* way to do it. > > _______________________________________________ > 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" Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========CFBB4728EEC6D872E551==========-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 18:25:04 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7B63F16A4E0 for ; Fri, 1 Sep 2006 18:25:04 +0000 (UTC) (envelope-from maxsec@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E0C943D72 for ; Fri, 1 Sep 2006 18:24:53 +0000 (GMT) (envelope-from maxsec@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1098692wxd for ; Fri, 01 Sep 2006 11:24:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=lUw/weSq13husVHopbjGzjrJzlJjsvXjKqNVBj2WnOso/ekiAw5YFK+Q4WqC0cD+5QLDpc5Y0cSWeZle6i16YM8SO6hmqj1kfHTKFv7fAykjbbruAAso/0lsKFyFmd6ZirlrSCX2YlKj3Xv9XS31GfWlZWF71eYdO9XbtANeNpA= Received: by 10.70.32.2 with SMTP id f2mr4190222wxf; Fri, 01 Sep 2006 11:24:52 -0700 (PDT) Received: by 10.70.26.5 with HTTP; Fri, 1 Sep 2006 11:24:52 -0700 (PDT) Message-ID: <72cf361e0609011124i565435d5ub7d41e569e3def02@mail.gmail.com> Date: Fri, 1 Sep 2006 19:24:52 +0100 From: "Martin Hepworth" To: "rithy4u- CEO" In-Reply-To: <000a01c6cbd1$80ff3490$7001a8c0@khmerserver.net> MIME-Version: 1.0 References: <000a01c6cbd1$80ff3490$7001a8c0@khmerserver.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 18:25:04 -0000 Depends on what through-put you need, are you good at compiling custom kernels with the extra stuff removed, How good are you at *IOS*?? Do you need a firewall with that router o just straight routing. Does the router need RIP, BGP etc... Perfectly possible, but depending on your requirements/time/expertise/money maybe practical or not. -- Martin On 8/30/06, rithy4u- CEO wrote: > > Dear all, > > I want to know, between Cisco Router and a compiled of FreeBSD Router > which one is better? Is it posible to build a Router Appliance on FreeBSD > instead of using ISO of Cisco? > > > Richard Ben, CIO > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > > _______________________________________________ > 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 Fri Sep 1 18:35:49 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 D9C9D16A4DA for ; Fri, 1 Sep 2006 18:35:49 +0000 (UTC) (envelope-from riemer@palstra.com) Received: from palstra.com (palstra.com [82.201.5.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id B874643D45 for ; Fri, 1 Sep 2006 18:35:48 +0000 (GMT) (envelope-from riemer@palstra.com) Received: from riemer by palstra.com with local (Exim 4.60 (FreeBSD)) (envelope-from ) id 1GJDrl-000Iux-Ge; Fri, 01 Sep 2006 20:35:45 +0200 Date: Fri, 1 Sep 2006 20:35:45 +0200 From: Riemer Palstra To: Miguel Message-ID: <20060901183545.GA71857@rb1.palstra.com> References: <44F87981.4070207@123.com.sv> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44F87981.4070207@123.com.sv> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@FreeBSD.org Subject: Re: what happed to mod_perl in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 18:35:49 -0000 On Fri, Sep 01, 2006 at 12:18:41PM -0600, Miguel wrote: > Hi, my cgi scripts doesnt work in 6.1, and i dont see any entry about > mod_perl in httpd.conf, how do i enable it? You don't actually need mod_perl to run CGI scripts, but okay. If you want mod_perl try installing it, depending on your version of Apache you should use /usr/ports/www/mod_perl or mod_perl2. After installation, you'll get hints on what LoadModule and other directives you'll need to put in your httpd.conf file. In my case, it's: LoadModule perl_module libexec/apache22/mod_perl.so More about mod_perl can be found here: http://perl.apache.org/docs/index.html To use CGI scripts, you'll just have to enable the CGI module (it's probaby on by default) and add a handler for .cgi files (oh and allow Execution of scripts on the locations where you've put them). This isn't anything 6.1 specific, it will work like this on any version... LoadModule cgi_module libexec/apache22/mod_cgi.so AddHandler cgi-script .cgi (Followed by any ExecCGI and ScriptAlias directives you might need...) -- Riemer Palstra Amsterdam, The Netherlands riemer@palstra.com http://www.palstra.com/ From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 18:37:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1A65316A4DF for ; Fri, 1 Sep 2006 18:37:18 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA40143D45 for ; Fri, 1 Sep 2006 18:37:17 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.dfwlp.com (8.13.6/8.13.6) with ESMTP id k81IbC09006648 for ; Fri, 1 Sep 2006 13:37:12 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2006 09:12:39 -0500 User-Agent: KMail/1.9.3 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609010912.39543.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on zeus.dfwlp.com Subject: Re: MONOWALL WAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 18:37:18 -0000 On Tuesday 29 August 2006 16:19, Laurie Zimmerman wrote: > Hi, > > I have a client who would like to share a DSL connection with a neighboring > office. I would like to put my clients network (they only need to share > Internet) on a separate IP network behind a monowall. My question is, will > monowall allow a private address (the LAN IP of router) to be its WAN > address? > > Thanks > > Laurie my firewall is pfSense, which is based on monowall. on pfSense, in order to use a private address on the wan interface, you have to uncheck a box that says "block private networks" (it even says 'for the purposes of putting the wan interface on a private lan). i would assume due the lineage of pfSense, that monowall likely has a similar feature. hth, jonathan From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 18:46:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3206116A4DF for ; Fri, 1 Sep 2006 18:46:12 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 876BE43D46 for ; Fri, 1 Sep 2006 18:46:11 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so1104826wxd for ; Fri, 01 Sep 2006 11:46:10 -0700 (PDT) Received: by 10.70.7.4 with SMTP id 4mr4189468wxg; Fri, 01 Sep 2006 11:46:10 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id h34sm3406908wxd.2006.09.01.11.46.10; Fri, 01 Sep 2006 11:46:10 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 0C3F7B95C; Fri, 1 Sep 2006 14:46:09 -0400 (EDT) Received: from [192.168.0.4] (boss.seibercom.net [192.168.0.4]) (Authenticated sender: gerard@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTP id 5BF3AB8DE; Fri, 1 Sep 2006 14:46:08 -0400 (EDT) Date: Fri, 01 Sep 2006 14:46:28 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom In-Reply-To: <10609011758.AA10312@pluto.rain.com> References: <10609011758.AA10312@pluto.rain.com> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20060901143228.60CF.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Mailer: Becky! ver. 2.25 [en] X-Virus-Scanned: ClamAV using ClamSMTP Cc: perryh@pluto.rain.com Subject: Re: Trouble building abiword in the Ports Collection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 18:46:12 -0000 Perry Hutchison wrote: > What I have done: > * Installed 6.1, including the Ports Collection, from CD. > * Ran portsnap fetch. > * Attempted portsnap update. > ? It sez this only works after an extract. What is the point of > installing the collection from CD if it has to be completely > reinstalled from a download anyway? > * Ran portsnap extract. > * Built richtext, apparently successfully. > * Attempted to build abiword. It complained about a glibc version > problem, and said to run gnomelogalyzer.sh. gnomelogalyzer.sh > found nothing specific, but said to run 'portupgrade -a' on general > principles. > ? Why should this be needed? Shouldn't a freshly-downloaded > portsnap already be up to date? > * Attempted 'portupgrade -a'. It ran for several hours, fetching > and building a huge amount of stuff (most of which I don't think > I want), and pausing several times for answers to imponderable > configuration questions, before eventually failing. > ? Shouldn't those configuration screens have a "help" function, for > those of us who have no clue what some of the options amount to? > * Reran 'portupgrade -a' to get a smaller logfile, showing only the > errors (since presumably the successful builds won't be redone). > This time it complains about the pkgdb. > ? Now what? Is it time to "rm -rf /usr/ports /var/db/pkg" and > start completely over (and if so, what should I do differently > this time)? Try this. Run everything as root. pkgdb -aFfuv That should fix most if not all problems. If it fails, you will have to run: pkgdb -F to fix them manually. If you have 'portupgrade' you should also have portsclean. Try running this to clean up any crud left from you old builds. portsclean -CDDLP Now run: portsnap fetch && portsnap update Now you can run the portupgrade command. You can probably run it like this: portupgrade -aFRr That should cover all of your bases. Personally I prefer 'portmanager' but each to his own. Good luck! -- Gerard Seibert gerard@seibercom.net From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 19:04:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 858F616A4E0 for ; Fri, 1 Sep 2006 19:04:22 +0000 (UTC) (envelope-from david.robillard@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id C35EF43D5C for ; Fri, 1 Sep 2006 19:04:19 +0000 (GMT) (envelope-from david.robillard@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1080798uge for ; Fri, 01 Sep 2006 12:04:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=S08U61UjTPq2Xr7WVrgriuZNiJJ2G7WAtMFG3hcELoz2RIvwB68YNdMKVND4YzooyrmYOfjjv50izMpHQrTvZY8l2zNqouOYI0z7GZ7YV7XWyNDIe2Q66/w4rGe0UieQ1FarKJdCgFU2KosDi4mGO9OG3LVu213fCgkL/p3xTk0= Received: by 10.66.224.3 with SMTP id w3mr1391363ugg; Fri, 01 Sep 2006 12:04:18 -0700 (PDT) Received: by 10.67.106.17 with HTTP; Fri, 1 Sep 2006 12:04:17 -0700 (PDT) Message-ID: <226ae0c60609011204r14e8397ey2b1fe525ab9eab71@mail.gmail.com> Date: Fri, 1 Sep 2006 15:04:17 -0400 From: "David Robillard" To: "Laurie Zimmerman" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: FreeBSD Questions Mailing List Subject: Re: MONOWALL WAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 19:04:22 -0000 > I have a client who would like to share a DSL connection with a neighboring > office. I would like to put my clients network (they only need to share > Internet) on a separate IP network behind a monowall. My question is, will > monowall allow a private address (the LAN IP of router) to be its WAN > address? > > Thanks > > Laurie Hi Laurie, I'm not sure about monowall, but I know for sure that an OpenBSD or FreeBSD machine running OpenBSD's packet filter will do the trick very nicely. Check out pf(4) and pf.conf(5) or the FreeBSD Handbook on the subject. You can also grab a copy of Jacek Artymiak's book "Building Firewalls with OpenBSD and PF, 2nd edition" which covers pf(4) very well. Some URL on the subject: - FreeBSD Handbook Section 26.4 The OpenBSD Packet Filter (PF) and ALTQ http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-pf.html - pf(4) http://www.freebsd.org/cgi/man.cgi?query=pf&apropos=0&sektion=0&manpath=FreeBSD+6.1-RELEASE&format=html - pfctl(8) http://www.freebsd.org/cgi/man.cgi?query=pfctl&sektion=8&apropos=0&manpath=FreeBSD+6.1-RELEASE - pf.conf(5) http://www.freebsd.org/cgi/man.cgi?query=pf.conf&sektion=5&apropos=0&manpath=FreeBSD+6.1-RELEASE - Jacek Artymiak's book "Building Firewalls with OpenBSD and PF, 2nd edition" http://www.artymiak.com/books/index.html Have fun, David -- David Robillard UNIX systems administrator & Oracle DBA CISSP, RHCE & Sun Certified Security Administrator Montreal: +1 514 966 0122 From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 19:13:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 236A116A4DA for ; Fri, 1 Sep 2006 19:13:30 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id B712A43D49 for ; Fri, 1 Sep 2006 19:13:29 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 7BDFEDA1321 for ; Fri, 1 Sep 2006 15:13:28 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Fri, 01 Sep 2006 15:13:29 -0400 X-Sasl-enc: HPNBi4UO4wZ/0nRb9GXn84AuDg6AOtxb3i+4xNbBnl7Z 1157138008 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id EF4DB8558 for ; Fri, 1 Sep 2006 15:13:28 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2006 20:13:25 +0100 User-Agent: KMail/1.9.3 References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> <200609011733.31688.list-freebsd-2004@morbius.sent.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609012013.26435.list-freebsd-2004@morbius.sent.com> Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 19:13:30 -0000 On Friday 01 September 2006 19:19, Paul Schmehl wrote: > --On Friday, September 01, 2006 17:33:30 +0100 RW > > wrote: > >> You can easily correct this by creating a symlink: > >> > >> ls -s /usr/local/lib/mulberry/Resources/ ~/.mulberry/ > > This is incorrect. It should be: > ln -s /usr/local/lib/mulberry/Resources ~/.mulberry/ > > > The problem was that extracting Mulberry.tgz produces a hidden .mulberry > > directory in the current directory, which should be in ~/ before > > running the binary. I extracted in a temporary location, failed to spot > > this hidden directory, and just moved the binary to ~/bin/. Removing > > ~/.mulberry and re-extracting in my home directory fixed the problem. > > BTW it actually contains plugin and icon directories as well as > > resources. > > Yes, but that only works for you. For people setting up servers for > mulitple users, that's not a good solution. I didn't say it was, it was just that my specific problem was that I deleted the resources directory without knowing it existed. For my own use, I don't see the point in putting anything under /usr until there is a port. And it's not just the Resources directory that's important, SSL/TLS support is provided by a plugin. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 19:15:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3205116A4DD for ; Fri, 1 Sep 2006 19:15:54 +0000 (UTC) (envelope-from david.robillard@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17A8143D5A for ; Fri, 1 Sep 2006 19:15:45 +0000 (GMT) (envelope-from david.robillard@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1084124uge for ; Fri, 01 Sep 2006 12:15:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=By1W+Lw5keTMpEuuxio9LvdOtGEB4mzAIajHOIlKOEvAUqER603uDgXsL6SVPVfggfY7XE0DwWUOC6HHu35QFizpc2Uau/ZNfXzmQerj37L7jengXjB+MC+aNyCLR5vRTITfMTEySTtXz2R6YUfWg6SNW/wc0TJS8N1bNgQu6xY= Received: by 10.66.244.11 with SMTP id r11mr1381819ugh; Fri, 01 Sep 2006 12:15:44 -0700 (PDT) Received: by 10.67.106.17 with HTTP; Fri, 1 Sep 2006 12:15:44 -0700 (PDT) Message-ID: <226ae0c60609011215k55ddaeffsd243bbfcb6e06146@mail.gmail.com> Date: Fri, 1 Sep 2006 15:15:44 -0400 From: "David Robillard" To: Miguel MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: FreeBSD Questions Mailing List Subject: Re: what happed to mod_perl in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 19:15:54 -0000 > Hi, my cgi scripts doesnt work in 6.1, and i dont see any entry about mod_perl in httpd.conf, how do i enable it? For Apache 1.3.x http://www.freebsd.org/cgi/url.cgi?ports/www/mod_perl/pkg-descr For Apache 2.x http://www.freebsd.org/cgi/url.cgi?ports/www/mod_perl2/pkg-descr David -- David Robillard UNIX systems administrator & Oracle DBA CISSP, RHCE & Sun Certified Security Administrator Montreal: +1 514 966 0122 From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 19:25:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CAF5B16A4E0 for ; Fri, 1 Sep 2006 19:25:37 +0000 (UTC) (envelope-from daniel@unisul.br) Received: from unisul.br (mail.unisul.br [200.18.12.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id A435A43D4C for ; Fri, 1 Sep 2006 19:25:09 +0000 (GMT) (envelope-from daniel@unisul.br) Received: from antivirus (antivirus-tro.unisul.br [10.1.2.16]) by unisul.br (8.12.5/8.12.5) with SMTP id k81JP50X066441 for ; Fri, 1 Sep 2006 16:25:05 -0300 (BRT) Received: from 10.1.2.15 by antivirus (InterScan VirusWall 6); Fri, 01 Sep 2006 16:25:06 -0300 Received: from atidaniel (daniel.redes-tro.unisul.br [10.1.100.41]) by relay.unisul.br (8.12.5/8.12.6) with ESMTP id k81JP3cL066435 for ; Fri, 1 Sep 2006 16:25:04 -0300 (BRT) (envelope-from daniel@unisul.br) Message-Id: <200609011925.k81JP3cL066435@relay.unisul.br> From: "Daniel Bitencourt Cadorin" To: Date: Fri, 1 Sep 2006 16:25:10 -0300 Organization: Unisul - Universidade do Sul de Santa Catarina MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 thread-index: AcbN/FbXlt4oSidWThWPrDT3PdQNSg== X-TM-AS-Product-Ver: : ISVW-6.0.0.1396-3.6.0.1039-14664001 X-TM-AS-Result: : Yes--11,420100-0-31-1 X-TM-AS-Category-Info: : 31:0,000000 X-TM-AS-MatchedID: : =?us-ascii?B?MTg3MDY3LTcwMDMyOC03MDM2?= =?us-ascii?B?MTctNzAzODY4LTcwMjQzMC03MDAzMDEtNzAwOTIyLTcwNTg5OS03?= =?us-ascii?B?MDgwNjEtNzAwMTY1LTcwMTg4My03MDM0OTMtNzAwMjEwLTcwMTMx?= =?us-ascii?B?OC03MDM1ODYtNzEwMjE3LTcwOTQ4My03MTIwOTItNzAwOTAyLTE4?= =?us-ascii?B?ODAxOS03MDU4MDQtNzA0MjUyLTcwMTk5Mi03MDUzNzItNzAwMjI4?= =?us-ascii?B?LTcxMDMzMy03MDcyNDAtMTA2MjMwLTcwMTIzOC03MDUzNzMtNzAx?= =?us-ascii?B?NjUxLTEzNjA3MC03MDE0NzEtNzAzMzkwLTcwMTI1OS03MTA1MTUt?= =?us-ascii?B?NzAwMzQ0LTcwNzEwMS0xMDEwOA==?= Subject: kldload: can't load linux: ERROR???? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: daniel@unisul.br List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 19:25:37 -0000 I am trying to install the o package linux_base-8-8.0_6.tbz in a jail (FreeBSD 5.4). However it is appearing the following message of error: hostname# pkg_add linux_base-8-8.0_6.tbz Linux mode is not enabled. Loading linux kernel module now... kldload: can't load linux: Operation not permitted The linux kernel module could not be loaded. Please enable linux mode manually and retry. pkg_add: install script returned error status what I must make? Thank you! =A0 Daniel Bitencourt Cadorin From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 19:43:55 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CECA916A4DE for ; Fri, 1 Sep 2006 19:43:55 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from smtp1.utdallas.edu (smtp1.utdallas.edu [129.110.10.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4532443D49 for ; Fri, 1 Sep 2006 19:43:55 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from utd59514.utdallas.edu (utd59514.utdallas.edu [129.110.3.28]) by smtp1.utdallas.edu (Postfix) with ESMTP id BD7F9388F38 for ; Fri, 1 Sep 2006 14:43:50 -0500 (CDT) Date: Fri, 01 Sep 2006 14:40:36 -0500 From: Paul Schmehl To: freebsd-questions@freebsd.org Message-ID: In-Reply-To: <200609012013.26435.list-freebsd-2004@morbius.sent.com> References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> <200609011733.31688.list-freebsd-2004@morbius.sent.com> <200609012013.26435.list-freebsd-2004@morbius.sent.com> X-Mailer: Mulberry/4.0.5 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========956612C5827AFD51F00F==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 19:43:55 -0000 --==========956612C5827AFD51F00F========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Friday, September 01, 2006 20:13:25 +0100 RW=20 wrote: > > I didn't say it was, it was just that my specific problem was that I > deleted the resources directory without knowing it existed. For my own > use, I don't see the point in putting anything under /usr until there is > a port. > > And it's not just the Resources directory that's important, SSL/TLS > support is provided by a plugin. > Thanks for pointing that out. I'll have to see if there's a way to "point=20 to" that directory. Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========956612C5827AFD51F00F==========-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 20:13:50 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 36AD816A4DA for ; Fri, 1 Sep 2006 20:13:50 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [199.26.172.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id E530A43D45 for ; Fri, 1 Sep 2006 20:13:49 +0000 (GMT) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id k81KDxk5050331 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 1 Sep 2006 13:13:59 -0700 (PDT) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id k81KDxAw050330; Fri, 1 Sep 2006 13:13:59 -0700 (PDT) Received: by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA10932; Fri, 1 Sep 06 13:01:19 PDT Date: Fri, 1 Sep 06 13:01:19 PDT From: perryh@pluto.rain.com (Perry Hutchison) Message-Id: <10609012001.AA10932@pluto.rain.com> To: freebsd-questions@freebsd.org In-Reply-To: <20060901143228.60CF.GERARD@seibercom.net> References: <20060901143228.60CF.GERARD@seibercom.net> Cc: gerard@seibercom.net Subject: Re: Trouble building abiword in the Ports Collection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 20:13:50 -0000 > > * Reran 'portupgrade -a' ... This time it complains about the > > pkgdb. > > ? Now what? Is it time to "rm -rf /usr/ports /var/db/pkg" > > and start completely over (and if so, what should I do > > differently this time)? > > Try this. Run everything as root. > > pkgdb -aFfuv > > That should fix most if not all problems. No such luck. It still complains about the file format: # pkgdb -aFfuv ---> Updating the pkgdb [Rebuilding the pkgdb in /var/db/pkg ... /var/db/pkg/pkgdb.db: unexpected file type or format -- Invalid argument: Cannot update the pkgdb!] > If it fails, you will have to run: pkgdb -F to fix them manually. That doesn't work either :( # pkgdb -F ---> Checking the package registry database [Updating the pkgdb in /var/db/pkg ... /var/db/pkg/pkgdb.db: unexpected file type or format -- Invalid argument; rebuild needed] [Rebuilding the pkgdb in /var/db/pkg ... /var/db/pkg/pkgdb.db: unexpected file type or format -- Invalid argument: Cannot update the pkgdb!]: Cannot update the pkgdb!] From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 20:14:49 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 148A716A4DD for ; Fri, 1 Sep 2006 20:14:49 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96E5843D49 for ; Fri, 1 Sep 2006 20:14:48 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from doc.sem.ipt.ru ([192.168.12.1] helo=srv.sem.ipt.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GJFPZ-000NL4-UU; Sat, 02 Sep 2006 00:14:45 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GJFSQ-0008JA-8I; Sat, 02 Sep 2006 00:17:42 +0400 To: daniel@unisul.br References: <200609011925.k81JP3cL066435@relay.unisul.br> From: Boris Samorodov Date: Sat, 02 Sep 2006 00:17:42 +0400 In-Reply-To: <200609011925.k81JP3cL066435@relay.unisul.br> (Daniel Bitencourt Cadorin's message of "Fri, 1 Sep 2006 16:25:10 -0300") Message-ID: <46634425@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: kldload: can't load linux: ERROR???? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 20:14:49 -0000 On Fri, 1 Sep 2006 16:25:10 -0300 Daniel Bitencourt Cadorin wrote: > I am trying to install the o package linux_base-8-8.0_6.tbz in a jail > (FreeBSD 5.4). However it is appearing the following message of error: > hostname# pkg_add linux_base-8-8.0_6.tbz > Linux mode is not enabled. > Loading linux kernel module now... > kldload: can't load linux: Operation not permitted > The linux kernel module could not be loaded. > Please enable linux mode manually and retry. > pkg_add: install script returned error status > what I must make? You can't load a kernel module in a jail. You should load it in a host system. > Thank you! WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 20:48:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D405616A4DA for ; Fri, 1 Sep 2006 20:48:48 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53B5943D45 for ; Fri, 1 Sep 2006 20:48:48 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so1141522wxd for ; Fri, 01 Sep 2006 13:48:47 -0700 (PDT) Received: by 10.70.42.15 with SMTP id p15mr3177399wxp; Fri, 01 Sep 2006 13:48:46 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id i35sm3599026wxd.2006.09.01.13.48.46; Fri, 01 Sep 2006 13:48:46 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 482BFB95C; Fri, 1 Sep 2006 16:48:45 -0400 (EDT) Received: from [192.168.0.4] (boss.seibercom.net [192.168.0.4]) (Authenticated sender: gerard@scorpio.seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTP id B0DB7B905; Fri, 1 Sep 2006 16:48:44 -0400 (EDT) Date: Fri, 01 Sep 2006 16:49:05 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom In-Reply-To: <10609012001.AA10932@pluto.rain.com> References: <20060901143228.60CF.GERARD@seibercom.net> <10609012001.AA10932@pluto.rain.com> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20060901164400.48F3.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Mailer: Becky! ver. 2.25 [en] X-Virus-Scanned: ClamAV using ClamSMTP Cc: perryh@pluto.rain.com Subject: Re: Trouble building abiword in the Ports Collection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 20:48:48 -0000 Perry Hutchison wrote: > # pkgdb -aFfuv > ---> Updating the pkgdb > [Rebuilding the pkgdb in /var/db/pkg ... > /var/db/pkg/pkgdb.db: unexpected file type or format -- Invalid > argument: Cannot update the pkgdb!] > > > If it fails, you will have to run: pkgdb -F to fix them manually. > > That doesn't work either :( > > # pkgdb -F > ---> Checking the package registry database > > [Updating the pkgdb in /var/db/pkg ... > /var/db/pkg/pkgdb.db: unexpected file type or format -- Invalid > argument; rebuild needed] [Rebuilding the pkgdb in > /var/db/pkg ... /var/db/pkg/pkgdb.db: unexpected file type or format -- > Invalid argument: Cannot update the pkgdb!]: Cannot update the pkgdb!] OK, navigate to the /var/db/pkg directory and either delete or rename the 'pkg.db' file. Then run: pkgdb -aFfuv Assuming that works, resume with the rest of the directions I gave you previously. -- Gerard Seibert gerard@seibercom.net From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 20:51:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4282216A50C for ; Fri, 1 Sep 2006 20:51:19 +0000 (UTC) (envelope-from danielcadorin_21@hotmail.com) Received: from bay0-omc1-s34.bay0.hotmail.com (bay0-omc1-s34.bay0.hotmail.com [65.54.246.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2776D43D86 for ; Fri, 1 Sep 2006 20:51:02 +0000 (GMT) (envelope-from danielcadorin_21@hotmail.com) Received: from hotmail.com ([64.4.17.40]) by bay0-omc1-s34.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Fri, 1 Sep 2006 13:51:02 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 1 Sep 2006 13:51:02 -0700 Message-ID: Received: from 64.4.17.200 by by111fd.bay111.hotmail.msn.com with HTTP; Fri, 01 Sep 2006 20:50:58 GMT X-Originating-IP: [200.237.248.4] X-Originating-Email: [danielcadorin_21@hotmail.com] X-Sender: danielcadorin_21@hotmail.com In-Reply-To: <46634425@srv.sem.ipt.ru> From: "Daniel Cadorin" To: freebsd-questions@freebsd.org Date: Fri, 01 Sep 2006 20:50:58 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 01 Sep 2006 20:51:02.0211 (UTC) FILETIME=[55DAF130:01C6CE08] Subject: Re: kldload: can't load linux: ERROR???? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 20:51:19 -0000 I qualified in host. However he presents the following message: jail$ sqlplus "user/password@base" ELF interpreter /lib/ld-linux.so.2 not found Abort trap what I must make? Thank you! Daniel. >On Fri, 1 Sep 2006 16:25:10 -0300 Daniel Bitencourt Cadorin wrote: > > > I am trying to install the o package linux_base-8-8.0_6.tbz in a jail > > (FreeBSD 5.4). However it is appearing the following message of error: > > > hostname# pkg_add linux_base-8-8.0_6.tbz > > Linux mode is not enabled. > > Loading linux kernel module now... > > kldload: can't load linux: Operation not permitted > > The linux kernel module could not be loaded. > > Please enable linux mode manually and retry. > > pkg_add: install script returned error status > > > what I must make? > >You can't load a kernel module in a jail. You should load it in a host >system. > > > Thank you! > > >WBR >-- >Boris Samorodov (bsam) >Research Engineer, http://www.ipt.ru Telephone & Internet SP >FreeBSD committer, http://www.FreeBSD.org The Power To Serve >_______________________________________________ >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" _________________________________________________________________ MSN Messenger: instale grátis e converse com seus amigos. http://messenger.msn.com.br From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 20:57:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 65F1616A4DF for ; Fri, 1 Sep 2006 20:57:34 +0000 (UTC) (envelope-from Shane@007Marketing.com) Received: from smtp1.adl2.internode.on.net (smtp1.adl2.internode.on.net [203.16.214.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2F4243D6D for ; Fri, 1 Sep 2006 20:57:33 +0000 (GMT) (envelope-from Shane@007Marketing.com) Received: from [192.168.8.200] (ppp247-71.static.internode.on.net [203.122.247.71]) by smtp1.adl2.internode.on.net (8.13.6/8.13.5) with ESMTP id k81KvVaO086130; Sat, 2 Sep 2006 06:27:32 +0930 (CST) (envelope-from Shane@007Marketing.com) User-Agent: Microsoft-Entourage/10.1.4.030702.0 Date: Sat, 02 Sep 2006 06:27:30 +0930 From: Shane Ambler To: rithy4u- CEO , FreeBSD Mailing Lists Message-ID: In-Reply-To: <000a01c6cbd1$80ff3490$7001a8c0@khmerserver.net> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Cc: Subject: Re: FreeBSD router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 20:57:34 -0000 The answer is yes it can be done. Which one is better depends on which cisco model you compare with and what hardware you are going to use to run FreeBSD with what features. As well as your knowledge of FreeBSD admin/network config. As mentioned before you may be expected to compile a custom kernel to best handle your setup. Consider - Are you building this for internal use or as a resell product? What is your FreeBSD/network knowledge level? Do you feel a little overwhelmed at the prospect of installing/configuring/supporting the router yourself? How much downtime is tolerable as you learn/find the solution to problems along the way? An example - I am located in Adelaide, Australia and there is a company here that has been around for several years mainly providing network related support, they sell their own network appliances built from FreeBSD and some custom software that features router, firewall, dmz, vpn, proxy cache, spam filter, network monitoring, CF boot disks. (they can configure/support cisco equipment that you may have installed and I think will sell it to you if you want it but push their products instead of cisco gear) Products range depending on needs but generally the head office may have a P4 rackmount case with a few network cards (offering load sharing across multiple ADSL connections) and a small home/branch office may get a mini-atx 700Mhz VIA chip unit with 1 or 2 network interfaces. Individual pc's (as well as handheld devices) can also connect straight to the vpn as well if that is sufficient for the needs. Most offices would connect with ADSL these days with an option of direct ISDN connection to HO as backup when ADSL is unavailable. Setup as automatic fallover when needed. Australia wide support is provided from the local office with remote offices being setup with modem dialup to allow console access by directly dialling into the appliances in case internet or vpn functionality is not working. Those sort of options would account for a high priced cisco setup that could allow a decent profit margin/cost saving between hardware cost and complete product. With simpler needs the cost difference would be a lot closer. To setup and maintain this setup would need a good knowledge base to ensure sufficient support/maintenance. There are a few options available for pre-built FreeBSD firewall setups which could make it worthwhile for you - I would have said http://netboz.org but the site doesn't seem to be running at the moment (maybe temporary) another is http://m0n0.ch/wall/ I have come across a few other projects over time but haven't really looked at any in great detail and can't seem to find any other bookmarks. On 30/8/2006 10:43, "rithy4u- CEO" wrote: > Dear all, > > I want to know, between Cisco Router and a compiled of FreeBSD Router which > one is better? Is it posible to build a Router Appliance on FreeBSD instead of > using ISO of Cisco? > > > Richard Ben, CIO -- Shane@007Marketing.com Get Sheeky @ http://Sheeky.Biz From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 21:32:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 75B2216A4DD for ; Fri, 1 Sep 2006 21:32:07 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19C0643D53 for ; Fri, 1 Sep 2006 21:32:07 +0000 (GMT) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id D6DB6DA11EB for ; Fri, 1 Sep 2006 17:32:05 -0400 (EDT) Received: from heartbeat1.internal ([10.202.2.160]) by frontend3.internal (MEProxy); Fri, 01 Sep 2006 17:32:06 -0400 X-Sasl-enc: 1ADchWQjJYmaHhk/9BUCdF3iRKpqVgdF5HkKqPKpLVkS 1157146326 Received: from [192.168.1.2] (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 7C1DA113A3 for ; Fri, 1 Sep 2006 17:32:06 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2006 22:31:59 +0100 User-Agent: KMail/1.9.3 References: <200609010018.23366.list-freebsd-2004@morbius.sent.com> <200609012013.26435.list-freebsd-2004@morbius.sent.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609012232.03876.list-freebsd-2004@morbius.sent.com> Subject: Re: Anyone Using the New Free Mulberry Mail Client? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 21:32:07 -0000 On Friday 01 September 2006 20:40, Paul Schmehl wrote: > --On Friday, September 01, 2006 20:13:25 +0100 RW > > wrote: > > I didn't say it was, it was just that my specific problem was that I > > deleted the resources directory without knowing it existed. For my own > > use, I don't see the point in putting anything under /usr until there is > > a port. > > > > And it's not just the Resources directory that's important, SSL/TLS > > support is provided by a plugin. > > Thanks for pointing that out. I'll have to see if there's a way to "point > to" that directory. It's just a thought, but perhaps the linking could be handled by wrapping the binary in a shell script that verifies ~/.mulberry and the links. From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 21:39:39 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C0DF216A4DA for ; Fri, 1 Sep 2006 21:39:39 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84CB143D45 for ; Fri, 1 Sep 2006 21:39:39 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 5DF091A3C1F; Fri, 1 Sep 2006 14:39:39 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1F2FA511E6; Fri, 1 Sep 2006 17:39:37 -0400 (EDT) Date: Fri, 1 Sep 2006 17:39:36 -0400 From: Kris Kennaway To: Paul Lathrop Message-ID: <20060901213936.GA21561@xor.obsecurity.org> References: <44F87733.2020405@squaretrade.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HcAYCG3uE/tztfnV" Content-Disposition: inline In-Reply-To: <44F87733.2020405@squaretrade.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: Snapshot performance X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 21:39:39 -0000 --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 01, 2006 at 11:08:51AM -0700, Paul Lathrop wrote: > Hi all, >=20 > We're working on deploying a new mail server on FreeBSD 6.1-STABLE. One > of the major selling points was the ability to take filesystem snapshots > in order to make backups from a consistent filesystem on such a > high-traffic system. Unfortunately, when I take a snapshot, performance > slows to a crawl - to the point where the system stops responding to > network requests (ping, SMTP, etc.). Also, the snapshot takes 10-15 > minutes to complete. >=20 > Is this a typical situation? Will I need to schedule downtime for > backups in spite of this nifty new feature? Am I doing something wrong? Time depends on the size of the filesystem - but you are correct that snapshots were not designed with performance in mind (rather, to speed up booting after an unclean shutdown by removing the need to wait for fsck). Kris --HcAYCG3uE/tztfnV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE+KiYWry0BWjoQKURAoOEAJ4kJbh1mhuQtlbYLuxSkNQ6zEuoRACgvS1s iN/x3zmOsXzk89srDzOJJZ8= =q5Gf -----END PGP SIGNATURE----- --HcAYCG3uE/tztfnV-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 21:43:16 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7071F16A4DA for ; Fri, 1 Sep 2006 21:43:16 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF33E43D73 for ; Fri, 1 Sep 2006 21:43:14 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from doc.sem.ipt.ru ([192.168.12.1] helo=srv.sem.ipt.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GJGnB-000Nav-OE; Sat, 02 Sep 2006 01:43:13 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GJGq2-000Jus-1n; Sat, 02 Sep 2006 01:46:10 +0400 To: "Daniel Cadorin" References: From: Boris Samorodov Date: Sat, 02 Sep 2006 01:46:09 +0400 In-Reply-To: (Daniel Cadorin's message of "Fri, 01 Sep 2006 20:50:58 +0000") Message-ID: <48398766@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: kldload: can't load linux: ERROR???? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 21:43:16 -0000 On Fri, 01 Sep 2006 20:50:58 +0000 Daniel Cadorin wrote: > I qualified in host. However he presents the following message: OK. > jail$ sqlplus "user/password@base" > ELF interpreter /lib/ld-linux.so.2 not found > Abort trap Have you managed to install linux port in a jail? Do you have /compat/linux/lib/ld-linux.so.2 file in a jail? PS. Please, don't top-post. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 22:20:31 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 C1B1E16A53E for ; Fri, 1 Sep 2006 22:20:31 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1646D43D67 for ; Fri, 1 Sep 2006 22:20:16 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.4/8.13.1) with ESMTP id k81MK9xK077607 for ; Fri, 1 Sep 2006 15:20:10 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k81MK8nM077604 for freebsd-questions@FreeBSD.ORG; Fri, 1 Sep 2006 15:20:08 -0700 (PDT) (envelope-from kline) Date: Fri, 1 Sep 2006 15:20:02 -0700 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20060901222002.GA77564@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Subject: graphics programd like xpaint and gimp. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 22:20:31 -0000 I finally realized why I couldn't change the solid-color bg with xpaint. The bucket [icon] is missing; the documentation doesn't reflect this... But *anyway*, to other things-graphic. With gimp, is it possible to create polygons? How about a 5-pointed star? Or 6- or 7-pointed star? I have found some images of what I'm looking for thru Google/images, but the bavkgrounf is not solid for some images, &c. Also, it is possible to join two or three (already-drawn, on-disk) images with gimp? I'm thinking of a circle surrounding a hexagon surrounding a square, e.g. --Part of this is just-for-fun curiosity before I get back to my studies; part of it is to try to create designs for my jottings pages. thanks for any insights, gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 22:48:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 CE67A16A4E0 for ; Fri, 1 Sep 2006 22:48:33 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC83643D53 for ; Fri, 1 Sep 2006 22:48:32 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.4/8.13.1) with ESMTP id k81MmLxv024542; Fri, 1 Sep 2006 15:48:21 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k81MmJtd024418; Fri, 1 Sep 2006 15:48:19 -0700 (PDT) (envelope-from kline) Date: Fri, 1 Sep 2006 15:48:18 -0700 From: Gary Kline To: Howard Jones Message-ID: <20060901224817.GA896@thought.org> References: <20060827053654.GA60292@thought.org> <20060827060122.GA63679@ozzmosis.com> <20060827074946.GA60715@thought.org> <20060827181340.A18228@erienet.net> <44F55574.7000200@thingy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44F55574.7000200@thingy.com> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Gary Kline , steveb@erienet.net, freebsd-questions@freebsd.org Subject: Re: taking many 198k mp3 files and converting them to 16k mp3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 22:48:33 -0000 On Wed, Aug 30, 2006 at 10:08:04AM +0100, Howard Jones wrote: > steveb@erienet.net wrote: > > If your DVD player can't play mp3s, then it can't play DVDs. ;) > > Remember, mp3s are the audio layer of mpegs. And DVD videos consist of > > mpegs. > > For a DVD-Video disc, the audio formats are PCM (plain old wav, > effectively), AC-3 (dolby digital) and MPEG-1 Audio Layer II (only). > > A lot of DVD players will also play MP3s, either on data CDs or data > DVDs (or both), but it isn't a requirement as far as I can tell. The > choices seem pretty arbitrary too. My Pioneer player will play a DVD-R > full of MP3s, but the replacement model will only play MP3 CD-Rs (and > you have to read the fine print in the manual to figure it out, too). It > seems that a lot of DivX-playing DVD players only play CDs of DivX, not > DVDs too (Toshiba, Pioneer again). > > That's why I was fiddling around with MP2 and minimal video - it's an > actual standard DVD then. Although in fact I made an NTSC disc with MP2, > which is apparently a no-no. > > My source was for the audio info was: > http://stream.uen.org/medsol/dvd/pages/dvd_format_audio4DVDvideo.html > Great URL. If you or anybody else has any other audio type pages, please do post them. (Time I caught up to the 20th century. :-|) A related area is the brand new 'mp4' or 'aacplus' format. I don't care much how good the audio quality is most of the tme. But I've listed to sites that play 24k mp3 and 24k aacplus, and the difference is significant. For voice, it's a dontcare. But for music, bigdifference. gary > Howie -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 23:06:44 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 C3F8116A4E0 for ; Fri, 1 Sep 2006 23:06:44 +0000 (UTC) (envelope-from skylar@cs.earlham.edu) Received: from quark.cs.earlham.edu (cs.earlham.edu [159.28.230.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23D2E43D53 for ; Fri, 1 Sep 2006 23:06:34 +0000 (GMT) (envelope-from skylar@cs.earlham.edu) Received: from [128.95.231.218] (angband.gs.washington.edu [128.95.231.218]) (authenticated bits=0) by quark.cs.earlham.edu (8.13.6/8.13.3) with ESMTP id k81N6S9P085538 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 1 Sep 2006 19:06:31 -0400 (EDT) (envelope-from skylar@cs.earlham.edu) X-Authentication-Warning: quark.cs.earlham.edu: Host angband.gs.washington.edu [128.95.231.218] claimed to be [128.95.231.218] Message-ID: <44F8BCD9.4090308@cs.earlham.edu> Date: Fri, 01 Sep 2006 16:06:01 -0700 From: Skylar Thompson Organization: Earlham College Computer Science Department User-Agent: Mail/News 1.5.0.5 (X11/20060728) MIME-Version: 1.0 To: Kris Kennaway References: <44F87733.2020405@squaretrade.com> <20060901213936.GA21561@xor.obsecurity.org> In-Reply-To: <20060901213936.GA21561@xor.obsecurity.org> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigCD531B859C686449051A59CB" X-Greylist: Sender succeded SMTP AUTH authentication, not delayed by milter-greylist-1.6 (quark.cs.earlham.edu [159.28.230.3]); Fri, 01 Sep 2006 19:06:31 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.2/1623/Wed Jul 26 18:35:11 2006 on quark.cs.earlham.edu X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.56 on 159.28.230.3 X-Spam-Status: No, score=-2.5 required=8.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on quark.cs.earlham.edu Cc: Paul Lathrop , freebsd-questions@freebsd.org Subject: Re: Snapshot performance X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: skylar@cs.earlham.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 23:06:44 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigCD531B859C686449051A59CB Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Kris Kennaway wrote: > On Fri, Sep 01, 2006 at 11:08:51AM -0700, Paul Lathrop wrote: > =20 >> Hi all, >> >> We're working on deploying a new mail server on FreeBSD 6.1-STABLE. On= e >> of the major selling points was the ability to take filesystem snapsho= ts >> in order to make backups from a consistent filesystem on such a >> high-traffic system. Unfortunately, when I take a snapshot, performanc= e >> slows to a crawl - to the point where the system stops responding to >> network requests (ping, SMTP, etc.). Also, the snapshot takes 10-15 >> minutes to complete. >> >> Is this a typical situation? Will I need to schedule downtime for >> backups in spite of this nifty new feature? Am I doing something wrong= ? >> =20 > > Time depends on the size of the filesystem - but you are correct that > snapshots were not designed with performance in mind (rather, to speed > up booting after an unclean shutdown by removing the need to wait for > fsck). > > Kris > =20 Are there plans to improve performance of snapshots? Using the freebsd-snapshot port to link FS snapshots to the automounter is pretty nifty, but it does kill I/O performance while that's in progress as the OP mentioned. --=20 -- Skylar Thompson (skylar@cs.earlham.edu) -- http://www.cs.earlham.edu/~skylar/ --------------enigCD531B859C686449051A59CB Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (SunOS) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE+Lzbsc4yyULgN4YRAlRfAJ9dC5MnU1tfKdpYAMKY4U708h0xhACfSfVX warXVnGguE+QaDz/RdslstM= =f7U4 -----END PGP SIGNATURE----- --------------enigCD531B859C686449051A59CB-- From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 23:42:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A476D16A4DD for ; Fri, 1 Sep 2006 23:42:06 +0000 (UTC) (envelope-from dougs@dawnsign.com) Received: from mercury.dawnsign.com (myrouter.dawnsign.com [216.70.250.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69B4743D45 for ; Fri, 1 Sep 2006 23:42:06 +0000 (GMT) (envelope-from dougs@dawnsign.com) Received: by mercury.dawnsign.com with Internet Mail Service (5.5.2657.72) id ; Fri, 1 Sep 2006 15:26:21 -0700 Message-ID: <2BB99B9E3A48034790CB14A960C3CA560CFA68@mercury.dawnsign.com> From: Doug Sampson To: "'freebsd-questions@freebsd.org'" Date: Fri, 1 Sep 2006 15:26:20 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain; charset="iso-8859-1" Subject: Ruby won't upgrade to 1.8.5 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 23:42:06 -0000 When trying to portupgrade ruby to 1.8.5, I get the following: <..snip..> Generating RI... /usr/ports/lang/ruby18/work/ruby-1.8.5/lib/yaml.rb:387: [BUG] Segmentation fault ruby 1.8.5 (2006-08-25) [i386-freebsd6] Abort trap *** Error code 134 Stop in /usr/ports/lang/ruby18/work/ruby-1.8.5. *** Error code 1 Stop in /usr/ports/lang/ruby18. *** Error code 1 Stop in /usr/ports/lang/ruby18. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade36977.8 env PORT_UPGRADE=yes make reinstall egrep: /var/db/pkg/ruby-1.8.4_9,1/+CONTENTS: No such file or directory ---> Restoring the old version Deinstalling obsoleted packages that are now part of ruby... ** Fix the installation problem and try again. [Updating the pkgdb in /var/db/pkg ... - 117 packages found (-0 +1) . done] ---> Skipping 'databases/ruby-bdb1' (ruby18-bdb1-0.2.2) because a requisite package 'ruby-1.8.4_9,1' (lang/ruby18) failed (specify -k to force) ---> Skipping 'databases/ruby-bdb' (ruby18-bdb-0.5.9_2) because a requisite package 'ruby-1.8.4_9,1' (lang/ruby18) failed (specify -k to force) ---> Skipping 'sysutils/portupgrade' (portupgrade-2.1.3.3,2) because a requisite package 'ruby-1.8.4_9,1' (lang/ruby18) failed (specify -k to force) ** Listing the failed packages (*:skipped / !:failed) ! lang/ruby18 (ruby-1.8.4_9,1) (install error) * databases/ruby-bdb1 (ruby18-bdb1-0.2.2) * databases/ruby-bdb (ruby18-bdb-0.5.9_2) * sysutils/portupgrade (portupgrade-2.1.3.3,2) ---> Packages processed: 0 done, 113 ignored, 3 skipped and 1 failed ** Could not clean up temporary directory: Directory not empty - /var/tmp/portupgrade6IqfQ0W1 root@test:/root# Am using portsnap to maintain ports. Running FBSD 6.1. How do I fix this error? ~Doug --- Microsoft: Where do you want to go today? Linux: Where do you want to go tomorrow? FreeBSD: Are you guys coming or what? From owner-freebsd-questions@FreeBSD.ORG Fri Sep 1 23:09:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2267C16A4E1 for ; Fri, 1 Sep 2006 23:09:41 +0000 (UTC) (envelope-from dead_line@hotmail.com) Received: from bay0-omc3-s16.bay0.hotmail.com (bay0-omc3-s16.bay0.hotmail.com [65.54.246.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F24343D6E for ; Fri, 1 Sep 2006 23:09:38 +0000 (GMT) (envelope-from dead_line@hotmail.com) Received: from hotmail.com ([65.54.175.43]) by bay0-omc3-s16.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Fri, 1 Sep 2006 16:09:38 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Fri, 1 Sep 2006 16:09:38 -0700 Message-ID: Received: from 65.54.175.200 by by104fd.bay104.hotmail.msn.com with HTTP; Fri, 01 Sep 2006 23:09:34 GMT X-Originating-IP: [62.150.206.58] X-Originating-Email: [dead_line@hotmail.com] X-Sender: dead_line@hotmail.com In-Reply-To: <000a01c6cbd1$80ff3490$7001a8c0@khmerserver.net> From: "Marwan Sultan" To: root@rithy4u.net, freebsd-questions@freebsd.org Date: Fri, 01 Sep 2006 23:09:34 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 01 Sep 2006 23:09:38.0100 (UTC) FILETIME=[B282E740:01C6CE1B] X-Mailman-Approved-At: Sat, 02 Sep 2006 00:01:23 +0000 Cc: Subject: RE: FreeBSD router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2006 23:09:41 -0000 Hello Richard, I have been using FreeBSD since 1998 and never had to use cisco, Freebsd has a great builtin features, I'm Using Freebsd for a hotspotlogin, with no external servers from anykind, Its my radius, router, ipfw, internetspot login, NAT and port directions. Also i have 2 additional servers in two diffrent locations each has its own bzns, running DNS, email services, hosting, and hundreds of other services. Since i knew FreeBSD i never had to touch any cisco or any other creatures in general. except a HUB and some cables. :) However, I dunt know if you still need Cisco router or anyother machines, maybe as some gurus here wrote, depends on your needs. best of luck. and take a look on FreeBSD handbook, on www.freebsd.org maybe you will find the part you are looking for in routing or cisco that freebsd will do. best of luck Marwan Sultan > >Dear all, > > I want to know, between Cisco Router and a compiled of FreeBSD Router >which one is better? Is it posible to build a Router Appliance on FreeBSD >instead of using ISO of Cisco? > > > Richard Ben, CIO >-- > _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 00:33:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8D25916A4DA for ; Sat, 2 Sep 2006 00:33:40 +0000 (UTC) (envelope-from micahjon@ywave.com) Received: from relay3.av-mx.com (relay3.av-mx.com [137.118.16.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4734343D53 for ; Sat, 2 Sep 2006 00:33:37 +0000 (GMT) (envelope-from micahjon@ywave.com) X-Virus-Scan-Time: 0 Received: from [137.118.16.60] (HELO mx2.av-mx.com) by relay3.av-mx.com (CommuniGate Pro SMTP 4.2.10) with SMTP id 386326685 for freebsd-questions@freebsd.org; Fri, 01 Sep 2006 20:33:37 -0400 Received: (qmail 9844 invoked from network); 2 Sep 2006 00:33:36 -0000 Received: from dsl25232.ywave.com (HELO ?192.168.1.65?) (micahjon@ywave.com@216.227.113.232) by 0 with SMTP; 2 Sep 2006 00:33:36 -0000 X-CLIENT-IP: 216.227.113.232 X-CLIENT-HOST: dsl25232.ywave.com Message-ID: <44F8D15F.8070106@ywave.com> Date: Fri, 01 Sep 2006 17:33:35 -0700 From: Micah User-Agent: Thunderbird 1.5.0.5 (X11/20060730) MIME-Version: 1.0 To: Gary Kline References: <20060901222002.GA77564@thought.org> In-Reply-To: <20060901222002.GA77564@thought.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Mailing List Subject: Re: graphics programd like xpaint and gimp. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 00:33:40 -0000 Gary Kline wrote: > I finally realized why I couldn't change the solid-color bg > with xpaint. The bucket [icon] is missing; the documentation > doesn't reflect this... But *anyway*, to other things-graphic. > > With gimp, is it possible to create polygons? How about a > 5-pointed star? Or 6- or 7-pointed star? I have found some > images of what I'm looking for thru Google/images, but the > bavkgrounf is not solid for some images, &c. Also, it is > possible to join two or three (already-drawn, on-disk) images > with gimp? I'm thinking of a circle surrounding a hexagon > surrounding a square, e.g. > > --Part of this is just-for-fun curiosity before > I get back to my studies; part of it is to try to create designs > for my jottings pages. > > thanks for any insights, > > gary Wondered this myself. The first Google result on 'polygons gimp' returned the GFig component accessed via filters->render->gfig. Made a 6 pointed star inside a circle inside a square in seconds. For joining images you may need to read up on the gimp. Specifically copy, paste, layers, transparency, masks, and canvas sizes are just some of the basics that you might have to deal with. HTH, Micah From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 00:44:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 149A116A4DA for ; Sat, 2 Sep 2006 00:44:51 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9851F43D45 for ; Sat, 2 Sep 2006 00:44:50 +0000 (GMT) (envelope-from illoai@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1459974pye for ; Fri, 01 Sep 2006 17:44:50 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=N9KkeQnVeX/iLfghHS90VVXRuqc5Pxh+h/IlTvsu8SASyt8t+7HJ1wYYTuOEJvcte8stRx9kQ98Su3SBAD1/L/1xlTCXtFTlwZDNbVSXaF2oqAavgDhbTqT86j6J+X/iNVLRHARYrqzglYSDR1dRe5gPWG+iHDodHPOTfcJv+lo= Received: by 10.65.84.4 with SMTP id m4mr1127360qbl; Fri, 01 Sep 2006 17:44:49 -0700 (PDT) Received: by 10.64.84.5 with HTTP; Fri, 1 Sep 2006 17:44:49 -0700 (PDT) Message-ID: Date: Fri, 1 Sep 2006 19:44:49 -0500 From: "illoai@gmail.com" To: "Doug Sampson" In-Reply-To: <2BB99B9E3A48034790CB14A960C3CA560CFA68@mercury.dawnsign.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <2BB99B9E3A48034790CB14A960C3CA560CFA68@mercury.dawnsign.com> Cc: "freebsd-questions@freebsd.org" Subject: Re: Ruby won't upgrade to 1.8.5 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 00:44:51 -0000 On 9/1/06, Doug Sampson wrote: > When trying to portupgrade ruby to 1.8.5, I get the following: > > <..snip..> > > Generating RI... > /usr/ports/lang/ruby18/work/ruby-1.8.5/lib/yaml.rb:387: [BUG] Segmentation > fault > ruby 1.8.5 (2006-08-25) [i386-freebsd6] Without anything else to go on, ruby seems to strongly dislike certain CFLAGS settings (I think -fomit-frame-pointer is one, if I recall from some rebuilding problems I had a year or so ago). Check your /etc/make.conf , perhaps just commenting the CFLAGS & CXXFLAGS & CPUTYPE settings out. Once in a while I run into a port that will not rebuild through portupgrade, yet seems to work perfectly by: cd /usr/ports/ && make deinstall reinstall Then again, if all you use ruby for is portupgrade, maybe you can try: portupgrade -pp ruby ? -- -- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 00:54:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D73D716A4DE for ; Sat, 2 Sep 2006 00:54:33 +0000 (UTC) (envelope-from root@rithy4u.net) Received: from ix.khmerserver.net (ygmsmtp.khmerserver.net [203.82.224.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34B4C43D46 for ; Sat, 2 Sep 2006 00:54:30 +0000 (GMT) (envelope-from root@rithy4u.net) Received: from TSHBCIOKSRKHPC ([192.168.1.112]) by ix.khmerserver.net (rithy4uMailServer) with SMTP id k820laJZ037665; Sat, 2 Sep 2006 07:47:37 +0700 (ICT) (envelope-from root@rithy4u.net) YGLCResent-Message-Id: <200609020047.k820laJZ037665@ix.khmerserver.net> YGLCMessage-Id: <200609020047.k820laJZ037665@ix.khmerserver.net> Message-ID: <002d01c6ce29$c284c560$7001a8c0@khmerserver.net> From: "rithy4u- CEO" To: "Marwan Sultan" References: Date: Sat, 2 Sep 2006 07:50:17 +0700 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-YGMC-MailScanner-Information: Please contact YGMC IT Dept X-YGMC-MailScanner: Found to be clean X-YGMC-MailScanner-From: root@rithy4u.net X-YGMC-MailScanner-To: dead_line@hotmail.com, freebsd-questions@freebsd.org X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 00:54:33 -0000 Hello Sultan: I have with FreeBSD about 1 year and I have config and run many services such as NAT/Router/Firewall/Ipfilter, Mailserver, DNS server, DHCP Server, Cache proxy server. But soon, I will have to handle VPN Project from Cambodia to Singapore which got existing Cisco infrastructure. I think my customer will not choose FreeBSD for thier VPN Tunnel. But anyway, I want to know see whether some Internet Backbone or ISP used FreeBSD as thier Internet facilities as us or not. I hope we can be a good friend in FreeBSD. but I just start into it around 1 year. Rgds, Richard Ben, CIO ----- Original Message ----- From: "Marwan Sultan" To: ; Sent: Saturday, September 02, 2006 6:09 AM Subject: RE: FreeBSD router > Hello Richard, > > I have been using FreeBSD since 1998 and never had to use cisco, > Freebsd has a great builtin features, > I'm Using Freebsd for a hotspotlogin, with no external servers from > anykind, > Its my radius, router, ipfw, internetspot login, NAT and port directions. > > Also i have 2 additional servers in two diffrent locations each has its > own bzns, running > DNS, email services, hosting, and hundreds of other services. > > Since i knew FreeBSD i never had to touch any cisco or any other > creatures in general. > except a HUB and some cables. :) > > However, > I dunt know if you still need Cisco router or anyother machines, > maybe as some gurus here wrote, depends on your needs. > > best of luck. > and take a look on FreeBSD handbook, on www.freebsd.org > maybe you will find the part you are looking for in routing or cisco that > freebsd will do. > > best of luck > > Marwan Sultan > > >> >>Dear all, >> >> I want to know, between Cisco Router and a compiled of FreeBSD Router >> which one is better? Is it posible to build a Router Appliance on FreeBSD >> instead of using ISO of Cisco? >> >> >> Richard Ben, CIO >>-- >> > > _________________________________________________________________ > Express yourself instantly with MSN Messenger! Download today it's FREE! > http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ > > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 01:04:29 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 53A7E16A4DD for ; Sat, 2 Sep 2006 01:04:29 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4F4543D45 for ; Sat, 2 Sep 2006 01:04:28 +0000 (GMT) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.4/8.13.1) with ESMTP id k8214OX8091958; Fri, 1 Sep 2006 18:04:25 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k821472x091261; Fri, 1 Sep 2006 18:04:07 -0700 (PDT) (envelope-from kline) Date: Fri, 1 Sep 2006 18:04:07 -0700 From: Gary Kline To: Micah Message-ID: <20060902010407.GA70825@thought.org> References: <20060901222002.GA77564@thought.org> <44F8D15F.8070106@ywave.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44F8D15F.8070106@ywave.com> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Gary Kline , FreeBSD Mailing List Subject: Re: graphics programd like xpaint and gimp. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 01:04:29 -0000 On Fri, Sep 01, 2006 at 05:33:35PM -0700, Micah wrote: > Gary Kline wrote: > > I finally realized why I couldn't change the solid-color bg > > with xpaint. The bucket [icon] is missing; the documentation > > doesn't reflect this... But *anyway*, to other things-graphic. > > > > With gimp, is it possible to create polygons? How about a > > 5-pointed star? Or 6- or 7-pointed star? I have found some > > images of what I'm looking for thru Google/images, but the > > bavkgrounf is not solid for some images, &c. Also, it is > > possible to join two or three (already-drawn, on-disk) images > > with gimp? I'm thinking of a circle surrounding a hexagon > > surrounding a square, e.g. > > > > --Part of this is just-for-fun curiosity before > > I get back to my studies; part of it is to try to create designs > > for my jottings pages. > > > > thanks for any insights, > > > > gary > > Wondered this myself. The first Google result on 'polygons gimp' > returned the GFig component accessed via filters->render->gfig. Made a 6 > pointed star inside a circle inside a square in seconds. For joining > images you may need to read up on the gimp. Specifically copy, paste, > layers, transparency, masks, and canvas sizes are just some of the > basics that you might have to deal with. > > HTH, It helps to know some of this is possible, thank you. Unfortuantly, something is fouled up in my build directory. I'm tired of the build probs so have begun to move to Ubuntu. --Unfortunately, the readmes are not installed by default. I'll google around for the online docs. gary > Micah -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 02:29:00 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2874116A4DE for ; Sat, 2 Sep 2006 02:29:00 +0000 (UTC) (envelope-from freebsd@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBDA943D45 for ; Sat, 2 Sep 2006 02:28:59 +0000 (GMT) (envelope-from freebsd@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id 352CF290C2C for ; Fri, 1 Sep 2006 23:28:53 -0300 (ADT) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.208.251]) (amavisd-new, port 10024) with ESMTP id 67337-03 for ; Fri, 1 Sep 2006 23:28:58 -0300 (ADT) Received: by hub.org (Postfix, from userid 1046) id B8881291AFC; Fri, 1 Sep 2006 23:08:42 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by hub.org (Postfix) with ESMTP id AE1AD291AFA for ; Fri, 1 Sep 2006 23:08:42 -0300 (ADT) Date: Fri, 1 Sep 2006 23:08:42 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-questions@freebsd.org Message-ID: <20060901162654.L82634@hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: BSDstats: August Statistics X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 02:29:00 -0000 Wow, September is already up to 1054 hosts reporting in, but we also have a "minor bug", in that everything is recorded to the database at time of report, in GMT ... so, for instance, all the Australian hosts reporting in show up in the database as August. Short term, it tends to make the numbers look a bit odd, but long term, it shouldn't matter ... Antony has been working on the web site itself (http://www.bsdstats.org) to make it look good, but the stats pages still need work ... but, like everyone, "business and family come first" ... I'm going to work on writing up a 'general report', and, of course, we will have 'previous stats' available on the web site, but here is how August looked over all ... September is already looking better, with 1064 hosts already reporting in ... Hosts reporting in August: 957 Top 5 Countries: Germany | 142 United States | 137 Russian Federation | 119 Ukraine | 106 Australia | 48 Architectures Reporting in: i386 | 867 amd64 | 75 sparc64 | 7 alpha | 6 powerpc | 1 ia64 | 1 Major Releases in Use: 6.x | 681 5.x | 138 4.x | 109 7.x | 29 Top 10 Branches in Use: 6.1-STABLE | 301 6.1-RELEASE | 116 6.1-RELEASE-p3 | 105 4.11-STABLE | 41 6.1-RELEASE-p2 | 31 6.0-RELEASE | 28 7.0-CURRENT | 26 5.4-RELEASE | 20 5.4-STABLE | 18 6.1-PRERELEASE | 17 From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 03:30:37 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 2D1BC16A4DE for ; Sat, 2 Sep 2006 03:30:37 +0000 (UTC) (envelope-from kline@sage.thought.org) Received: from sage.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CA6143D45 for ; Sat, 2 Sep 2006 03:30:36 +0000 (GMT) (envelope-from kline@sage.thought.org) Received: from sage.thought.org (kline@localhost [127.0.0.1]) by sage.thought.org (8.13.6/8.12.10) with ESMTP id k823UUvd068713 for ; Fri, 1 Sep 2006 20:30:30 -0700 (PDT) (envelope-from kline@sage.thought.org) Received: (from kline@localhost) by sage.thought.org (8.13.6/8.13.1/Submit) id k823UPvF068712 for freebsd-questions@FreeBSD.ORG; Fri, 1 Sep 2006 20:30:25 -0700 (PDT) (envelope-from kline) Date: Fri, 1 Sep 2006 20:30:24 -0700 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20060902033024.GA68680@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Organization: Thought Unlimited. Public service Unix for 20 years. User-Agent: Mutt/1.5.11 Cc: Subject: Oh, no.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 03:30:37 -0000 Well, gang, for about the only time in ten or eleven years, my FreeBSD has kernel crashed. The kernel err is 18 I believe a int divide by zero. I backup most stuff regularly but still have several megs of data files. Can I fix this with a fixit disk? Or is all hope lost? gary "Fatal trap 18: blah, blah.... "Uptime 1sec" -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 03:44:51 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8AE2816A4DD for ; Sat, 2 Sep 2006 03:44:51 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CC0143D46 for ; Sat, 2 Sep 2006 03:44:50 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1520043pye for ; Fri, 01 Sep 2006 20:44:45 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=hHPzFpLSByG0hMdn8SS44cGuAniwL9F/t0+00MpibUcZU7+ApkeVYrtYWetI+to6nB91EleCTc1FOFK++0s8iuIF/SHXaqXPiVu3JlQX93R9mdP1RzcOgRuQgj0MK7DUwNSlFE3+vJAA/qzmr0zz77OeVUBP6xm3RIGhslm/uzo= Received: by 10.64.249.18 with SMTP id w18mr1198831qbh; Fri, 01 Sep 2006 20:44:45 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Fri, 1 Sep 2006 20:44:45 -0700 (PDT) Message-ID: <73d604760609012044g96213cfu3d3c68cbaa51bb8e@mail.gmail.com> Date: Sat, 2 Sep 2006 09:14:45 +0530 From: "Viswas Nair" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: OT: Web development X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 03:44:51 -0000 I have this idea for a website and want to try my hand in implementing the idea. I have never done this before and do not have a clue as to where to start. I know programming in C and had learnt javascript a long time back. I dont think it should be difficult for me to quickly learn python or php and gather some knowledge in postgres. What I am concerned about is an orientation in how web based projects are modularized and developed. How to take care of security related concerns etc... I need to read up on this. Could anyone suggest a good book regarding the same? Thanks, Vishy From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 04:05:52 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 B270516A4DD for ; Sat, 2 Sep 2006 04:05:52 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28DAA43D45 for ; Sat, 2 Sep 2006 04:05:52 +0000 (GMT) (envelope-from grog@lemis.com) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 4DD979BDDB; Sat, 2 Sep 2006 13:35:51 +0930 (CST) Date: Sat, 2 Sep 2006 13:35:51 +0930 From: Greg 'groggy' Lehey To: Gary Kline Message-ID: <20060902040551.GI25190@wantadilla.lemis.com> References: <20060902033024.GA68680@thought.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8/UBlNHSEJa6utmr" Content-Disposition: inline In-Reply-To: <20060902033024.GA68680@thought.org> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: FreeBSD Mailing List Subject: System down, won't come up (was: Oh, no....) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 04:05:52 -0000 --8/UBlNHSEJa6utmr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Friday, 1 September 2006 at 20:30:24 -0700, Gary Kline wrote: > > Well, gang, for about the only time in ten or eleven years, my > FreeBSD has kernel crashed. The kernel err is 18 I believe a > int divide by zero. I backup most stuff regularly but still have > several megs of data files. Can I fix this with a fixit disk? > Or is all hope lost? > > gary > > "Fatal trap 18: blah, blah.... > > "Uptime 1sec" It sounds like you forgot to say "it crashed and won't come up again". There are dozens of reasons why this could happen. What about booting the backup kernel? If that doesn't work either, you could have hardware problems, or you could have corrupted system binaries. In the latter case, the fixit disk might help, but I'd certainly try the backup kernel before the fixit disk: it's much easier. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers. --8/UBlNHSEJa6utmr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFE+QMfIubykFB6QiMRAmUdAJ0akeuJZH43n5DZQS9dFwh6/3ovvACeMw8E SPZL/AazgAyYvlB4C+cRLk8= =QyU5 -----END PGP SIGNATURE----- --8/UBlNHSEJa6utmr-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 04:33:52 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 8803D16A4E1 for ; Sat, 2 Sep 2006 04:33:52 +0000 (UTC) (envelope-from noip@exemail.com.au) Received: from smtp.po.exetel.com.au (pecan-mail.exetel.com.au [220.233.0.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9298643D5E for ; Sat, 2 Sep 2006 04:33:50 +0000 (GMT) (envelope-from noip@exemail.com.au) Received: from 112.196.233.220.exetel.com.au ([220.233.196.112] helo=BB3500) by smtp.po.exetel.com.au with smtp (Exim 4.62) (envelope-from ) id 1GJNCW-0003aK-ON for freebsd-questions@FreeBSD.org; Sat, 02 Sep 2006 14:33:49 +1000 Message-ID: <000701c6ce48$ef2fc410$0601010a@BB3500> From: "NoIP \(exemail\)" To: Date: Sat, 2 Sep 2006 14:33:13 +1000 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.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Cc: Subject: Is the new version going to be easier to get working? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 04:33:52 -0000 Hi, Two mornings ago I was feeling pretty good. I had downloaded and burnt to disc freebsd, pcbsd and also desktopbsd. But not now Having 21 computers here I figured I would finally be rid of MSwindows, and have a complete LAN system that was more reliable. Seven computers I have tried with all three BSDs and not one of them managed to produce a working network connection. The only thing I achieved was that now I can almost visualise every screen from the installations. I am baffled by how anyone is able to get a bsd networked system working. I guess I just have to stick with a windowsOS. Regards ... Ian Galloway _________ Live simply, love blindly, care deeply, speak kindly. Leave the rest to God... From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 05:30:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7F3C916A4DF for ; Sat, 2 Sep 2006 05:30:35 +0000 (UTC) (envelope-from rlw2@cec.wustl.edu) Received: from express.cec.wustl.edu (express.cec.wustl.edu [128.252.21.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B95D43D45 for ; Sat, 2 Sep 2006 05:30:34 +0000 (GMT) (envelope-from rlw2@cec.wustl.edu) Received: from clarion.cec.wustl.edu (clarion.cec.wustl.edu [128.252.21.3]) by express.cec.wustl.edu (8.13.6/8.12.5) with ESMTP id k825UXED007752 for ; Sat, 2 Sep 2006 00:30:34 -0500 (CDT) Received: from 48rts91.wuh.wustl.edu ([128.252.48.91]) (SquirrelMail authenticated user rlw2) by clarion.cec.wustl.edu with HTTP; Sat, 2 Sep 2006 00:30:31 -0500 (CDT) Message-ID: <1063.128.252.48.91.1157175031.squirrel@clarion.cec.wustl.edu> Date: Sat, 2 Sep 2006 00:30:31 -0500 (CDT) From: rlw2@cec.wustl.edu To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Azureus downloads slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 05:30:35 -0000 Hi all, I am running a Azureus (headless w/ webui) on my FreeBSD 6.1 system and it works. The problem is that, for some reason I can't discover, downloads are slowwwww. It is not because of the torrent. It is my setup. Every couple hours download speed drops to under 1 kbps and availability drops too, so I restart Az. and download speeds are as expected for another couple of hours. What is going on here? Am i hitting some limit of open connections? I'm pretty sure it isn't the max file limit b/c i get the same problem when only downloading 1 torrent at a time. Any advice/solutions would be greatly appreciatted. Thanks a lot, ryan From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 08:14:52 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG 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 2FDFC16A4DD for ; Sat, 2 Sep 2006 08:14:52 +0000 (UTC) (envelope-from kline@magnesium.net) Received: from toxic.magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id E60CD43D53 for ; Sat, 2 Sep 2006 08:14:51 +0000 (GMT) (envelope-from kline@magnesium.net) Received: by toxic.magnesium.net (Postfix, from userid 1070) id BDD67DA8E4; Sat, 2 Sep 2006 01:14:51 -0700 (PDT) Date: Sat, 2 Sep 2006 01:14:51 -0700 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20060902081451.GA45289@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Organization: Thought.Org's Alt Site. User-Agent: Mutt/1.5.11 Cc: Subject: "Fatal trap 18" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 08:14:52 -0000 This is to any kernel exerts on-list. I'm more stumped right now than if I'd seen Elvis and had a DNA confirmation.. A few hours ago I was working away on another server while ssh'd into tao.thought.org. When I realized it wasn't responding, I buttoned over on my KVM to find the first fatal err in years. Maybe the first ever since FreeBSD 2.0.5. It read "Fatal trap 18" blah**3 ... "panic: integer divide fault". I've lost several hundred gig, but nothing I can't replace. What gets me is that no matter how I Set the BIOS, it always boots --or tries to-- from the single hard drive. I have all three set to "CDROM"; no matter I run into the boot error. I have managed to get to the menu of misc choices. "boot /boot/kernel.old" works, but it says to hit return and then instead of booting to the older kernel, it hits the fatal trap. It's like there are bloody ghosts in the system:) So what's the bottom line? This 5-year-old box has no floppy; I only have one usable hand so can't unscrew another floppy drive and boot from that [[&c]]. Is there anything I can do to reboot from the menu-driven list? tia, folks, gary PS: I was building gimp when this happened. PPS: stats: 5.4, #5. ballpark 700Mhz, 3/4th G memory, 200G drive. -- Gary Kline Seattle BSD Users' Group (seabug) | kline@magnesium.net Thought Unlimited Org's Alternate Email Site http://www.magnesium.net/~kline To live is not a necessity; but to live honorably...is a necessity. -Kant From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 08:36:53 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3CA3216A4DA for ; Sat, 2 Sep 2006 08:36:53 +0000 (UTC) (envelope-from "cyb."@gmx.net) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 2B7E443D45 for ; Sat, 2 Sep 2006 08:36:51 +0000 (GMT) (envelope-from "cyb."@gmx.net) Received: (qmail invoked by alias); 02 Sep 2006 08:36:50 -0000 Received: from pD952F680.dip0.t-ipconnect.de (EHLO p4-3200) [217.82.246.128] by mail.gmx.net (mp045) with SMTP; 02 Sep 2006 10:36:50 +0200 X-Authenticated: #4870692 Date: Sat, 02 Sep 2006 10:36:50 +0200 To: rlw2@cec.wustl.edu, freebsd-questions@freebsd.org From: "Andreas Rudisch" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-15 MIME-Version: 1.0 References: <1063.128.252.48.91.1157175031.squirrel@clarion.cec.wustl.edu> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <1063.128.252.48.91.1157175031.squirrel@clarion.cec.wustl.edu> User-Agent: Opera Mail/9.01 (Win32) X-Y-GMX-Trusted: 0 Cc: Subject: Re: Azureus downloads slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 08:36:53 -0000 On Sat, 02 Sep 2006 07:30:31 +0200, wrote: > Hi all, > I am running a Azureus (headless w/ webui) on my FreeBSD 6.1 system > and it works. The problem is that, for some reason I can't discover, > downloads are slowwwww. It is not because of the torrent. It is my > setup. Every couple hours download speed drops to under 1 kbps and > availability drops too, so I restart Az. and download speeds are as > expected for another couple of hours. http://www.azureuswiki.com/ http://www.azureuswiki.com/index.php/Good_settings http://www.azureuswiki.com/index.php/Good_Torrents Make sure to limit the number of connections and torrents according to the upload speed of your internet connection. Also limit your upload speed. Andreas From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 09:40:58 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 F3A2916A4DA for ; Sat, 2 Sep 2006 09:40:57 +0000 (UTC) (envelope-from ozgurkde@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 753D243D45 for ; Sat, 2 Sep 2006 09:40:57 +0000 (GMT) (envelope-from ozgurkde@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1639731pye for ; Sat, 02 Sep 2006 02:40:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=AU/XWZqX251z1K/tl8TIOTUWdWTh0wvN45m55kGmX31fDt4QldUCbU7ljqHcYa/KIir9YR1iCkHk7cXq5vkEROrfjlXX/04GvwSyCmNe8W69HNVSaOYiejZR/vj2tdG0JweOvp57pDs4v7sJTRd5or8Dk7ADlX6FX83HWhie/DI= Received: by 10.64.143.4 with SMTP id q4mr3641738qbd; Sat, 02 Sep 2006 02:40:56 -0700 (PDT) Received: by 10.64.84.16 with HTTP; Sat, 2 Sep 2006 02:40:56 -0700 (PDT) Message-ID: <3d89fa440609020240u719c4a9dud0e776a2532b48f7@mail.gmail.com> Date: Sat, 2 Sep 2006 12:40:56 +0300 From: "=?ISO-8859-9?Q?=F6zg=FCr_o=F0uz?=" To: "freebsd-questions@FreeBSD.org" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-9; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: FREEBSD INSTALLING X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 09:40:58 -0000 SSBoYXZlIGRvd25sb2FkZWQKZnRwOi8vZnRwLmZyZWVic2Qub3JnL3B1Yi9GcmVlQlNEL3JlbGVh c2VzL2FtZDY0L0lTTy1JTUFHRVMvNi4xLzYuMS1SRUxFQVNFLWFtZDY0LWRpc2MxLmlzbwoKZnRw Oi8vZnRwLmZyZWVic2Qub3JnL3B1Yi9GcmVlQlNEL3JlbGVhc2VzL2FtZDY0L0lTTy1JTUFHRVMv Ni4xLzYuMS1SRUxFQVNFLWFtZDY0LWRpc2MxLmlzbwpFQVNFLWFtZDY0LWJvb3Rvbmx5Lmlzbzxm dHA6Ly9mdHAuZnJlZWJzZC5vcmcvcHViL0ZyZWVCU0QvcmVsZWFzZXMvYW1kNjQvSVNPLUlNQUdF Uy82LjEvNi4xLVJFTEVBU0UtYW1kNjQtYm9vdG9ubHkuaXNvPgoKCmZ0cDovL2Z0cC5mcmVlYnNk Lm9yZy9wdWIvRnJlZUJTRC9yZWxlYXNlcy9hbWQ2NC9JU08tSU1BR0VTLzYuMS82LjEtUkVMRUFT RS1hbWQ2NC1kaXNjMi5pc28KCiAzIGZyZWVic2QgaXNvIHBhY2thZ2VzLkFmdGVyIEkgaGF2ZSBk b3dubG9hZGVkIHRoZXNlCnBhY2thZ2UsSSBoYXZlIGV4dHJpY2F0ZWQgdG8gdGhlc2UgcGFja2Fn ZXMgZnJvbSB3aW5yYXIgY29tcHJlc3MKcHJvZ3JhbS5JaGF2ZSB3cml0ZWQgdG8gMyBwYWNrYWdl cyB0bwpjZHMuSSBwdXQgdG8gZGlzYzEuaXNvIGNkIHRvIGNkcm9tIGZvciBpbnN0YWxsaW5nIHRv IGZyZWVic2QuSSBzaHV0IGRvd24gdG8KdGhlIFBDLldoZW4gSSBvcGVuIHRvIHRoZSBQQywgdGhl IGZyZWVic2QgaW5zdGFsbGluZyBkaWRudCBzdGFydC4uCldoYXQgaXMgcHJvYmxlbSA/IEhvdyBJ IGNhbiBpbnN0YWxsIHRvIGZyZWVic2QgdG8gUEMuCm15IHByb2Nlc3NvciBpcyBBTUQgU2VtcHJv biAyNjAwLCA2NCBiaXQuCgpUaGFua3Mu1npn/HIgT/B1ego= From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 09:55:48 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9905316A4DD for ; Sat, 2 Sep 2006 09:55:48 +0000 (UTC) (envelope-from julien.delange@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0EA143D46 for ; Sat, 2 Sep 2006 09:55:47 +0000 (GMT) (envelope-from julien.delange@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so1237846uge for ; Sat, 02 Sep 2006 02:55:46 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=QvZ22DszL+xmFGGtRDv+V4EQNfHqnBwf9DsbwCazl5Gu3b7RITwo/4Cm3p/hHZbaJ5a4iG0e6+EqI4vZ4/ZGvM+MgAcvvGF5348ziNuYZjiSw+qfCSqZfiwI8JZ5pKF6sKtUMU4rzYlHsI4h14EgDqosUxJe+QO5S7GLPsEaD78= Received: by 10.67.101.10 with SMTP id d10mr1662468ugm; Sat, 02 Sep 2006 02:55:46 -0700 (PDT) Received: by 10.67.26.1 with HTTP; Sat, 2 Sep 2006 02:55:46 -0700 (PDT) Message-ID: <4b76d8ca0609020255w1cfc8653y8344f95b453f826e@mail.gmail.com> Date: Sat, 2 Sep 2006 11:55:46 +0200 From: "Julien Delange" To: "=?UTF-8?Q?=C3=B6zg=C3=BCr_o=C4=9Fuz?=" , freebsd-questions@freebsd.org In-Reply-To: <3d89fa440609020240u719c4a9dud0e776a2532b48f7@mail.gmail.com> MIME-Version: 1.0 References: <3d89fa440609020240u719c4a9dud0e776a2532b48f7@mail.gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: FREEBSD INSTALLING X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 09:55:48 -0000 MjAwNi85LzIsIMO2emfDvHIgb8SfdXogPG96Z3Vya2RlQGdtYWlsLmNvbT46Cj4KPiBXaGF0IGlz IHByb2JsZW0gPyBIb3cgSSBjYW4gaW5zdGFsbCB0byBmcmVlYnNkIHRvIFBDLgo+IG15IHByb2Nl c3NvciBpcyBBTUQgU2VtcHJvbiAyNjAwLCA2NCBiaXQuCgoKWW91IGRvbid0IGhhdmUgdG8gdXNl IGEgc29mdHdhcmUgbGlrZSB3aW5yYXIuIEp1c3QgZG93bmxvYWQgdGhlIElTTyBpbWFnZXMKYW5k IGJ1cm4gZWFjaCBvZiB0aGVtIG9uIGEgQ0Qgd2l0aCBhIHV0aWxpdHkgbGlrZSBjZHJlY29yZC9u ZXJvLy4uLiBUaGVuLApwdXQgdGhlIGZpcnN0IENEIGluIHlvdXIgY2Ryb20gZHJpdmUgYW5kIHN0 YXJ0IHlvdXIgY29tcHV0ZXIuIE1vcmUsIHlvdSBoYXZlCnRvIGNoZWNrIGlmIHlvdXIgYmlvcyB0 cnkgdG8gYm9vdCBmcm9tIGNkIGRyaXZlLgo= From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 09:59:04 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BEC3D16A4DE for ; Sat, 2 Sep 2006 09:59:04 +0000 (UTC) (envelope-from keith.phipps@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EDFB43D6E for ; Sat, 2 Sep 2006 09:58:58 +0000 (GMT) (envelope-from keith.phipps@gmail.com) Received: by wx-out-0506.google.com with SMTP id i27so1298066wxd for ; Sat, 02 Sep 2006 02:58:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:x-accept-language:mime-version:to:subject:content-type:content-transfer-encoding; b=g1xWEjAMOuOmAtQAnAfdT1Qz1m7vhu0VdxqjEmLxAq4bxF5U6SxlGUCsw9qqMp4EaksSe2DPC69qQDg70mWdq6O/UuZNH7pfXzaoRH/kNStdm5vleM59nNafrayZk+jTZazUyuhQ7tesCbs+xkwrE+W2ySPlV58E2KdTBtOW00Y= Received: by 10.70.21.10 with SMTP id 10mr1939011wxu; Sat, 02 Sep 2006 02:57:11 -0700 (PDT) Received: from ?192.168.1.107? ( [74.229.86.28]) by mx.gmail.com with ESMTP id 35sm2904801wra.2006.09.02.02.57.10; Sat, 02 Sep 2006 02:57:11 -0700 (PDT) Message-ID: <44F95580.5030603@gmail.com> Date: Sat, 02 Sep 2006 05:57:20 -0400 From: Keith Phipps User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) 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 Cc: Subject: Sparkling Brand New FreeBSD Admin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 09:59:04 -0000 Good Day, My name is Keith and I"ve just been promoted to our Unix SysAdmin at work. I'll be working with a team of guys in the Ops department but the majority are Windows Admins. I'm not completely lost when it comes to using *nix, I use it as my Desktop and know Slackware and Ubuntu fairly well. I've installed FreeBSD a few times on servers, but that's about the extent of my server knoweledge and BSD. My duties in the beginning are not going to be that complex, I'll be building out boxes, racking them, health checks, running backups, generating keys, etc.. However, soon after my promotion date (11th of September I start) I'll be given more and more boxes to manage. Most of our infastructure is built on BSD, so I'm going to have upwards of 40 appliances to manage and maintain. My questions really come down to this; I'll be working with 4.x and 6.1 boxes. Are there any global issues with them I should be concerned about, something you guys as admins have to deal with regularly. The boss also said something that confused me, said I'd need to make the builds and compile php, perl, and mysql into the Kernel. I've never done much Kernel work (much, lets start with any) but it's always been my understanding that with BSD if I wanted to install PHP, PERL, and MySQL on a box, I'd just pkg_add it. I've never heard of it actually being compiled in the kernel. Right now my biggest resources have to be google and the O'Reilly book "Essential Sys. Admin." but I'd like to have a reference guide more suited to only the FreeBSD platform. Any recommendations on this as well? Thanks for your time, -Keith From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 10:47:39 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 8B67316A4DE for ; Sat, 2 Sep 2006 10:47:39 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from strange.daemonsecurity.com (59.Red-81-33-11.staticIP.rima-tde.net [81.33.11.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8837E43D53 for ; Sat, 2 Sep 2006 10:47:38 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from [10.35.4.65] (65.4-35-10-static.chueca.wifi [10.35.4.65]) by strange.daemonsecurity.com (Postfix) with ESMTP id 263D32E031; Sat, 2 Sep 2006 12:47:36 +0200 (CEST) Message-ID: <44F96118.8070105@locolomo.org> Date: Sat, 02 Sep 2006 12:46:48 +0200 From: =?ISO-8859-1?Q?Erik_N=F8rgaard?= Organization: Locolomo.ORG User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: Keith Phipps References: <44F95580.5030603@gmail.com> In-Reply-To: <44F95580.5030603@gmail.com> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms060405060108010107080005" Cc: freebsd-questions@FreeBSD.org Subject: Re: Sparkling Brand New FreeBSD Admin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 10:47:39 -0000 This is a cryptographically signed message in MIME format. --------------ms060405060108010107080005 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Keith Phipps wrote: > My questions really come down to this; I'll be working with 4.x and > 6.1 boxes. Are there any global issues with them I should be concerned > about, something you guys as admins have to deal with regularly. I spend far more time on third party apps than the base system. Subscribe to the relevant mailinglists: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html#ERESOURCES-MAIL Read the advisories for the systems you maintain. > The > boss also said something that confused me, said I'd need to make the > builds and compile php, perl, and mysql into the Kernel. I've never done > much Kernel work (much, lets start with any) but it's always been my > understanding that with BSD if I wanted to install PHP, PERL, and MySQL > on a box, I'd just pkg_add it. I've never heard of it actually being > compiled in the kernel. /into/ the kernel? > Right now my biggest resources have to be google and the O'Reilly > book "Essential Sys. Admin." but I'd like to have a reference guide more > suited to only the FreeBSD platform. Any recommendations on this as well? For general purposes: The handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ Other guides exist covering special issues, firewalling and stuff. Cheers, Erik -- Ph: +34.666334818 web: http://www.locolomo.org X.509 Certificate: http://www.locolomo.org/crt/8D03551FFCE04F0C.crt Key ID: 69:79:B8:2C:E3:8F:E7:BE:5D:C3:C3:B1:74:62:B8:3F:9F:1F:69:B9 --------------ms060405060108010107080005 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIL5jCC Be8wggPXoAMCAQICCQCNA1Uf/OBPDDANBgkqhkiG9w0BAQUFADCBmTELMAkGA1UEBhMCRVMx GDAWBgNVBAoTD0RhZW1vbiBTZWN1cml0eTEeMBwGA1UECxMVQ2VydGlmaWNhdGUgQXV0aG9y aXR5MR4wHAYDVQQDExVDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxJDAiBgkqhkiG9w0BCQEWFWNh QGRhZW1vbnNlY3VyaXR5LmNvbTEKMAgGA1UEBRMBMDAeFw0wNjA0MjAxMzE2NTBaFw0wNzA0 MjAxMzE2NTBaMGIxCzAJBgNVBAYTAkVTMRUwEwYDVQQKEwxMb2NvTG9tby5PcmcxFjAUBgNV BAMTDUVyaWsgTm9yZ2FhcmQxJDAiBgkqhkiG9w0BCQEWFW5vcmdhYXJkQGxvY29sb21vLm9y ZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMPmPk5QnkyvR4ZNS/jYCYEk6/x/ mqSIqM7XXmikYX4AmbS4AbgJg7tY150ti87oYIjH4pnt1ReYWV4P2lDE2w0Db73Fk3TGpYcq XNUu4uRl8eoMX6Mh5I34tzJc+ZJqXW0pQtzP7JDgPvLddh0roY/ongaqpnrA6dDh0QfEC+ky z1abx9xmp776RPfRnbzjUht9VGPohiZFLyNfLgw5x4Q5/efDtx3tKDMJP67UnVd1tbclKbOs +HaqxYXNr1TJ9HIpRpfb4IhBFCvBDiiHUjbGtpi2EXeHuwoQ8cp7mjl6j1BfGaoFHvqzA1GD +156qJ9waxEvx/0XGudqWJeFTVkCAwEAAaOCAW4wggFqMA8GA1UdEwEB/wQFMAMCAQAwCwYD VR0PBAQDAgO4MB0GA1UdDgQWBBRpebgs44/nvl3Dw7F0Yrg/nx9puTCBzgYDVR0jBIHGMIHD gBSOYakm6rz5V4h0qO3QlbBuYT3ipaGBn6SBnDCBmTELMAkGA1UEBhMCRVMxGDAWBgNVBAoT D0RhZW1vbiBTZWN1cml0eTEeMBwGA1UECxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR4wHAYD VQQDExVDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxJDAiBgkqhkiG9w0BCQEWFWNhQGRhZW1vbnNl Y3VyaXR5LmNvbTEKMAgGA1UEBRMBMIIJAI0DVR/84E8BMCAGA1UdEQQZMBeBFW5vcmdhYXJk QGxvY29sb21vLm9yZzA4BgNVHR8EMTAvMC2gK6AphidodHRwOi8vd3d3LmRhZW1vbnNlY3Vy aXR5LmNvbS9jYS9kcy5jcmwwDQYJKoZIhvcNAQEFBQADggIBAMefA0DXBeUmPG353ldj4jQP TKusU49AGPtH0gI0W7gnc8L6NQb7/lzpF1xW3fVOXmDBSQrSzdsmPoUiQBOv8/GTPiJbktbr eHGPDDi7xTmNgGCh/gv9EECEc0casKs778FMhJxQDIKUrBpdxpxUVHxzR9m2MgCaiOPi0oru o5ZjdNh4PyfSrYkkMJmp9w7ouulyf7wSOwwyIxZixWHVIo0lJBZCFQqIcCXzmnLUhlUKqMGb 0sOsPh7GITecrfGAM8iBpLuRjGe3yDa8Xx2riflJLjKxqcSg0OIhibS3xkGTgoJhtAJBB21G CkcnHmLXmnXYZvfE/D4twmSGo3j4D79xFA5xMJU5IwNYT+agU2srRq11eZvtVK3p2sF2rgSK 99cbCHL0K3AhhiF9z+1uLjZO8UgnvB81rQG+Kzn/nvZgQ1bvxKnrtzs3UuKPyAXflNVSiMwO vUv04tBJcIGrdiav64BTQFBgguY7JWWkrsaTeEMUHXW6aUyGCfngQ2LR6McfDeZZLM0BKXiv pjozutGTR76khWqSsttSZQoGoNbMRcHodFCZ2RHSsM1rPKINY1w7vTnr8oEVD3D+pY1UrM/o vDkvS8ypr+gg66pMC0gXl7cReoFNiE118sHKlAEGKNlka3Pga2r+AL6KrjwCZHMwOFDheFoN k9rxTruKV0O0MIIF7zCCA9egAwIBAgIJAI0DVR/84E8MMA0GCSqGSIb3DQEBBQUAMIGZMQsw CQYDVQQGEwJFUzEYMBYGA1UEChMPRGFlbW9uIFNlY3VyaXR5MR4wHAYDVQQLExVDZXJ0aWZp Y2F0ZSBBdXRob3JpdHkxHjAcBgNVBAMTFUNlcnRpZmljYXRlIEF1dGhvcml0eTEkMCIGCSqG SIb3DQEJARYVY2FAZGFlbW9uc2VjdXJpdHkuY29tMQowCAYDVQQFEwEwMB4XDTA2MDQyMDEz MTY1MFoXDTA3MDQyMDEzMTY1MFowYjELMAkGA1UEBhMCRVMxFTATBgNVBAoTDExvY29Mb21v Lk9yZzEWMBQGA1UEAxMNRXJpayBOb3JnYWFyZDEkMCIGCSqGSIb3DQEJARYVbm9yZ2FhcmRA bG9jb2xvbW8ub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw+Y+TlCeTK9H hk1L+NgJgSTr/H+apIioztdeaKRhfgCZtLgBuAmDu1jXnS2LzuhgiMfime3VF5hZXg/aUMTb DQNvvcWTdMalhypc1S7i5GXx6gxfoyHkjfi3Mlz5kmpdbSlC3M/skOA+8t12HSuhj+ieBqqm esDp0OHRB8QL6TLPVpvH3GanvvpE99GdvONSG31UY+iGJkUvI18uDDnHhDn958O3He0oMwk/ rtSdV3W1tyUps6z4dqrFhc2vVMn0cilGl9vgiEEUK8EOKIdSNsa2mLYRd4e7ChDxynuaOXqP UF8ZqgUe+rMDUYP7Xnqon3BrES/H/Rca52pYl4VNWQIDAQABo4IBbjCCAWowDwYDVR0TAQH/ BAUwAwIBADALBgNVHQ8EBAMCA7gwHQYDVR0OBBYEFGl5uCzjj+e+XcPDsXRiuD+fH2m5MIHO BgNVHSMEgcYwgcOAFI5hqSbqvPlXiHSo7dCVsG5hPeKloYGfpIGcMIGZMQswCQYDVQQGEwJF UzEYMBYGA1UEChMPRGFlbW9uIFNlY3VyaXR5MR4wHAYDVQQLExVDZXJ0aWZpY2F0ZSBBdXRo b3JpdHkxHjAcBgNVBAMTFUNlcnRpZmljYXRlIEF1dGhvcml0eTEkMCIGCSqGSIb3DQEJARYV Y2FAZGFlbW9uc2VjdXJpdHkuY29tMQowCAYDVQQFEwEwggkAjQNVH/zgTwEwIAYDVR0RBBkw F4EVbm9yZ2FhcmRAbG9jb2xvbW8ub3JnMDgGA1UdHwQxMC8wLaAroCmGJ2h0dHA6Ly93d3cu ZGFlbW9uc2VjdXJpdHkuY29tL2NhL2RzLmNybDANBgkqhkiG9w0BAQUFAAOCAgEAx58DQNcF 5SY8bfneV2PiNA9Mq6xTj0AY+0fSAjRbuCdzwvo1Bvv+XOkXXFbd9U5eYMFJCtLN2yY+hSJA E6/z8ZM+IluS1ut4cY8MOLvFOY2AYKH+C/0QQIRzRxqwqzvvwUyEnFAMgpSsGl3GnFRUfHNH 2bYyAJqI4+LSiu6jlmN02Hg/J9KtiSQwman3Dui66XJ/vBI7DDIjFmLFYdUijSUkFkIVCohw JfOactSGVQqowZvSw6w+HsYhN5yt8YAzyIGku5GMZ7fINrxfHauJ+UkuMrGpxKDQ4iGJtLfG QZOCgmG0AkEHbUYKRyceYteaddhm98T8Pi3CZIajePgPv3EUDnEwlTkjA1hP5qBTaytGrXV5 m+1UrenawXauBIr31xsIcvQrcCGGIX3P7W4uNk7xSCe8HzWtAb4rOf+e9mBDVu/Eqeu3OzdS 4o/IBd+U1VKIzA69S/Ti0Elwgat2Jq/rgFNAUGCC5jslZaSuxpN4QxQddbppTIYJ+eBDYtHo xx8N5lkszQEpeK+mOjO60ZNHvqSFapKy21JlCgag1sxFweh0UJnZEdKwzWs8og1jXDu9Oevy gRUPcP6ljVSsz+i8OS9LzKmv6CDrqkwLSBeXtxF6gU2ITXXywcqUAQYo2WRrc+Brav4Avoqu PAJkczA4UOF4Wg2T2vFOu4pXQ7QxggP8MIID+AIBATCBpzCBmTELMAkGA1UEBhMCRVMxGDAW BgNVBAoTD0RhZW1vbiBTZWN1cml0eTEeMBwGA1UECxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5 MR4wHAYDVQQDExVDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxJDAiBgkqhkiG9w0BCQEWFWNhQGRh ZW1vbnNlY3VyaXR5LmNvbTEKMAgGA1UEBRMBMAIJAI0DVR/84E8MMAkGBSsOAwIaBQCgggIp MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTA2MDkwMjEwNDY0 OFowIwYJKoZIhvcNAQkEMRYEFH0Ht5SnnQo/9YUCrHmSj3BAq1a1MFIGCSqGSIb3DQEJDzFF MEMwCgYIKoZIhvcNAwcwDgYIKoZIhvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIH MA0GCCqGSIb3DQMCAgEoMIG4BgkrBgEEAYI3EAQxgaowgacwgZkxCzAJBgNVBAYTAkVTMRgw FgYDVQQKEw9EYWVtb24gU2VjdXJpdHkxHjAcBgNVBAsTFUNlcnRpZmljYXRlIEF1dGhvcml0 eTEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MSQwIgYJKoZIhvcNAQkBFhVjYUBk YWVtb25zZWN1cml0eS5jb20xCjAIBgNVBAUTATACCQCNA1Uf/OBPDDCBugYLKoZIhvcNAQkQ AgsxgaqggacwgZkxCzAJBgNVBAYTAkVTMRgwFgYDVQQKEw9EYWVtb24gU2VjdXJpdHkxHjAc BgNVBAsTFUNlcnRpZmljYXRlIEF1dGhvcml0eTEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0 aG9yaXR5MSQwIgYJKoZIhvcNAQkBFhVjYUBkYWVtb25zZWN1cml0eS5jb20xCjAIBgNVBAUT ATACCQCNA1Uf/OBPDDANBgkqhkiG9w0BAQEFAASCAQBK23yNo38OqOlbHUVpNfmxdOt5+wjc hrD2BDZ0qqNW8/mh6nibeCX3PGMIhMx3IGk38rA9mdZJwKll9hrSxGonT3wHWAJ7O/0G5NcO mTNb85P59lfNw8QP/JW76Vpr6HhLVE0gmWoytLcMEyzw8QE1hHmw8zI6v7yEQP58yxgLUPQE UI7ZCAR8MK7WEoLDJ6HXfeqrWa7f8O7orOkfZFkxY4xhqz1N/7lhnQBWdCxfVgB9nZAkNU5u dp6YNX7zDZ36QZyzIz88mo22neQ+5DujJyZpMXD3JXopKmyxEtAOsSBNdiwDFwqwWnP4+llE 35Q4yPtG49ma5w05oCEGlw4OAAAAAAAA --------------ms060405060108010107080005-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 10:56:44 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 DE28116A4DE for ; Sat, 2 Sep 2006 10:56:44 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout5.cac.washington.edu (mxout5.cac.washington.edu [140.142.32.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id C833543D5E for ; Sat, 2 Sep 2006 10:56:41 +0000 (GMT) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.9]) by mxout5.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k82AufDl023533 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 2 Sep 2006 03:56:41 -0700 X-Auth-Received: from [192.168.0.50] (dsl254-013-145.sea1.dsl.speakeasy.net [216.254.13.145]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.03) with ESMTP id k82AueEM000338 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sat, 2 Sep 2006 03:56:40 -0700 Message-ID: <44F96366.8020609@u.washington.edu> Date: Sat, 02 Sep 2006 03:56:38 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <3d89fa440609020240u719c4a9dud0e776a2532b48f7@mail.gmail.com> In-Reply-To: <3d89fa440609020240u719c4a9dud0e776a2532b48f7@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-PMX-Version: 5.2.0.264296, Antispam-Engine: 2.4.0.264935, Antispam-Data: 2006.9.2.33942 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CP_MEDIA_BODY 0, __CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __RUS_SUBJ_ALL_UCASE_1251 0, __RUS_SUBJ_ALL_UCASE_KOI8R 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: Re: FREEBSD INSTALLING X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 10:56:44 -0000 özgür og(uz wrote: > I have downloaded > ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/ISO-IMAGES/6.1/6.1-RELEASE-amd64-disc1.iso > > > ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/ISO-IMAGES/6.1/6.1-RELEASE-amd64-disc1.iso > > EASE-amd64-bootonly.iso > > > > ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/ISO-IMAGES/6.1/6.1-RELEASE-amd64-disc2.iso > > > 3 freebsd iso packages.After I have downloaded these > package,I have extricated to these packages from winrar compress > program.Ihave writed to 3 packages to > cds.I put to disc1.iso cd to cdrom for installing to freebsd.I shut > down to > the PC.When I open to the PC, the freebsd installing didnt start.. > What is problem ? How I can install to freebsd to PC. > my processor is AMD Sempron 2600, 64 bit. > > Thanks.Özgür Og(uz Use ISO burning software to burn the CD image you downloaded from the FreeBSD FTP site. I suggest using this program for instance because it's simple and if you don't have Nero, Roxio, or DLA, this is an excellent program to use as it just utilizes built in components in Windows XP to burn ISOs: . -Garrett From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 11:09:58 2006 Return-Path: X-Original-To: questions@freebsd.org 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 8190916A4DA for ; Sat, 2 Sep 2006 11:09:58 +0000 (UTC) (envelope-from toomas.aas@raad.tartu.ee) Received: from mail.neti.ee (smtp-out-1.neti.ee [194.126.101.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27A7643D49 for ; Sat, 2 Sep 2006 11:09:57 +0000 (GMT) (envelope-from toomas.aas@raad.tartu.ee) Received: from [88.196.106.25] (88-196-106-25-dsl.trt.estpak.ee [88.196.106.25]) by Relayhost1.neti.ee (Postfix) with ESMTP id 705AE19148 for ; Sat, 2 Sep 2006 14:09:56 +0300 (EEST) Message-ID: <44F96683.1010806@raad.tartu.ee> Date: Sat, 02 Sep 2006 14:09:55 +0300 From: Toomas Aas User-Agent: Thunderbird 1.5.0.2 (X11/20060424) MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-2.2.1 (20041222) (Debian) at neti.ee Cc: Subject: HP MSA1500 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 11:09:58 -0000 Hello! Has anyone successfully connected their FreeBSD server to HP MSA1500 SAN? I googled for it and found that some people are having problems, but I hope there are also people out there who are not having problems with this setup (and hence have had no reason to post). I'm especially interested in multi-path setup using switches. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 11:18:15 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 99D2616A4DA for ; Sat, 2 Sep 2006 11:18:15 +0000 (UTC) (envelope-from ke.han@redstarling.com) Received: from smtp102.biz.mail.mud.yahoo.com (smtp102.biz.mail.mud.yahoo.com [68.142.200.237]) by mx1.FreeBSD.org (Postfix) with SMTP id 307ED43D46 for ; Sat, 2 Sep 2006 11:18:14 +0000 (GMT) (envelope-from ke.han@redstarling.com) Received: (qmail 44646 invoked from network); 2 Sep 2006 11:18:14 -0000 Received: from unknown (HELO ?192.168.1.20?) (ke.han@redstarling.com@61.170.136.61 with plain) by smtp102.biz.mail.mud.yahoo.com with SMTP; 2 Sep 2006 11:18:13 -0000 In-Reply-To: <44F95580.5030603@gmail.com> References: <44F95580.5030603@gmail.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <451F07E6-A5BB-428F-97B2-913E7448A164@redstarling.com> Content-Transfer-Encoding: 7bit From: ke han Date: Sat, 2 Sep 2006 19:18:04 +0800 To: Keith Phipps X-Mailer: Apple Mail (2.752.2) Cc: freebsd-questions@FreeBSD.org Subject: Re: Sparkling Brand New FreeBSD Admin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 11:18:15 -0000 Keith, welcome to the party!!! 1 - getting a solid handle on using installing/config/upgrading ports is key... 2 - the harder step is being able to "rebuild world" and possibly make changes to the "kernel" config. 3 - differences in config files and management between 4.x and 6.1 is a bit wide, but well documented. The above are well covered in the handbook and there are some good howtos you can search for as well. As to your boss's mention of integrating PHP, MySQL "into the kernel".. I'm pretty sure you will only need to use the ports installs of these apps ;-) For server deamons (not GUI stuff), FreeBSD is the easiest game in town. ke han On Sep 2, 2006, at 5:57 PM, Keith Phipps wrote: > Good Day, > > My name is Keith and I"ve just been promoted to our Unix > SysAdmin at work. I'll be working with a team of guys in the Ops > department but the majority are Windows Admins. I'm not completely > lost when it comes to using *nix, I use it as my Desktop and know > Slackware and Ubuntu fairly well. I've installed FreeBSD a few > times on servers, but that's about the extent of my server > knoweledge and BSD. > > My duties in the beginning are not going to be that complex, > I'll be building out boxes, racking them, health checks, running > backups, generating keys, etc.. However, soon after my promotion > date (11th of September I start) I'll be given more and more boxes > to manage. Most of our infastructure is built on BSD, so I'm going > to have upwards of 40 appliances to manage and maintain. > > My questions really come down to this; I'll be working with 4.x > and 6.1 boxes. Are there any global issues with them I should be > concerned about, something you guys as admins have to deal with > regularly. The boss also said something that confused me, said I'd > need to make the builds and compile php, perl, and mysql into the > Kernel. I've never done much Kernel work (much, lets start with > any) but it's always been my understanding that with BSD if I > wanted to install PHP, PERL, and MySQL on a box, I'd just pkg_add > it. I've never heard of it actually being compiled in the kernel. > > Right now my biggest resources have to be google and the > O'Reilly book "Essential Sys. Admin." but I'd like to have a > reference guide more suited to only the FreeBSD platform. Any > recommendations on this as well? > > Thanks for your time, > -Keith > _______________________________________________ > 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 Sat Sep 2 11:21:24 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 34DEF16A4DA for ; Sat, 2 Sep 2006 11:21:24 +0000 (UTC) (envelope-from wittig.robert@sbcglobal.net) Received: from smtp107.sbc.mail.re2.yahoo.com (smtp107.sbc.mail.re2.yahoo.com [68.142.229.98]) by mx1.FreeBSD.org (Postfix) with SMTP id 92FCB43D45 for ; Sat, 2 Sep 2006 11:21:23 +0000 (GMT) (envelope-from wittig.robert@sbcglobal.net) Received: (qmail 29553 invoked from network); 2 Sep 2006 11:21:22 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=sbcglobal.net; h=Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=xgcCkTfN8z3eyHAj/AxD8Zt9k5FSn58sLkcVGR/xEUxKpS55tKPz4BBceqB+wHQ5zmfbZz1SebxuUfnOawFPpw+EIKr8+VdECWo03g7wW/WMRmqHAUFMflo4HLY0Hp/e+RpKL72FD9R47mS4hOS3D0naeKFdxwwxnjmiZLPY7Go= ; Received: from unknown (HELO ?192.168.1.3?) (wittig.robert@sbcglobal.net@70.142.248.62 with plain) by smtp107.sbc.mail.re2.yahoo.com with SMTP; 2 Sep 2006 11:21:22 -0000 Message-ID: <44F96965.3030607@sbcglobal.net> Date: Sat, 02 Sep 2006 06:22:13 -0500 From: Robert C Wittig User-Agent: Thunderbird 1.5.0.5 (X11/20060719) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org References: <44F95580.5030603@gmail.com> In-Reply-To: <44F95580.5030603@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Sparkling Brand New FreeBSD Admin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 11:21:24 -0000 Keith Phipps wrote: > My questions really come down to this; I'll be working with 4.x and > 6.1 boxes. Are there any global issues with them I should be concerned > about, something you guys as admins have to deal with regularly. The > boss also said something that confused me, said I'd need to make the > builds and compile php, perl, and mysql into the Kernel. I've never done > much Kernel work (much, lets start with any) but it's always been my > understanding that with BSD if I wanted to install PHP, PERL, and MySQL > on a box, I'd just pkg_add it. I've never heard of it actually being > compiled in the kernel. > I think that you misunderstood... mod_perl and mod_php can be compiled into Apache web server, though. > Right now my biggest resources have to be google and the O'Reilly > book "Essential Sys. Admin." but I'd like to have a reference guide more > suited to only the FreeBSD platform. Any recommendations on this as well? I found 'AbsoluteBSD' by Michael Lucas useful. I also run OpenBSD on my Internet-exposed web and mail servers, and found 'Absolute OpenBSD' by Michael Lucas equally useful. -- -wittig http://www.robertwittig.com/ . http://robertwittig.net/ From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 13:12:59 2006 Return-Path: X-Original-To: questions@freebsd.org 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 7263216A4E6 for ; Sat, 2 Sep 2006 13:12:59 +0000 (UTC) (envelope-from nicklas@dinpris.no) Received: from dp-mail-01.dinpris.com (dp-mail-01.dinpris.com [62.73.247.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 97BF643D58 for ; Sat, 2 Sep 2006 13:12:57 +0000 (GMT) (envelope-from nicklas@dinpris.no) Received: (qmail 49266 invoked by uid 1004); 2 Sep 2006 13:35:43 -0000 Received: from 62.73.247.72 by dp-mail-01.dinpris.com (envelope-from , uid 98) with qmail-scanner-2.01 (clamdscan: 0.88.4/1674. spamassassin: 3.1.4. Clear:RC:1(62.73.247.72):. Processed in 0.025293 secs); 02 Sep 2006 13:35:43 -0000 Received: from gatekeeper.secure.dinpris.com (HELO ?127.0.0.1?) (62.73.247.72) by dp-mail-01.dinpris.com with SMTP; 2 Sep 2006 13:35:42 -0000 Message-ID: <44F98352.2000009@dinpris.no> Date: Sat, 02 Sep 2006 15:12:50 +0200 From: "Nicklas B. Westerlund" User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Toomas Aas References: <44F96683.1010806@raad.tartu.ee> In-Reply-To: <44F96683.1010806@raad.tartu.ee> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: HP MSA1500 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 13:12:59 -0000 Toomas Aas skrev: > Hello! > > Has anyone successfully connected their FreeBSD server to HP MSA1500 > SAN? I googled for it and found that some people are having problems, > but I hope there are also people out there who are not having problems > with this setup (and hence have had no reason to post). Using 6.1, I'm running against MSA1500, and it's all working. I'm using Qlogic 2312 FC Adapters, into Brocade switches, and then down to the msa controllers and diskshelves. I'm using the 'Solaris' profile setting on the MSAs, and that's working. Nick. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 13:40:31 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7966216A4DF for ; Sat, 2 Sep 2006 13:40:31 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26E8B43D46 for ; Sat, 2 Sep 2006 13:40:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id D9D081A4D90; Sat, 2 Sep 2006 06:40:30 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 997BE51541; Sat, 2 Sep 2006 09:40:27 -0400 (EDT) Date: Sat, 2 Sep 2006 09:40:27 -0400 From: Kris Kennaway To: Skylar Thompson Message-ID: <20060902134026.GA65968@xor.obsecurity.org> References: <44F87733.2020405@squaretrade.com> <20060901213936.GA21561@xor.obsecurity.org> <44F8BCD9.4090308@cs.earlham.edu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FCuugMFkClbJLl1L" Content-Disposition: inline In-Reply-To: <44F8BCD9.4090308@cs.earlham.edu> User-Agent: Mutt/1.4.2.2i Cc: Paul Lathrop , freebsd-questions@freebsd.org, Kris Kennaway Subject: Re: Snapshot performance X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 13:40:31 -0000 --FCuugMFkClbJLl1L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Sep 01, 2006 at 04:06:01PM -0700, Skylar Thompson wrote: > Kris Kennaway wrote: > > On Fri, Sep 01, 2006 at 11:08:51AM -0700, Paul Lathrop wrote: > > =20 > >> Hi all, > >> > >> We're working on deploying a new mail server on FreeBSD 6.1-STABLE. One > >> of the major selling points was the ability to take filesystem snapsho= ts > >> in order to make backups from a consistent filesystem on such a > >> high-traffic system. Unfortunately, when I take a snapshot, performance > >> slows to a crawl - to the point where the system stops responding to > >> network requests (ping, SMTP, etc.). Also, the snapshot takes 10-15 > >> minutes to complete. > >> > >> Is this a typical situation? Will I need to schedule downtime for > >> backups in spite of this nifty new feature? Am I doing something wrong? > >> =20 > > > > Time depends on the size of the filesystem - but you are correct that > > snapshots were not designed with performance in mind (rather, to speed > > up booting after an unclean shutdown by removing the need to wait for > > fsck). > > > > Kris > > =20 > Are there plans to improve performance of snapshots? Using the > freebsd-snapshot port to link FS snapshots to the automounter is pretty > nifty, but it does kill I/O performance while that's in progress as the > OP mentioned. Unfortunately I don't think anyone is working on it. The closest thing on the horizon is ZFS support which does feature high-performance snapshots. This is still a way off though. Kris --FCuugMFkClbJLl1L Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE+YnKWry0BWjoQKURAig9AKD1Fzx5r7EekqEd/Yalal+nsmg19ACbBFZn 7f0js4/hFRSTR0K2v2A4fFg= =UmQP -----END PGP SIGNATURE----- --FCuugMFkClbJLl1L-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 13:43:31 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 5183716A4DE for ; Sat, 2 Sep 2006 13:43:31 +0000 (UTC) (envelope-from jerrymc@msu.edu) Received: from sys34.mail.msu.edu (sys34.mail.msu.edu [35.9.75.134]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4D7743D45 for ; Sat, 2 Sep 2006 13:43:30 +0000 (GMT) (envelope-from jerrymc@msu.edu) Received: from jerrymc by sys34.mail.msu.edu with local (Exim 4.52 #1) id 1GJVmU-0003It-BW; Sat, 02 Sep 2006 09:43:30 -0400 References: <44F95580.5030603@gmail.com> In-Reply-To: <44F95580.5030603@gmail.com> From: "Jerold McAllister" To: Keith Phipps Date: Sat, 02 Sep 2006 09:43:18 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: X-Virus: None found by Clam AV Cc: freebsd-questions@FreeBSD.org Subject: Re: Sparkling Brand New FreeBSD Admin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 13:43:31 -0000 Keith Phipps writes: > Good Day, > > My name is Keith and I"ve just been promoted to our Unix SysAdmin at > work. I'll be working with a team of guys in the Ops department but the > majority are Windows Admins. I'm not completely lost when it comes to > using *nix, I use it as my Desktop and know Slackware and Ubuntu fairly > well. I've installed FreeBSD a few times on servers, but that's about the > extent of my server knoweledge and BSD. > My questions really come down to this; I'll be working with 4.x and 6.1 > boxes. Are there any global issues with them I should be concerned about, > something you guys as admins have to deal with regularly. The boss also > said something that confused me, said I'd need to make the builds and > compile php, perl, and mysql into the Kernel. I've never done much Kernel > work (much, lets start with any) but it's always been my understanding > that with BSD if I wanted to install PHP, PERL, and MySQL on a box, I'd > just pkg_add it. I've never heard of it actually being compiled in the > kernel. You are are right in the case on those utilities. They do not go in the kernel. > Right now my biggest resources have to be google and the O'Reilly book > "Essential Sys. Admin." but I'd like to have a reference guide more suited > to only the FreeBSD platform. Any recommendations on this as well? The FreeBSD handbook online and hopefully installed is your best bet. ////jerry > > Thanks for your time, > -Keith > _______________________________________________ > 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 Sat Sep 2 13:59:39 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 401BF16A4DD for ; Sat, 2 Sep 2006 13:59:39 +0000 (UTC) (envelope-from dino_vliet@yahoo.com) Received: from web51112.mail.yahoo.com (web51112.mail.yahoo.com [206.190.39.89]) by mx1.FreeBSD.org (Postfix) with SMTP id AE0B143D5C for ; Sat, 2 Sep 2006 13:59:38 +0000 (GMT) (envelope-from dino_vliet@yahoo.com) Received: (qmail 44561 invoked by uid 60001); 2 Sep 2006 13:59:38 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=sb898p2SBUr7moyy6xg0dXAXxgJ4CML99WbhjjJq7XiCfyt5ogTEPNCrLJXR3/X1LA1nK5KiXeeyBFgmJWIuLe7Gt4ie0fcLuy74TLETSBrrb+g3rGatiFqyhLVFVdmpz9ngC9OizBgiC7W8E0gf+hynuWXtgSLmhZMfGKR1khs= ; Message-ID: <20060902135938.44559.qmail@web51112.mail.yahoo.com> Received: from [82.170.181.144] by web51112.mail.yahoo.com via HTTP; Sat, 02 Sep 2006 06:59:37 PDT Date: Sat, 2 Sep 2006 06:59:37 -0700 (PDT) From: Dino Vliet To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: memorystick usage on freebsd...now what:-) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 13:59:39 -0000 Peeps, I bought this emtec usb storage device and plugged it into my freebsd6.1 laptop. Dmesg gives: umass0: vendor 0x13fe USB DISK 2.0, rev 2.00/1.00, addr 2 da0 at umass-sim0 bus 0 target 0 lun 0 da0: < USB DISK 2.0 PMAP> Removable Direct Access SCSI-0 device da0: 1.000MB/s transfers da0: 471MB (964608 512 byte sectors: 64H 32S/T 471C) But now I'm lost.... I want to mount this baby, but don't really know how to proceed. The handbook shows me to go to section 17.3, but there they talk about nasty looking commands. Can somebody get me up and running quickly? Can I remove the usb stick safely before mounting it? I already used it @work on windows to put some files on it so why won't the mount_msdos /dev/da0s1 /mnt command not work in this case? Thanks __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 14:33:07 2006 Return-Path: X-Original-To: questions@FreeBSD.org 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 5379116A4DD for ; Sat, 2 Sep 2006 14:33:07 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02E3B43D53 for ; Sat, 2 Sep 2006 14:33:07 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id C9DCC1A4D91; Sat, 2 Sep 2006 07:33:06 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4A7FC5149D; Sat, 2 Sep 2006 10:33:06 -0400 (EDT) Date: Sat, 2 Sep 2006 10:33:06 -0400 From: Kris Kennaway To: g Message-ID: <20060902143306.GA68074@xor.obsecurity.org> References: <20060901013412.GA64506@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: questions@FreeBSD.org, Kris Kennaway Subject: Re: newbie. how to compile gcc-4.1.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 14:33:07 -0000 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Sep 02, 2006 at 10:17:27AM -0400, g wrote: > ok, i got a snapshot of the make bootstrap > it shows the error. >=20 > ??? Well, you didn't quite follow my instructions, but you showed enough to see that something is quite odd on your system: ---- srcdir=3D"/usr/ports/gcc-4.1.1/fixincludes" /bin/sh /usr/ports/gcc-4.1.1/fi= xincludes/mkfixinc.sh +i386-unknown-freebsd6.1 sed -e 's/@gcc_version@//' < > mkheadersT *** Error code 2 Stop in /usr/ports/objdir/build-i386-unknown-freebsd6.1/fixincludes. *** Error code 1 Stop in /usr/ports/objdir. ---- Those directories are completely non-standard. How did you install your ports collection? The gcc41 port is supposed to be in /usr/ports/lang/gcc41, not /usr/ports/gcc-4.1.1. Are you really using the ports collection or did you just download the gcc source code directly? Kris P.S. Don't drop the mailing list from your replies, or no-one else will be able to help you! --ew6BAiZeqk4r7MaW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE+ZYhWry0BWjoQKURAhI1AKCLsDNkvZ3SD3sbGIFxax23kff9+QCg/xNC W8NawA3jU95nhzXls5iqymA= =a/s2 -----END PGP SIGNATURE----- --ew6BAiZeqk4r7MaW-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 14:33:27 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B8E1C16A4DA for ; Sat, 2 Sep 2006 14:33:27 +0000 (UTC) (envelope-from g.one@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54C2343D55 for ; Sat, 2 Sep 2006 14:33:27 +0000 (GMT) (envelope-from g.one@mac.com) Received: from mac.com (smtpin04-en2 [10.13.10.149]) by smtpout.mac.com (Xserve/8.12.11/smtpout14/MantshX 4.0) with ESMTP id k82EXRg2025676 for ; Sat, 2 Sep 2006 07:33:27 -0700 (PDT) Received: from [192.168.2.3] (cpe-065-191-021-225.nc.res.rr.com [65.191.21.225]) (authenticated bits=0) by mac.com (Xserve/smtpin04/MantshX 4.0) with ESMTP id k82EXOh5026461 for ; Sat, 2 Sep 2006 07:33:25 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v752.2) To: freebsd-questions@freebsd.org Message-Id: From: g Date: Sat, 2 Sep 2006 10:33:21 -0400 X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAQAAA+k= X-Language-Identified: TRUE Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Newbie Alert: compiling problem with gcc-4.1.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 14:33:27 -0000 :-) thanks for the patience and help. i tried to compile gcc-4.1.1. the OS is FreeBSD 6.1 intel pentium 4 processor intel desktop board d865gvhz 512 MB the problem has something to do with fixincludes. ************* snap shot after creating config.h *********************** config.status: creating config.h gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing- prototypes -Wold-style-definition -Wmissing-format-attribute - pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I/usr/ports/gcc-4.1.1/ fixincludes -I../include -I/usr/ports/gcc-4.1.1/fixincludes/../ include /usr/ports/gcc-4.1.1/fixincludes/fixincl.c gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing- prototypes -Wold-style-definition -Wmissing-format-attribute - pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I/usr/ports/gcc-4.1.1/ fixincludes -I../include -I/usr/ports/gcc-4.1.1/fixincludes/../ include /usr/ports/gcc-4.1.1/fixincludes/fixtests.c gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing- prototypes -Wold-style-definition -Wmissing-format-attribute - pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I/usr/ports/gcc-4.1.1/ fixincludes -I../include -I/usr/ports/gcc-4.1.1/fixincludes/../ include /usr/ports/gcc-4.1.1/fixincludes/fixfixes.c gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing- prototypes -Wold-style-definition -Wmissing-format-attribute - pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I/usr/ports/gcc-4.1.1/ fixincludes -I../include -I/usr/ports/gcc-4.1.1/fixincludes/../ include /usr/ports/gcc-4.1.1/fixincludes/server.c gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing- prototypes -Wold-style-definition -Wmissing-format-attribute - pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I/usr/ports/gcc-4.1.1/ fixincludes -I../include -I/usr/ports/gcc-4.1.1/fixincludes/../ include /usr/ports/gcc-4.1.1/fixincludes/procopen.c gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing- prototypes -Wold-style-definition -Wmissing-format-attribute - pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I/usr/ports/gcc-4.1.1/ fixincludes -I../include -I/usr/ports/gcc-4.1.1/fixincludes/../ include /usr/ports/gcc-4.1.1/fixincludes/fixlib.c gcc -c -g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing- prototypes -Wold-style-definition -Wmissing-format-attribute - pedantic -Wno-long-long -DHAVE_CONFIG_H -I. -I/usr/ports/gcc-4.1.1/ fixincludes -I../include -I/usr/ports/gcc-4.1.1/fixincludes/../ include /usr/ports/gcc-4.1.1/fixincludes/fixopts.c gcc -g -O2 -o fixincl fixincl.o fixtests.o fixfixes.o server.o procopen.o fixlib.o fixopts.o ../libiberty/libiberty.a echo timestamp > full-stamp srcdir="/usr/ports/gcc-4.1.1/fixincludes" /bin/sh /usr/ports/ gcc-4.1.1/fixincludes/mkfixinc.sh i386-unknown-freebsd6.1 sed -e 's/@gcc_version@//' < > mkheadersT *** Error code 2 Stop in /usr/ports/objdir/build-i386-unknown-freebsd6.1/fixincludes. *** Error code 1 Stop in /usr/ports/objdir. ************************ end snap shot ************************************* thanks everyone, kris pointed out in my post before i didn't include enough information, thanks kris. i hope this is enough, if not, i also have a file which contains what i saw as it made bootstrap. i created that file by doing: make bootstrap > myErrorMakeBootstrap g. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 14:33:43 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9DABB16A4E6 for ; Sat, 2 Sep 2006 14:33:43 +0000 (UTC) (envelope-from scott@fishballoon.org) Received: from mtaout03-winn.ispmail.ntl.com (mtaout03-winn.ispmail.ntl.com [81.103.221.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A2DD43D5C for ; Sat, 2 Sep 2006 14:33:41 +0000 (GMT) (envelope-from scott@fishballoon.org) Received: from aamtaout03-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout03-winn.ispmail.ntl.com with ESMTP id <20060902143340.VKAI1865.mtaout03-winn.ispmail.ntl.com@aamtaout03-winn.ispmail.ntl.com>; Sat, 2 Sep 2006 15:33:40 +0100 Received: from llama.fishballoon.org ([81.101.128.185]) by aamtaout03-winn.ispmail.ntl.com with ESMTP id <20060902143340.LISK11710.aamtaout03-winn.ispmail.ntl.com@llama.fishballoon.org>; Sat, 2 Sep 2006 15:33:40 +0100 Received: from tuatara.fishballoon.org ([192.168.1.6]) by llama.fishballoon.org with esmtp (Exim 4.61 (FreeBSD)) (envelope-from ) id 1GJWZ0-0003uI-1q; Sat, 02 Sep 2006 15:33:38 +0100 Received: (from scott@localhost) by tuatara.fishballoon.org (8.13.6/8.13.6/Submit) id k82EXbRA001692; Sat, 2 Sep 2006 15:33:37 +0100 (BST) (envelope-from scott) Date: Sat, 2 Sep 2006 15:33:37 +0100 From: Scott Mitchell To: Dino Vliet Message-ID: <20060902143337.GA1579@tuatara.fishballoon.org> References: <20060902135938.44559.qmail@web51112.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060902135938.44559.qmail@web51112.mail.yahoo.com> X-Operating-System: FreeBSD 6.1-RELEASE i386 User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: memorystick usage on freebsd...now what:-) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 14:33:43 -0000 On Sat, Sep 02, 2006 at 06:59:37AM -0700, Dino Vliet wrote: > Peeps, > > I bought this emtec usb storage device and plugged it > into my freebsd6.1 laptop. Dmesg gives: > > umass0: vendor 0x13fe USB DISK 2.0, rev 2.00/1.00, > addr 2 > da0 at umass-sim0 bus 0 target 0 lun 0 > da0: < USB DISK 2.0 PMAP> Removable Direct Access > SCSI-0 device > da0: 1.000MB/s transfers > da0: 471MB (964608 512 byte sectors: 64H 32S/T 471C) > > But now I'm lost.... > I want to mount this baby, but don't really know how > to proceed. The handbook shows me to go to section > 17.3, but there they talk about nasty looking > commands. Can somebody get me up and running quickly? 17.3 is about partitioning and formatting - you don't need to do any of that, since you;ve already been able to use the device on another machine. > Can I remove the usb stick safely before mounting it? You can safely remove it anytime it's not mounted. > I already used it @work on windows to put some files > on it so why won't the mount_msdos /dev/da0s1 /mnt > command not work in this case? It's mount_msdosfs, but otherwise that should work. I've seen devices where the only partition showed up as /dev/da0s4, so it might be worth checking which /dev/da0s* nodes were actually created, or run 'fdisk da0' to see the partition table data. HTH, Scott -- =========================================================================== Scott Mitchell | PGP Key ID | "Eagles may soar, but weasels Cambridge, England | 0x54B171B9 | don't get sucked into jet engines" scott at fishballoon.org | 0xAA775B8B | -- Anon From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 14:46:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 37C4116A4DE for ; Sat, 2 Sep 2006 14:46:08 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF07543D45 for ; Sat, 2 Sep 2006 14:46:07 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so644486nzn for ; Sat, 02 Sep 2006 07:46:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=kF81XTc9tP0uQcKvYwhnx6DF1MydA9hMUdAK21PSF5H/3nqwr3M0rX6cdbagMNBFgqZMDcYIHiIBINF719G/ziyzwdEQJldyhPmrwdd1KS7x0pDc/etWzCjRkAqwavEabd9iQZFd08WJz2nKwGxo2wfT1J66iWpcMoeF3nM+Jwo= Received: by 10.65.251.1 with SMTP id d1mr3817997qbs; Sat, 02 Sep 2006 07:46:06 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Sat, 2 Sep 2006 07:46:06 -0700 (PDT) Message-ID: <94ff3700609020746i5b0a8031t522a2f774fcc7985@mail.gmail.com> Date: Sat, 2 Sep 2006 16:46:06 +0200 From: "Jordi Carrillo" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: flash plugin and firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 14:46:08 -0000 This I suppose is the eternal question, but I'm quite sick of looking around google without having a detailed step by step process to get the flash plugin for firefox. There are some that talk about tweaking the kernel and applying patches? Is it really so difficult having the flash plugin for firefox (compiled one)? If anyone has the consideration to detail a working solution for the 6.1freebsd release, will be much appreciated, Thanks in advance for your help, -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 14:51:04 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8CB3B16A4DA for ; Sat, 2 Sep 2006 14:51:04 +0000 (UTC) (envelope-from stanb@panix.com) Received: from mail1.panix.com (mail1.panix.com [166.84.1.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAE1B43D46 for ; Sat, 2 Sep 2006 14:51:03 +0000 (GMT) (envelope-from stanb@panix.com) Received: from mailspool3.panix.com (mailspool3.panix.com [166.84.1.78]) by mail1.panix.com (Postfix) with ESMTP id 6D46B58A9C for ; Sat, 2 Sep 2006 10:51:03 -0400 (EDT) Received: from teddy.fas.com (c-68-58-232-106.hsd1.sc.comcast.net [68.58.232.106]) by mailspool3.panix.com (Postfix) with ESMTP id E351BD2DCE2 for ; Sat, 2 Sep 2006 10:51:03 -0400 (EDT) Received: from stan by teddy.fas.com with local (Exim 3.36 #1 (Debian)) id 1GJWpq-0004jQ-00 for ; Sat, 02 Sep 2006 10:51:02 -0400 Date: Sat, 2 Sep 2006 10:51:02 -0400 From: stan To: Free BSD Questions list Message-ID: <20060902145102.GB17871@teddy.fas.com> Mail-Followup-To: Free BSD Questions list Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Editor: gVim X-Operating-System: Debian GNU/Linux X-Kernel-Version: 2.4.23 X-Uptime: 10:39:58 up 138 days, 11:46, 3 users, load average: 0.24, 0.22, 0.12 User-Agent: Mutt/1.5.4i Sender: Stan Brown Subject: KDE does not keep it's configuration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 14:51:04 -0000 Last weekend I built a new machine, cvsup'd to current. I built the KDE metaport, and all seems to work well, _except_ that every time i log into KDE, from kdm, I am prompted to go through the inital configuration wizzerd again. Where is this information stored? Any idea, why it might not be persistant on my installation? -- Unix is very simple, but it takes a genius to understand the simplicity. (Dennis Ritchie) From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 14:59:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 9CBD816A4DE for ; Sat, 2 Sep 2006 14:59:40 +0000 (UTC) (envelope-from jwm-freebsd-questions@sentinelchicken.net) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id C289A43D5A for ; Sat, 2 Sep 2006 14:59:39 +0000 (GMT) (envelope-from jwm-freebsd-questions@sentinelchicken.net) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 02 Sep 2006 10:59:38 -0400 X-IronPort-AV: i="4.08,202,1154923200"; d="scan'208"; a="291601495:sNHT29148420" Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.7.5a-GA) with ESMTP id GVV27148; Sat, 2 Sep 2006 10:59:37 -0400 (EDT) Received: from 207-172-209-180.c3-0.bkl-ubr2.sbo-bkl.ma.cable.rcn.com (HELO skepsi.net) ([207.172.209.180]) by smtp01.lnh.mail.rcn.net with SMTP; 02 Sep 2006 10:59:35 -0400 X-IronPort-AV: i="4.08,202,1154923200"; d="scan'208"; a="269365582:sNHT33064894" Received: (qmail 81839 invoked from network); 2 Sep 2006 14:59:47 -0000 Received: from unknown (HELO crichton.skepsi.net) (10.0.0.101) by aeryn.skepsi.net with SMTP; 2 Sep 2006 14:59:47 -0000 Received: (nullmailer pid 81836 invoked by uid 1000); Sat, 02 Sep 2006 14:59:47 -0000 Date: Sat, 2 Sep 2006 10:59:47 -0400 From: Jason Morgan To: freebsd-questions@freebsd.org Message-ID: <20060902145947.GB81806@sentinelchicken.net> References: <000701c6ce48$ef2fc410$0601010a@BB3500> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000701c6ce48$ef2fc410$0601010a@BB3500> User-Agent: Mutt/1.5.12-2006-07-14 X-Junkmail-Status: score=10/50, host=mr08.lnh.mail.rcn.net X-Junkmail-SD-Raw: score=unknown, refid=str=0001.0A090207.44F99AFA.0016,ss=1,fgs=0, ip=207.172.4.11, so=2006-05-09 23:27:51, dmn=5.2.4/2006-05-04 Subject: Re: Is the new version going to be easier to get working? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 14:59:40 -0000 On Sat, Sep 02, 2006 at 02:33:13PM +1000, NoIP (exemail) wrote: > Hi, > > Two mornings ago I was feeling pretty good. I had downloaded and > burnt to disc freebsd, pcbsd and also desktopbsd. But not now > > Having 21 computers here I figured I would finally be rid of > MSwindows, and have a complete LAN system that was more reliable. > > Seven computers I have tried with all three BSDs and not one of them > managed to produce a working network connection. The only thing I achieved > was that now I can almost visualise every screen from the installations. > > I am baffled by how anyone is able to get a bsd networked system > working. I guess I just have to stick with a windowsOS. > > Regards ... > > Ian Galloway Hello Ian, Perhaps you could offer more information explaining what you've tried, a bit about your network setup, and the results of running dmesg and ifconfig on one of your problem systems? Without that, it will be tough to help you. Cheers, Jason From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 15:03:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E4B3C16A4DF for ; Sat, 2 Sep 2006 15:03:12 +0000 (UTC) (envelope-from dino_vliet@yahoo.com) Received: from web51110.mail.yahoo.com (web51110.mail.yahoo.com [206.190.39.131]) by mx1.FreeBSD.org (Postfix) with SMTP id 6C6D043D46 for ; Sat, 2 Sep 2006 15:03:12 +0000 (GMT) (envelope-from dino_vliet@yahoo.com) Received: (qmail 38931 invoked by uid 60001); 2 Sep 2006 15:03:11 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=rVMOPf3JbQXxM0puxScxLdWG67PzN6XoSO4COnNDMBLMS6JK9GABXrjhfrMWZCtYvSaZtHJFk5QQgI3fDee+0s1jVuUxascpVBe6hc3iZz+ijQbVcH/lvmoULNzcI//+204c6LdzfjSHiDadCJuUwDVo2Rm11Pv+/b8UdAD+hQc= ; Message-ID: <20060902150311.38929.qmail@web51110.mail.yahoo.com> Received: from [82.170.181.144] by web51110.mail.yahoo.com via HTTP; Sat, 02 Sep 2006 08:03:11 PDT Date: Sat, 2 Sep 2006 08:03:11 -0700 (PDT) From: Dino Vliet To: Scott Mitchell , Support-CK In-Reply-To: <20060902143337.GA1579@tuatara.fishballoon.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: memorystick usage on freebsd...now what:-) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 15:03:13 -0000 There we go...:-) I worked precisely as you said!! Thanks for the FAST answer. Made me have to post this to the ubuntu mailinglist: No sweat...already solved this in FreeBSD. There I could mount the partition very easily after it was detected by the kernel and showed up in the dmesg. Thanks for reading this though. I'm NOT starting a flame ware, but I will always come back to FreeBSD!! Thanks --- Scott Mitchell wrote: > On Sat, Sep 02, 2006 at 06:59:37AM -0700, Dino Vliet > wrote: > > Peeps, > > > > I bought this emtec usb storage device and plugged > it > > into my freebsd6.1 laptop. Dmesg gives: > > > > umass0: vendor 0x13fe USB DISK 2.0, rev 2.00/1.00, > > addr 2 > > da0 at umass-sim0 bus 0 target 0 lun 0 > > da0: < USB DISK 2.0 PMAP> Removable Direct Access > > SCSI-0 device > > da0: 1.000MB/s transfers > > da0: 471MB (964608 512 byte sectors: 64H 32S/T > 471C) > > > > But now I'm lost.... > > I want to mount this baby, but don't really know > how > > to proceed. The handbook shows me to go to section > > 17.3, but there they talk about nasty looking > > commands. Can somebody get me up and running > quickly? > > 17.3 is about partitioning and formatting - you > don't need to do any of > that, since you;ve already been able to use the > device on another machine. > > > Can I remove the usb stick safely before mounting > it? > > You can safely remove it anytime it's not mounted. > > > I already used it @work on windows to put some > files > > on it so why won't the mount_msdos /dev/da0s1 /mnt > > command not work in this case? > > It's mount_msdosfs, but otherwise that should work. > I've seen devices > where the only partition showed up as /dev/da0s4, so > it might be worth > checking which /dev/da0s* nodes were actually > created, or run 'fdisk da0' > to see the partition table data. > > HTH, > > Scott > > -- > =========================================================================== > Scott Mitchell | PGP Key ID | "Eagles may > soar, but weasels > Cambridge, England | 0x54B171B9 | don't get > sucked into jet engines" > scott at fishballoon.org | 0xAA775B8B | -- Anon > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 15:14:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6CFB016A4DD for ; Sat, 2 Sep 2006 15:14:08 +0000 (UTC) (envelope-from bob.middaugh@comcast.net) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [204.127.192.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id E712C43D53 for ; Sat, 2 Sep 2006 15:14:07 +0000 (GMT) (envelope-from bob.middaugh@comcast.net) Received: from freebsd (c-68-37-119-168.hsd1.nj.comcast.net[68.37.119.168]) by comcast.net (rwcrmhc12) with SMTP id <20060902151406m12008epmle>; Sat, 2 Sep 2006 15:14:07 +0000 From: Bob To: Jordi Carrillo In-Reply-To: <94ff3700609020746i5b0a8031t522a2f774fcc7985@mail.gmail.com> References: <94ff3700609020746i5b0a8031t522a2f774fcc7985@mail.gmail.com> Content-Type: text/plain Date: Sat, 02 Sep 2006 11:17:40 +0000 Message-Id: <1157195860.1148.6.camel@freebsd> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: flash plugin and firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 15:14:08 -0000 This works for me. It's in portugese, but if you don't do portugese, just follow the commands and you'll do fine. Someone was kind enough to translate this page to english, but I don't have a link to it. I don't do portinstall though, so add the packages whichever way you like. This gives you flash 7, don't think there's a working flash 8 yet. My kids can goto most of their sites, as they're inevitably done in flash/java. http://www.unixlike.com.br/?p=%2081 hth, Bob On Sat, 2006-09-02 at 16:46 +0200, Jordi Carrillo wrote: > This I suppose is the eternal question, but I'm quite sick of looking around > google without having a detailed step by step process to get the flash > plugin for firefox. There are some that talk about tweaking the kernel and > applying patches? Is it really so difficult having the flash plugin for > firefox (compiled one)? > If anyone has the consideration to detail a working solution for the > 6.1freebsd release, will be much appreciated, > Thanks in advance for your help, > From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 15:31:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8199516A5AB for ; Sat, 2 Sep 2006 15:31:24 +0000 (UTC) (envelope-from atom.powers@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id B248543D49 for ; Sat, 2 Sep 2006 15:31:23 +0000 (GMT) (envelope-from atom.powers@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so928542nfc for ; Sat, 02 Sep 2006 08:31:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=riel5UMPfkcSxNjLev2iN9mHDFzD3WAPZRMCk9Sih/PqnCkaFsLDVb0ots36HTNnxUFzUfPTVksMNv5h70XCejRA3gAjOiWQ+RVyucbj+/isQtVo1ymeCc8xjIbg32JCvE6V0nhBSm21rk4lEEzM6sUqzMbAkQ21xO/0orE2pjU= Received: by 10.49.75.2 with SMTP id c2mr4399218nfl; Sat, 02 Sep 2006 08:31:22 -0700 (PDT) Received: by 10.49.67.14 with HTTP; Sat, 2 Sep 2006 08:31:21 -0700 (PDT) Message-ID: Date: Sat, 2 Sep 2006 08:31:21 -0700 From: "Atom Powers" To: freebsd-questions@freebsd.org In-Reply-To: <20060901115919.6B6F.GERARD@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060901125631.GA92179@owl.midgard.homeip.net> <44F8361A.8020507@nm.cbc.ca> <20060901115919.6B6F.GERARD@seibercom.net> Subject: Re: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 15:31:24 -0000 On 9/1/06, Gerard Seibert wrote: > I agree for the most part. There is an option to install another MTA > when installing FBSD. However, it might be nice if there were > instructions on how to accomplish the following. > > 1) Totally shut down Sendmail How about the handbook? http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mail-changingmta.html The postfix port will also remind you of these changes when you install it. > 2) Changes to periodic.conf The changes to periodic are so trivial, at least for postfix, that no change are even necissary. > 3) How to prevent Sendmail from being built when performing 'buildworld' That isn't a sendmail/mta question, it's a buildworld question. Although a footnote in the above part of the handbook would be apreciated. > I recently replied to a post on the Postfix forum when a user had > installed Postfix when installing FBSD and consequently had no idea why > it was not working correctly. I realize that he should have been better > informed as to how it was to be configured; however, the sysinstall or > if installed via ports, the posts installation routine should have given > a more complete description of what is or should be done to complete the > installation. > I sometimes wish the ports did a more complete install. Perhaps asking if you wanted to enable them in rc.conf, or reminding you which config files they use, making chanes to stock config files (rc.conf, periodic.conf, etc) that are required to enable them, etc. But that's a complaint that should be addressed to the port maintainers and really has nothing to do with Sendmail. By making the Postfix port /not/ disable Sendmail it gives you the ability to, more easily, run Sendmail *and* Postfix on the same machine. ie it doesn't break your current configuation. -- -- Perfection is just a word I use occasionally with mustard. --Atom Powers-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 15:33:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1DFAC16A4DA for ; Sat, 2 Sep 2006 15:33:54 +0000 (UTC) (envelope-from atom.powers@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id B622043D76 for ; Sat, 2 Sep 2006 15:33:46 +0000 (GMT) (envelope-from atom.powers@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so928814nfc for ; Sat, 02 Sep 2006 08:33:45 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=l5aPR1xL8Xn1rRtrrX2xOVqzwIk9Q5qOpbw+t/7YDN2ma+fLMKwISCjTqFs4evv3pDHQ2q4oHpvxHgTXoT0qptPnr5u7wcwTOONoRq69lKyHy3ZErREYZr3NWQJQqSBsCFJRVT+eFBLM/LB6xiQlcA3b/5BAMX3vCacgL78+bp4= Received: by 10.49.55.13 with SMTP id h13mr4384939nfk; Sat, 02 Sep 2006 08:33:45 -0700 (PDT) Received: by 10.49.67.14 with HTTP; Sat, 2 Sep 2006 08:33:44 -0700 (PDT) Message-ID: Date: Sat, 2 Sep 2006 08:33:44 -0700 From: "Atom Powers" To: "Greg 'groggy' Lehey" In-Reply-To: <20060902040551.GI25190@wantadilla.lemis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060902033024.GA68680@thought.org> <20060902040551.GI25190@wantadilla.lemis.com> Cc: Gary Kline , FreeBSD Mailing List Subject: Re: System down, won't come up (was: Oh, no....) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 15:33:54 -0000 On 9/1/06, Greg 'groggy' Lehey wrote: > On Friday, 1 September 2006 at 20:30:24 -0700, Gary Kline wrote: > > > > Well, gang, for about the only time in ten or eleven years, my > > FreeBSD has kernel crashed. The kernel err is 18 I believe a > > int divide by zero. I backup most stuff regularly but still have > > several megs of data files. Can I fix this with a fixit disk? > > Or is all hope lost? If it's only the data you want, try a FreeSBIE boot disk. That will give you access to the file system/network, so you can recover your data. -- -- Perfection is just a word I use occasionally with mustard. --Atom Powers-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 15:58:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1289616A4F0 for ; Sat, 2 Sep 2006 15:58:18 +0000 (UTC) (envelope-from maslak@ihlas.net.tr) Received: from pop3.ihlas.net.tr (pop3.ihlas.net.tr [213.238.128.115]) by mx1.FreeBSD.org (Postfix) with SMTP id 186DD43D46 for ; Sat, 2 Sep 2006 15:58:16 +0000 (GMT) (envelope-from maslak@ihlas.net.tr) Received: (qmail 71559 invoked by uid 89); 2 Sep 2006 15:58:24 -0000 X-Mail-Scanner: Scanned by qSheff-II-2.1 (http://www.enderunix.org/qsheff/) Received: from unknown (HELO ihlasnetym) (213.238.150.220) by 0 with SMTP; 2 Sep 2006 15:58:24 -0000 Message-ID: <001101c6cea8$67dca9a0$dc96eed5@ihlasnetym> From: "Halid Faith" To: Date: Sat, 2 Sep 2006 18:56:51 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-9" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Subject: about crash debugging X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 15:58:18 -0000 I use freebsd6.1 the server sometimes becomes crash about twice in a month. According to freebsd handbook I did kernel debug. I enabled dumpdev in rc.conf after the crash made vmcore.1 file. I typed "kgdb kernel.debug /var/crash/vmcore.1" I read as below Dumping 511 MB (2 chunks) chunk 0: 1MB (159 pages) ... ok chunk 1: 511MB (130814 pages)Encountered bogus status packet 496Encountered bogus status packet 480Encountered bogus status packet 464Encountered bogus status packet Encountered bogus status packet 448Encountered bogus status packet Fatal trap 12: page fault while in kernel mode cpuid = 1; apic id = 00 fault virtual address = 0x7cf fault code = supervisor read, page not present instruction pointer = 0x20:0xc04520bc stack pointer = 0x28:0xd7c7dcb4 frame pointer = 0x28:0xd7c7dcd0 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 17 (swi2: cambio) trap number = 12 panic: page fault cpuid = 1 432 416 400 384 368 352 336 320 304 288 272 256 240 224 208 192 176 160 144 128 112 96 80 64 48 32 16 #0 doadump () at pcpu.h:165 165 __asm __volatile("movl %%fs:0,%0" : "=r" (td)); Doesn't ram of the server work properly ? Do I have to change this ram ? Thanks From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 15:58:37 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B805816A4E0 for ; Sat, 2 Sep 2006 15:58:37 +0000 (UTC) (envelope-from dmehler26@woh.rr.com) Received: from ms-smtp-04.ohiordc.rr.com (ms-smtp-04.ohiordc.rr.com [65.24.5.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D3C443D45 for ; Sat, 2 Sep 2006 15:58:36 +0000 (GMT) (envelope-from dmehler26@woh.rr.com) Received: from satellite (cpe-71-65-68-20.woh.res.rr.com [71.65.68.20]) by ms-smtp-04.ohiordc.rr.com (8.13.6/8.13.6) with SMTP id k82FwZVC019724 for ; Sat, 2 Sep 2006 11:58:35 -0400 (EDT) Message-ID: <000301c6cea8$a5cf4650$0200a8c0@satellite> From: "Dave" To: Date: Sat, 2 Sep 2006 11:58:34 -0400 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.2869 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: upgrading mysql client and server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dave List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 15:58:37 -0000 Hello, I've got mysql server and client v4.1 running on a FreeBSD6.x box. They were installed via ports not packages using custom make options which i have in portupgrade's pkgtools.conf file. I now would like to upgrade both of them to v5, without causing dependency issues with installed apps or with my databases. What i was wondering is is there an easy way of doing this? I am concerned about my databases, i've done mysqldumps on them, but i have to manually go in and create information. I'd rather feed the mysql command a complete file and have it automatically regenerate everything. I'm also concerned about any compatibility issues. Any help appreciated. Thanks. Dave. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 16:04:46 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E12CA16A4DA for ; Sat, 2 Sep 2006 16:04:45 +0000 (UTC) (envelope-from g.one@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.174]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48F7843D67 for ; Sat, 2 Sep 2006 16:04:38 +0000 (GMT) (envelope-from g.one@mac.com) Received: from mac.com (smtpin01-en2 [10.13.10.146]) by smtpout.mac.com (Xserve/8.12.11/smtpout04/MantshX 4.0) with ESMTP id k82G4bHP013737; Sat, 2 Sep 2006 09:04:38 -0700 (PDT) Received: from [192.168.2.3] (cpe-065-191-021-225.nc.res.rr.com [65.191.21.225]) (authenticated bits=0) by mac.com (Xserve/smtpin01/MantshX 4.0) with ESMTP id k82G4ZRv029803; Sat, 2 Sep 2006 09:04:36 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <20060902143306.GA68074@xor.obsecurity.org> References: <20060901013412.GA64506@xor.obsecurity.org> <20060902143306.GA68074@xor.obsecurity.org> Message-Id: From: g Date: Sat, 2 Sep 2006 12:04:32 -0400 To: Kris Kennaway , freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAQAAA+k= X-Language-Identified: TRUE Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: newbie. how to compile gcc-4.1.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 16:04:46 -0000 i downloaded the file from gnu. ok, i see the directory. thanks, i will try using the freebsd instruction. g. On Sep 2, 2006, at 10:33 AM, Kris Kennaway wrote: > On Sat, Sep 02, 2006 at 10:17:27AM -0400, g wrote: >> ok, i got a snapshot of the make bootstrap >> it shows the error. >> >> ??? > > Well, you didn't quite follow my instructions, but you showed enough > to see that something is quite odd on your system: > > ---- > srcdir="/usr/ports/gcc-4.1.1/fixincludes" /bin/sh /usr/ports/ > gcc-4.1.1/fixincludes/mkfixinc.sh > +i386-unknown-freebsd6.1 > sed -e 's/@gcc_version@//' < > mkheadersT > *** Error code 2 > > Stop in /usr/ports/objdir/build-i386-unknown-freebsd6.1/fixincludes. > *** Error code 1 > > Stop in /usr/ports/objdir. > ---- > > Those directories are completely non-standard. How did you install > your ports collection? The gcc41 port is supposed to be in > /usr/ports/lang/gcc41, not /usr/ports/gcc-4.1.1. Are you really using > the ports collection or did you just download the gcc source code > directly? > > Kris > > P.S. Don't drop the mailing list from your replies, or no-one else > will be able to help you! g. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 16:21:40 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 96B7C16A63A for ; Sat, 2 Sep 2006 16:21:40 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1244343D45 for ; Sat, 2 Sep 2006 16:21:39 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so648073nzn for ; Sat, 02 Sep 2006 09:21:39 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=IHDreNgumDEjRcVwduITeJT1J3EhKmBkVzr51eSn0ActJC+SxCdnNtkRO9kQVbcoMjo3mCUHPXfBPvSpmuKlbXVfXTX6sWuBXDGGJ+xJbodBeMGwreFsVfB3MV8wV4KT0WK6DHIq+lommfpvC7R/a9PyhcByMbr8GgxHZYAvoX0= Received: by 10.65.232.12 with SMTP id j12mr1540610qbr; Sat, 02 Sep 2006 09:21:38 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Sat, 2 Sep 2006 09:21:38 -0700 (PDT) Message-ID: <94ff3700609020921r39108f77qb614763a2f518250@mail.gmail.com> Date: Sat, 2 Sep 2006 18:21:38 +0200 From: "Jordi Carrillo" To: Bob In-Reply-To: <1157195860.1148.6.camel@freebsd> MIME-Version: 1.0 References: <94ff3700609020746i5b0a8031t522a2f774fcc7985@mail.gmail.com> <1157195860.1148.6.camel@freebsd> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: flash plugin and firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 16:21:40 -0000 When it says: cd /usr/src patch -p0< /tmp/rtld_dlsym_hack.diff a question arises saying: File to patch: Then what is supposed I have to patch? and there's nothing in /usr/src as well. Thanks 2006/9/2, Bob : > > > This works for me. It's in portugese, but if you don't do portugese, > just follow the commands and you'll do fine. Someone was kind enough to > translate this page to english, but I don't have a link to it. I don't > do portinstall though, so add the packages whichever way you like. This > gives you flash 7, don't think there's a working flash 8 yet. My kids > can goto most of their sites, as they're inevitably done in flash/java. > > http://www.unixlike.com.br/?p=%2081 > > hth, > > Bob > > > On Sat, 2006-09-02 at 16:46 +0200, Jordi Carrillo wrote: > > This I suppose is the eternal question, but I'm quite sick of looking > around > > google without having a detailed step by step process to get the flash > > plugin for firefox. There are some that talk about tweaking the kernel > and > > applying patches? Is it really so difficult having the flash plugin for > > firefox (compiled one)? > > If anyone has the consideration to detail a working solution for the > > 6.1freebsd release, will be much appreciated, > > Thanks in advance for your help, > > > > -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 16:25:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6EA6216A4DE for ; Sat, 2 Sep 2006 16:25:22 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96DBB43D5A for ; Sat, 2 Sep 2006 16:25:20 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (patr530-a006.otenet.gr [212.205.215.6]) (authenticated bits=128) by igloo.linux.gr (8.13.7/8.13.7/Debian-2) with ESMTP id k82GOtr8019014 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 2 Sep 2006 19:25:01 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k82G8e2x001353; Sat, 2 Sep 2006 19:08:48 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k82G8e8K001352; Sat, 2 Sep 2006 19:08:40 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 2 Sep 2006 19:08:40 +0300 From: Giorgos Keramidas To: Gary Kline Message-ID: <20060902160840.GA1344@gothmog.pc> References: <20060902033024.GA68680@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060902033024.GA68680@thought.org> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.687, required 5, autolearn=not spam, AWL -0.09, BAYES_00 -2.60, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Oh, no.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 16:25:22 -0000 On 2006-09-01 20:30, Gary Kline wrote: > Well, gang, for about the only time in ten or eleven years, my FreeBSD > has kernel crashed. The kernel err is 18 I believe a int divide by > zero. I backup most stuff regularly but still have several megs of > data files. Can I fix this with a fixit disk? Or is all hope lost? > > gary > > "Fatal trap 18: blah, blah.... > "Uptime 1sec" Have you restarted the system that crashed? Does it consistently panic when you try to boot, or was this a panic introduced by the particular conditions of that moment? From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 16:27:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 839E016A508 for ; Sat, 2 Sep 2006 16:27:52 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15BEF43D6B for ; Sat, 2 Sep 2006 16:27:43 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (patr530-a006.otenet.gr [212.205.215.6]) (authenticated bits=128) by igloo.linux.gr (8.13.7/8.13.7/Debian-2) with ESMTP id k82GR9PF019097 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 2 Sep 2006 19:27:16 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k82GQu9X001978; Sat, 2 Sep 2006 19:26:56 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k82GQu1q001977; Sat, 2 Sep 2006 19:26:56 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 2 Sep 2006 19:26:56 +0300 From: Giorgos Keramidas To: "NoIP (exemail)" Message-ID: <20060902162656.GB1344@gothmog.pc> References: <000701c6ce48$ef2fc410$0601010a@BB3500> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000701c6ce48$ef2fc410$0601010a@BB3500> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.686, required 5, autolearn=not spam, AWL -0.09, BAYES_00 -2.60, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Is the new version going to be easier to get working? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 16:27:52 -0000 On 2006-09-02 14:33, "NoIP (exemail)" wrote: > Hi, > > Two mornings ago I was feeling pretty good. I had downloaded > and burnt to disc freebsd, pcbsd and also desktopbsd. But not > now > > Having 21 computers here I figured I would finally be rid of > MSwindows, and have a complete LAN system that was more > reliable. > > Seven computers I have tried with all three BSDs and not one of > them managed to produce a working network connection. The only > thing I achieved was that now I can almost visualise every > screen from the installations. > > I am baffled by how anyone is able to get a bsd networked > system working. I guess I just have to stick with a windowsOS. Have you already read the Handbook? If not, then start here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ Pay special attention to section 2.9 and chapter 27: 2.9. Post Installation http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html 27. Advanced Networking http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/advanced-networking.html From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 16:53:17 2006 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org 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 85FCA16A4DA for ; Sat, 2 Sep 2006 16:53:17 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C42A43D45 for ; Sat, 2 Sep 2006 16:53:17 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 7362C5D5D; Sat, 2 Sep 2006 12:53:16 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com 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 0rNJURktc5nK; Sat, 2 Sep 2006 12:53:14 -0400 (EDT) Received: from [192.168.1.251] (pool-68-161-96-195.ny325.east.verizon.net [68.161.96.195]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 240215C6D; Sat, 2 Sep 2006 12:53:14 -0400 (EDT) Message-ID: <44F9B6F3.8030209@mac.com> Date: Sat, 02 Sep 2006 12:53:07 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: "NoIP (exemail)" References: <000701c6ce48$ef2fc410$0601010a@BB3500> In-Reply-To: <000701c6ce48$ef2fc410$0601010a@BB3500> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@FreeBSD.org Subject: Re: Is the new version going to be easier to get working? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 16:53:17 -0000 NoIP (exemail) wrote: [ ... ] > Seven computers I have tried with all three BSDs and not one of them > managed to produce a working network connection. The only thing I achieved > was that now I can almost visualise every screen from the installations. > > I am baffled by how anyone is able to get a bsd networked system > working. I guess I just have to stick with a windowsOS. The simplest thing to try is the command: "dhclient". If you've got a DHCP server on your network (perhaps via your ISP or via a broadband hub or firewall), this should get your network going. Then follow the Handbook lists others have posted to make your network config permanent. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 16:57:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7173416A4DA for ; Sat, 2 Sep 2006 16:57:24 +0000 (UTC) (envelope-from jaj13@web.de) Received: from fmmailgate02.web.de (fmmailgate02.web.de [217.72.192.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E53B43D45 for ; Sat, 2 Sep 2006 16:57:23 +0000 (GMT) (envelope-from jaj13@web.de) Received: from smtp06.web.de (fmsmtp06.dlan.cinetic.de [172.20.5.172]) by fmmailgate02.web.de (Postfix) with ESMTP id 414C61A80C40; Sat, 2 Sep 2006 18:55:57 +0200 (CEST) Received: from [83.99.26.81] (helo=[10.0.0.11]) by smtp06.web.de with esmtp (WEB.DE 4.107 #114) id 1GJYmj-0001To-00; Sat, 02 Sep 2006 18:55:57 +0200 Message-ID: <44F9B799.9080806@web.de> Date: Sat, 02 Sep 2006 18:55:53 +0200 From: Jona Joachim User-Agent: Thunderbird 1.5.0.5 (X11/20060730) MIME-Version: 1.0 To: Jordi Carrillo References: <94ff3700609020746i5b0a8031t522a2f774fcc7985@mail.gmail.com> <1157195860.1148.6.camel@freebsd> <94ff3700609020921r39108f77qb614763a2f518250@mail.gmail.com> In-Reply-To: <94ff3700609020921r39108f77qb614763a2f518250@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: jaj13@web.de X-Sender: jaj13@web.de Cc: freebsd-questions@freebsd.org Subject: Re: flash plugin and firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 16:57:24 -0000 Jordi Carrillo wrote: > When it says: > cd /usr/src > patch -p0< /tmp/rtld_dlsym_hack.diff > > a question arises saying: > File to patch: > > Then what is supposed I have to patch? > and there's nothing in /usr/src as well. > Thanks You don't have the sources of the base system. You can fetch them using sysinstall or csup. The FreeBSD Handbook is your friend: http://www.freebsd.org/doc/handbook/ The babelfish translation of the page is not so bad: http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=pt_en&url=http%3A%2F%2Fwww.unixlike.com.br%2F%3Fp%3D%252081 P.S. Please don't top post --jona From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 17:10:58 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6EE5516A4DA for ; Sat, 2 Sep 2006 17:10:58 +0000 (UTC) (envelope-from jordilin@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id E367043D49 for ; Sat, 2 Sep 2006 17:10:57 +0000 (GMT) (envelope-from jordilin@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so649764nzn for ; Sat, 02 Sep 2006 10:10:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=cChLKKVDPTk4Tmtiz/0TPcKL/NKMpzAT+lAmF76KEec15PioPPtNJ0UUpb4UMeuOI594Pb8Ac9DDGT8Vdgz4X+5dga/QIvjpxkZtnVIvYc/4Fv+kHp6p8gzFqsjXjc6EWs62JqaVEHpA3vGG9dVBkLfx1TVNErIHxzYqZNqlneU= Received: by 10.65.185.3 with SMTP id m3mr1560869qbp; Sat, 02 Sep 2006 10:10:57 -0700 (PDT) Received: by 10.65.231.11 with HTTP; Sat, 2 Sep 2006 10:10:56 -0700 (PDT) Message-ID: <94ff3700609021010p7528e88aj150a485b8e912abb@mail.gmail.com> Date: Sat, 2 Sep 2006 19:10:57 +0200 From: "Jordi Carrillo" To: "Jona Joachim" In-Reply-To: <44F9B799.9080806@web.de> MIME-Version: 1.0 References: <94ff3700609020746i5b0a8031t522a2f774fcc7985@mail.gmail.com> <1157195860.1148.6.camel@freebsd> <94ff3700609020921r39108f77qb614763a2f518250@mail.gmail.com> <44F9B799.9080806@web.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: flash plugin and firefox X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 17:10:58 -0000 Well, I suppose you are talking about the kernel sources, right? Because saying the sources of the base system is very generic. I'll investigate, thanks 2006/9/2, Jona Joachim : > > Jordi Carrillo wrote: > > When it says: > > cd /usr/src > > patch -p0< /tmp/rtld_dlsym_hack.diff > > > > a question arises saying: > > File to patch: > > > > Then what is supposed I have to patch? > > and there's nothing in /usr/src as well. > > Thanks > > You don't have the sources of the base system. > You can fetch them using sysinstall or csup. > The FreeBSD Handbook is your friend: http://www.freebsd.org/doc/handbook/ > > The babelfish translation of the page is not so bad: > > http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=pt_en&url=http%3A%2F%2Fwww.unixlike.com.br%2F%3Fp%3D%252081 > > P.S. Please don't top post > > --jona > -- http://jordilin.wordpress.com From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 17:26:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1787116A4DF for ; Sat, 2 Sep 2006 17:26:08 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70C2043D58 for ; Sat, 2 Sep 2006 17:26:05 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i27so1383792wxd for ; Sat, 02 Sep 2006 10:26:04 -0700 (PDT) Received: by 10.70.8.8 with SMTP id 8mr4663367wxh; Sat, 02 Sep 2006 10:26:04 -0700 (PDT) Received: from scorpio.seibercom.net ( [67.189.184.224]) by mx.gmail.com with ESMTP id i19sm5046799wxd.2006.09.02.10.26.03; Sat, 02 Sep 2006 10:26:04 -0700 (PDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 6C62AC5E7 for ; Sat, 2 Sep 2006 13:26:01 -0400 (EDT) Received: from scorpio.seibercom.net (localhost [127.0.0.1]) by scorpio.seibercom.net (Postfix) with ESMTP id 2C51BC5E1 for ; Sat, 2 Sep 2006 13:26:01 -0400 (EDT) Received: from localhost (localhost [[UNIX: localhost]]) by scorpio.seibercom.net (8.13.6/8.13.6/Submit) id k82HPwss060514 for freebsd-questions@freebsd.org; Sat, 2 Sep 2006 13:25:58 -0400 (EDT) (envelope-from gerard@seibercom.net) From: Gerard Seibert Organization: Seibercom.net To: freebsd-questions@freebsd.org Date: Sat, 2 Sep 2006 13:25:38 -0400 User-Agent: KMail/1.9.3 References: <20060901125631.GA92179@owl.midgard.homeip.net> <20060901115919.6B6F.GERARD@seibercom.net> In-Reply-To: X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(=?utf-8?q?gxJxxc=0A=09RnSNPNr*/=5E=7EStawWU9KDJ-CT0k=24f=23?=@t2^K&BS_f|?ZV/.7Q MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1648301.60Ps36Yc9X"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200609021325.58177.gerard@seibercom.net> X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gerard@seibercom.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 17:26:08 -0000 --nextPart1648301.60Ps36Yc9X Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 02 September 2006 11:31, Atom Powers wrote: [...] > By making the Postfix port /not/ disable Sendmail it gives you the > ability to, more easily, run Sendmail *and* Postfix on the same > machine. ie it doesn't break your current configuation. Why would I want Sendmail running in conjunction with a properly functionin= g=20 Postfix installation? I can only imagine problems resulting from such a=20 venture. =2D-=20 Gerard Seibert gerard@seibercom.net The truth about a man lies first and foremost in what he hides. Andre Malraux --nextPart1648301.60Ps36Yc9X Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBE+b6ls3R1WQUU6lgRAlONAJ0WN8wHMTizQZp9XwH4jselwBsbBACfeN4r 3SgVReKpdcGbFuBZz1S60BM= =zGhW -----END PGP SIGNATURE----- --nextPart1648301.60Ps36Yc9X-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 17:35:41 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E565E16A4DE for ; Sat, 2 Sep 2006 17:35:41 +0000 (UTC) (envelope-from g.one@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id C10DE43D6D for ; Sat, 2 Sep 2006 17:35:37 +0000 (GMT) (envelope-from g.one@mac.com) Received: from mac.com (smtpin01-en2 [10.13.10.146]) by smtpout.mac.com (Xserve/8.12.11/smtpout06/MantshX 4.0) with ESMTP id k82HZbE2008279 for ; Sat, 2 Sep 2006 10:35:37 -0700 (PDT) Received: from [192.168.2.3] (cpe-065-191-021-225.nc.res.rr.com [65.191.21.225]) (authenticated bits=0) by mac.com (Xserve/smtpin01/MantshX 4.0) with ESMTP id k82HZWTZ026773 for ; Sat, 2 Sep 2006 10:35:34 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v752.2) To: freebsd-questions@freebsd.org Message-Id: <99255A32-3CF5-4F32-A8C6-19994816721F@mac.com> From: g Date: Sat, 2 Sep 2006 13:35:31 -0400 X-Mailer: Apple Mail (2.752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Newbie: compiled and installed gcc-4.2 but ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 17:35:42 -0000 i compiled and installed gcc-4.2 using the instruction on the FreeBSD web site. thanks to kris, who directed me to /usr/ports/lang/ gcc ... and pointed out there was something unusually wrong with what i had done before. how do i use that version? when i do gcc -v, i get gcc version 3.4.4 [FreeBSD] 20050518 i would like to replace this version with the gcc-4.2, or at least use the 4.2 version on occasion. thank everyone, g. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 17:51:30 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 2183A16A4E6; Sat, 2 Sep 2006 17:51:30 +0000 (UTC) (envelope-from kline@sage.thought.org) Received: from sage.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id E570B43D49; Sat, 2 Sep 2006 17:51:23 +0000 (GMT) (envelope-from kline@sage.thought.org) Received: from sage.thought.org (kline@localhost [127.0.0.1]) by sage.thought.org (8.13.6/8.12.10) with ESMTP id k82HpMuM004483; Sat, 2 Sep 2006 10:51:22 -0700 (PDT) (envelope-from kline@sage.thought.org) Received: (from kline@localhost) by sage.thought.org (8.13.6/8.13.1/Submit) id k82HpMOP004482; Sat, 2 Sep 2006 10:51:22 -0700 (PDT) (envelope-from kline) Date: Sat, 2 Sep 2006 10:51:22 -0700 From: Gary Kline To: Atom Powers Message-ID: <20060902175122.GA4394@thought.org> References: <20060902033024.GA68680@thought.org> <20060902040551.GI25190@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Organization: Thought Unlimited. Public service Unix for 20 years. User-Agent: Mutt/1.5.11 Cc: Gary Kline , FreeBSD Mailing List Subject: Re: System down, won't come up (was: Oh, no....) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 17:51:30 -0000 On Sat, Sep 02, 2006 at 08:33:44AM -0700, Atom Powers wrote: > On 9/1/06, Greg 'groggy' Lehey wrote: > >On Friday, 1 September 2006 at 20:30:24 -0700, Gary Kline wrote: > >> > >> Well, gang, for about the only time in ten or eleven years, my > >> FreeBSD has kernel crashed. The kernel err is 18 I believe a > >> int divide by zero. I backup most stuff regularly but still have > >> several megs of data files. Can I fix this with a fixit disk? > >> Or is all hope lost? > > If it's only the data you want, try a FreeSBIE boot disk. That will > give you access to the file system/network, so you can recover your > data. > From magnesium.net I followed up to-list that this 2001 server had n floppy. So, until I can beg a favor, and swap in a floppy, I'm totally wedged. --By the way, it's time to have a giveaway, so anyone in the metro Seattle area, if you areinterested in some seriously heavy-duty but slow HP Kayaks, drop a line. Greg: I was able to get to the boot screen and hit "4" [?] or "5"--whatever thr alt menu is. I typed boot /boot/kernel.old and for a few secs thought that would work. But upon hitting return/[Ehter], things reset. And-or back to the original fatal trap 18. This may have been a FS err because I was pushing the box pretty hard. I was doing a portsupgrade and installing/reinstalling lots of stuff. Whenever I can get somebody to temp swap in a floppy I'll try FreeSBIE. MOst of my data is public or personal junk, but to my amazement, my last backups of taoEtc.tgz was (*cringe*) late '01. gary > -- > -- > Perfection is just a word I use occasionally with mustard. > --Atom Powers-- -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 17:51:54 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 F377D16A4EA for ; Sat, 2 Sep 2006 17:51:53 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A8A943D49 for ; Sat, 2 Sep 2006 17:51:50 +0000 (GMT) (envelope-from af300wsm@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1815710pye for ; Sat, 02 Sep 2006 10:51:40 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=Ed/cjwT3ZgKJzalu+yJVWpgLo7NXv5Go23vxkpDOaL9l92/eXhnCjWyDPB/HDKmoGAdGVGqnb821WUAq6pP/Hnv9ssKXjyra33nxrqOfxxtfTH09nc34e0uYY0mZrdczU5f59s+j1RYA+U0GeVHtf/8H4gEY+Pztl7CRKqmxOn4= Received: by 10.35.49.1 with SMTP id b1mr5839660pyk; Sat, 02 Sep 2006 10:51:40 -0700 (PDT) Received: by 10.35.44.12 with HTTP; Sat, 2 Sep 2006 10:51:40 -0700 (PDT) Message-ID: <340a29540609021051n50bc066bj63f192f9890f8e5@mail.gmail.com> Date: Sat, 2 Sep 2006 11:51:40 -0600 From: "Andrew Falanga" To: freebsd-questions MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Having trouble getting ppp configured on my 6.1 box X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 17:51:54 -0000 Hello everyone, I had to blow away my 6.0 installation and simply install 6.1 release. I found out that I would have to update my ports manually and since I don't have high speed access to the Internet, this just wasn't feasible. So, after installing (which went smoothly) I'm getting everything working. I remembered all my configuration files, or so I thought, except for the ppp.conf file that I was using. I remember having this problem when I installed 6.0 but unfortunately, I can't remember how to fix it. This is really embarrasing. ppp works and all, but I can't resolve any DNS hostnames. Everytime I try, I get something like "no address associated to the name." Or something similar. Sorry, I'm writing this mail from the Windows OS (one computer shares the two OS's) and I don't recall the error exactly but that's basically it. I was reading through the handbook and the ppp manual page and have tried a few different things, but haven't gotten it to work as yet. I called my ISP to get the nameserver addresses to put in /etc/resolv.conf, and have confirmed that with "enable dns" in ppp that ppp is updating the resolv.conffile. However, I'm still unable to resolve DNS hostnames. What's the magic that I must perform to make this work? Thanks, Andy From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 18:01:19 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A8C6E16A4E0 for ; Sat, 2 Sep 2006 18:01:19 +0000 (UTC) (envelope-from kline@sage.thought.org) Received: from sage.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E77F43D4C for ; Sat, 2 Sep 2006 18:01:17 +0000 (GMT) (envelope-from kline@sage.thought.org) Received: from sage.thought.org (kline@localhost [127.0.0.1]) by sage.thought.org (8.13.6/8.12.10) with ESMTP id k82I1BqC004536; Sat, 2 Sep 2006 11:01:11 -0700 (PDT) (envelope-from kline@sage.thought.org) Received: (from kline@localhost) by sage.thought.org (8.13.6/8.13.1/Submit) id k82I1860004531; Sat, 2 Sep 2006 11:01:08 -0700 (PDT) (envelope-from kline) Date: Sat, 2 Sep 2006 11:01:07 -0700 From: Gary Kline To: Giorgos Keramidas Message-ID: <20060902180107.GB4394@thought.org> References: <20060902033024.GA68680@thought.org> <20060902160840.GA1344@gothmog.pc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060902160840.GA1344@gothmog.pc> X-Organization: Thought Unlimited. Public service Unix for 20 years. User-Agent: Mutt/1.5.11 Cc: Gary Kline , freebsd-questions@freebsd.org Subject: Re: Oh, no.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 18:01:19 -0000 On Sat, Sep 02, 2006 at 07:08:40PM +0300, Giorgos Keramidas wrote: > On 2006-09-01 20:30, Gary Kline wrote: > > Well, gang, for about the only time in ten or eleven years, my FreeBSD > > has kernel crashed. The kernel err is 18 I believe a int divide by > > zero. I backup most stuff regularly but still have several megs of > > data files. Can I fix this with a fixit disk? Or is all hope lost? > > > > gary > > > > "Fatal trap 18: blah, blah.... > > "Uptime 1sec" > > Have you restarted the system that crashed? Does it consistently panic > when you try to boot, or was this a panic introduced by the particular > conditions of that moment? > 100% consistent. tHe strange thing is that when I set the boot-order in the BIOS to "CDROM" it's ignored. (Maybe I don't have the boot CD? that occured when I was crawling out of bed!) I have all 4 f the 5.3 boxed set. --Another few gallons of coffee and I'll check. -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 18:18:28 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 823FB16A4DE for ; Sat, 2 Sep 2006 18:18:28 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA5AC43D45 for ; Sat, 2 Sep 2006 18:18:27 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1825322pye for ; Sat, 02 Sep 2006 11:18:27 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=jGY7s7dV6vuhtzXx6ZMcSREd2iLBXJsDbpGZD5Noqnk/isA+28MJ1seQ66fpt5+fdxwZKg5M98fR7vjLPJG6jU/wlRgr4ZRma6wJgHj1+HQXRbwItR16uzDHzX12MGqROtlWKyxlcmy2/4A+l/5Ki0kAHJ+2engT1ZTHDaxIELo= Received: by 10.65.234.3 with SMTP id l3mr3991602qbr; Sat, 02 Sep 2006 11:18:27 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Sat, 2 Sep 2006 11:18:27 -0700 (PDT) Message-ID: <73d604760609021118w69efaab1q919fe7ef8ed22f93@mail.gmail.com> Date: Sat, 2 Sep 2006 23:48:27 +0530 From: "Viswas Nair" To: "Mark Moellering" In-Reply-To: <200608301055.13457.mark@msen.com> MIME-Version: 1.0 References: <73d604760608270741k4998723au81b258ef17b41c70@mail.gmail.com> <20060827203409.GA710@powerfull.bsd> <73d604760608281952p5ff48d46w4fe45cb291fb2e4d@mail.gmail.com> <200608301055.13457.mark@msen.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: User permissions to mount CDROM X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 18:18:28 -0000 Finally got it to work. Thanks a lot everyone. On 8/30/06, Mark Moellering wrote: > > Did you ever get this working? If not, I can give you my setup... > > Mark Moellering > > On Monday 28 August 2006 10:52 pm, Viswas Nair wrote: > > didn't help :( > > > > On 8/28/06, ajm wrote: > > > On Sun, Aug 27, 2006 at 08:11:16PM +0530, Viswas Nair wrote: > > > > I have been trying to figure out how to give users to mount CD rom > and > > > > > > have > > > > > > > been largely unsuccessful. Here are a few things I tried: > > > > 1) Added user to the 4th field (options) in /etc/fstab > > > > 2) Added vfs.usermount=1 to sysctl.conf > > > > 3) Created a group called optical and added the root and alpha to it > > > > 4) Added following lines to devfs,conf : > > > > own /dev/acd0 root:optical > > > > perm /dev/acd0 0770 > > > > own /dev/acd1 root:optical > > > > perm /dev/acd1 0770 > > > > 5) Rebooted machine and tried to mount /dev/acd0 into /cdrom and it > > > > > > failed > > > > > > > with the message: > > > > got the error message: /dev/acd0 > > > > > > Try the following: create a subdirectory in the users home directory. > > > example: /home/steven/cdrom > > > > > > mount_cd9660 /dev/acd0 /home/steven/cdrom > > > > > > also, you can change the permission to 550 > > > (read/execute by owner and group) no need for write permission. > > > make sure that your users are part of the optical group. > > > One more thing...users will not be able to mount anything to /cdrom > > > since it will belong to root/wheel. Hope this helped you. > > > > > > -- > > > FreeBSD 6.0-RELEASE i386 GENERIC > > > _______________________________________________ > > > 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 Sat Sep 2 18:32:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 3A64A16A500 for ; Sat, 2 Sep 2006 18:32:52 +0000 (UTC) (envelope-from sigma_zk@yahoo.com) Received: from web52314.mail.yahoo.com (web52314.mail.yahoo.com [206.190.48.157]) by mx1.FreeBSD.org (Postfix) with SMTP id A547543D49 for ; Sat, 2 Sep 2006 18:32:51 +0000 (GMT) (envelope-from sigma_zk@yahoo.com) Received: (qmail 48650 invoked by uid 60001); 2 Sep 2006 18:32:50 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=e48rGPVh1lESCwXQiZ9a1db2SykltlXQ4kaA+oKCBbVe32rP+p32oQTP5V9dfk1SHtPq4/3s25gdyCRefK1ewiKuHr9CepLlxd7MuXB4vwEC96i1k0JhT55pizNF+fl2eEiNawZ9QR9eFgtOcPgILjadF7yf/2HCJ6XjahaNsj0= ; Message-ID: <20060902183250.48648.qmail@web52314.mail.yahoo.com> Received: from [24.87.114.179] by web52314.mail.yahoo.com via HTTP; Sat, 02 Sep 2006 11:32:50 PDT Date: Sat, 2 Sep 2006 11:32:50 -0700 (PDT) From: "Sean M." To: freebsd-questions@freebsd.org In-Reply-To: <99255A32-3CF5-4F32-A8C6-19994816721F@mac.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: Newbie: compiled and installed gcc-4.2 but ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 18:32:52 -0000 Use gcc42, g++42, etc. --- g wrote: > i compiled and installed gcc-4.2 using the instruction on the FreeBSD > > web site. thanks to kris, who directed me to /usr/ports/lang/ > gcc ... and pointed out there was something unusually wrong with > what i had done before. > > how do i use that version? when i do gcc -v, i get gcc version 3.4.4 > > [FreeBSD] 20050518 > > i would like to replace this version with the gcc-4.2, or at least > use the 4.2 version on occasion. > > thank everyone, > > g. > > > > > _______________________________________________ > 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" > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 18:36:32 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 ACE2A16A4DF for ; Sat, 2 Sep 2006 18:36:32 +0000 (UTC) (envelope-from sigma_zk@yahoo.com) Received: from web52305.mail.yahoo.com (web52305.mail.yahoo.com [206.190.48.148]) by mx1.FreeBSD.org (Postfix) with SMTP id 28A5543D49 for ; Sat, 2 Sep 2006 18:36:32 +0000 (GMT) (envelope-from sigma_zk@yahoo.com) Received: (qmail 14337 invoked by uid 60001); 2 Sep 2006 18:36:31 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=oLq6rS/0Mby2vdclUvxu1y0pVXoZcrG1dh40bSfzqd7xVgkH/xjLGjSbyMpV5A/B1xI6kJB+Jnh05h8k7HkMDpDH8REKc3w8Z//FV3d3/5hw2n+J8pceFTbvft7csAiKX/lpAji8wsLcUwPorR9gokN53vVIaUQ1reCgrllSokQ= ; Message-ID: <20060902183631.14335.qmail@web52305.mail.yahoo.com> Received: from [24.87.114.179] by web52305.mail.yahoo.com via HTTP; Sat, 02 Sep 2006 11:36:31 PDT Date: Sat, 2 Sep 2006 11:36:31 -0700 (PDT) From: "Sean M." To: freebsd-questions@freebsd.org In-Reply-To: <20060902145102.GB17871@teddy.fas.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: KDE does not keep it's configuration X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 18:36:32 -0000 Should be in your home directory, as ~/.kde and ~/.kderc --- stan wrote: > Last weekend I built a new machine, cvsup'd to current. I built > the KDE metaport, and all seems to work well, _except_ that every > time i log into KDE, from kdm, I am prompted to go through > the inital configuration wizzerd again. > > Where is this information stored? Any idea, why it might not > be persistant on my installation? > > -- > Unix is very simple, but it takes a genius to understand the > simplicity. > (Dennis Ritchie) > _______________________________________________ > 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" > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 19:09:10 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 BD43D16A4DA for ; Sat, 2 Sep 2006 19:09:10 +0000 (UTC) (envelope-from ABabiy@shaw.ca) Received: from pd2mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73B0B43D53 for ; Sat, 2 Sep 2006 19:09:10 +0000 (GMT) (envelope-from ABabiy@shaw.ca) Received: from pd3mr7so.prod.shaw.ca (pd3mr7so-qfe3.prod.shaw.ca [10.0.141.23]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J4Z00J42BVAE680@l-daemon> for freebsd-questions@freebsd.org; Sat, 02 Sep 2006 13:09:10 -0600 (MDT) Received: from pn2ml7so.prod.shaw.ca ([10.0.121.151]) by pd3mr7so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J4Z00A4JBV9AFF0@pd3mr7so.prod.shaw.ca> for freebsd-questions@freebsd.org; Sat, 02 Sep 2006 13:09:10 -0600 (MDT) Received: from s01060013d45e14da.vs.shawcable.net ([70.71.24.198]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J4Z00KH9BV9BT10@l-daemon> for freebsd-questions@freebsd.org; Sat, 02 Sep 2006 13:09:09 -0600 (MDT) Date: Sat, 02 Sep 2006 12:09:09 -0700 From: Andriy Babiy To: freebsd-questions@freebsd.org Message-id: <200609021209.09378.ABabiy@shaw.ca> Organization: home MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit Content-disposition: inline User-Agent: KMail/1.9.3 Subject: HP-1022 laser printer X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 19:09:10 -0000 Hello, Could anybody advise me on the HP-1022 laser printer? Does anyone have this model working on the FreeBSD? I'm going to buy it, therefore I wanted to check if there are any issues/problems about it. I found postings about "USB port busy" problem, but guys didn't specify clearly the platform they used. Especially, I'm interested in positive experiences. Originally, I posted the question to freebsd-hardware, with no answer though. Thank you for your time. Andriy From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 19:17:42 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0384716A4DD for ; Sat, 2 Sep 2006 19:17:42 +0000 (UTC) (envelope-from antennex@hotmail.com) Received: from bay0-omc1-s37.bay0.hotmail.com (bay0-omc1-s37.bay0.hotmail.com [65.54.246.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2ED343D49 for ; Sat, 2 Sep 2006 19:17:41 +0000 (GMT) (envelope-from antennex@hotmail.com) Received: from hotmail.com ([65.54.161.22]) by bay0-omc1-s37.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Sat, 2 Sep 2006 12:17:42 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 2 Sep 2006 12:17:41 -0700 Message-ID: Received: from 65.54.161.200 by by106fd.bay106.hotmail.msn.com with HTTP; Sat, 02 Sep 2006 19:17:37 GMT X-Originating-IP: [65.68.247.73] X-Originating-Email: [antennex@hotmail.com] X-Sender: antennex@hotmail.com From: "Jack Stone" To: freebsd-questions@freebsd.org Date: Sat, 02 Sep 2006 14:17:37 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 02 Sep 2006 19:17:41.0180 (UTC) FILETIME=[75CB2FC0:01C6CEC4] Subject: Setting date variable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 19:17:42 -0000 Without setting multiple (crude) variables, I haven't come up with a good & simple way to set the date variable in my "csh" shell script to grab a file when the month rolls over. Like this: The file I want to copy into another script is in this format that I cannot change: "2006-September.txt" . ..which will roll next month to "2006-October.txt", etc. I could use the "date" command to do: 2006-09.txt or maybe 2006-Sep.txt but I haven't found a simple way to set a variable make date spell out the whole name of the month to match the file name. Any tips on this one? Best to all, Jack _________________________________________________________________ Call friends with PC-to-PC calling -- FREE http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlmailtagline From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 19:20:16 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 5EC2916A4E1 for ; Sat, 2 Sep 2006 19:20:16 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45C4343D45 for ; Sat, 2 Sep 2006 19:20:14 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [IPv6:::1] (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k82JJkFX039082; Sat, 2 Sep 2006 20:19:46 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k82JJkFX039082 Message-ID: <44F9D94B.8020102@infracaninophile.co.uk> Date: Sat, 02 Sep 2006 20:19:39 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: Dave References: <000301c6cea8$a5cf4650$0200a8c0@satellite> In-Reply-To: <000301c6cea8$a5cf4650$0200a8c0@satellite> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig46B5DC3310C36DC8DD2C74AF" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [IPv6:::1]); Sat, 02 Sep 2006 20:20:09 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1786/Sat Sep 2 10:01:59 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, DKIM_POLICY_TESTING, NO_RELAYS autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: upgrading mysql client and server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 19:20:16 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig46B5DC3310C36DC8DD2C74AF Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Dave wrote: > I've got mysql server and client v4.1 running on a FreeBSD6.x box. > They were installed via ports not packages using custom make options > which i have in portupgrade's pkgtools.conf file. I now would like to > upgrade both of them to v5, without causing dependency issues with > installed apps or with my databases. What i was wondering is is there a= n > easy way of doing this? I am concerned about my databases, i've done > mysqldumps on them, but i have to manually go in and create information= =2E > I'd rather feed the mysql command a complete file and have it > automatically regenerate everything. I'm also concerned about any > compatibility issues. Any help appreciated. This isn't an amazingly difficult upgrade. However there are a few gotchas you should be aware of. *) MySQL 5.0.x is pretty much backwards compatible with 4.1.x -- ie. everything that's in 4.1.x is also in 5.0.x (but the converse is not true). On disk data formats may be slightly changed, but you should be able to run the mysql_upgrade script to convert everythi= ng to 5.0.x style. mysql_upgrade comes as part of the mysql-client-5= =2E0.x port/package You should certainly take good backups of your 4.1.x databases, but if everything goes according to plan, you won't actually need to load them into the upgraded MySQL server. *) Upgrade the MySQL client port and its dependencies first. MySQL client 5.0 will interoperate pretty well with MySQL server 4.1 but= not necessarily vice versa. You will also need to recompile anything that links against the MySQL shlibs, as the ABI has changed between the versions. Using portupgrade makes that fairly= simple, and portupgrade's feature of preserving any shlibs removed= from old ports in /usr/local/lib/compat/pkg means the old 4.1 dependent stuff will still continue to work even after you've upda= ted -- again, not that you should be planning to use mysql dependent programs while upgrading, but having that capability is useful if you run into problems. *) Make sure to shut down the mysql daemon before attempting to upgra= de it. I know this is bleeding obvious, but it's also easy to forget= =2E Not doing this can lead to data corruption, and in fact the port w= ill automatically kill any running mysql at re-install time. But do be= sure to double check. The sequence of thing you'll need to do is as follows: 0) You've got good backups, haven't you? i) Examine the output of 'pkg_info -R mysql-client-\*' and note down any daemon processes that depend on MySQL. You should shut those = down for the duration of the upgrade process. Alternatively you could drop to single user mode to carry out this whole procedure. ii) Edit /etc/make.conf and insert in it: WITH_MYSQL_VER=3D 50 You can put extra compile time flags for the mysql port into /etc/make.conf at the same time. eg. I tend to use something like this, which you should modify to suit your own needs: .if ${.CURDIR:M*/databases/mysql*} WITH_CHARSET=3Dlatin1 WITH_XCHARSET=3Dnone WITH_COLLATION=3Dlatin1_swedish_ci WITH_OPENSSL=3Dyes BUILD_OPTIMIZED=3Dyes WITH_INNODB=3Dyes WITH_ARCHIVE=3Dyes WITH_FEDERATED=3Dyes WITH_NDB=3Dyes .endif=20 Or you can use the MAKE_ARGS array in pkgtools.conf to achieve a s= imilar effect. (Note that pkgtools.conf only applies to portupgrade et a= l, /etc/make.conf applies generally to any way of using the ports) iii) Make sure the database is shut down: /usr/local/etc/rc.d/mysql-server stop iv) Upgrade mysql-client, replacing mysql-client-4.1.x in the dependen= cies between your installed ports: portupgrade -o databases/mysql50-client -f mysql-client-\* iv) Upgrade mysql-server, replacing mysql-server-4.1.x in the dependen= cies between your installed ports: portupgrade -o databases/mysql50-server -f mysql-server-\* v) Force a recompile of everything else that depends on mysql-client = so that they all link against the upgraded shlib: portupgrade -Nfi -r mysql-client-\* -x mysql-client -x mysql-serv= er Certain MySQL related ports are specific to one mysql version, suc= h as eg. p5-DBD-mysql50-3.0006 or mysql-scripts-5.0.24 and you may h= ave to use the 'portupgrade -o port/name -f pkg' style of command to g= et them upgraded properly. vi) Restart mysql-server. Immediately run the mysql-upgrade program: mysql_upgrade -v -b /usr/local -d /var/db/mysql -u root (Will prompt you for the root@localhost password to the DB) That should fix up anything that needs fixing, especially the user= grant tables. Examine /var/db/mysql/$HOSTNAME.err to see if there are any obviou= s problems, and do whatever tests you need to on the contents of you= r DB to assure yourself it has come through intact. vii) Restart all mysql client programs. Test that they function correc= tly. viii) Make haste to nearest public house and order yourself a pint of your favourite beer. You've earned it. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig46B5DC3310C36DC8DD2C74AF Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE+dlS8Mjk52CukIwRCHwaAJ49ZAAD/foCavRtFPN7XYYKZguuigCdFOUs vS4evHklryb0Jbu+g0TLsiQ= =LsYY -----END PGP SIGNATURE----- --------------enig46B5DC3310C36DC8DD2C74AF-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 19:23:31 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4E31F16A4DA for ; Sat, 2 Sep 2006 19:23:31 +0000 (UTC) (envelope-from sigma_zk@yahoo.com) Received: from web52308.mail.yahoo.com (web52308.mail.yahoo.com [206.190.48.151]) by mx1.FreeBSD.org (Postfix) with SMTP id AA6B943D45 for ; Sat, 2 Sep 2006 19:23:30 +0000 (GMT) (envelope-from sigma_zk@yahoo.com) Received: (qmail 56051 invoked by uid 60001); 2 Sep 2006 19:23:30 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=aMjiOLCP7OThvismVjLn/L6YN10EwY2yteeAc51i1ulNYTkcc3oEYGJ/lecYav8ow5R89CK9pFiqann1CKfYjVwsX4ekPFvu/NAGX8C6+oyAM+Kg7w8LiJc6cZF6bmVTz9TNGIgJyyJSh7XWoE+ZGLGL2ekLnEZxI5j0s5fs//c= ; Message-ID: <20060902192330.56049.qmail@web52308.mail.yahoo.com> Received: from [24.87.114.179] by web52308.mail.yahoo.com via HTTP; Sat, 02 Sep 2006 12:23:29 PDT Date: Sat, 2 Sep 2006 12:23:29 -0700 (PDT) From: "Sean M." To: freebsd-questions@freebsd.org In-Reply-To: <200609021209.09378.ABabiy@shaw.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: HP-1022 laser printer X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 19:23:31 -0000 Is that a LaserJet 1022? If it is, it's supported by hplip. --- Andriy Babiy wrote: > Hello, > > Could anybody advise me on the HP-1022 laser printer? Does anyone > have this > model working on the FreeBSD? I'm going to buy it, therefore I wanted > to > check if there are any issues/problems about it. I found postings > about "USB > port busy" problem, but guys didn't specify clearly the platform they > used. > Especially, I'm interested in positive experiences. > Originally, I posted the question to freebsd-hardware, with no answer > though. > Thank you for your time. > > Andriy > _______________________________________________ > 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" > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 19:29:11 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 174C316A4DE for ; Sat, 2 Sep 2006 19:29:11 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (happy-idiot-talk.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACE2E43D4C for ; Sat, 2 Sep 2006 19:29:09 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [IPv6:::1] (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id k82JSjk9040872; Sat, 2 Sep 2006 20:28:45 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=softfail; spf=softfail X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk k82JSjk9040872 Message-ID: <44F9DB67.6050506@infracaninophile.co.uk> Date: Sat, 02 Sep 2006 20:28:39 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.5 (X11/20060801) MIME-Version: 1.0 To: Jack Stone References: In-Reply-To: X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig83EDBA01BA713AB307DD6E93" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [IPv6:::1]); Sat, 02 Sep 2006 20:29:05 +0100 (BST) X-Virus-Scanned: ClamAV 0.88.4/1786/Sat Sep 2 10:01:59 2006 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, DKIM_POLICY_TESTING, NO_RELAYS autolearn=ham version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: Setting date variable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 19:29:11 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig83EDBA01BA713AB307DD6E93 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Jack Stone wrote: > I could use the "date" command to do: 2006-09.txt or maybe 2006-Sep.txt= > but I haven't found a simple way to set a variable make date spell out > the whole name of the month to match the file name. date +"%Y-%B.txt" See strftime(3) for all of the %-escapes you can use. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enig83EDBA01BA713AB307DD6E93 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFE+dtt8Mjk52CukIwRCFihAJ0UTN2vr0xkDmGXjY4uyACXGACYewCfUYt7 VdPRSP2H39ZMEAshzoS8Tsg= =1UWe -----END PGP SIGNATURE----- --------------enig83EDBA01BA713AB307DD6E93-- From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 19:49:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 5268716A4DE for ; Sat, 2 Sep 2006 19:49:38 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73AF543D46 for ; Sat, 2 Sep 2006 19:49:36 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (patr530-a029.otenet.gr [212.205.215.29]) (authenticated bits=128) by igloo.linux.gr (8.13.7/8.13.7/Debian-2) with ESMTP id k82JnI4B028153 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 2 Sep 2006 22:49:23 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k82Jn4av001540; Sat, 2 Sep 2006 22:49:04 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k82Jn41c001539; Sat, 2 Sep 2006 22:49:04 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 2 Sep 2006 22:49:03 +0300 From: Giorgos Keramidas To: Gary Kline Message-ID: <20060902194903.GB1385@gothmog.pc> References: <20060902033024.GA68680@thought.org> <20060902160840.GA1344@gothmog.pc> <20060902180107.GB4394@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060902180107.GB4394@thought.org> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.682, required 5, autolearn=not spam, AWL -0.08, BAYES_00 -2.60, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Oh, no.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 19:49:38 -0000 On 2006-09-02 11:01, Gary Kline wrote: > > 100% consistent. tHe strange thing is that when I set the > boot-order in the BIOS to "CDROM" it's ignored. (Maybe I > don't have the boot CD? that occured when I was crawling > out of bed!) I have all 4 f the 5.3 boxed set. So there is no way to boot from install disc-1 of FreeBSD? This should at least give you a chance to boot from the install disc, and then insert the FixIt CD-ROM to start investigating what is wrong, as Greg Lehey suggested :) From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 20:08:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E14A316A4DE for ; Sat, 2 Sep 2006 20:08:12 +0000 (UTC) (envelope-from opensrc.root@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1B2B43D4C for ; Sat, 2 Sep 2006 20:08:11 +0000 (GMT) (envelope-from opensrc.root@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so653496nzn for ; Sat, 02 Sep 2006 13:08:11 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=qHYTxPhlLz4Gdp2NvbxKj0cdWxqb/A9LPDcnfpmjGoZWV9HTZW7c7T0sBwitE+nGUpES7mPnXQu5EUd1tPCDDEGHNeq1y4ydL/+1o5PaZIS3GQLOb0j0NzruZAlg/Zr4U95Mww6aGpCixnvKLPU2PRG2YhWfHJruFlko4NfBHhI= Received: by 10.65.151.6 with SMTP id d6mr1668377qbo; Sat, 02 Sep 2006 13:08:10 -0700 (PDT) Received: by 10.64.84.3 with HTTP; Sat, 2 Sep 2006 13:08:10 -0700 (PDT) Message-ID: Date: Sat, 2 Sep 2006 16:08:10 -0400 From: "David Wassman" To: "FreeBSD-Questions Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Device Drivers and Kernel Modules X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 20:08:13 -0000 I am trying to figure out which would be best, to load all the device drivers through compiling them into the kernel or to load them at boot through loader.conf. I would think that loader.conf would be more convenient as changing hardware wuld not require a rebuild of the kernel. Is there a draw back to loading devices this way other than a longer boot up time (which should not be an issue as the system is 24-7)? I have also heard that loading modules through the loader.conf saves on RAM performance as the module in question is not loaded into memory until it is used as opposed to being loaded with the kernel. If this makes no sense, i appologize. I remember reading it somewhere on a mailing list several years ago and can't find the reference anymore. From memory it stated modules such as cd9660 could be loaded through entering CD9660_load="YES" in loader.confand that it would not be used in memory until a cd was mounted. I am assuming this is true (if it is) for other modules as well. Is any of these making sense or am I completely off? Thanks, David Wassman From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 20:16:12 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 B4F1316A4DA for ; Sat, 2 Sep 2006 20:16:12 +0000 (UTC) (envelope-from kline@sage.thought.org) Received: from sage.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3495F43D45 for ; Sat, 2 Sep 2006 20:16:12 +0000 (GMT) (envelope-from kline@sage.thought.org) Received: from sage.thought.org (kline@localhost [127.0.0.1]) by sage.thought.org (8.13.6/8.12.10) with ESMTP id k82KG1jR001324; Sat, 2 Sep 2006 13:16:01 -0700 (PDT) (envelope-from kline@sage.thought.org) Received: (from kline@localhost) by sage.thought.org (8.13.6/8.13.1/Submit) id k82KFuMi001322; Sat, 2 Sep 2006 13:15:56 -0700 (PDT) (envelope-from kline) Date: Sat, 2 Sep 2006 13:15:56 -0700 From: Gary Kline To: Giorgos Keramidas Message-ID: <20060902201556.GA1277@thought.org> References: <20060902033024.GA68680@thought.org> <20060902160840.GA1344@gothmog.pc> <20060902180107.GB4394@thought.org> <20060902194903.GB1385@gothmog.pc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060902194903.GB1385@gothmog.pc> X-Organization: Thought Unlimited. Public service Unix for 20 years. User-Agent: Mutt/1.5.11 Cc: Gary Kline , freebsd-questions@freebsd.org Subject: Got to the CDROM drive!! (Was: Re: Oh, no....) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 20:16:12 -0000 On Sat, Sep 02, 2006 at 10:49:03PM +0300, Giorgos Keramidas wrote: > On 2006-09-02 11:01, Gary Kline wrote: > > > > 100% consistent. tHe strange thing is that when I set the > > boot-order in the BIOS to "CDROM" it's ignored. (Maybe I > > don't have the boot CD? that occured when I was crawling > > out of bed!) I have all 4 f the 5.3 boxed set. > > So there is no way to boot from install disc-1 of FreeBSD? > > This should at least give you a chance to boot from the install disc, > and then insert the FixIt CD-ROM to start investigating what is wrong, > as Greg Lehey suggested :) > Finally (after 57th reset), I must have done something/enough to the BIOS so that the server booted from the boot CD; I just dropped in th live-fs disc. Probably can't scp stuff out so this is ging to take some serious poking around! -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 20:33:17 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 0C9A916A4DF for ; Sat, 2 Sep 2006 20:33:17 +0000 (UTC) (envelope-from jerrymc@msu.edu) Received: from sys23.mail.msu.edu (sys23.mail.msu.edu [35.9.75.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7805C43D66 for ; Sat, 2 Sep 2006 20:33:13 +0000 (GMT) (envelope-from jerrymc@msu.edu) Received: from jerrymc by sys23.mail.msu.edu with local (Exim 4.52 #1) id 1GJcAv-0006AO-NT; Sat, 02 Sep 2006 16:33:09 -0400 References: <20060902033024.GA68680@thought.org> <20060902160840.GA1344@gothmog.pc> <20060902180107.GB4394@thought.org> In-Reply-To: <20060902180107.GB4394@thought.org> From: "Jerold McAllister" To: Gary Kline Date: Sat, 02 Sep 2006 16:33:09 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="utf-8" Content-Transfer-Encoding: 7bit Message-Id: X-Virus: None found by Clam AV Cc: Giorgos Keramidas , freebsd-questions@freebsd.org Subject: Re: Oh, no.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 20:33:17 -0000 Gary Kline writes: > >> > gary >> > >> > "Fatal trap 18: blah, blah.... >> > "Uptime 1sec" >> >> Have you restarted the system that crashed? Does it consistently panic >> when you try to boot, or was this a panic introduced by the particular >> conditions of that moment? >> > > 100% consistent. tHe strange thing is that when I set the > boot-order in the BIOS to "CDROM" it's ignored. (Maybe I > don't have the boot CD? that occured when I was crawling > out of bed!) I have all 4 f the 5.3 boxed set. > > --Another few gallons of coffee and I'll check. > The first CD is bootable. I had something like this happen on an install a couple of weeks ago. I set the boot order with Cd before HDD and it would completely ignore the CD and just boot from the Hard Disk. I had just used that CD to install another machine so I didn't even think the CD might be bad. But, then a couple of days later I tried it in a machine I was sure of and the same thing happened. So, I burned another copy on a different machine and it worked just fine on both. The one that was ignoring the Cd and booting from the HDD, then booted fine From the newly burned CD. So, I would suggest it might be possible that you have some sort of marginal burn on the CD and it will work on some machines and not others. Good luck, ////jerry > -- > Gary Kline kline@thought.org www.thought.org Public service Unix > > _______________________________________________ > 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 Sat Sep 2 20:40:04 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 45CD016A4DD for ; Sat, 2 Sep 2006 20:40:04 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E5E343D6E for ; Sat, 2 Sep 2006 20:39:59 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1875820pye for ; Sat, 02 Sep 2006 13:39:58 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=b8H5zDhJesa+hQ/21NV4yuBF0lCA/29/9/6Flj2o6UULpqsmqiVSWfWIk5wDWuWNeGe8DprTPqOSKlw4KU/Lt0/Ss+dKP7fQuY6xiPl//ojPQHNdqUaJdIN5iKFIFC4To7lCFf5CviFxnwPp2mH6XhMTeaO/WgwYWudQbsg4u2Y= Received: by 10.64.241.3 with SMTP id o3mr3963723qbh; Sat, 02 Sep 2006 13:39:58 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Sat, 2 Sep 2006 13:39:58 -0700 (PDT) Message-ID: <73d604760609021339rdd2c545kd44f9a9a9341267f@mail.gmail.com> Date: Sun, 3 Sep 2006 02:09:58 +0530 From: "Viswas Nair" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Boot message: atapci: failed to enable memory mapping! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 20:40:04 -0000 Been getting this message everytime I boot. atapci1: port 0x20d8-0x20df,0x20f0-0x20f3,0x20e0-0x20e7,0x20f4-0x20f7,0x20b0-0x20bf irq 19 at device 31.2 on pci0 atapci1: failed to enable memory mapping! Any ideas what this means and what can be done to fix it? Thanks, Vishy From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 20:41:47 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 417DB16A4DA for ; Sat, 2 Sep 2006 20:41:47 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96D8F43D53 for ; Sat, 2 Sep 2006 20:41:44 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so1876400pye for ; Sat, 02 Sep 2006 13:41:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=V8N0iGb3BuLssEiJRIiwOc1bPETJNaxPxDFsVFosSZZM/bkuF44KNVuMIDnPkS/QOXTfVrWgv/VW0WywpwKdzOEGRqwya0t93DJJ4h6t201q4mbVEaEw2Nm/EgzijZeD3FZaIL7MmOdoqApzvBTiRhBG61BI9Z28cqGGcc+DWTE= Received: by 10.65.126.4 with SMTP id d4mr2913699qbn; Sat, 02 Sep 2006 13:41:44 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Sat, 2 Sep 2006 13:41:44 -0700 (PDT) Message-ID: <73d604760609021341v1ab31d3dp7221ebb7d2720c97@mail.gmail.com> Date: Sun, 3 Sep 2006 02:11:44 +0530 From: "Viswas Nair" To: "Wei Hu" In-Reply-To: MIME-Version: 1.0 References: <540EE4AEDEEAE3418715F9B95446582D7FDD27@groucho.dmsivan.com> <73d604760608310511y120c5365yc139490ef5be343f@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Playing Audio CDs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 20:41:47 -0000 I got the audio CD to be working fine. Still no luck with the DVD burning in fluxbox. Cannot/do not want to use and KDE or Gnome tools. Anyone has experience with prodvd for xcdroast? Thanks. On 9/1/06, Wei Hu wrote: > > mount your CD, change to the mount point, then, for example, issue the > command: gmaplyer *.mp3 > On 8/31/06, Viswas Nair wrote: > > > --- Viswas Nair wrote: > > > > I am new to BSD and have mplayer installed > > > > (Gmplayer) and I do not see the > > > > option to play an Audio CD, only CDs, files and > > > > DVDs. How do I get Audio > > > > CD's to play? Can they be mounted, if so how? Is > > > > there any > > > > specific audio alone CD player (GUI based) that you > > > > suggest? > _______________________________________________ > 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 Sat Sep 2 20:46:04 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 7859216A4E2 for ; Sat, 2 Sep 2006 20:46:04 +0000 (UTC) (envelope-from bob@a1poweruser.com) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40EA643D73 for ; Sat, 2 Sep 2006 20:46:00 +0000 (GMT) (envelope-from bob@a1poweruser.com) Received: from laptop ([70.39.69.56]) by mta10.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with SMTP id <20060902204600.VYSC24294.mta10.adelphia.net@laptop>; Sat, 2 Sep 2006 16:46:00 -0400 From: "Bob" To: "Andrew Falanga" , "freebsd-questions" Date: Sat, 2 Sep 2006 16:45:55 -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) X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 In-Reply-To: <340a29540609021051n50bc066bj63f192f9890f8e5@mail.gmail.com> Importance: Normal Cc: Subject: RE: Having trouble getting ppp configured on my 6.1 box X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 20:46:04 -0000 Trying adding this enable dns to your ppp.conf file. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Andrew Falanga Sent: Saturday, September 02, 2006 1:52 PM To: freebsd-questions Subject: Having trouble getting ppp configured on my 6.1 box Hello everyone, I had to blow away my 6.0 installation and simply install 6.1 release. I found out that I would have to update my ports manually and since I don't have high speed access to the Internet, this just wasn't feasible. So, after installing (which went smoothly) I'm getting everything working. I remembered all my configuration files, or so I thought, except for the ppp.conf file that I was using. I remember having this problem when I installed 6.0 but unfortunately, I can't remember how to fix it. This is really embarrasing. ppp works and all, but I can't resolve any DNS hostnames. Everytime I try, I get something like "no address associated to the name." Or something similar. Sorry, I'm writing this mail from the Windows OS (one computer shares the two OS's) and I don't recall the error exactly but that's basically it. I was reading through the handbook and the ppp manual page and have tried a few different things, but haven't gotten it to work as yet. I called my ISP to get the nameserver addresses to put in /etc/resolv.conf, and have confirmed that with "enable dns" in ppp that ppp is updating the resolv.conffile. However, I'm still unable to resolve DNS hostnames. What's the magic that I must perform to make this work? Thanks, Andy _______________________________________________ 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 Sat Sep 2 20:49:59 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 8AA8316A4DA for ; Sat, 2 Sep 2006 20:49:59 +0000 (UTC) (envelope-from fysical@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42E1A43D5F for ; Sat, 2 Sep 2006 20:49:57 +0000 (GMT) (envelope-from fysical@gmail.com) Received: by py-out-1112.google.com with SMTP id c30so1878384pyc for ; Sat, 02 Sep 2006 13:49:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=Nyu0pfwxeOvYyrqpaqVuIdd/FxWwxAfEAFSm4dyKwi325H8Zmd9dn8PnTd+2EJayqe5j8P5rgzmQkergd9b1YNidy6GIVwmz/8JXbeYqJcsYeqnfhOnWJasHCU5WuokW5bDi7G23lXuqHwkdkKgmW8hYi3NPke4VGmSUHhfIfys= Received: by 10.64.249.18 with SMTP id w18mr1691706qbh; Sat, 02 Sep 2006 13:49:56 -0700 (PDT) Received: by 10.65.124.13 with HTTP; Sat, 2 Sep 2006 13:49:56 -0700 (PDT) Message-ID: <73d604760609021349r15453839lb9c656e9d0eff8f5@mail.gmail.com> Date: Sun, 3 Sep 2006 02:19:56 +0530 From: "Viswas Nair" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Wireless setup in non atheros wireless cards (project evil) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 20:49:59 -0000 So I created a wrapper for my wireless card (Netgear WG311v3) drivers from windows using ndisgen following instructions at http://www.pingwales.co.uk/2005/07/15/Project-Evil.htm I loaded the module into loader.conf On boot I get this message: ndis0: mem 0xe0a00000-0xe0a0ffff,0xe0a10000-0xe0a1ffff irq 18 at device 9.0 on pci5 ndis0: NDIS API version: 5.0 ndis0: init handler failed device_attach: ndis0 attach returned 6 Any suggestions on how to fix this and what I am doing wrong? Thanks, Vishy From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 21:40:04 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 317F816A4DA for ; Sat, 2 Sep 2006 21:40:04 +0000 (UTC) (envelope-from g.one@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEF7943D46 for ; Sat, 2 Sep 2006 21:40:03 +0000 (GMT) (envelope-from g.one@mac.com) Received: from mac.com (smtpin04-en2 [10.13.10.149]) by smtpout.mac.com (Xserve/8.12.11/smtpout03/MantshX 4.0) with ESMTP id k82LeHZn019676; Sat, 2 Sep 2006 14:40:17 -0700 (PDT) Received: from [192.168.2.3] (cpe-065-191-021-225.nc.res.rr.com [65.191.21.225]) (authenticated bits=0) by mac.com (Xserve/smtpin04/MantshX 4.0) with ESMTP id k82LdwWR024962; Sat, 2 Sep 2006 14:39:59 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <20060902183250.48648.qmail@web52314.mail.yahoo.com> References: <20060902183250.48648.qmail@web52314.mail.yahoo.com> Message-Id: <47BBCB26-D4B9-413F-89FA-20B5638E77AC@mac.com> From: g Date: Sat, 2 Sep 2006 17:39:55 -0400 To: "Sean M." , freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAQAAA+k= X-Language-Identified: TRUE Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Newbie: compiled and installed gcc-4.2 but ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 21:40:04 -0000 Thanks, Sean. g. On Sep 2, 2006, at 2:32 PM, Sean M. wrote: > Use gcc42, g++42, etc. > > --- g wrote: > >> i compiled and installed gcc-4.2 using the instruction on the FreeBSD >> >> web site. thanks to kris, who directed me to /usr/ports/lang/ >> gcc ... and pointed out there was something unusually wrong with >> what i had done before. >> >> how do i use that version? when i do gcc -v, i get gcc version 3.4.4 >> >> [FreeBSD] 20050518 >> >> i would like to replace this version with the gcc-4.2, or at least >> use the 4.2 version on occasion. >> >> thank everyone, >> >> g. >> >> >> >> >> _______________________________________________ >> 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" >> > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions- > unsubscribe@freebsd.org" g. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 22:43:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D640F16A4DD for ; Sat, 2 Sep 2006 22:43:38 +0000 (UTC) (envelope-from bsd@todoo.biz) Received: from newmail.rmm.fr (newmail.rmm.fr [195.115.46.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69D2D43D46 for ; Sat, 2 Sep 2006 22:43:37 +0000 (GMT) (envelope-from bsd@todoo.biz) Received: from localhost (localhost [127.0.0.1]) by newmail.rmm.fr (Postfix) with ESMTP id 8D4CE28F42 for ; Sun, 3 Sep 2006 00:43:34 +0200 (CEST) X-Virus-Scanned: amavisd-new 2.4.2 (20060627) at rmm.fr Received: from newmail.rmm.fr ([127.0.0.1]) by localhost (newmail.rmm.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VL+shOIKE4Tz for ; Sun, 3 Sep 2006 00:43:34 +0200 (CEST) Received: from [172.16.1.201] (me.todoo.biz [82.66.93.242]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by newmail.rmm.fr (Postfix) with ESMTP id 4B08028ED0 for ; Sun, 3 Sep 2006 00:43:34 +0200 (CEST) Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: quoted-printable Message-Id: <2A7A706E-E19D-4E92-ADFA-29261AB532B5@todoo.biz> Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed To: Liste FreeBSD From: bsd Date: Sun, 3 Sep 2006 00:43:31 +0200 X-Mailer: Apple Mail (2.752.2) Subject: ACPI lock in the last "halt" process X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 22:43:38 -0000 Hello, I have configured with a 6.1 RELEASE FreeBSD. When I am trying to shut down the computer - I reach the prompt - all =20= processes seems to halt correctly - then the server seems to be =20 stucked with the ACPI process indefinitely ?? First of all I don't know what ACPI is related to ? Second how could I avoid that problem in the future ? --- Here are the info related to acpi on my dmesg log : > acpi_alloc_wakeup_handler: can't alloc wake memory > acpi0: on motherboard > acpi0: Power Button (fixed) > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 > cpu0: on acpi0 > acpi_throttle0: on cpu0 > cpu1: on acpi0 > cpu2: on acpi0 > cpu3: on acpi0 > pcib0: port 0xcf8-0xcff on acpi0 > acpi_button0: on acpi0 > sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags =20 > 0x10 on acpi0 > atkbdc0: port 0x60,0x64 irq 1 on acpi0 Thanks. ________________________________________________ =AB?=BB=A5=AB?=BB=A7=AB?=BB=A5=AB?=BB=A7=AB?=BB=A5=AB?=BB=A7=AB?=BB=A5=AB?= =BB=A7=AB?=BB=A5=AB?=BB=A7=AB?=BB=A5=AB?=BB=A7 =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF= =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF Gregober ---> PGP ID --> 0x1BA3C2FD bsd @at@ todoo.biz ________________________________________________ =AB?=BB=A5=AB?=BB=A7=AB?=BB=A5=AB?=BB=A7=AB?=BB=A5=AB?=BB=A7=AB?=BB=A5=AB?= =BB=A7=AB?=BB=A5=AB?=BB=A7=AB?=BB=A5=AB?=BB=A7 =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF= =AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF=AF P "Please consider your environmental responsibility before printing =20 this e-mail" From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 23:06:59 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 E47CB16A4DA for ; Sat, 2 Sep 2006 23:06:59 +0000 (UTC) (envelope-from rlw2@cec.wustl.edu) Received: from express.cec.wustl.edu (express.cec.wustl.edu [128.252.21.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id A223143D62 for ; Sat, 2 Sep 2006 23:06:57 +0000 (GMT) (envelope-from rlw2@cec.wustl.edu) Received: from hilton.cec.wustl.edu (hilton.cec.wustl.edu [128.252.21.4]) by express.cec.wustl.edu (8.13.6/8.12.5) with ESMTP id k82N6utU002856; Sat, 2 Sep 2006 18:06:56 -0500 (CDT) Received: from 48rts91.wuh.wustl.edu ([128.252.48.91]) (SquirrelMail authenticated user rlw2) by hilton.cec.wustl.edu with HTTP; Sat, 2 Sep 2006 18:06:57 -0500 (CDT) Message-ID: <3779.128.252.48.91.1157238417.squirrel@hilton.cec.wustl.edu> In-Reply-To: References: <1063.128.252.48.91.1157175031.squirrel@clarion.cec.wustl.edu> Date: Sat, 2 Sep 2006 18:06:57 -0500 (CDT) From: rlw2@cec.wustl.edu To: "Andreas Rudisch" <"cyb."@gmx.net> User-Agent: SquirrelMail/1.4.4 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: Azureus downloads slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 23:07:00 -0000 > On Sat, 02 Sep 2006 07:30:31 +0200, wrote: > >> Hi all, >> I am running a Azureus (headless w/ webui) on my FreeBSD 6.1 system >> and it works. The problem is that, for some reason I can't discover, >> downloads are slowwwww. It is not because of the torrent. It is my >> setup. Every couple hours download speed drops to under 1 kbps and >> availability drops too, so I restart Az. and download speeds are as >> expected for another couple of hours. > > http://www.azureuswiki.com/ > http://www.azureuswiki.com/index.php/Good_settings > http://www.azureuswiki.com/index.php/Good_Torrents > > Make sure to limit the number of connections and torrents according to the > upload speed of your internet connection. Also limit your upload speed. > > Andreas > I know all that. I am saying that Azureus on FreeBSD runs slower than d/ling the same torrent on a windows or even a linux (ubuntu) box when getting the same torrent from the same network. ryan From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 23:08:46 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A93ED16A4DA for ; Sat, 2 Sep 2006 23:08:46 +0000 (UTC) (envelope-from antennex@hotmail.com) Received: from bay0-omc3-s30.bay0.hotmail.com (bay0-omc3-s30.bay0.hotmail.com [65.54.246.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AF2F43D49 for ; Sat, 2 Sep 2006 23:08:35 +0000 (GMT) (envelope-from antennex@hotmail.com) Received: from hotmail.com ([65.54.161.40]) by bay0-omc3-s30.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.1830); Sat, 2 Sep 2006 16:08:35 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 2 Sep 2006 16:08:35 -0700 Message-ID: Received: from 65.54.161.200 by by106fd.bay106.hotmail.msn.com with HTTP; Sat, 02 Sep 2006 23:08:32 GMT X-Originating-IP: [65.68.247.73] X-Originating-Email: [antennex@hotmail.com] X-Sender: antennex@hotmail.com In-Reply-To: <44F9DB67.6050506@infracaninophile.co.uk> From: "Jack Stone" To: freebsd-questions@freebsd.org Date: Sat, 02 Sep 2006 18:08:32 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 02 Sep 2006 23:08:35.0358 (UTC) FILETIME=[B786FBE0:01C6CEE4] Subject: Re: Setting date variable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 23:08:46 -0000 >From: Matthew Seaman >To: Jack Stone >CC: freebsd-questions@freebsd.org >Subject: Re: Setting date variable >Date: Sat, 02 Sep 2006 20:28:39 +0100 > >Jack Stone wrote: > > > I could use the "date" command to do: 2006-09.txt or maybe 2006-Sep.txt > > but I haven't found a simple way to set a variable make date spell out > > the whole name of the month to match the file name. > >date +"%Y-%B.txt" > >See strftime(3) for all of the %-escapes you can use. > > Cheers, > > Matthew Thanks, Matthew. I knew it would be some simple way! striftime is now my friend! Happy Trails, Jack _________________________________________________________________ Windows Live Spaces is here! It’s easy to create your own personal Web site. http://spaces.live.com/signup.aspx From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 23:08:57 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 19AFC16A4E9 for ; Sat, 2 Sep 2006 23:08:57 +0000 (UTC) (envelope-from g.one@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FC9443D8B for ; Sat, 2 Sep 2006 23:08:46 +0000 (GMT) (envelope-from g.one@mac.com) Received: from mac.com (smtpin02-en2 [10.13.10.147]) by smtpout.mac.com (Xserve/8.12.11/smtpout05/MantshX 4.0) with ESMTP id k82N8k09000767 for ; Sat, 2 Sep 2006 16:08:46 -0700 (PDT) Received: from [192.168.2.3] (cpe-065-191-021-225.nc.res.rr.com [65.191.21.225]) (authenticated bits=0) by mac.com (Xserve/smtpin02/MantshX 4.0) with ESMTP id k82N8hF6029512 for ; Sat, 2 Sep 2006 16:08:45 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v752.2) To: freebsd-questions@freebsd.org Message-Id: <487FA1B8-10BC-47AC-B732-2EBA292BA81F@mac.com> From: g Date: Sat, 2 Sep 2006 19:08:41 -0400 X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAQAAA+k= X-Language-Identified: TRUE Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: how do you get gnustep to run? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 23:08:57 -0000 Freebsd 6.1 gnustep installed from the /usr/ports/lang/ make make install but when i type startx, i get the x windowing system. what do i need to do to get gnustep running and running at startup, when i turn on the computer. g. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 23:10:52 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 1661B16A4DD for ; Sat, 2 Sep 2006 23:10:52 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 058FD43D4C for ; Sat, 2 Sep 2006 23:10:50 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (patr530-a029.otenet.gr [212.205.215.29]) (authenticated bits=128) by igloo.linux.gr (8.13.7/8.13.7/Debian-2) with ESMTP id k82NATK0005663 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 3 Sep 2006 02:10:33 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k82NAFV4009273; Sun, 3 Sep 2006 02:10:15 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k82NAE5A009272; Sun, 3 Sep 2006 02:10:14 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 3 Sep 2006 02:10:14 +0300 From: Giorgos Keramidas To: Gerard Seibert Message-ID: <20060902231014.GA9239@gothmog.pc> References: <20060901125631.GA92179@owl.midgard.homeip.net> <20060901115919.6B6F.GERARD@seibercom.net> <200609021325.58177.gerard@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200609021325.58177.gerard@seibercom.net> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-2.665, required 5, autolearn=not spam, AWL -0.07, BAYES_00 -2.60, UNPARSEABLE_RELAY 0.00) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Why sendmail? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 23:10:52 -0000 On 2006-09-02 13:25, Gerard Seibert wrote: >On Saturday 02 September 2006 11:31, Atom Powers wrote: >[...] >> By making the Postfix port /not/ disable Sendmail it gives you the >> ability to, more easily, run Sendmail *and* Postfix on the same >> machine. ie it doesn't break your current configuation. > > Why would I want Sendmail running in conjunction with a > properly functioning Postfix installation? I can only imagine > problems resulting from such a venture. Testing, during a transition period? Multiple MTA's serving two different sides of a network? I'm not saying that this would be a terribly good idea for a long-term setup, but there are cases where one may find it slightly useful. From owner-freebsd-questions@FreeBSD.ORG Sat Sep 2 23:45:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 072B116A4E5 for ; Sat, 2 Sep 2006 23:45:06 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.web-strider.com [65.75.192.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20D9A43D76 for ; Sat, 2 Sep 2006 23:45:02 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from coolf89ea26645 (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.11.1/8.11.1) with SMTP id k82Nj0x34828; Sat, 2 Sep 2006 16:45:00 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Message-ID: <000401c6cee9$de8a8680$3c01a8c0@coolf89ea26645> From: "Ted Mittelstaedt" To: "Keith Phipps" , References: <44F95580.5030603@gmail.com> Date: Sat, 2 Sep 2006 16:45:27 -0700 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.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Cc: Subject: Re: Sparkling Brand New FreeBSD Admin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 23:45:07 -0000 Keith, You don't compile PHP into the kernel. Let this be your first lesson, namely that nobody but another admin really understands your job, so get used to the old "smile and nod" routine. When talking to your bosses, what you need to do is find out what the RESULTS are that they want, do not let them get sidetracked into discussing with you the pros and cons of each little piece of software that you use. Secondly, document, document. document. Ted ----- Original Message ----- From: "Keith Phipps" To: Sent: Saturday, September 02, 2006 2:57 AM Subject: Sparkling Brand New FreeBSD Admin > Good Day, > > My name is Keith and I"ve just been promoted to our Unix SysAdmin at > work. I'll be working with a team of guys in the Ops department but the > majority are Windows Admins. I'm not completely lost when it comes to > using *nix, I use it as my Desktop and know Slackware and Ubuntu fairly > well. I've installed FreeBSD a few times on servers, but that's about > the extent of my server knoweledge and BSD. > > My duties in the beginning are not going to be that complex, I'll be > building out boxes, racking them, health checks, running backups, > generating keys, etc.. However, soon after my promotion date (11th of > September I start) I'll be given more and more boxes to manage. Most of > our infastructure is built on BSD, so I'm going to have upwards of 40 > appliances to manage and maintain. > > My questions really come down to this; I'll be working with 4.x and > 6.1 boxes. Are there any global issues with them I should be concerned > about, something you guys as admins have to deal with regularly. The > boss also said something that confused me, said I'd need to make the > builds and compile php, perl, and mysql into the Kernel. I've never done > much Kernel work (much, lets start with any) but it's always been my > understanding that with BSD if I wanted to install PHP, PERL, and MySQL > on a box, I'd just pkg_add it. I've never heard of it actually being > compiled in the kernel. > > Right now my biggest resources have to be google and the O'Reilly > book "Essential Sys. Admin." but I'd like to have a reference guide more > suited to only the FreeBSD platform. Any recommendations on this as well? > > Thanks for your time, > -Keith > _______________________________________________ > 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 Sat Sep 2 23:48:21 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 EA9AB16A4DD for ; Sat, 2 Sep 2006 23:48:21 +0000 (UTC) (envelope-from feelingwei@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3920A43D6E for ; Sat, 2 Sep 2006 23:48:21 +0000 (GMT) (envelope-from feelingwei@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so981802nfc for ; Sat, 02 Sep 2006 16:48:19 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=XA72NTAHIIQgqLlU49aNrQzeuLeZWBSpeGOP+aW16QiMNzu5F9A/qIZ/YAQatUsepB6LCliy/bRZtUR0cpWwf0oG0AftMW6Ksod19Pqf/rQcZkM/OKgCvqhiCI8up3GhUN+WbcRfGV9N9MovjswvLa57ux315m3wzwbFvGrQGeE= Received: by 10.49.75.2 with SMTP id c2mr4794005nfl; Sat, 02 Sep 2006 16:48:19 -0700 (PDT) Received: by 10.49.12.2 with HTTP; Sat, 2 Sep 2006 16:48:19 -0700 (PDT) Message-ID: Date: Sun, 3 Sep 2006 09:48:19 +1000 From: "Wei Hu" To: freebsd-questions@freebsd.org In-Reply-To: <3779.128.252.48.91.1157238417.squirrel@hilton.cec.wustl.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1063.128.252.48.91.1157175031.squirrel@clarion.cec.wustl.edu> <3779.128.252.48.91.1157238417.squirrel@hilton.cec.wustl.edu> Subject: Re: Azureus downloads slow X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Sep 2006 23:48:22 -0000 Give utorrent a try. Azureus is slow and takes too much resources.