From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 00:15:51 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 A2E3B16A479 for ; Sun, 18 Jun 2006 00:15:51 +0000 (UTC) (envelope-from secnews@oxygen.az) Received: from mail.azerin.com (mail.azerin.com [212.47.128.23]) by mx1.FreeBSD.org (Postfix) with SMTP id 7D22B43D46 for ; Sun, 18 Jun 2006 00:15:47 +0000 (GMT) (envelope-from secnews@oxygen.az) Received: (qmail 96183 invoked from network); 16 Jun 2006 15:45:05 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on ml350.azerin.com X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,UNPARSEABLE_RELAY autolearn=ham version=3.1.1 Received: from qmail by qscan (mail filter); 16 Jun 2006 15:45:05 +0000 Received: from unknown (HELO ?212.47.129.5?) (212.47.129.5) by mail.azerin.com with SMTP; 16 Jun 2006 15:45:05 -0000 Message-ID: <4492D1E9.8080904@oxygen.az> Date: Fri, 16 Jun 2006 18:44:41 +0300 From: Tofik Suleymanov User-Agent: Thunderbird 1.5.0.2 (X11/20060425) MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: socketpair(2) strange behavior X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 00:15:51 -0000 Hello list, when using socketpair(2) on my FreeBSD 6.1-RELEASE-p1 box i get this error: "socketpair: Operation not supported" And here is the source of my pretty simple socketpair(2) program: ---- START ---- #include #include #include #include int main(void) { int sv[2], err; err = socketpair(AF_INET, SOCK_STREAM, 0, (int*)&sv); if(err == -1) { perror("socketpair"); return -1; } return 0x0; } ---- END ---- Any comments ? Sincerely, Tofik Suleymanov From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 00:36: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 B767616A479 for ; Sun, 18 Jun 2006 00:36:08 +0000 (UTC) (envelope-from brenthostetler@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0661743D45 for ; Sun, 18 Jun 2006 00:36:07 +0000 (GMT) (envelope-from brenthostetler@gmail.com) Received: by wx-out-0102.google.com with SMTP id i31so641186wxd for ; Sat, 17 Jun 2006 17:36: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:content-transfer-encoding:content-disposition; b=mKgWIKQNEl7S2eYxyZIbPIouhNo7EyOc7EgdvfAbTFTsh+9BxhiUeZxPMfjB2h7WOjbSAdn24NCARVNbCZLAAPrza+a2odiu/LLF5Veyr+Sih+3ag+3dL41/oO10QGAOApuenvf3i5yl4rBLhCFdvAWD1xPBMMNzV4ahQbcREl8= Received: by 10.70.73.4 with SMTP id v4mr6290294wxa; Sat, 17 Jun 2006 17:36:07 -0700 (PDT) Received: by 10.70.21.3 with HTTP; Sat, 17 Jun 2006 17:36:07 -0700 (PDT) Message-ID: Date: Sat, 17 Jun 2006 17:36:07 -0700 From: "Brent Hostetler" 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: Library Dependency: package built from 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: Sun, 18 Jun 2006 00:36:08 -0000 Here is scenario: Machine1: destination server with multiple jails Machine2: build computer Machine2 tracks RELENG_6_1, builds any updates. /usr/src and /usr/obj copied from Machine2 to Machine 1. Updates are installed on Machine1. This works great. Now I want to build ports on Machine2 as packages then install the packages on Machine1. I am having problems with this scenario. Here is what Im doing. Example case, install /usr/ports/www/elinks 1. cd /usr/ports/www/elinks 2. use make all-depends-list to determine dependencies 3. make package-recursive 4. then I tar up the .tbz files 5. copy to Machine1; untar; then pkg_add the tarballs 6. rehash 7. www# elinks /libexec/ld-elf.so.1: Shared object "libX11.so.6" not found, required by "elinks" www# ldd /usr/local/bin/elinks /usr/local/bin/elinks: libX11.so.6 => not found (0x0) libssl.so.4 => /usr/lib/libssl.so.4 (0x28115000) libcrypto.so.4 => /lib/libcrypto.so.4 (0x28143000) libz.so.3 => /lib/libz.so.3 (0x2823a000) libbz2.so.2 => /usr/lib/libbz2.so.2 (0x2824a000) libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x28259000) libc.so.6 => /lib/libc.so.6 (0x28346000) Questions: 1. Why is pkg_add not mentioning missing dependency? 2. What pkg/port needs install for this dependency? 3. How can I improve this process to eliminate future problems? Thanks! brent From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 00:46: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 7A54A16A47A for ; Sun, 18 Jun 2006 00:46:39 +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 270E643D45 for ; Sun, 18 Jun 2006 00:46:39 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5I0kbbK005102; Sat, 17 Jun 2006 19:46:37 -0500 (CDT) (envelope-from dan) Date: Sat, 17 Jun 2006 19:46:37 -0500 From: Dan Nelson To: Bill Moran Message-ID: <20060618004637.GH74191@dan.emsphone.com> References: <200606172144.k5HLipM6078421@darkstar.thelakecity.com.pk> <20060617192003.7897dc71.wmoran@collaborativefusion.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060617192003.7897dc71.wmoran@collaborativefusion.com> X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: file creation date in 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, 18 Jun 2006 00:46:39 -0000 In the last episode (Jun 17), Bill Moran said: > Imran Imtiaz wrote: > > However we can find the modification date of a file but is it > > possible that we can also get creation date of the file? > > There is nothing in the filesystem that stores this info. > > However, the ctime is often used for this purpose. The ctime stores > the last time the file metadata was changed (such as permissions and > ownership). Since it's uncommon for people to change the file > metadata, the ctime can be a good indicator of when the file was > created, but it's no guarantee. Actually, there is if you are using UFS2. The stat field is called the st_birthtime, although the code to print it via ls (with -U) was just committed recently and isn't available in 6.1. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 00:48:15 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 1778316A494 for ; Sun, 18 Jun 2006 00:48:14 +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 95B4A43D67 for ; Sun, 18 Jun 2006 00:48:07 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5I0m7IM005547; Sat, 17 Jun 2006 19:48:07 -0500 (CDT) (envelope-from dan) Date: Sat, 17 Jun 2006 19:48:07 -0500 From: Dan Nelson To: Tofik Suleymanov Message-ID: <20060618004807.GI74191@dan.emsphone.com> References: <4492D1E9.8080904@oxygen.az> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4492D1E9.8080904@oxygen.az> X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: questions@freebsd.org Subject: Re: socketpair(2) strange behavior X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 00:48:15 -0000 In the last episode (Jun 16), Tofik Suleymanov said: > when using socketpair(2) on my FreeBSD 6.1-RELEASE-p1 box i get this > error: "socketpair: Operation not supported" > > And here is the source of my pretty simple socketpair(2) program: > ---- START ---- > #include > #include > #include > #include > > int main(void) { > int sv[2], err; > err = socketpair(AF_INET, SOCK_STREAM, 0, (int*)&sv); > if(err == -1) { > perror("socketpair"); > return -1; > } > >From the manpage: BUGS This call is currently implemented only for the UNIX domain. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 01:03: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 C807216A47A for ; Sun, 18 Jun 2006 01:03:14 +0000 (UTC) (envelope-from talonz@gmail.com) Received: from mail.richardflanagan.com.au (gateway.richardflanagan.com.au [203.149.71.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B5143D46 for ; Sun, 18 Jun 2006 01:03:14 +0000 (GMT) (envelope-from talonz@gmail.com) Received: from [203.222.143.176] (176-143-222-203.static.techex.net.au [203.222.143.176]) by mail.richardflanagan.com.au (Postfix) with ESMTP id 18100218B78; Sun, 18 Jun 2006 11:03:12 +1000 (EST) Message-ID: <4494A61C.2020003@gmail.com> Date: Sun, 18 Jun 2006 11:02:20 +1000 From: talonz User-Agent: Thunderbird 1.5.0.2 (X11/20060515) MIME-Version: 1.0 To: Hanno Krusken References: <20060616093404.5268.qmail@web25407.mail.ukl.yahoo.com> In-Reply-To: <20060616093404.5268.qmail@web25407.mail.ukl.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: GUIDE step-by-step - FreeBSD-RELENG-upgrade + BUILDWORLD process, using CVSUP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 01:03:14 -0000 Hanno Krusken wrote: > Hi all, > specially for the novice of you, please read carefully > !! > > # make clean > > # make -j4 buildworld > > # make buildkernel KERNCONF=YOUR-KERNEL-FILE > > # make installkernel KERNCONF=YOUR-KERNEL-FILE > > # reboot > > Hanno Krusken > make -j4 can cause many systems to fail The correct procedure is make buildworld make kernel KERNCONF=mykern mergemaster -p make installworld mergemaster regards Jason M From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 01:12: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 AEA3216A474 for ; Sun, 18 Jun 2006 01:12:59 +0000 (UTC) (envelope-from hugo.ngd@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 1EC3A43D45 for ; Sun, 18 Jun 2006 01:12:59 +0000 (GMT) (envelope-from hugo.ngd@gmail.com) Received: by nz-out-0102.google.com with SMTP id m7so371364nzf for ; Sat, 17 Jun 2006 18:12: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:in-reply-to:mime-version:content-type:references; b=OT6gOVbDDHaIyypvzyyHLexgCxBbK8kYoMbgrmZVR//Y/xqHG3H4MRa5KPwPcCFDGN27g979YK1C8w95M9eFKq3Ug9LpMpKeJ0oot83A3PE3P53Ly0Qa3QDkIIJ9y4Z6uJPwIhwHpiec+DzP2wvsCg/bONqbuCt+SZrI+aZPHtM= Received: by 10.36.7.20 with SMTP id 20mr990691nzg; Sat, 17 Jun 2006 18:12:58 -0700 (PDT) Received: by 10.36.37.6 with HTTP; Sat, 17 Jun 2006 18:12:31 -0700 (PDT) Message-ID: <7de6ba830606171812v3980af1ft2bba8a4a4585f565@mail.gmail.com> Date: Sun, 18 Jun 2006 01:12:31 +0000 From: "NgD Vulto" To: freebsd-questions@freebsd.org In-Reply-To: <7de6ba830606102015i5e1ec7e8j5758981170c8606@mail.gmail.com> MIME-Version: 1.0 References: <7de6ba830606102015i5e1ec7e8j5758981170c8606@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: Re: Playstation emulator X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 01:12:59 -0000 Slow* By the way, I am running a BIN file, not the CD, maybe on the cd it would run better? I don't know what's wrong, my cd is inside the driver and I put on "run cdrom" and it doesn't run, i could only run the "run iso"...hehe i went to the "configure/cdrom" and there is a *.bin file which was automatically added by the bios setup, so I am just "wtf?" 10# epsxe * Running ePSXe emulator version 1.6.0. * Memory handlers init. * ePSXe: PSX BIOS loaded [/root/.epsxe/bios//scph1000.bin]. * Init internal cdrom ... ok CD read toc header failed (25) * First/Last track: 7 2 * Track 1: CD get track start failed (25) (AUDIO) - Start 0: (00,00,00) * Track 2: CD get track start failed (25) (AUDIO) - Start 1: (00,00,00) CD(0,2,16) read ioctl failed (22) CD(6,9,58) read ioctl failed (22) CD(6,9,59) read ioctl failed (22) * NTSC cdrom detected. * Init gpu[0][libgpuPeteMesaGL.so.1.0.76] Mesa project: www.mesa3d.org Mesa GLX Indirect * Open gpu[0] * Init spu[0][libspu.so] * Open spu[0] CD(0,2,16) read ioctl failed (22) CD(0,2,0) read ioctl failed (22) Should I mount my cd?where?it's what has in my configure/cdrom: myhome/.epsxe/bios//scph1000.bin I tried to mount the cd into the /cdrom and point the configure/cdrom to there but did not work :P Any idea would be appreciated. -- [Freebsd User Group] Fug-Br/BsD-Ce proud active member. There will be a day machines will reign, and only the ones able to understand them will survive. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 01:14: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 5A24B16A474 for ; Sun, 18 Jun 2006 01:14:17 +0000 (UTC) (envelope-from SRS0=U4iQ2xl9=AF=asarian-host.net=admin@asarian-host.net) Received: from mail.asarian-host.net (mail.asarian-host.net [194.109.160.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E51343D46 for ; Sun, 18 Jun 2006 01:14:08 +0000 (GMT) (envelope-from SRS0=U4iQ2xl9=AF=asarian-host.net=admin@asarian-host.net) Received: from anonymizer.asarian-host.net (localhost [127.0.0.1]) (authenticated bits=0) by mail.asarian-host.net (8.13.5/8.13.5) with ESMTP id k5I1E7Nj082398 for ; Sun, 18 Jun 2006 03:14:07 +0200 (CEST) (envelope-from admin@asarian-host.net) From: Mark Received-SPF: pass (asarian-host.net: 127.0.0.1 is authenticated by a trusted mechanism) receiver=anonymizer.asarian-host.net; client-ip=127.0.0.1; envelope-from=; helo=clientrunner.asarian-host.net; Message-Id: <200606180114.k5I1E5iB082388@asarian-host.net> Date: Sun, 18 Jun 2006 01:14:06 GMT X-Authenticated-Sender: admin@asarian-host.net X-Trace: cXzlIc6+89MciYRrj+nuT6p+v8/gnvGVKeSYG4k51kpW5uNzD0MZq1DAVdt6W6h6 X-Complaints-To: abuse@asarian-host.net X-Abuse-Info: Please be sure to forward a copy of ALL headers, otherwise we are unable to process your complaint Organization: Asarian-host To: "'FreeBSD-Questions Questions'" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 X-Auth: Asarian-host PGP signature iQEVAwUARJSo3zFqW1BleBN9AQGdagf/VRmMhQxaK66I0hrvVMQRcQVhw+VL+Jyj sHbITI9YvnMm2apZAEDOxZWG/Mzgsu5IHrjZrsoZ14eKdTP7EWuXjQN1roUlz0Rg 7E8BjYBrsSfoPwg6Zl8/XEbv4gcgd971KJB3/FGdybuLPDkLWaNz/TShe4/C8o9r bIQmy2ulZUyDu725Nd8WKXYePDPZ1E5bq8f24Igs0QDdKTjZFxA4GDorqlqSQqQs o8CLt+FTif4xebqtBOvYXrYOqyLBpCG1/aaS6+1silKC8eBiTwUNS7UKsilDN3Li prHFR5/PoKgQa2sqAJ586onumPq/EhTErFY0+7AwDk/b2yD1PqoJZA== =L7O+ Subject: Adding NIC 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: Sun, 18 Jun 2006 01:14:17 -0000 Using FreeBSD 4.11, suppose I wanted to use a different NIC, say, an Intel one, from my motherboard's built-in SysKonnect SK-984x and SK-982x gigabit ethernet (sk0) I use now. Can I add/compile a driver for such a device, without having to recompile the kernel? Thanks, - Mark From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 01:31:43 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 7DF8F16A47B for ; Sun, 18 Jun 2006 01:31:43 +0000 (UTC) (envelope-from crtb@cape.com) Received: from smtp10.cape.com (smtp10.cape.com [204.107.252.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 098C943D48 for ; Sun, 18 Jun 2006 01:31:42 +0000 (GMT) (envelope-from crtb@cape.com) Received: from tomato (dsl-10-100-102-24.cape.com [10.100.102.24] (may be forged)) by smtp10.cape.com (8.12.10/8.9.1) with ESMTP id k5I1UxF4020791; Sat, 17 Jun 2006 21:30:59 -0400 Date: Sat, 17 Jun 2006 21:30:55 -0400 (EDT) From: Charles Bacon X-X-Sender: crtb@tomato.local To: questions@freebsd.org Message-ID: <20060617211012.R54707@tomato.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: Cape.Com VirusScan, no known virus found Cc: Chuck Bacon Subject: Getting NTP (ntpd, ntpdate) to work X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 01:31:43 -0000 Since FreeBSD 4.5-Release, I have been unable to get NTP working on my two FreeBSD computers, one running 5.3Release and the other on 6.1Release. I have done nothing with the GENERIC kernel on either machine. I talk SSH between them, and have been running ntpd on both, each naming the other as well as two external servers. My network is a typical home net, using 192.168.1/28, served by a DSL router which does NAT for my external traffic. Internal comms. is through switches, plus one hub. Each computer (plus some others running Windows) has easy access out, and is invisible from the Internet exceptt for responses. Here's my ntp.conf, identical on my two computers: server ntp.cape.com server ntp.ourconcord.net driftfile /var/db/ntp.drift logfile /var/log/ntplog pidfile /var/run/ntpd.pid logconfig =all peer 192.168.1.3 peer 192.168.1.2 (much comments removed) With mediocre diagnostic skill, I have finally discovered tcpdump. It told me after much experiment, that the relevant port (NTP, 123) was unreachable. This sounds significant, but I can't find a list of the reachability of ports. I've looked at ng*, mac_* and pf* and finally bpf*, and only the last seems to exist in /dev. I had expected that GENERIC would impose only slight filtering somehow, and certainly not shut off NTP! I guess I need help. Thanks for any help you can give, and I accept any opprobrium for trying to be a sysadmin, even for my home boxen. Chuck Bacon -- crtb@cape.com ABHOR SECRECY -- DEFEND PRIVACY From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 02:18: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 CDE5A16A474 for ; Sun, 18 Jun 2006 02:18:45 +0000 (UTC) (envelope-from masutani@vcd.nttbiz.com) Received: from hktmta08-fen.aics.ne.jp (hktmta08-fen.aics.ne.jp [157.205.205.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ECE743D46 for ; Sun, 18 Jun 2006 02:18:44 +0000 (GMT) (envelope-from masutani@vcd.nttbiz.com) Received: from virile01.aics.ne.jp ([157.205.253.3]) by hktmta08.aics.ne.jp (InterMail vM.7.05.01.01 201-2174-106-103-20060222) with ESMTP id <20060618021843.NLWE409.hktmta08.aics.ne.jp@virile01.aics.ne.jp>; Sun, 18 Jun 2006 11:18:43 +0900 Received: from vcd.nttbiz.com ([157.205.207.132]) by virile01.aics.ne.jp (InterMail vM.5.02.12.00 201-264-126-133-106-20040103) with SMTP id <20060618021842.FWSK17171.virile01.aics.ne.jp@vcd.nttbiz.com>; Sun, 18 Jun 2006 11:18:42 +0900 From: To: "Craig Rodrigues" Date: Sun, 18 Jun 2006 11:18:42 +0900 (JST) MIME-Version: 1.0 X-Priority: 3 X-Mailer: alpha-mail[Solaris/sun] Message-ID: <20060618111842.6E244296@vcd.nttbiz.com> References: <44942B26.8060205@ca.wakwak.com> <20060617162253.GA1002@crodrigues.org> Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Cc: masutani@vcd.nttbiz.com, freebsd-questions@FreeBSD.ORG Subject: Re: Intel PRO 1000GT quad Server Adapter unrecognized X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 02:18:46 -0000 pciconf -lv resulted in the following : ---------------------- none1@pci4:4:0: class=0x020000 card=0x11998086 chip=0x10b58086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet none2@pci4:4:1: class=0x020000 card=0x11998086 chip=0x10b58086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet none3@pci4:6:0: class=0x020000 card=0x11998086 chip=0x10b58086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet none4@pci4:6:1: class=0x020000 card=0x11998086 chip=0x10b58086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' class = network subclass = ethernet ---------------------- "scanpci -v" resulted in the following : -------------------------------- pci bus 0x0004 cardnum 0x04 function 0x00: vendor 0x8086 device 0x10b5 Intel Corporation Device unknown CardVendor 0x8086 card 0x1199 (Card unknown) STATUS 0x0230 COMMAND 0x0117 CLASS 0x02 0x00 0x00 REVISION 0x03 BIST 0x00 HEADER 0x80 LATENCY 0x40 CACHE 0x10 BASE0 0x00000000fcae0004 addr 0x00000000fcae0000 MEM 64BIT BASE4 0x0000bcc1 addr 0x0000bcc0 I/O MAX_LAT 0x00 MIN_GNT 0xff INT_PIN 0x01 INT_LINE 0x18 pci bus 0x0004 cardnum 0x04 function 0x01: vendor 0x8086 device 0x10b5 Intel Corporation Device unknown CardVendor 0x8086 card 0x1199 (Card unknown) STATUS 0x0230 COMMAND 0x0117 CLASS 0x02 0x00 0x00 REVISION 0x03 BIST 0x00 HEADER 0x80 LATENCY 0x40 CACHE 0x10 BASE0 0x00000000fcac0004 addr 0x00000000fcac0000 MEM 64BIT BASE4 0x0000bc81 addr 0x0000bc80 I/O MAX_LAT 0x00 MIN_GNT 0xff INT_PIN 0x02 INT_LINE 0x19 pci bus 0x0004 cardnum 0x06 function 0x00: vendor 0x8086 device 0x10b5 Intel Corporation Device unknown CardVendor 0x8086 card 0x1199 (Card unknown) STATUS 0x0230 COMMAND 0x0117 CLASS 0x02 0x00 0x00 REVISION 0x03 BIST 0x00 HEADER 0x80 LATENCY 0x40 CACHE 0x10 BASE0 0x00000000fcaa0004 addr 0x00000000fcaa0000 MEM 64BIT BASE4 0x0000bc41 addr 0x0000bc40 I/O MAX_LAT 0x00 MIN_GNT 0xff INT_PIN 0x02 INT_LINE 0x1b pci bus 0x0004 cardnum 0x06 function 0x01: vendor 0x8086 device 0x10b5 Intel Corporation Device unknown CardVendor 0x8086 card 0x1199 (Card unknown) STATUS 0x0230 COMMAND 0x0117 CLASS 0x02 0x00 0x00 REVISION 0x03 BIST 0x00 HEADER 0x80 LATENCY 0x40 CACHE 0x10 BASE0 0x00000000fca80004 addr 0x00000000fca80000 MEM 64BIT BASE4 0x0000bc01 addr 0x0000bc00 I/O MAX_LAT 0x00 MIN_GNT 0xff INT_PIN 0x02 INT_LINE 0x1b ---------------------------------- This server adapter has four physical "RJ-45" ports. It has Intel 82546GB chipsets, and em driver support 82546GB. But FreeBSD6.1 kernel could not find the proper driver for its adapter. --- "Craig Rodrigues" --- >On Sun, Jun 18, 2006 at 01:17:42AM +0900, Hitoshi Masutani wrote: >> pciconf -lv or scanpci resulted in the following message : > >Can you repost the full output of pciconf -lv to the mailing list? > >-- >Craig Rodrigues >rodrigc@crodrigues.org --- "Hitoshi Masutani" --- >>Hi. >> >>I bought the Intel PRO 1000GT quad port server adapter, and >>installed it into the PCI-X slot on my server. >>But device autodetection could not find the device driver (em). >>pciconf -lv or scanpci resulted in the following message : >>"unknown device" >> >>I try to use the command "kldload if_em", >>but em driver could not be loaded. >> >>Its kernel is not customized. >>How should I do so that >>the Intel 1000GT quad port server adapter is recognized on FreeBSD6.1? From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 02:25: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 A698816A47A for ; Sun, 18 Jun 2006 02:25:35 +0000 (UTC) (envelope-from dennyboy@cableone.net) Received: from S1.cableone.net (s1.cableone.net [24.116.0.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25ECF43D49 for ; Sun, 18 Jun 2006 02:25:35 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from badboybox.cableone.net (unverified [69.92.6.58]) by S1.cableone.net (CableOne SMTP Service S1) with ESMTP id 63232849 for ; Sat, 17 Jun 2006 19:26:03 -0700 Date: Sat, 17 Jun 2006 21:25:27 -0500 (CDT) From: Denny White To: FreeBSD Questions In-Reply-To: <441wtngaa2.fsf@be-well.ilk.org> Message-ID: References: <441wtngaa2.fsf@be-well.ilk.org> X-GPG-PUBLIC_KEY: http//wwwkeys.nl.pgp.net X-GPG-FINGERPRINT: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-SpamDetect: *: 1.500000 Cures Baldness=1.5 X-NotAscii: charset=us-ascii; X-IP-stats: Incoming Last 1, First 40, in=34, out=0, spam=0 X-External-IP: 69.92.6.58 X-Abuse-Info: Send abuse complaints to abuse@cableone.net Subject: Re: Cvsup into NFS mounted directory 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: Sun, 18 Jun 2006 02:25:35 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 > Denny White writes: > >> Over on my old windoze xp box, I've got a program called >> cvsnt. I wanted to see if I could update the source dir >> over there by mounting the dir here locally, then running >> cvsup to put everything there, before unmounting it. Then, >> use cvsnt for a local network source repository server. >> Cvsup does fine on the remotely mounted nfs dir until I >> get to this: >> >> Updater failed: Cannot install "/home/mydir/cvsdir/src/contrib/ >> libreadline/#cvs.cvsup-91834.13672" to >> "/home/mydir/cvsdir/src/contrib/libreadline/ChangeLog,v": >> Permission denied >> >> Command to mount the remote windows directory: >> mount -w -t nfs remotebox:cvsdir /home/mydir/cvsdir >> >> I've done everything with the local & remote dirs except put >> them on eBay. :-) Chmoded them to 777 & still get the same >> message. Wouldn't doubt if it's something very simple I'm >> just overlooking. I was wondering if maybe it has something >> to do with my cvsup usage & not the dir/file permissions. >> Here's the supfile being used: >> >> # >> *default host=cvsup17.us.FreeBSD.org >> *default base=/home/mydir/cvsdir >> *default prefix=/home/mydir/cvsdir >> *default release=cvs >> *default delete use-rel-suffix >> *default compress >> src-all >> ports-all tag=. >> doc-all tag=. >> www >> cvsroot-all >> # >> >> As can be seen above, the delete is pretty standard & what >> I use everywhere else locally: >> >> *default delete use-rel-suffix >> >> Thanks for any help, advice, new hair to replace what I've >> pulled out, etc. > Today Lowell Gilbert wrote: > Sorry; I don't have enough hair to spare. ;-) > > What may be happening here is that cvsup itself is trying to change > the permissions to match the repository it updates from. In that > case, problems from the underlying filesystem (which, I gather, > is ntfs, and doesn't support full privileges of NFS) might result in > errors. Maybe you could try setting the filesystem ownership to the > user you run cvsup as? Thanks for the reply. That was how I started it out to begin with. Uid's match, keys, everything. The user doing the cvs to the nfs share is doing it to a folder he owns on the winxp box. But, that being said, I've finally got cvs working from cygwin there, now. The only reason I can come up with for it not working properly before is, I didn't have rsa keys generated in my home dir on the winxp box. I generated the keys & got them around the lan into all the authorized_keys files in order to be able to do unattended rsync backups from my crontabs on each box. So now, the backups are working & so is cvs on windows. Miracles never cease! :-) Thanks again for answering, Lowell. GnuPG key : 0x1644E79A | http://wwwkeys.nl.pgp.net Fingerprint: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (OpenBSD) iD8DBQFElLmdy0Ty5RZE55oRAow0AKDJ0P6IQ+lxPiqZ3YI63HMs47zBMACdEBWd +Mu6U9aSUPY0/GRQtLsI0N8= =kAwm -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 02:37: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 42FBD16A479 for ; Sun, 18 Jun 2006 02:37:52 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id C069C43D48 for ; Sun, 18 Jun 2006 02:37:51 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id 382F57E8C5; Sat, 17 Jun 2006 22:37:50 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RuQbjqDJk0ti; Sat, 17 Jun 2006 22:37:49 -0400 (EDT) Received: from [192.168.0.3] (unknown [74.128.244.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id 003827E8C4; Sat, 17 Jun 2006 22:37:48 -0400 (EDT) In-Reply-To: <44913391.7060906@dial.pipex.com> References: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> <2A55FF5E-F764-406A-BE0E-272246F425B5@netmusician.org> <448xoska3k.fsf@be-well.ilk.org> <44733B8B.6030404@dial.pipex.com> <448FDE6B.4000703@dial.pipex.com> <38D0516F-2F6B-4700-9006-5A2D6034DC0C@netmusician.org> <449042EF.9040905@dial.pipex.com> <4680C6D4-50F9-4441-8B54-924092A1A3AD@netmusician.org> <44913391.7060906@dial.pipex.com> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <7B276387-F946-4FEC-81D1-8CF9B95808E2@netmusician.org> Content-Transfer-Encoding: 7bit From: Joe Auty Date: Sat, 17 Jun 2006 22:37:51 -0400 To: Alex Zbyslaw X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Gpgmail-State: signed X-Mailer: Apple Mail (2.750) Cc: FreeBSD Questions Subject: Re: Python port 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: Sun, 18 Jun 2006 02:37:52 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Jun 15, 2006, at 6:16 AM, Alex Zbyslaw wrote: > Joe Auty wrote: > >> >> On Jun 14, 2006, at 1:10 PM, Alex Zbyslaw wrote: >> >>> >>> And one which may spew quite a lot. Cut it off if it gets to >>> printing help. >>> >>> $ python -v /usr/local/mailman/bin/qrunner >>> >> >> jauty# python -v /usr/local/mailman/bin/qrunner >> [...snip...] >> # /usr/local/lib/python2.4/getopt.pyc matches /usr/local/lib/ >> python2.4/getopt.py >> import getopt # precompiled from /usr/local/lib/python2.4/getopt.pyc >> # /usr/local/mailman/bin/paths.pyc matches /usr/local/mailman/bin/ >> paths.py >> import paths # precompiled from /usr/local/mailman/bin/paths.pyc >> [...snip...] > > OK, you just ran qrunner successfully without getting the error you > were getting earlier about getopt. Doesn't matter that all you got > was help, it found *everything* that it tried to import. > > I missed the start of this thread. How did you run qrunner to get > your earlier error and where did the error appear? I think you > said the rc script. If it's not too big can you post it? Or > compare it against your working mailman? > My Mailman rc script (exactly identical to the one on my working machine): . /etc/rc.subr name="mailman" rcvar=${name}_enable pidfile="/usr/local/mailman/data/master-qrunner.pid" load_rc_config $name : ${mailman_enable="NO"} start_cmd=${name}_start stop_cmd=${name}_stop extra_commands="reload" mailman_start() { /usr/local/mailman/bin/mailmanctl -s -q start } mailman_stop() { /usr/local/mailman/bin/mailmanctl -q stop } run_rc_command "$1" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFElLx/CgdfeCwsL5ERAkzKAJwICVvUmDpHBPCfcu11Zn+VBnhk/ACfSwLA SSkS0cFRTCvxrk56WceoZ8A= =WDJc -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 03:35: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 258C416A474 for ; Sun, 18 Jun 2006 03:35:39 +0000 (UTC) (envelope-from hugo.ngd@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 8B99143D45 for ; Sun, 18 Jun 2006 03:35:38 +0000 (GMT) (envelope-from hugo.ngd@gmail.com) Received: by nz-out-0102.google.com with SMTP id m7so381651nzf for ; Sat, 17 Jun 2006 20:35: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:references; b=abrU7kf7WDP8FohX9rjztyCMi3BmI9MSY5YVb1mnBdfuAaBrB9JfhSX/3QnH9tE/3vLfJP00oYe5zB7DXhjGenJDXPgW/yQAJSwUY+QnQEo9EIU9w9xqv1jRU17Le/483JZVgv3Fvxsw+yTS3A2chDxOPu7hWb8GHbt47PDrBZI= Received: by 10.36.138.3 with SMTP id l3mr2431187nzd; Sat, 17 Jun 2006 20:35:35 -0700 (PDT) Received: by 10.36.101.1 with HTTP; Sat, 17 Jun 2006 20:35:35 -0700 (PDT) Message-ID: <7de6ba830606172035r1164b351ubf24b6b5eaddc490@mail.gmail.com> Date: Sun, 18 Jun 2006 03:35:35 +0000 From: "NgD Vulto" To: freebsd-questions@freebsd.org In-Reply-To: <7de6ba830606102015i5e1ec7e8j5758981170c8606@mail.gmail.com> MIME-Version: 1.0 References: <7de6ba830606102015i5e1ec7e8j5758981170c8606@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: Re: Playstation emulator X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 03:35:39 -0000 2006/6/11, NgD Vulto : > > -bash-2.05b$ whereis epsxe > epsxe: /usr/X11R6/bin/epsxe > -bash-2.05b$ epsxe > -bash-2.05b$ > -bash-2.05b$ /usr/X11R6/bin/epsxe > -bash-2.05b$ ps -aux |grep epsxe > userxx 11143 0.0 0.2 1512 888 p6 S+ 3:01PM 0: 00.00 grep epsxe > -bash-2.05b$ > > > I'd like to know what I'm doing wrong since I see no interface, it just > returns nothing and quit automatically. > > I have no playstation graphic bios downloaded, but I think it should at > least give me an interface right? > > I do have my original ps1 cds backuped as ISO inside my hd and so I'm not > with the cd inside the driver...since I intend to run my ISO. > > The question is what should I do? > > Even if the problem would be that I have no graphic bios downloaded I > wouldn't know where to store the bios files. > > I've tried to search on google but I got no useful results to me, most of > them were talking to linux users and there seems to work ok with no extra > setup. > Solved installing an other gpu from ports, if anyone wanna know more about it, ask me, I'll be glad to help you out ;) It's working pretty well now xD thanks people. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 05:43: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 B1E2F16A474 for ; Sun, 18 Jun 2006 05:43:52 +0000 (UTC) (envelope-from gs_stoller@juno.com) Received: from outbound-mail.nyc.untd.com (outbound-mail.nyc.untd.com [64.136.20.164]) by mx1.FreeBSD.org (Postfix) with SMTP id 1B4A543D45 for ; Sun, 18 Jun 2006 05:43:52 +0000 (GMT) (envelope-from gs_stoller@juno.com) Received: from webmail60.nyc.untd.com (webmail60.nyc.untd.com [10.141.27.200]) by smtpout04.nyc.untd.com with SMTP id AABCKK386A3ZMXAA for (sender ); Sat, 17 Jun 2006 22:42:52 -0700 (PDT) Received: (from gs_stoller@juno.com) by webmail60.nyc.untd.com (jqueuemail) id LS5HMAGK; Sat, 17 Jun 2006 22:42:03 PDT Received: from [67.84.52.37] by webmail60.nyc.untd.com with HTTP: Sun, 18 Jun 2006 05:41:12 GMT X-Originating-IP: [67.84.52.37] Mime-Version: 1.0 From: "gs_stoller@juno.com" Date: Sun, 18 Jun 2006 05:41:12 GMT To: freebsd-questions-owner@freebsd.org Cc: freebsd-questions@freebsd.org X-Mailer: Webmail Version 4.0 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Content-Type: text/plain Message-Id: <20060617.224203.18060.165949@webmail60.nyc.untd.com> X-ContentStamp: 3:4:3156101454 X-UNTD-OriginStamp: /s5f1SIGSI3+WdnoYQ8yRCaKp419qRpr/6r2ECJQUfmnBM9fQxoP5w== X-UNTD-Peer-Info: 10.141.27.200|webmail60.nyc.untd.com|webmail60.nyc.untd.com|gs_stoller@juno.com Subject: Re: freebsd-questions Digest, Vol 138, Issue 17 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 05:43:52 -0000 This email has messages with subject "Re: Possible to go from 5.5 to 5.4?" as message #s 4, 5, 7, 9, 11, & 19. It would be nice if they were contiguous, rather than dispersed, so that someone interested in this topic doesn't have to memorize the numbers so that he can find them once he has passed the table of contents. Similarly for messages with subject "Re: Getting Source Code after Installing the Software" which appear as message #s 2, 3, 10 and for messages with subject "Re: freebsd on a newer pc" which appear as message #s 17, 20, 26, 27, 32 and there are still more. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 06:59: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 CE1D016A479 for ; Sun, 18 Jun 2006 06:59:25 +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 5D70F43D45 for ; Sun, 18 Jun 2006 06:59:25 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 2593 invoked from network); 18 Jun 2006 16:59:24 +1000 Received: from 210-84-43-139.dyn.iinet.net.au (HELO localhost) (210.84.43.139) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 18 Jun 2006 16:59:24 +1000 Date: Sun, 18 Jun 2006 16:59:19 +1000 From: Norberto Meijome To: "gs_stoller@juno.com" Message-ID: <20060618165919.29ee8297@localhost> In-Reply-To: <20060617.224203.18060.165949@webmail60.nyc.untd.com> References: <20060617.224203.18060.165949@webmail60.nyc.untd.com> X-Mailer: Sylpheed-Claws 2.2.3 (GTK+ 2.8.18; 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-questions Digest, Vol 138, Issue 17 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 06:59:25 -0000 On Sun, 18 Jun 2006 05:41:12 GMT "gs_stoller@juno.com" wrote: > This email has messages with subject "Re: Possible to go from 5.5 to > 5.4?" as message #s 4, 5, 7, 9, 11, & 19. It would be nice if they > were contiguous, rather than dispersed, so that someone interested in > this topic doesn't have to memorize the numbers so that he can find > them once he has passed the table of contents. Similarly for messages > with subject "Re: Getting Source Code after Installing the Software" > which appear as message #s 2, 3, 10 and for messages with subject "Re: > freebsd on a newer pc" which appear as message #s 17, 20, 26, 27, 32 > and there are still more. > hi, I fail to see what is the *new* problem with this. This is, AFAIK, how digest mails are (always?) sent by mailing lists, in the order they were posted. If you dont like it, feel free to subscribe to the non-digest delivery format of the mailing list and let your favourite mail client thread it as needed. Or visit the web archives of the list for yet more views of the same data. You could, of course, contribute code to MailMan to allow for delivery of Digest mails in threaded format. I'm sure you and others will benefit from it. Beto From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 07:01: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 6F62B16A492 for ; Sun, 18 Jun 2006 07:01:39 +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 E213243D6A for ; Sun, 18 Jun 2006 07:01:35 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 2730 invoked from network); 18 Jun 2006 17:01:34 +1000 Received: from 210-84-43-139.dyn.iinet.net.au (HELO localhost) (210.84.43.139) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 18 Jun 2006 17:01:34 +1000 Date: Sun, 18 Jun 2006 17:01:30 +1000 From: Norberto Meijome To: "horn" Message-ID: <20060618170130.22dd248b@localhost> In-Reply-To: <20060617193751.M60592@horn.net.ru> References: <20060617193751.M60592@horn.net.ru> X-Mailer: Sylpheed-Claws 2.2.3 (GTK+ 2.8.18; 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: BTX halted X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 07:01:39 -0000 On Sat, 17 Jun 2006 23:50:10 +0400 "horn" wrote: > I install FreeBSD 5.3 from floppy-diskets. After a choice of loading(default, > safe_mode) there is a error: > int=0000000e err=00000000 efl=00010083 eip=000095ca > eax=c101ffb8 ebx=c101ffb0 ecx=ffff8c10 edx=ffffff02 > esi=ffffffef edi=00001952 ebp=c1021d60 esp=c101ffa0 > cs=0008 ds=0010 es=0010 fs=0010 gs=0010 ss=0010 > cs:eip=ac e8 46 00 00 00 fe c9-74 0c b0 2d 80 f9 08 74 > 02 b0 20 aa eb ea fe ca-74 0e b0 0a aa b1 07 b0 > ss:esp=10 00 00 00 68 97 00 00-db 91 00 00 00 18 00 00 > ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff > BTX halted > > > I got a similar looking error (sorry, dont have that particular box at hand to verify) when booting from 6.1-Release CD on a Shuttle Zen PC. HD already had a Gentoo 2006.0 installation on it. No changes whether I booted without APIC of ACPI, or safe mode. Beto From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 07:07:27 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 364CE16A47C for ; Sun, 18 Jun 2006 07:07:27 +0000 (UTC) (envelope-from greenant@fastmail.fm) Received: from mail-relay-2.tiscali.it (mail-relay-2.tiscali.it [213.205.33.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0F5043D45 for ; Sun, 18 Jun 2006 07:07:26 +0000 (GMT) (envelope-from greenant@fastmail.fm) Received: from [192.168.8.3] (84.222.58.124) by mail-relay-2.tiscali.it (7.3.104) id 44910DAA00055478; Sun, 18 Jun 2006 09:07:22 +0200 Message-ID: <4494FBA8.2040705@fastmail.fm> Date: Sun, 18 Jun 2006 09:07:20 +0200 From: Alberto Rizzi User-Agent: Mozilla Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Tofik Suleymanov References: <4492D1E9.8080904@oxygen.az> In-Reply-To: <4492D1E9.8080904@oxygen.az> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: socketpair(2) strange behavior X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 07:07:27 -0000 Tofik Suleymanov ha scritto: > Hello list, > > when using socketpair(2) on my FreeBSD 6.1-RELEASE-p1 box i get this > error: > "socketpair: Operation not supported" > > And here is the source of my pretty simple socketpair(2) program: > ---- START ---- > #include > #include > #include > #include > > int main(void) { > int sv[2], err; > err = socketpair(AF_INET, SOCK_STREAM, 0, (int*)&sv); > if(err == -1) { > perror("socketpair"); > return -1; > } > > return 0x0; > } > ---- END ---- > > Any comments ? > > > Sincerely, > Tofik Suleymanov > Maybe you have to change (int*) &sv with sv because &sv returns an int**, not int* From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 07:27:16 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 E1FB316A474 for ; Sun, 18 Jun 2006 07:27:16 +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 79AC143D46 for ; Sun, 18 Jun 2006 07:27:16 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-242.dynamic.qsc.de [212.202.39.242]) by efacilitas.de (Postfix) with ESMTP id B48354C962; Sun, 18 Jun 2006 09:27:45 +0200 (CEST) Received: from [192.168.1.2] (muhkuh.local [192.168.1.2]) by eurystheus.local (Postfix) with ESMTP id 3A3D15285B; Sun, 18 Jun 2006 09:26:34 +0200 (CEST) Message-ID: <44950060.3060205@cs.tu-berlin.de> Date: Sun, 18 Jun 2006 09:27:28 +0200 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-AT; rv:1.7.13) Gecko/20060519 X-Accept-Language: de, en MIME-Version: 1.0 To: bsd@bathnetworks.com References: <1212.192.168.0.107.1150524377.squirrel@192.168.0.50> <4493B12B.6020703@cs.tu-berlin.de> <62693.192.168.0.104.1150550807.squirrel@192.168.0.50> In-Reply-To: <62693.192.168.0.104.1150550807.squirrel@192.168.0.50> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: questions@freebsd.org Subject: Re: FreeBSD equivalent to DRBD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 07:27:17 -0000 bsd@bathnetworks.com schrieb: > It look like ggated + geom will do at least part of the job. Setting up > the raid part looks fairly straight forward, the question is howto manage > the swop aspect, ie machine a primary to machine b primary. I guess it is > shutdown geom + gated and starting them on the the other machine. I don't > see any way of doing this though. Perhaps I'm missing something. > > The exporting the drive via NFS and swopping under haertbeat looks ok to. > It is just the gom + ggated aspect I am not sure about. I think ggated and gmirror won't satisfy you because I'd like to call ggated experimental. Furthermore it is not intended for those tasks, because it is kept very simple. A better scenario for the current implementation of ggated is to mount a remote CD filesystem locally. If you really need DRBD then stay with DRDB and linux. Björn From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 07:30:20 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 B78A216A484 for ; Sun, 18 Jun 2006 07:30:20 +0000 (UTC) (envelope-from tofik@oxygen.az) Received: from mail.azerin.com (mail.azerin.com [212.47.128.23]) by mx1.FreeBSD.org (Postfix) with SMTP id B802743D46 for ; Sun, 18 Jun 2006 07:30:19 +0000 (GMT) (envelope-from tofik@oxygen.az) Received: (qmail 16581 invoked from network); 16 Jun 2006 16:47:17 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on ml350.azerin.com X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00, UNPARSEABLE_RELAY autolearn=ham version=3.1.1 Received: from qmail by qscan (mail filter); 16 Jun 2006 16:47:17 +0000 Received: from unknown (HELO ?212.47.129.5?) (212.47.129.5) by mail.azerin.com with SMTP; 16 Jun 2006 16:47:17 -0000 Message-ID: <4492E07D.7050506@oxygen.az> Date: Fri, 16 Jun 2006 19:46:53 +0300 From: Tofik Suleymanov User-Agent: Thunderbird 1.5.0.2 (X11/20060425) MIME-Version: 1.0 To: ghostcorps@gmail.com References: <4c06024b0606120541j63d3238y3907e9d525f0f278@mail.gmail.com> In-Reply-To: <4c06024b0606120541j63d3238y3907e9d525f0f278@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: core dumps after kldloading snd_emu10kx.ko X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 07:30:20 -0000 ghostcorps wrote: > Hi Guys > > I have to just say first, I'm pretty new to this, please be patient :) > > > Firstly: > $ uname -a > FreeBSD ************** 6.0-RELEASE FreeBSD 6.0-RELEASE #0: Thu Nov 3 > 09:36:13 UTC 2005 root@x64.samsco.home:/usr/obj/usr/src/sys/GENERIC > i386 > > I recently added emu10kx ( > http://www.freebsd.org/cgi/url.cgi?ports/audio/emu10kx/pkg-descr), but > when > I run kldload snd_emu10kx.ko the Kernel panics. > > As follows: > > ---- > Kernel trap 12 with interrupts disabled > Fatal trap 12 : Page fault while in Kernel mode > > fault virtual address =0x74 > fault code = Supervisor > read, > page not present > instruction pointer = 0x20: 0xc0 657d4d > stack pointer = 0x28: 0xef > 71894c > frame pointer = 0x28: 0xef > 718950 > Code segment =Base 0x0, limit > 0xfffff, type 0x1b > = DPL 0, > pres > 1, def321, gran 1 > Processor eflags = Resume, IOPL =0 > Current process = 686 (kldload) > Trap number =12 > ---- > > > I can't find anyone with the same issue on google, so I guess the problem > goes deeper that the sound card driver. > > > Can anyone suggest where to start looking? > > Thanks in advance > 1. Tell about this to the port maintainer of /usr/ports/audio/emu10kx ? 2. Try to use snd_emu10k1.ko from base system ? Sincerely, Tofik Suleymanov From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 08:14: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 372D416A479 for ; Sun, 18 Jun 2006 08:14:33 +0000 (UTC) (envelope-from ohartman@mail.uni-mainz.de) Received: from mailgate2.zdv.Uni-Mainz.DE (mailgate2.zdv.Uni-Mainz.DE [134.93.178.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD72E43D49; Sun, 18 Jun 2006 08:14:32 +0000 (GMT) (envelope-from ohartman@mail.uni-mainz.de) Received: from [192.168.1.128] (e178016237.adsl.alicedsl.de [85.178.16.237]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailgate2.zdv.Uni-Mainz.DE (Postfix) with ESMTP id DC552300E185; Sun, 18 Jun 2006 10:14:30 +0200 (CEST) Message-ID: <44950B65.7000801@mail.uni-mainz.de> Date: Sun, 18 Jun 2006 10:14:29 +0200 From: "O. Hartmann" User-Agent: Thunderbird 1.5.0.4 (X11/20060612) MIME-Version: 1.0 To: freebsq-amd64@freebsd.org, 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 uni-mainz.de Cc: Subject: ACPI Thermal on ASUS A8N32-SLI Deluxe X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 08:14:33 -0000 I recently changed mainboard due to defects from ASUS A8N-SLI Deluxe to ASUS A8N32-SLI Deluxe and now I'm missing several ACPI entry when looking for thermal sensors via sysctl hw.acpi. I guess misisng this is due to the newer hardware and/or BIOS. Is there a solution/support in sight within the next months or is FreeBSD 7.0-CURRENT supporting these things? Thank you in advance, Oliver From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 08:21:56 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 0DAE516A474 for ; Sun, 18 Jun 2006 08:21:56 +0000 (UTC) (envelope-from bsd@bathnetworks.com) Received: from lmail.bathnetworks.co.uk (mail.bathnetworks.com [84.92.24.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2230F43D49 for ; Sun, 18 Jun 2006 08:21:54 +0000 (GMT) (envelope-from bsd@bathnetworks.com) Received: (qmail 21620 invoked by uid 510); 18 Jun 2006 09:29:32 +0100 Received: from 127.0.0.1 by lmail.bathnetworks.co.uk (envelope-from , uid 508) with qmail-scanner-1.24-st-qms (clamdscan: 0.88/1261. spamassassin: 3.0.2. perlscan: 1.24-st-qms. Clear:RC:0(127.0.0.1):SA:0(-4.7/5.0):. Processed in 2.368732 secs); 18 Jun 2006 08:29:32 -0000 X-Spam-Status: No, hits=-4.7 required=5.0 X-Antivirus-MYDOMAIN-Mail-From: bsd@bathnetworks.com via lmail.bathnetworks.co.uk X-Antivirus-MYDOMAIN: 1.24-st-qms (Clear:RC:0(127.0.0.1):SA:0(-4.7/5.0):. Processed in 2.368732 secs Process 21611) Received: from localhost (HELO 192.168.0.50) (bsd@bathnetworks.com@127.0.0.1) by lmail.bathnetworks.co.uk with SMTP; 18 Jun 2006 09:29:29 +0100 Received: from 192.168.0.104 (SquirrelMail authenticated user bsd@bathnetworks.com) by 192.168.0.50 with HTTP; Sun, 18 Jun 2006 09:29:29 +0100 (BST) Message-ID: <64101.192.168.0.104.1150619369.squirrel@192.168.0.50> In-Reply-To: <44950060.3060205@cs.tu-berlin.de> References: <1212.192.168.0.107.1150524377.squirrel@192.168.0.50> <4493B12B.6020703@cs.tu-berlin.de> <62693.192.168.0.104.1150550807.squirrel@192.168.0.50> <44950060.3060205@cs.tu-berlin.de> Date: Sun, 18 Jun 2006 09:29:29 +0100 (BST) From: bsd@bathnetworks.com To: =?iso-8859-1?Q?Bj=F6rn_K=F6nig?= 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: questions@freebsd.org, bsd@bathnetworks.com Subject: Re: FreeBSD equivalent to DRBD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 08:21:56 -0000 > bsd@bathnetworks.com schrieb: > >> It look like ggated + geom will do at least part of the job. Setting up >> the raid part looks fairly straight forward, the question is howto >> manage >> the swop aspect, ie machine a primary to machine b primary. I guess it >> is >> shutdown geom + gated and starting them on the the other machine. I >> don't >> see any way of doing this though. Perhaps I'm missing something. >> >> The exporting the drive via NFS and swopping under haertbeat looks ok >> to. >> It is just the gom + ggated aspect I am not sure about. > > I think ggated and gmirror won't satisfy you because I'd like to call > ggated experimental. Furthermore it is not intended for those tasks, > because it is kept very simple. A better scenario for the current > implementation of ggated is to mount a remote CD filesystem locally. > > If you really need DRBD then stay with DRDB and linux. > > Björn > Thanks, I have a setup using heartbeat and Freebsd which uses rsync to keep the drives in step. The only problem is that rsynce is run as a cron job which makes balancing the Cron Invervals with the run time of rsync a bit hit and miss. Having read up more on ggated, I may try it on some spare machines and drives I have lying around. I take your point about it being expermential though but as I see it it is about the only thing I need that FreeBSD is week on. ISTR GEOM Started that way too. Perhaps it is something I can help FreeBSD with so I can give something back. Rob From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 08:41: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 A4CC016A47C for ; Sun, 18 Jun 2006 08:41:46 +0000 (UTC) (envelope-from bsd@bathnetworks.com) Received: from lmail.bathnetworks.co.uk (mail.bathnetworks.com [84.92.24.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id F33D343D70 for ; Sun, 18 Jun 2006 08:41:36 +0000 (GMT) (envelope-from bsd@bathnetworks.com) Received: (qmail 21812 invoked by uid 510); 18 Jun 2006 09:49:15 +0100 Received: from 127.0.0.1 by lmail.bathnetworks.co.uk (envelope-from , uid 508) with qmail-scanner-1.24-st-qms (clamdscan: 0.88/1261. spamassassin: 3.0.2. perlscan: 1.24-st-qms. Clear:RC:0(127.0.0.1):SA:0(-4.7/5.0):. Processed in 3.627321 secs); 18 Jun 2006 08:49:15 -0000 X-Spam-Status: No, hits=-4.7 required=5.0 X-Antivirus-MYDOMAIN-Mail-From: bsd@bathnetworks.com via lmail.bathnetworks.co.uk X-Antivirus-MYDOMAIN: 1.24-st-qms (Clear:RC:0(127.0.0.1):SA:0(-4.7/5.0):. Processed in 3.627321 secs Process 21803) Received: from localhost (HELO 192.168.0.50) (bsd@bathnetworks.com@127.0.0.1) by lmail.bathnetworks.co.uk with SMTP; 18 Jun 2006 09:49:11 +0100 Received: from 192.168.0.104 (SquirrelMail authenticated user bsd@bathnetworks.com) by 192.168.0.50 with HTTP; Sun, 18 Jun 2006 09:49:11 +0100 (BST) Message-ID: <64167.192.168.0.104.1150620551.squirrel@192.168.0.50> In-Reply-To: References: <63411.192.168.0.104.1150566985.squirrel@192.168.0.50> Date: Sun, 18 Jun 2006 09:49:11 +0100 (BST) From: bsd@bathnetworks.com To: "Walt Pawley" 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: X ATI 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: Sun, 18 Jun 2006 08:41:46 -0000 > On 6/17/06 6:56 PM +0100, bsd@bathnetworks.com wrote on Re: X ATI driver? > >>ATI cards with X Windows are a bit of a pain. As I understand it, ATI >> have >>not released their specs etc so that any X driver is reverse engineered. >>NVIDA does provide drivers which do work. I have an old MACH32 in a >> server >>and could only get it to work as using the Vesa drivers. It runs at >>1024x768, but I was not too bothered as the machine after setting up runs >>headless. >> >>My advice is try the VESA drivers if that fails try and change to NVIDA. > > Rob, > > I'm finding the docs less than helpful about all this. If I > don't use the suggested configuration, then I need to fill in a > bunch of stuff I don't know about - or, so it seems, at least. > Here's what the configuration file looks like after doing Xorg > -configure. > Snip > Any chance you could show me how to either do the changes to > VESA or NVDIA or to find the documents that are supposed to be > helpful, preferentially off list (I'll write a report for the > list if we can get it working). I've tried a few things and > they tend to belch for not being correct but they don't give me > any clues about to correct them. > -- > > Walter M. Pawley > Wump Research & Company > 676 River Bend Road, Roseburg, OR 97470 > 541-672-8975 > Walt, It was some ago, that I had the problem with ATI. ISTR that I used one of the other config tools. Have a look at the FreeBSD page: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html There are other config tools listed. I think I used xorgconfig and tried the various options starting at the lowest resolutions until I got as far as possible. As far as Changing to Nvidia that is just a matter of getting a Nvidia card and swopping it with the ATI. Nvidia do have drivers on their site for 3d etc with instructions on what to do. Rob From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 08:52: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 90C7F16A474 for ; Sun, 18 Jun 2006 08:52:14 +0000 (UTC) (envelope-from beni@brinckman.info) Received: from sun-out.schedom-europe.net (sun.schedom-europe.net [193.109.184.70]) by mx1.FreeBSD.org (Postfix) with SMTP id B8CD843D48 for ; Sun, 18 Jun 2006 08:52:12 +0000 (GMT) (envelope-from beni@brinckman.info) Received: (qmail 6276 invoked from network); 18 Jun 2006 08:52:11 -0000 Received: from unknown (HELO sun.schedom-europe.net) (193.109.184.70) by sun.schedom-europe.net with SMTP; 18 Jun 2006 08:52:11 -0000 Received: (qmail 6056 invoked from network); 18 Jun 2006 08:52:07 -0000 Received: from unknown (HELO ?192.168.1.100?) (83.101.7.3) by sun.schedom-europe.net with SMTP; 18 Jun 2006 08:52:07 -0000 From: Beni To: freebsd-questions@freebsd.org Date: Sun, 18 Jun 2006 10:52:06 +0200 User-Agent: KMail/1.9.3 References: <44946422.7030900@io.dk> In-Reply-To: <44946422.7030900@io.dk> X-Face: %*c?V7%A[c.}s2rI*TaRWm-[I-, ZLpBKmmC-@)J}KGbr)=a, TsXSA=:ArC(<=?utf-8?q?v=5C/=5F=25BaB=24K=0A=09=24=60E=7D6=7EyjIqu/SN=3A=24Pb=7DGngR+8=3D?= =?utf-8?q?dE=60?=)V~48zl6) =?utf-8?q?BhEtfQ2=3D=7ChScx=3Frn30d!QMd=3F=2E=60/hR!l+=0A=09x?=(]+zXesMf?'W[>46aPKMAAwd7eT{X_O9besb[u]'Y(DAe MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606181052.06807.beni@brinckman.info> X-Antivirus: This mail has been scanned for viruses by schedom vof (http://www.dommel.com) Subject: Re: VMWare install 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: Sun, 18 Jun 2006 08:52:14 -0000 On Saturday 17 June 2006 22:20, Rico wrote: > Hi, > > I am trying to install VMWare3 on FreeBSD 6.1 from the ports. > > During intall I get this error: > > => SHA256 Checksum OK for rpm/i386/fedora/4/zlib-1.2.2.2-5.fc4.i386.rpm. > ===> linux_base-fc-4_1 depends on file: /usr/local/bin/rpm2cpio - found > ===> Patching for linux_base-fc-4_1 > ===> Configuring for linux_base-fc-4_1 > ===> Building for linux_base-fc-4_1 > ===> Installing for linux_base-fc-4_1 > > ===> linux_base-fc-4_1 conflicts with installed package(s): > linux_base-8-8.0_14 > > They install files into the same place. > Please remove them first with pkg_delete(1). > *** Error code 1 > > Stop in /usr/ports/emulators/linux_base-fc4. > *** Error code 1 > > Stop in /usr/ports/emulators/rtc. > *** Error code 1 > > Stop in /usr/ports/emulators/vmware3. > *** Error code 1 > > Stop in /usr/ports/emulators/vmware3. > > I do understand the conflict, but I am not sure what the best way to > handle this is. Trying to remove linux_base, gives a lot of work since a > lot of other stuff depends upon that. > > Any recommendations? > > Another question, regarding speed and ease of configuration, which is > recommended: VMWare vs. Qemu? > > Best and kind regards, > Rico > _______________________________________________ > 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" Maybe this can help from /usr/ports/UPDATING : [...] 20060616: AFFECTS users of emulation/linux_base-* AUTHOR: netchild@FreeBSD.org We now use Fedora Core 4 as the linux base port, and the corresponding xorg libs for the linux X11 libs port. To upgrade you have to run portupgrade -f -o emulators/linux_base-fc4 linux_base\* portupgrade -f -o x11/linux-xorg-libs linux-XFree86-libs [...] Beni. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 09:34: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 B057B16A47B for ; Sun, 18 Jun 2006 09:34:38 +0000 (UTC) (envelope-from nick@nickwithers.com) Received: from mail.nickwithers.com (mail.manrags.com [203.219.206.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80CA343D58 for ; Sun, 18 Jun 2006 09:34:36 +0000 (GMT) (envelope-from nick@nickwithers.com) Received: from localhost (shmick.shmon.net [10.0.0.252]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.nickwithers.com (Postfix) with ESMTP id 846A43AA8F; Sun, 18 Jun 2006 19:34:25 +1000 (EST) Date: Sun, 18 Jun 2006 19:34:25 +1000 From: Nick Withers To: Charles Bacon Message-Id: <20060618193425.c07b9177.nick@nickwithers.com> In-Reply-To: <20060617211012.R54707@tomato.local> References: <20060617211012.R54707@tomato.local> Organization: nickwithers.com X-Mailer: Sylpheed version 2.2.6 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-nickwithers-MailScanner: Found to be clean X-nickwithers-MailScanner-From: nick@nickwithers.com Cc: questions@freebsd.org Subject: Re: Getting NTP (ntpd, ntpdate) to work X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 09:34:38 -0000 On Sat, 17 Jun 2006 21:30:55 -0400 (EDT) Charles Bacon wrote: > Since FreeBSD 4.5-Release, I have been unable to get NTP working on > my two FreeBSD computers, one running 5.3Release and the other on > 6.1Release. I have done nothing with the GENERIC kernel on either > machine. I talk SSH between them, and have been running ntpd on > both, each naming the other as well as two external servers. > > My network is a typical home net, using 192.168.1/28, You mean /24 (i.e.: 255.255.255.0, Class C), yeah? > served by a DSL router which does NAT for my external traffic. > Internal comms. is through switches, plus one hub. Each computer > (plus some others running Windows) has easy access out, and is > invisible from the Internet exceptt for responses. > > Here's my ntp.conf, identical on my two computers: > > server ntp.cape.com > server ntp.ourconcord.net > driftfile /var/db/ntp.drift > logfile /var/log/ntplog > pidfile /var/run/ntpd.pid > logconfig =all > peer 192.168.1.3 > peer 192.168.1.2 (much comments removed) > > With mediocre diagnostic skill, I have finally discovered tcpdump. > It told me after much experiment, that the relevant port (NTP, 123) was > unreachable. This sounds significant, but I can't find a list of the > reachability of ports. Try netstat(1). "netstat -anp udp" might be of help in particular, here. > I've looked at ng*, mac_* and pf* and finally bpf*, and only the last seems > to exist in /dev. > > I had expected that GENERIC would impose only slight filtering somehow, > and certainly not shut off NTP! I guess I need help. If you've loaded a firewall such as IPFW in /etc/rc.conf a kernel module will be loaded for it, if it's not compiled statically into hte kernel already (which it isn't on GENERIC for either 5.3-RELEASE or 6.1-RELEASE). "kldstat" will list loaded modules (and the IPFW module is ipfw.ko). > Thanks for any help you can give, and I accept any opprobrium for trying > to be a sysadmin, even for my home boxen. > > Chuck Bacon -- crtb@cape.com > ABHOR SECRECY -- DEFEND PRIVACY -- Nick Withers email: nick@nickwithers.com Web: http://www.nickwithers.com Mobile: +61 414 397 446 From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 10:09: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 5C7ED16A474 for ; Sun, 18 Jun 2006 10:09:03 +0000 (UTC) (envelope-from Philippe.Pegon@crc.u-strasbg.fr) Received: from mailhost.u-strasbg.fr (mailhost.u-strasbg.fr [130.79.200.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99AA743D46 for ; Sun, 18 Jun 2006 10:09:02 +0000 (GMT) (envelope-from Philippe.Pegon@crc.u-strasbg.fr) Received: from baal.u-strasbg.fr (baal.u-strasbg.fr [IPv6:2001:660:2402::41]) by mailhost.u-strasbg.fr (8.13.6/jtpda-5.5pre1) with ESMTP id k5IA91jX025543 ; Sun, 18 Jun 2006 12:09:01 +0200 (CEST) Received: from [IPv6:::1] (crc.u-strasbg.fr [IPv6:2001:660:2402:1001::1]) by baal.u-strasbg.fr (8.13.7/jtpda-5.5pre1) with ESMTP id k5IA90Ko019986 ; Sun, 18 Jun 2006 12:09:01 +0200 (CEST) Message-ID: <449525A8.2060403@crc.u-strasbg.fr> Date: Sun, 18 Jun 2006 12:06:32 +0200 From: Philippe Pegon User-Agent: Thunderbird 1.5.0.4 (X11/20060605) MIME-Version: 1.0 To: Thierry Lacoste References: <004b01c691eb$b3bf0420$0201a8c0@aldebaran> In-Reply-To: <004b01c691eb$b3bf0420$0201a8c0@aldebaran> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (mailhost.u-strasbg.fr [IPv6:2001:660:2402::154]); Sun, 18 Jun 2006 12:09:01 +0200 (CEST) X-Virus-Scanned: ClamAV 0.88.2/1549/Sun Jun 18 00:20:39 2006 on mr4.u-strasbg.fr X-Virus-Status: Clean X-Spam-Status: No, score=0.1 required=5.0 tests=AWL,NO_RELAYS autolearn=disabled version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on mr4.u-strasbg.fr Cc: freebsd-questions@freebsd.org Subject: Re: monitoring raid arrays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 10:09:03 -0000 Thierry Lacoste wrote: > I'm running FreeBSD 6.1 on a Compaq Proliant and a Dell PowerEdge 1800. > They have hardware raid 1 arrays controlled respectively by a Compaq > Smart Array 532 > controller and PERC 4/SC. > > Here is the relevant dmesg output on the Proliant: > ciss0: port 0x4000-0x40ff mem > 0xf7fc0000-0xf7ffffff,0xf7ef0000-0xf7ef3fff irq 24 at device 3.0 on pci7 > [snip] > da0 at ciss0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-0 device > da0: 135.168MB/s transfers > da0: 34727MB (71122560 512 byte sectors: 255H 32S/T 8716C) > > Here is the relevant dmesg output on the PowerEdge: > amr0: mem 0xf80f0000-0xf80fffff irq 37 at > device 5.0 on pci2 > amr0: delete logical drives supported by controller > amr0: Firmware 351S, BIOS 1.10, 64MB RAM > [snip] > amr0: delete logical drives supported by controller > amrd0: on amr0 > amrd0: 139900MB (286515200 sectors) RAID 1 (optimal) > > What are my options to monitor the status of these arrays? for ciss, you can use camcontrol (in the base system) like that: # camcontrol inquiry da0 pass0: Fixed Direct Access SCSI-0 device pass0: 135.168MB/s transfers for amr, you can use the new port /usr/ports/sysutils/amrstat like that: # amrstat Logical volume 0 optimal (16.96 GB, RAID1) Physical drive 0:0 online Physical drive 0:1 online > > Best regards, > Thierry. -- Philippe Pegon From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 11:12: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 4890916A47A for ; Sun, 18 Jun 2006 11:12:24 +0000 (UTC) (envelope-from fbusse@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by mx1.FreeBSD.org (Postfix) with SMTP id B836C43D46 for ; Sun, 18 Jun 2006 11:12:23 +0000 (GMT) (envelope-from fbusse@gmx.de) Received: (qmail invoked by alias); 18 Jun 2006 11:12:22 -0000 Received: from port-212-202-41-189.dynamic.qsc.de (EHLO avalon.fbunet.de) [212.202.41.189] by mail.gmx.net (mp034) with SMTP; 18 Jun 2006 13:12:22 +0200 X-Authenticated: #4707809 Date: Sun, 18 Jun 2006 13:12:21 +0200 From: Fridtjof Busse To: freebsd-questions@freebsd.org Message-Id: <20060618131221.39d614ba.fbusse@gmx.de> 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 X-Y-GMX-Trusted: 0 Subject: 802.11h X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 11:12:24 -0000 Hello I'd like to know what the current status of DFS (Dynamic Frequency Selection) and TPC (Transmit Power Control) under FreeBSD is. Any way to build an accesspoint complying to 802.11h with FreeBSD? Without 802.11h, Germany allows only 13 dBm trasmit power, which is not really much, especially on 5 Ghz. -- Fridtjof Busse From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 12:28: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 1570B16A47F for ; Sun, 18 Jun 2006 12:28:51 +0000 (UTC) (envelope-from rodperson@adelphia.net) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABB8F43D45 for ; Sun, 18 Jun 2006 12:28:50 +0000 (GMT) (envelope-from rodperson@adelphia.net) Received: from atomizer.opensourcebeef.net ([24.54.126.112]) by mta11.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060618122850.DLHO17849.mta11.adelphia.net@atomizer.opensourcebeef.net> for ; Sun, 18 Jun 2006 08:28:50 -0400 From: Rod Person Organization: Open Source Beef To: Questions FreeBSD Date: Sun, 18 Jun 2006 08:28:59 -0400 User-Agent: KMail/1.9.1 X-Face: $72, ]$Z1y\/nYF:T[d"3TSO@]'dM+)/B@hdK(?fAY@F4IPU, wTha8oQ\ish]&GCe&C[vAG g; v~`wM,7H'7TW"!3zWJ_o]nb]i>oMCl=g1F$+$v+8i,xRtU(vKPxX\oK7/9to!z08{J%A p#` Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606180829.02104.rodperson@adelphia.net> Subject: adjkerntz[]: sysctl(get_offset): No such file or directory X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 12:28:51 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I'm seeing a lot of messages like this in my Message log. "adjkerntz[]: sysctl(get_offset): No such file or directory" I don't think that this is a porblem as I'm not seeing any ill effects, but I'd like to know what this means and why it's happening. Google hasn't produced anything meaningful in this area. Just wondering if anyone out there knows. Machine is an AMD Dual Opteron 246 running FreeBSD 6.1 Stable i386. - -- Rod Person http://www.opensourcebeef.net http://blog.opensourcebeef.net -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFElUcObMknMq8iwDERAudgAJ0WzQBZOn78cOU1o+7NhYLV8PaxSgCfYXWe nURNYzhmIPRcUDqy2DC/OxU= =z6t5 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 12:49: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 8BF5216A474 for ; Sun, 18 Jun 2006 12:49:55 +0000 (UTC) (envelope-from rodperson@adelphia.net) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2780B43D48 for ; Sun, 18 Jun 2006 12:49:55 +0000 (GMT) (envelope-from rodperson@adelphia.net) Received: from atomizer.opensourcebeef.net ([24.54.126.112]) by mta10.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060618124954.SUUC12693.mta10.adelphia.net@atomizer.opensourcebeef.net> for ; Sun, 18 Jun 2006 08:49:54 -0400 From: Rod Person Organization: Open Source Beef To: freebsd-questions@freebsd.org Date: Sun, 18 Jun 2006 08:50:03 -0400 User-Agent: KMail/1.9.1 References: <200606180829.02104.rodperson@adelphia.net> In-Reply-To: <200606180829.02104.rodperson@adelphia.net> X-Face: $72, ]$Z1y\/nYF:T[d"3TSO@]'dM+)/B@hdK(?fAY@F4IPU, =?utf-8?q?wTha8oQ=5Cish=5D=26GCe=26C=5BvAG=0A=09g=3Bv=7E=60wM?=, 7H'7TW"!3zWJ_o]nb]i>oMCl=g1F$+$v+8i, xRtU(=?utf-8?q?vKPxX=5CoK7/9to!z08=7BJ=25A=0A=09p=23=60?= Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606180850.06808.rodperson@adelphia.net> Subject: Re: adjkerntz[]: sysctl(get_offset): No such file or directory X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 12:49:55 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sunday 18 June 2006 8:28 am, Rod Person wrote: > Machine is an AMD Dual Opteron 246 running FreeBSD 6.1 Stable i386. Sorry, It's FreeBSD 7.0 Current i386 - it's a dual boot and I got confused :) - -- Rod Person http://www.opensourcebeef.net http://blog.opensourcebeef.net -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFElUv+bMknMq8iwDERAow3AKCRrmdEOdDyalviMJKnNojc8uprPgCfRz6/ YylFH80bXk/nMIykagKge5Y= =Kxzi -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 13:47: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 AF54216A481 for ; Sun, 18 Jun 2006 13:47:21 +0000 (UTC) (envelope-from jhorne@dfwlp.com) Received: from zeus.int.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AE8943D58 for ; Sun, 18 Jun 2006 13:47:20 +0000 (GMT) (envelope-from jhorne@dfwlp.com) Received: from athena.int.dfwlp.com (athena.int.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.int.dfwlp.com (8.13.6/8.13.6) with ESMTP id k5IDlFFS045681 for ; Sun, 18 Jun 2006 08:47:15 -0500 (CDT) (envelope-from jhorne@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Sun, 18 Jun 2006 08:47:12 -0500 User-Agent: KMail/1.9.3 References: <44125.167.246.36.14.1150464410.squirrel@mail.dfwlp.com> <55254.24.1.139.244.1150514984.squirrel@mail.dfwlp.com> <4493842E.50507@ywave.com> In-Reply-To: <4493842E.50507@ywave.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606180847.13010.jhorne@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on zeus.int.dfwlp.com Subject: Re: freebsd on a newer pc X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 13:47:21 -0000 On Friday 16 June 2006 23:25, Micah wrote: > Jonathan Horne wrote: > >> On Jun 16, 2006, at 5:09 PM, Jonathan Horne wrote: > >>> well, i figured out that if at the boot selection screen, if i choose > >>> option 2 "boot with acpi enabled", i can then give 'shutdown -p > >>> now' and > >>> the system will then power off properly. easy enough... > >>> > >>> but how do i set option 2 as my default boot selection? i dont see > >>> anything about this in the handbook. > >> > >> My experience has been that once you boot that way once it becomes > >> the default. Play around with it > >> > >> Chad > >> > >> --- > >> Chad Leigh -- Shire.Net LLC > >> Your Web App and Email hosting provider > >> chad at shire.net > > > > i dont think thats the behavior im getting. when i hit 2 to boot: > > > > athena# kldstat > > Id Refs Address Size Name > > 1 3 0xc0400000 6ab778 kernel > > 2 1 0xc0aac000 59960 acpi.ko > > athena# uname -a > > FreeBSD athena.int.dfwlp.com 6.1-STABLE FreeBSD 6.1-STABLE #0: Fri Jun 16 > > 20:48:52 CDT 2006 > > root@athena.int.dfwlp.com:/usr/obj/usr/src/sys/ATHENA i386 > > > > and when i dont: > > athena# kldstat > > Id Refs Address Size Name > > 1 1 0xc0400000 6ab778 kernel > > > > when i want to boot the acpi support, i hit 2. is that the proper way, > > or is there some other way that resets this mode as default? > > > > thanks, > > jonathan > > Last I read FreeBSD defaults ACPI off for systems that have "broken" > ACPI, and defaults on for systems that have "working" ACPI. If you're > sure your ACPI works without any problems add acpi_load="YES" to your > loader.conf. (that might not be the "correct" solution, but it should > work). > > HTH, > Micah > _______________________________________________ > 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" well, its finally working!! i could have swore this was the first thing i tried, as loader.conf was the first area i researched, but when i added acpi_load="YES" to loader.conf, my system now boots with acpi enabled (and i can now properly poweroff with shutdown -p now). i must have typed or something, because that was the first thing i mentally marked as "ok, that didnt work". im so excited to have my system functioning correcetly now, as my old system was a 1.8GHz athlong, and this is a 3.2GHz p4. xorg/KDE compile time is down from 36 hours to less than 24!! cheers, jonathan From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 13:54: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 D85CD16A47C for ; Sun, 18 Jun 2006 13:54:31 +0000 (UTC) (envelope-from jhorne@dfwlp.com) Received: from zeus.int.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DE4443D45 for ; Sun, 18 Jun 2006 13:54:31 +0000 (GMT) (envelope-from jhorne@dfwlp.com) Received: from athena.int.dfwlp.com (athena.int.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.int.dfwlp.com (8.13.6/8.13.6) with ESMTP id k5IDsUpb045716 for ; Sun, 18 Jun 2006 08:54:30 -0500 (CDT) (envelope-from jhorne@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Sun, 18 Jun 2006 08:54:27 -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: <200606180854.27889.jhorne@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on zeus.int.dfwlp.com Subject: deployment considerations between STABLE and RELENG X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 13:54:31 -0000 its been a while since i have come to the point where i can cvsup and buildworld my systems without making any mistakes. but, at this point, so far, i only buildworld up to STABLE. i do have one dev system that yesterday, i finally did a buildworld to RELENG. as i understand it, STABLE contains all security/bug fixes, as well as all enhancements to other applications as they have been developed. and that RELENG contains only security and bugfixes. have i gathered my information correctly? im interested in polling the users of this list (who frequently buildworld on their systems), what situations (deployments) STABLE is for, and the same for RELENG. cheers, jonathan From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 14:00: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 9DCF916A492 for ; Sun, 18 Jun 2006 14:00:32 +0000 (UTC) (envelope-from coolzone@io.dk) Received: from dansknet.dk (smtp1.dansknet.dk [85.233.229.242]) by mx1.FreeBSD.org (Postfix) with SMTP id A792B43D5E for ; Sun, 18 Jun 2006 14:00:17 +0000 (GMT) (envelope-from coolzone@io.dk) Received: (qmail 5298 invoked from network); 18 Jun 2006 14:52:13 -0000 Received: from 85233230237.switch.dansknet.dk (HELO ?85.233.230.237?) (85.233.230.237) by dansknet.dk with SMTP; 18 Jun 2006 14:52:13 -0000 Message-ID: <44955C4A.8060702@io.dk> Date: Sun, 18 Jun 2006 15:59:38 +0200 From: Rico 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 Subject: Re: VMWare install 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: Sun, 18 Jun 2006 14:00:32 -0000 Thank you very much Beni! I completely missed that. Best regards, Rico -------- Original Message -------- Subject: Re: VMWare install error Date: Sun, 18 Jun 2006 10:52:06 +0200 From: Beni To: freebsd-questions@freebsd.org References: <44946422.7030900@io.dk> On Saturday 17 June 2006 22:20, Rico wrote: > Hi, > > I am trying to install VMWare3 on FreeBSD 6.1 from the ports. > > During intall I get this error: > > => SHA256 Checksum OK for rpm/i386/fedora/4/zlib-1.2.2.2-5.fc4.i386.rpm. > ===> linux_base-fc-4_1 depends on file: /usr/local/bin/rpm2cpio - found > ===> Patching for linux_base-fc-4_1 > ===> Configuring for linux_base-fc-4_1 > ===> Building for linux_base-fc-4_1 > ===> Installing for linux_base-fc-4_1 > > ===> linux_base-fc-4_1 conflicts with installed package(s): > linux_base-8-8.0_14 > > They install files into the same place. > Please remove them first with pkg_delete(1). > *** Error code 1 > > Stop in /usr/ports/emulators/linux_base-fc4. > *** Error code 1 > > Stop in /usr/ports/emulators/rtc. > *** Error code 1 > > Stop in /usr/ports/emulators/vmware3. > *** Error code 1 > > Stop in /usr/ports/emulators/vmware3. > > I do understand the conflict, but I am not sure what the best way to > handle this is. Trying to remove linux_base, gives a lot of work since a > lot of other stuff depends upon that. > > Any recommendations? > > Another question, regarding speed and ease of configuration, which is > recommended: VMWare vs. Qemu? > > Best and kind regards, > Rico > _______________________________________________ > 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" Maybe this can help from /usr/ports/UPDATING : [...] 20060616: AFFECTS users of emulation/linux_base-* AUTHOR: netchild@FreeBSD.org We now use Fedora Core 4 as the linux base port, and the corresponding xorg libs for the linux X11 libs port. To upgrade you have to run portupgrade -f -o emulators/linux_base-fc4 linux_base\* portupgrade -f -o x11/linux-xorg-libs linux-XFree86-libs [...] Beni. _______________________________________________ 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 Jun 18 14:52: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 CE68F16A47A for ; Sun, 18 Jun 2006 14:52:45 +0000 (UTC) (envelope-from dinom@balstonresearch.com) Received: from rwcrmhc14.comcast.net (rwcrmhc14.comcast.net [216.148.227.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5233343D82 for ; Sun, 18 Jun 2006 14:52:35 +0000 (GMT) (envelope-from dinom@balstonresearch.com) Received: from [192.168.2.100] (c-68-36-86-171.hsd1.nj.comcast.net[68.36.86.171]) by comcast.net (rwcrmhc14) with ESMTP id <20060618145234m14000en5ee>; Sun, 18 Jun 2006 14:52:34 +0000 From: Constantino Michailidis To: freebsd-questions@freebsd.org Date: Sun, 18 Jun 2006 10:52:30 -0400 User-Agent: KMail/1.9.3 References: <20060618120041.84DBA16A47D@hub.freebsd.org> In-Reply-To: <20060618120041.84DBA16A47D@hub.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200606181052.30989.dinom@balstonresearch.com> Subject: Re: GUIDE step-by-step - FreeBSD-RELENG-upgrade + BUILDWORLD process, using CVSUP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 14:52:45 -0000 On Sunday 18 June 2006 08:00, freebsd-questions-request@freebsd.org wrote: > Hanno Krusken wrote: > > Hi all, > > specially for the novice of you, please read carefully > > !! > > > > # make clean > > > > # make -j4 buildworld > > > > # make buildkernel KERNCONF=3DYOUR-KERNEL-FILE > > > > # make installkernel KERNCONF=3DYOUR-KERNEL-FILE > > > > # reboot > > > > Hanno Krusken > > =A0 > > make -j4 can cause many systems to fail > > The correct procedure is > > make buildworld > make kernel KERNCONF=3Dmykern > mergemaster -p > make installworld > mergemaster > > regards Jason M Thought I'd throw in my 2cents to the conversation. I have a cheat-sheet I= 've=20 created myself for this process. Generally, the procedure is as described = as=20 above. One issue is that the actual process can vary... there is more than= =20 one _correct_ procedure. That being said, it may help a newbie to have=20 _more_ detail than less. Thus, I'll include my cheat sheet here too. =20 Section 21.4 from the handbook should be the final authority ;-) Note, following the procedure isn't difficult at all... what _is_ difficult= is=20 answering the questions 'mergemaster' asks correctly. In reality, this=20 usually isn't too difficult either, but can be intimidating for less=20 experienced users. The general rule of thumb for mergemaster is.... answer 'i' (install tempor= ary=20 version) for any file that you don't remember editing yourself - this usual= ly=20 means press 'd' (delete) when prompted to merge files like /etc/hosts or=20 (possibly) /etc/printcap. On a typically configured machine, you are=20 instructing mergemaster to either install (95%) or delete (4%) the temporar= y=20 file it's prompting about; the other 1% of the time a 'real' merge is=20 necessary. Ultimately, you need to use your head a bit during mergemaster. Other than that, the only thing you need to understand is how to use cvsup.= =20 Enough already, here's my cheat-sheet: UPDATING FREEBSD cvsup standard-supfile #i'm tracking stable cd /usr/src cat UPDATING #glance at it for quirks make buildworld make buildkernel KERNCONF=3Dyour_filename make installkernel KERNCONF=3Dyour_filename shutdown now #optional; allows you to skip to next 'cd' command reboot #into single user mode fsck -p mount -u / mount -a -t ufs swapon -a adjkerntz -i #if cmos clock set to local time cd /usr/src #using mergemaster: usually just answer 'i' #for every file sans 'hosts', 'printcap' #and any other customized /etc files #use your head mergemaster -p #merges new stuff needed by installworld make installworld mergemaster #merges all new stuff: /etc /var/ usr reboot cd /usr/obj chflags -R noschg * #only if any files are immutable rm -rf * #saves disk space and #makes future updates easier but slower #THIS HAPPENS IN /usr/obj #LOL, BE CAREFUL TO INSURE THIS!!! =2D-=20 New systems generate new problems. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 14:53: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 6D0BB16A481 for ; Sun, 18 Jun 2006 14:53:31 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pfepa.post.tele.dk (pfepa.post.tele.dk [195.41.46.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BEA443D6E for ; Sun, 18 Jun 2006 14:53:25 +0000 (GMT) (envelope-from alive@dienub.org) Received: from m00h.dienub.org (dienub.org [87.49.144.133]) by pfepa.post.tele.dk (Postfix) with ESMTP id 84371FAC040 for ; Sun, 18 Jun 2006 16:53:23 +0200 (CEST) Received: from [192.168.0.2] (unknown [192.168.0.2]) by m00h.dienub.org (Postfix) with ESMTP id 6ECB31CC0A for ; Sun, 18 Jun 2006 16:53:23 +0200 (CEST) From: "Daniel A. A." Organization: Dienub To: freebsd-questions@freebsd.org Date: Sun, 18 Jun 2006 16:53:10 +0000 User-Agent: KMail/1.9.1 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_3TYlE2jv/+d+xiV" Message-Id: <200606181653.11144.alive@dienub.org> X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: kernel: ad8: FAILURE - READ timed out LBA=234441585 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 14:53:31 -0000 --Boundary-00=_3TYlE2jv/+d+xiV Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, Whenever I try to boot my desktop workstation with FreeBSD, it suddenly just hangs there forever. When I boot into safe mode, however, I get this in the dmesg: Jun 18 16:01:46 b00b kernel: ad8: 114473MB at ata4-master PIO4 Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441585 Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (1 retry left) LBA=0 Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441631 Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (0 retries left) LBA=0 Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441644 Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=0 Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441585 Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (1 retry left) LBA=0 The hard drive is connected to an onboard Promise FastTrak (atapci1: port 0x8000-0x803f,0x7800-0x780f,0x7400-0x747f mem 0xab800000-0xab800fff,0xab000000-0xab01ffff irq 11 at device 14.0 on pci0) controller on my Asus p4s8x motherboard. The drive itself is connected to the optional PATA connector, which works wonderfully in Windows. I've currently managed to install Xorg and KDE on the box, all entirely in Safe Mode, but the performance is really bad, or not as good as it should be on a PC with a Pentium IV 2.4GHz and 1GB PC3200 RAM. Googling yields irrelevant results to my case, and search results for "freebsd p4s8x" (no quotes) indicate that FreeBSD should be working OK with my motherboard and all of its native components. So, does anybody know how to a) Fix this issue (or, if not) b) How to prevent a specific device (atapci1 or ad8) from being loaded during boot time? Again, googling yields no results, but I might be querying the wrong strings. Attached is my dmesg.boot Thanks for any help. --Boundary-00=_3TYlE2jv/+d+xiV-- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 15:02: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 546ED16A49E for ; Sun, 18 Jun 2006 15:02:25 +0000 (UTC) (envelope-from anrays@gmail.com) Received: from tor.farlep.net (tor.farlep.net [213.130.1.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id B044C43D4C for ; Sun, 18 Jun 2006 15:02:23 +0000 (GMT) (envelope-from anrays@gmail.com) Received: from santinel.home.ua (max5-30.dialup.farlep.net [213.130.5.159]) by tor.farlep.net with ESMTP id k5IF27J3009225; Sun, 18 Jun 2006 18:02:14 +0300 Received: from anray by santinel.home.ua with local (Exim 4.62; FreeBSD) id 1FrymB-000ICd-4J; Sun, 18 Jun 2006 18:01:23 +0300 To: Rod Person References: <200606180829.02104.rodperson@adelphia.net> <200606180850.06808.rodperson@adelphia.net> Organization: Santinel From: Andrey Slusar Date: Sun, 18 Jun 2006 18:01:23 +0300 In-Reply-To: <200606180850.06808.rodperson@adelphia.net> (Rod Person's message of "Sun, 18 Jun 2006 08:50:03 -0400") Message-ID: <86u06ifqyk.fsf@santinel.home.ua> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.5-b27 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-SMTP-Vilter-Version: 1.1.8 X-SMTP-Vilter-Virus-Backend: clamd X-SMTP-Vilter-Status: clean X-SMTP-Vilter-clamd-Virus-Status: clean Cc: freebsd-questions@freebsd.org Subject: Re: adjkerntz[]: sysctl(get_offset): No such file or directory X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 15:02:25 -0000 Sun, 18 Jun 2006 08:50:03 -0400, Rod Person wrote: > On Sunday 18 June 2006 8:28 am, Rod Person wrote: > > Machine is an AMD Dual Opteron 246 running FreeBSD 6.1 Stable i386. > Sorry, It's FreeBSD 7.0 Current i386 - it's a dual boot and I got > confused :) Are you read src/UPDATING? -- Regards, Andrey. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 15:36: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 4219516A47B for ; Sun, 18 Jun 2006 15:36:33 +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 0495E43D49 for ; Sun, 18 Jun 2006 15:36:32 +0000 (GMT) (envelope-from dan@havoc.unixathome.org) Received: from localhost (localhost [127.0.0.1]) by havoc.unixathome.org (Postfix) with ESMTP id EC968564BB for ; Sun, 18 Jun 2006 00:12:37 -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 7zP+Ic69r7t0 for ; Sun, 18 Jun 2006 00:10:03 -0700 (PDT) Received: by havoc.unixathome.org (Postfix, from userid 1001) id ADDC1564AD; Sun, 18 Jun 2006 00:10:02 -0700 (PDT) From: Dan Langille To: freebsd-questions@freebsd.org Message-Id: <20060618071002.ADDC1564AD@havoc.unixathome.org> Date: Sun, 18 Jun 2006 00:10:02 -0700 (PDT) Subject: The FreeBSD Diary: 2006-05-28 - 2006-06-17 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 15:36:33 -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: 16-Jun : apcupsd - Configuring a UPS daemon APC is a pretty common UPS. apcupsd can gracefully shutdown your computers before the batteries run out of juice. http://freebsddiary.org/apcupsd.php?2 15-Jun : Dual Opteron server Setting up the server http://freebsddiary.org/dual-opteron.php?2 7-Jun : Postfix - setting up two outgoing mail servers How to set one gateway machine to send to two outgoing servers. http://freebsddiary.org/postfix-transport-multiple.php?2 30-May : Moving the rack It's just a shelf. It shouldn't take too long to move.... http://freebsddiary.org/moving-the-rack.php?2 28-May : System freezes up during reboot It's hard to reboot the system if it never comes back! http://freebsddiary.org/freeze-during-reboot.php?2 -- Dan Langille BSDCan - http://www.BSDCan.org/ - BSD Conference From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 17:28: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 601C216A47F for ; Sun, 18 Jun 2006 17:28:55 +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 AE01A43D46 for ; Sun, 18 Jun 2006 17:28:54 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.142] (helo=anti-virus02-09) by smtp-out5.blueyonder.co.uk with smtp (Exim 4.52) id 1Fs14u-0003qS-Ju; Sun, 18 Jun 2006 18:28:52 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out1.blueyonder.co.uk with esmtp (Exim 4.52) id 1Fs14u-00075e-2u; Sun, 18 Jun 2006 18:28:52 +0100 Message-ID: <44958D50.4050000@dial.pipex.com> Date: Sun, 18 Jun 2006 18:28:48 +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: Joe Auty References: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> <2A55FF5E-F764-406A-BE0E-272246F425B5@netmusician.org> <448xoska3k.fsf@be-well.ilk.org> <44733B8B.6030404@dial.pipex.com> <448FDE6B.4000703@dial.pipex.com> <38D0516F-2F6B-4700-9006-5A2D6034DC0C@netmusician.org> <449042EF.9040905@dial.pipex.com> <4680C6D4-50F9-4441-8B54-924092A1A3AD@netmusician.org> <44913391.7060906@dial.pipex.com> <7B276387-F946-4FEC-81D1-8CF9B95808E2@netmusician.org> In-Reply-To: <7B276387-F946-4FEC-81D1-8CF9B95808E2@netmusician.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Python port 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: Sun, 18 Jun 2006 17:28:55 -0000 Joe Auty wrote: > > On Jun 15, 2006, at 6:16 AM, Alex Zbyslaw wrote: > >> Joe Auty wrote: >> >>> jauty# python -v /usr/local/mailman/bin/qrunner >>> [...snip...] >>> # /usr/local/lib/python2.4/getopt.pyc matches /usr/local/lib/ >>> python2.4/getopt.py >>> import getopt # precompiled from /usr/local/lib/python2.4/getopt.pyc >>> # /usr/local/mailman/bin/paths.pyc matches /usr/local/mailman/bin/ >>> paths.py >>> import paths # precompiled from /usr/local/mailman/bin/paths.pyc >>> [...snip...] >> >> >> OK, you just ran qrunner successfully without getting the error you >> were getting earlier about getopt. Doesn't matter that all you got >> was help, it found *everything* that it tried to import. >> >> I missed the start of this thread. How did you run qrunner to get >> your earlier error and where did the error appear? I think you said >> the rc script. If it's not too big can you post it? Or compare it >> against your working mailman? >> > > My Mailman rc script (exactly identical to the one on my working > machine): > You're getting your error when mailman starts at boot time; is that right? If so, what happens if you try as root (csh): # sh -x /usr/local/etc/rc.d/mailman.sh start (sh/bash) # sh -x /usr/local/etc/rc.d/mailman.sh start (you might have to check the exact name of the rc.d script). If this starts mailman then something bizarre is going on. If you get the same error as usual, then judicious snippets with the error and prior context. --Alex From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 17:54: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 5082C16A479 for ; Sun, 18 Jun 2006 17:54:04 +0000 (UTC) (envelope-from pabmara@fiv.upv.es) Received: from smtp.upv.es (84-123-2-197.onocable.ono.com [84.123.2.197]) by mx1.FreeBSD.org (Postfix) with SMTP id 5F7F843D66 for ; Sun, 18 Jun 2006 17:53:57 +0000 (GMT) (envelope-from pabmara@fiv.upv.es) Received: (qmail 4326 invoked by uid 1000); 18 Jun 2006 17:54:27 -0000 Date: Sun, 18 Jun 2006 19:54:27 +0200 From: Pablo =?iso-8859-1?Q?Mar=EDn_Ram=F3n?= To: Bob Johnson Message-ID: <20060618175426.GA513@localhost> References: <20060616104704.GA11222@localhost> <54db43990606160818u1e3df3b8sfb30066fc005661f@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <54db43990606160818u1e3df3b8sfb30066fc005661f@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: FFS data integrity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 17:54:04 -0000 > The short answer is that fsck can detect the bad inodes and fix or > delete them. Assuming no programming errors, you don't have to worry > about a file containing bogus data after fsck has run. Unfortunately, > if write-caching is enabled on your hard drive (and it probably is, > for speed), then the drive may internally re-order the writes and the > carefully crafted sequence of writes disappears, so there are no > guarantees (or at least, not as many). Whether this is actually a > problem depends on the brand, model, and firmware version of the > drive, because some drives claim that data has been written to the > disk when it is actually only in the drive buffer, while other drives > are more honest. Let's suppose block A contains user A's private data. User A deletes the file, so synchronously the metadata referring to that file is updated, but the data block still contains the sensitive information. Now user B creates a new file B. Let's suppose the data block allocated for file B is block A. The right thing to do in terms of security is first update block A with the new data, and then update the metadata referring to it. But if metadata is updated synchronously first (the free block bitmap says that block A is allocated and the inode of file B points to it) and the system crashes, user B has access to user A's private data. In this case (asynchronous data blocks updates), fsck cannot fix the problem (if I'm missing something, please correct me). The following is extracted from "Soft Updates: A Technique for Eliminating Most Synchronous Writes in the Fast Filesystem": "When a new block is allocated, its bitmap location is updated to reflect that it is in use and the block's contents are initialized with newly written data or zeros. In addition, a pointer to the new block is added to an inode or indirect block (see bellow). To ensure that the on-disk bitmap always reflects allocated resources, the bitmap must be written to disk before the pointer. Also, because the contents of the newly allocated disk location are unknown, rule #1 specifies an update dependency between the new block and the pointer to it. Because enforcing this update dependency with synchronous writes can reduce data creation throughput by a factor of two [Ganger & Patt, 1994], many implementations ignore it for regular data blcosk. This implementation decision reduces integrity and security, since newly allocated blocks generally contain previously deleted file data." The following is extracted from "Metadata Update Performance in File Systems" [Ganger & Patt, 1994]: "For example, a pointer to a newly allocated block should not be added to a file's inode before the block is initialized on stable storage. If this ordering is not enforced, a system failure could result in the file containing data from some previously deleted file, presenting both an integrity weakness and a security hole." One can read this in the man page for fsck_ffs: "The kernel takes care that only a restricted class of innocuous file system 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" so I assume FreeBSD is doing the correct thing. Is correct this assumption? > More details are found in > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/configtuning-disk.html Thanks, that entry in the handbook is really interesting. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 19:15: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 BA6DA16A474 for ; Sun, 18 Jun 2006 19:15:16 +0000 (UTC) (envelope-from SRS0=U4iQ2xl9=AF=asarian-host.net=admin@asarian-host.net) Received: from mail.asarian-host.net (mail.asarian-host.net [194.109.160.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCBBC43D46 for ; Sun, 18 Jun 2006 19:15:15 +0000 (GMT) (envelope-from SRS0=U4iQ2xl9=AF=asarian-host.net=admin@asarian-host.net) Received: from anonymizer.asarian-host.net (localhost [127.0.0.1]) (authenticated bits=0) by mail.asarian-host.net (8.13.5/8.13.5) with ESMTP id k5IJFEeL015084 for ; Sun, 18 Jun 2006 21:15:14 +0200 (CEST) (envelope-from admin@asarian-host.net) From: Mark Received-SPF: pass (asarian-host.net: 127.0.0.1 is authenticated by a trusted mechanism) receiver=anonymizer.asarian-host.net; client-ip=127.0.0.1; envelope-from=; helo=clientrunner.asarian-host.net; Message-Id: <200606181915.k5IJFCvv015074@asarian-host.net> Date: Sun, 18 Jun 2006 19:15:13 GMT X-Authenticated-Sender: admin@asarian-host.net X-Trace: cjIdAOiscZEbP0jewgTWfpqde9EtFn7WqVfDrZbPur164L2iAhIB0zzLPSx852S3 X-Complaints-To: abuse@asarian-host.net X-Abuse-Info: Please be sure to forward a copy of ALL headers, otherwise we are unable to process your complaint Organization: Asarian-host To: "'FreeBSD-Questions Questions'" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 X-Auth: Asarian-host PGP signature iQEVAwUARJWmQjFqW1BleBN9AQH9DAgAhb/QtInsqJpz+HIoEEnDIMZkt+VvjVLm vK6ETX8YybZA9QI13Wy9iHRSBXMjJQl2vKWqd5oh91yN3WLfH1Y4mSuklhsHrfZD YC3QCK2AxvNMZhq/rpFsIkP6nKksEsaaa8TdvXfA3pfVmSWzQKCdN6P7mOH3w6r3 1ybMpBrzoUHKTd8IUvEpIiCWXIZyOhOz9uE1Xjn5XefHc0rbLlv5QN7gcrY5PdI7 2cCiZEmseWQihQltxVQTzRat3NK0hhMBzwl0TRML9naG4mxc3USULa+XCkRArjJj /KGpeSLroK4BeEajIJMPbS/eTsHL4XTMMMqgIwrTfdJGCKGglQY1uw== =FIqH Subject: Does FreeBSD 4.11-STABLE support the Intel PWLA8391GT NIC? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 19:15:16 -0000 A similar question as before: does FreeBSD 4.11-STABLE support the Intel PWLA8391GT NIC card? Earlier, I recieved a link to the FreeBSD site for 'older' versions, but I only saw 4.11-RELEASE there. Thanks, - Mark From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 19:47: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 0130B16A474 for ; Sun, 18 Jun 2006 19:47:17 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pfepa.post.tele.dk (pfepa.post.tele.dk [195.41.46.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B94B43D46 for ; Sun, 18 Jun 2006 19:47:15 +0000 (GMT) (envelope-from alive@dienub.org) Received: from m00h.dienub.org (dienub.org [87.49.144.133]) by pfepa.post.tele.dk (Postfix) with ESMTP id 2C173FAC026 for ; Sun, 18 Jun 2006 21:47:14 +0200 (CEST) Received: from [192.168.0.2] (unknown [192.168.0.2]) by m00h.dienub.org (Postfix) with ESMTP id EE2851CC0A for ; Sun, 18 Jun 2006 21:47:13 +0200 (CEST) Message-ID: <4495C9E1.5030806@dienub.org> Date: Sun, 18 Jun 2006 21:47:13 +0000 From: "Daniel A. A." User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <200606181653.11144.alive@dienub.org> In-Reply-To: <200606181653.11144.alive@dienub.org> Content-Type: multipart/mixed; boundary="------------030200080901070709050203" Subject: Re: kernel: ad8: FAILURE - READ timed out LBA=234441585 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 19:47:17 -0000 This is a multi-part message in MIME format. --------------030200080901070709050203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Daniel A. A. wrote: > Hi, > Whenever I try to boot my desktop workstation with FreeBSD, it suddenly just > hangs there forever. When I boot into safe mode, however, I get this in the > dmesg: > Jun 18 16:01:46 b00b kernel: ad8: 114473MB at > ata4-master PIO4 > Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441585 > Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (1 retry left) LBA=0 > Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441631 > Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (0 retries left) > LBA=0 > Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441644 > Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=0 > Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441585 > Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (1 retry left) LBA=0 > > The hard drive is connected to an onboard Promise FastTrak (atapci1: PDC20376 SATA150 controller> port 0x8000-0x803f,0x7800-0x780f,0x7400-0x747f > mem 0xab800000-0xab800fff,0xab000000-0xab01ffff irq 11 at device 14.0 on > pci0) controller on my Asus p4s8x motherboard. The drive itself is connected > to the optional PATA connector, which works wonderfully in Windows. > > I've currently managed to install Xorg and KDE on the box, all entirely in > Safe Mode, but the performance is really bad, or not as good as it should be > on a PC with a Pentium IV 2.4GHz and 1GB PC3200 RAM. > Googling yields irrelevant results to my case, and search results for "freebsd > p4s8x" (no quotes) indicate that FreeBSD should be working OK with my > motherboard and all of its native components. > > So, does anybody know how to > a) Fix this issue (or, if not) > b) How to prevent a specific device (atapci1 or ad8) from being loaded during > boot time? Again, googling yields no results, but I might be querying the > wrong strings. > > Attached is my dmesg.boot > > Thanks for any help. > > ------------------------------------------------------------------------ > > _______________________________________________ > 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" Well, go figure. First, I disabled the SATA controller which I thought was the problem, in my BIOS. This didn't give any more different results than booting normally, except that the ad8 device wasn't created. The system just stopped loading after creating the acd0 device. So, that must not have been the problem, I thought. Then I disconnected the power and ATA cable from the "problematic" hard drive, which yielded the same results. Then, I disconnected my DVD drive, which didn't change the situation at all, except not creating the acd0 device at boot (And just hanging after initiating ad1, which is where I boot FreeBSD from) So I tried booting in verbose mode, which I hoped would give some error, or at least a clue. It didn't. At all. Then, my logic screamed at me, and I was smiling yet again. What if the verbose mode would give me a clue as to how the system manages to boot in safe mode? What if it tells me something like "this and that was skipped, proceeding safe boot"? After having figured out how to boot in safe AND verbose mode (By editing /boot/beastie.4th a little. Maybe booting in safe mode should be a 'boot' flag?), I happily rebooted the box again. Nothing broke from my edit, and it booted. I watched the screen and the scrolling text in anticipation, like a little boy on Christmas who is hoping that Santa will bring him the bike he's always wanted. As the kernel, very verbosely, complained about not being able to read stuff on the ad8 device, this kids eyes lighted up. He approached the Christmas tree, thinking that he had spotted the bike. And then, BAM. Everything with this boys name on the label under the tree was a soft package. Five packages from Santa; all soft. The kid lost hope, yet again, as his highly anticipated informative error messages were nowhere to find. I've attached the verbose dmesg.boot, in the hopes that someone will bring me a hard package with my name on it - before next Christmas. --------------030200080901070709050203 Content-Type: text/plain; name="dmesg.boot" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg.boot" Waiting (max 60 seconds) for system process `vnlru' to stop...done Waiting (max 60 seconds) for system process `bufdaemon' to stop...done Waiting (max 60 seconds) for system process `syncer' to stop... Syncing disks, vnodes remaining...8 8 4 3 3 0 0 done All buffers synced. 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-RELEASE #0: Sun May 7 04:32:43 UTC 2006 root@opus.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC Preloaded elf kernel "/boot/kernel/kernel" at 0xc0abe000. Preloaded elf module "/boot/kernel/snd_es137x.ko" at 0xc0abe188. Preloaded elf module "/boot/kernel/sound.ko" at 0xc0abe238. Calibrating clock(s) ... i8254 clock: 1193262 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 2400098244 Hz CPU: Intel(R) Pentium(R) 4 CPU 2.40GHz (2400.10-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Features=0x3febfbff real memory = 1073725440 (1023 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009bfff, 634880 bytes (155 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000000c25000 - 0x000000003edc3fff, 1041887232 bytes (254367 pages) avail memory = 1041780736 (993 MB) bios32: Found BIOS32 Service Directory header at 0xc00f1800 bios32: Entry = 0xf1180 (c00f1180) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0x11b0 pnpbios: Found PnP BIOS data at 0xc00f9680 pnpbios: Entry = f0000:96b0 Rev = 1.0 pnpbios: OEM ID cd041 Other BIOS signatures found: wlan: <802.11 Link Layer> null: random: nfslock: pseudo-device io: mem: Pentium Pro MTRR support enabled rr232x: RocketRAID 232x controller driver v1.02 (May 7 2006 04:32:33) npx0: INT 16 interface cpu0 on motherboard pci_open(1): mode 1 addr port (0x0cf8) is 0x80000070 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=80] is there (id=06481039) pcibios: BIOS version 2.10 Found $PIR table, 11 entries at 0xc00f1720 PCI-Only Interrupts: none Location Bus Device Pin Link IRQs slot 7 1 0 A 0x41 3 4 5 7 9 10 11 12 slot 7 1 0 B 0x42 3 4 5 7 9 10 11 12 embedded 0 2 A 0x41 3 4 5 7 9 10 11 12 embedded 0 2 B 0x42 3 4 5 7 9 10 11 12 embedded 0 2 C 0x43 3 4 5 7 9 10 11 12 embedded 0 2 D 0x44 3 4 5 7 9 10 11 12 embedded 0 3 A 0x60 3 4 5 7 9 10 11 12 embedded 0 3 B 0x61 3 4 5 7 9 10 11 12 embedded 0 3 C 0x62 3 4 5 7 9 10 11 12 embedded 0 3 D 0x63 3 4 5 7 9 10 11 12 slot 1 0 8 A 0x44 3 4 5 7 9 10 11 12 slot 1 0 8 B 0x41 3 4 5 7 9 10 11 12 slot 1 0 8 C 0x42 3 4 5 7 9 10 11 12 slot 1 0 8 D 0x43 3 4 5 7 9 10 11 12 slot 2 0 9 A 0x42 3 4 5 7 9 10 11 12 slot 2 0 9 B 0x43 3 4 5 7 9 10 11 12 slot 2 0 9 C 0x44 3 4 5 7 9 10 11 12 slot 2 0 9 D 0x41 3 4 5 7 9 10 11 12 slot 3 0 10 A 0x43 3 4 5 7 9 10 11 12 slot 3 0 10 B 0x44 3 4 5 7 9 10 11 12 slot 3 0 10 C 0x41 3 4 5 7 9 10 11 12 slot 3 0 10 D 0x42 3 4 5 7 9 10 11 12 slot 4 0 11 A 0x44 3 4 5 7 9 10 11 12 slot 4 0 11 B 0x41 3 4 5 7 9 10 11 12 slot 4 0 11 C 0x42 3 4 5 7 9 10 11 12 slot 4 0 11 D 0x43 3 4 5 7 9 10 11 12 slot 5 0 12 A 0x41 3 4 5 7 9 10 11 12 slot 5 0 12 B 0x42 3 4 5 7 9 10 11 12 slot 5 0 12 C 0x43 3 4 5 7 9 10 11 12 slot 5 0 12 D 0x44 3 4 5 7 9 10 11 12 slot 6 0 13 A 0x42 3 4 5 7 9 10 11 12 slot 6 0 13 B 0x43 3 4 5 7 9 10 11 12 slot 6 0 13 C 0x44 3 4 5 7 9 10 11 12 slot 6 0 13 D 0x41 3 4 5 7 9 10 11 12 embedded 0 4 A 0x44 3 4 5 7 9 10 11 12 embedded 0 14 A 0x41 3 4 5 7 9 10 11 12 embedded 0 14 B 0x42 3 4 5 7 9 10 11 12 embedded 0 14 C 0x43 3 4 5 7 9 10 11 12 embedded 0 14 D 0x44 3 4 5 7 9 10 11 12 pcib0: pcibus 0 on motherboard pir0: on motherboard $PIR: Links after initial probe: Link IRQ Rtd Ref IRQs 0x41 255 N 9 3 4 5 7 9 10 11 12 0x42 255 N 9 3 4 5 7 9 10 11 12 0x43 255 N 8 3 4 5 7 9 10 11 12 0x44 255 N 9 3 4 5 7 9 10 11 12 0x60 255 N 1 3 4 5 7 9 10 11 12 0x61 255 N 1 3 4 5 7 9 10 11 12 0x62 255 N 1 3 4 5 7 9 10 11 12 0x63 255 N 1 3 4 5 7 9 10 11 12 $PIR: Found matching pin for 1.0.INTA at func 0: 11 $PIR: Found matching pin for 0.2.INTA at func 5: 11 $PIR: Found matching pin for 0.2.INTB at func 3: 255 $PIR: Found matching pin for 0.2.INTC at func 7: 255 $PIR: Found matching pin for 0.3.INTA at func 0: 9 $PIR: Found matching pin for 0.3.INTB at func 1: 9 $PIR: Found matching pin for 0.3.INTC at func 2: 9 $PIR: Found matching pin for 0.3.INTD at func 3: 255 $PIR: Found matching pin for 0.13.INTA at func 0: 255 $PIR: Found matching pin for 0.4.INTA at func 0: 255 $PIR: Found matching pin for 0.14.INTA at func 0: 11 $PIR: Links after initial IRQ discovery: Link IRQ Rtd Ref IRQs 0x41 11 Y 9 3 4 5 7 9 10 11 12 0x42 255 N 9 3 4 5 7 9 10 11 12 0x43 255 N 8 3 4 5 7 9 10 11 12 0x44 255 N 9 3 4 5 7 9 10 11 12 0x60 9 Y 1 3 4 5 7 9 10 11 12 0x61 9 Y 1 3 4 5 7 9 10 11 12 0x62 9 Y 1 3 4 5 7 9 10 11 12 0x63 255 N 1 3 4 5 7 9 10 11 12 $PIR: IRQs used by BIOS: 9 11 $PIR: Interrupt Weights: [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ] [ 0 0 0 0 0 0 0 0 0 3 0 9 0 0 0 0 ] pci0: on pcib0 pci0: physical bus=0 found-> vendor=0x1039, dev=0x0648, revid=0x02 bus=0, slot=0, func=0 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x2210, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) map[10]: type 1, range 32, base b0000000, size 27, enabled found-> vendor=0x1039, dev=0x0001, revid=0x00 bus=0, slot=1, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0007, statreg=0x0000, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x08 (2000 ns), maxlat=0x00 (0 ns) found-> vendor=0x1039, dev=0x0963, revid=0x04 bus=0, slot=2, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x000f, statreg=0x0200, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1039, dev=0x7007, revid=0x00 bus=0, slot=2, func=3 class=0c-00-10, hdrtype=0x00, mfdev=0 cmdreg=0x0004, statreg=0x0210, cachelnsz=0 (dwords) lattimer=0x40 (1920 ns), mingnt=0x04 (1000 ns), maxlat=0x0c (3000 ns) intpin=b, irq=255 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 1, range 32, base ae800000, size 12, memory disabled found-> vendor=0x1039, dev=0x5513, revid=0x00 bus=0, slot=2, func=5 class=01-01-8a, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x0200, cachelnsz=0 (dwords) lattimer=0x80 (3840 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 map[20]: type 4, range 32, base 0000a400, size 4, enabled $PIR: 0:2 INTA routed to irq 11 found-> vendor=0x1039, dev=0x7012, revid=0xa0 bus=0, slot=2, func=7 class=04-01-00, hdrtype=0x00, mfdev=0 cmdreg=0x0004, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x34 (13000 ns), maxlat=0x0b (2750 ns) intpin=c, irq=255 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 4, range 32, base 00009400, size 8, port disabled map[14]: type 4, range 32, base 00009000, size 7, enabled found-> vendor=0x1039, dev=0x7001, revid=0x0f bus=0, slot=3, func=0 class=0c-03-10, hdrtype=0x00, mfdev=1 cmdreg=0x0017, statreg=0x0280, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) intpin=a, irq=9 map[10]: type 1, range 32, base ae000000, size 12, enabled $PIR: 0:3 INTA routed to irq 9 found-> vendor=0x1039, dev=0x7001, revid=0x0f bus=0, slot=3, func=1 class=0c-03-10, hdrtype=0x00, mfdev=0 cmdreg=0x0017, statreg=0x0280, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) intpin=b, irq=9 map[10]: type 1, range 32, base ad800000, size 12, enabled $PIR: 0:3 INTB routed to irq 9 found-> vendor=0x1039, dev=0x7001, revid=0x0f bus=0, slot=3, func=2 class=0c-03-10, hdrtype=0x00, mfdev=0 cmdreg=0x0017, statreg=0x0280, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) intpin=c, irq=9 map[10]: type 1, range 32, base ad000000, size 12, enabled $PIR: 0:3 INTC routed to irq 9 found-> vendor=0x1039, dev=0x7002, revid=0x00 bus=0, slot=3, func=3 class=0c-03-20, hdrtype=0x00, mfdev=0 cmdreg=0x0004, statreg=0x0290, cachelnsz=8 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) intpin=d, irq=255 powerspec 2 supports D0 D3 current D0 map[10]: type 1, range 32, base ac800000, size 12, memory disabled found-> vendor=0x1039, dev=0x0900, revid=0x91 bus=0, slot=4, func=0 class=02-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0004, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x34 (13000 ns), maxlat=0x0b (2750 ns) intpin=a, irq=255 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 4, range 32, base 00008800, size 8, port disabled map[14]: type 1, range 32, base ac000000, size 12, memory disabled found-> vendor=0x1274, dev=0x5880, revid=0x02 bus=0, slot=13, func=0 class=04-01-00, hdrtype=0x00, mfdev=0 cmdreg=0x0004, statreg=0x0410, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x0c (3000 ns), maxlat=0x80 (32000 ns) intpin=a, irq=255 powerspec 1 supports D0 D2 D3 current D0 map[10]: type 4, range 32, base 00008400, size 6, port disabled found-> vendor=0x105a, dev=0x3376, revid=0x02 bus=0, slot=14, func=0 class=01-04-00, hdrtype=0x00, mfdev=0 cmdreg=0x0017, statreg=0x0230, cachelnsz=8 (dwords) lattimer=0x60 (2880 ns), mingnt=0x04 (1000 ns), maxlat=0x12 (4500 ns) intpin=a, irq=11 powerspec 2 supports D0 D1 D3 current D0 map[10]: type 4, range 32, base 00008000, size 6, enabled map[14]: type 4, range 32, base 00007800, size 4, enabled map[18]: type 4, range 32, base 00007400, size 7, enabled map[1c]: type 1, range 32, base ab800000, size 12, enabled map[20]: type 1, range 32, base ab000000, size 17, enabled $PIR: 0:14 INTA routed to irq 11 agp0: mem 0xb0000000-0xb7ffffff at device 0.0 on pci0 agp0: Reserved 0x8000000 bytes for rid 0x10 type 3 at 0xb0000000 agp0: allocating GATT for aperture of size 128M pcib1: at device 1.0 on pci0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xd000-0xdfff pcib1: memory decode 0xaf000000-0xafffffff pcib1: prefetched decode 0xc0000000-0xfebfffff pci1: on pcib1 pci1: physical bus=1 found-> vendor=0x1002, dev=0x4151, revid=0x00 bus=1, slot=0, func=0 class=03-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x02b0, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x08 (2000 ns), maxlat=0x00 (0 ns) intpin=a, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 3, range 32, base e0000000, size 28, enabled pcib1: (null) requested memory range 0xe0000000-0xefffffff: good map[14]: type 4, range 32, base 0000d800, size 8, enabled pcib1: (null) requested I/O range 0xd800-0xd8ff: in range map[18]: type 1, range 32, base af800000, size 16, enabled pcib1: (null) requested memory range 0xaf800000-0xaf80ffff: good $PIR: 1:0 INTA routed to irq 11 found-> vendor=0x1002, dev=0x4171, revid=0x00 bus=1, slot=0, func=1 class=03-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0004, statreg=0x02b0, cachelnsz=8 (dwords) lattimer=0x40 (1920 ns), mingnt=0x08 (2000 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type 3, range 32, base c0000000, size 28, memory disabled pcib1: (null) requested memory range 0xc0000000-0xcfffffff: good map[14]: type 1, range 32, base af000000, size 16, enabled pcib1: (null) requested memory range 0xaf000000-0xaf00ffff: good pci1: at device 0.0 (no driver attached) pci1: at device 0.1 (no driver attached) isab0: at device 2.0 on pci0 isa0: on isab0 fwohci0: mem 0xae800000-0xae800fff at device 2.3 on pci0 fwohci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xae800000 $PIR: Found IRQ 9 for link 0x42 from 9 11 $PIR: ROUTE_INTERRUPT failed. fwohci0: Could not allocate irq device_attach: fwohci0 attach returned 6 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xa400-0xa40f irq 11 at device 2.5 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xa400 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=0x80 err=0x80 lsb=0x80 msb=0x80 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=03 ostat0=50 ostat1=00 ata1: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb ata1: stat1=0x00 err=0x01 lsb=0x14 msb=0xeb ata1: reset tp2 stat0=00 stat1=00 devices=0xc ata1: [MPSAFE] pci0: at device 2.7 (no driver attached) ohci0: mem 0xae000000-0xae000fff irq 9 at device 3.0 on pci0 ohci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xae000000 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: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered ohci1: mem 0xad800000-0xad800fff irq 9 at device 3.1 on pci0 ohci1: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xad800000 ohci1: [GIANT-LOCKED] usb1: OHCI version 1.0, legacy support usb1: SMM does not respond, resetting usb1: on ohci1 usb1: USB revision 1.0 uhub1: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered ohci2: mem 0xad000000-0xad000fff irq 9 at device 3.2 on pci0 ohci2: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xad000000 ohci2: [GIANT-LOCKED] usb2: OHCI version 1.0, legacy support usb2: SMM does not respond, resetting usb2: on ohci2 usb2: USB revision 1.0 uhub2: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub2: 2 ports with 2 removable, self powered ehci0: mem 0xac800000-0xac800fff at device 3.3 on pci0 ehci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xac800000 $PIR: Found IRQ 9 for link 0x63 from 9 11 $PIR: ROUTE_INTERRUPT failed. ehci0: Could not allocate irq device_attach: ehci0 attach returned 6 sis0: port 0x8800-0x88ff mem 0xac000000-0xac000fff at device 4.0 on pci0 sis0: Reserved 0x100 bytes for rid 0x10 type 4 at 0x8800 $PIR: Found IRQ 9 for link 0x44 from 9 11 $PIR: 0:4 INTA routed to irq 9 miibus0: on sis0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto sis0: bpf attached sis0: Ethernet address: 00:e0:18:b0:e3:5b sis0: [MPSAFE] pcm0: port 0x8400-0x843f at device 13.0 on pci0 pcm0: Reserved 0x40 bytes for rid 0x10 type 4 at 0x8400 pcm0: pcm0: Codec features 18 bit DAC, 18 bit ADC, 5 bit master volume, SigmaTel 3D Enhancement pcm0: Primary codec extended features surround DAC pcm0: ac97 codec dac ready count: 0 $PIR: 0:13 INTA routed to irq 9 pcm0: [MPSAFE] pcm0: sndbuf_setmap 3e8d5000, 1000; 0xc4bc1000 -> 3e8d5000 pcm0: sndbuf_setmap 3e8f7000, 1000; 0xc4bc3000 -> 3e8f7000 pcm0: atapci1: port 0x8000-0x803f,0x7800-0x780f,0x7400-0x747f mem 0xab800000-0xab800fff,0xab000000-0xab01ffff irq 11 at device 14.0 on pci0 pci0: child atapci1 requested type 4 for rid 0x20, but the BAR says it is an memio atapci1: [MPSAFE] atapci1: Reserved 0x20000 bytes for rid 0x20 type 3 at 0xab000000 atapci1: Reserved 0x1000 bytes for rid 0x1c type 3 at 0xab800000 atapci1: [MPSAFE] ata2: on atapci1 ata2: SATA connect status=00000000 ata2: [MPSAFE] ata3: on atapci1 ata3: SATA connect status=00000000 ata3: [MPSAFE] ata4: on atapci1 ata4: reset tp1 mask=03 ostat0=50 ostat1=00 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: [MPSAFE] ex_isa_identify() ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it pnp_identify: Trying Read_Port at 203 pnp_identify: Trying Read_Port at 243 pnp_identify: Trying Read_Port at 283 pnp_identify: Trying Read_Port at 2c3 pnp_identify: Trying Read_Port at 303 pnp_identify: Trying Read_Port at 343 pnp_identify: Trying Read_Port at 383 pnp_identify: Trying Read_Port at 3c3 PNP Identify complete unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff pnpbios: 16 devices, largest 114 bytes PNP0401: adding dma mask 0x8 PNP0401: adding irq mask 0x20 PNP0401: adding io range 0x278-0x27f, size=0x8, align=0 PNP0401: adding io range 0x678-0x67f, size=0x8, align=0 pnpbios: handle 1 device ID PNP0401 (0104d041) PNP0501: adding irq mask 0x10 PNP0501: adding io range 0x3e8-0x3ef, size=0x8, align=0 pnpbios: handle 2 device ID PNP0501 (0105d041) PNP0501: adding irq mask 0x10 PNP0501: adding io range 0x3f8-0x3ff, size=0x8, align=0 pnpbios: handle 3 device ID PNP0501 (0105d041) PNPb02f: adding io range 0x200-0x207, size=0x8, align=0 pnpbios: handle 6 device ID PNPb02f (2fb0d041) PNPb006: adding irq mask 0x400 PNPb006: adding io range 0x300-0x301, size=0x2, align=0 pnpbios: handle 7 device ID PNPb006 (06b0d041) PNP0f13: adding irq mask 0x1000 pnpbios: handle 8 device ID PNP0f13 (130fd041) PNP0c01: adding fixed memory32 range 0-0x9ffff, size=0xa0000 PNP0c01: adding fixed memory32 range 0x100000-0x3fffffff, size=0x3ff00000 PNP0c01: adding fixed memory32 range 0xe8000-0xeffff, size=0x8000 PNP0c01: adding fixed memory32 range 0xf0000-0xf3fff, size=0x4000 PNP0c01: adding fixed memory32 range 0xf4000-0xf7fff, size=0x4000 PNP0c01: adding fixed memory32 range 0xf8000-0xfffff, size=0x8000 PNP0c01: adding fixed memory32 range 0xdbc00-0xdbfff, size=0x400 PNP0c01: adding fixed memory32 range 0xfff80000-0xffffffff, size=0x80000 pnpbios: handle 9 device ID PNP0c01 (010cd041) PNP0100: adding irq mask 0x1 PNP0100: adding io range 0x40-0x43, size=0x4, align=0 pnpbios: handle 11 device ID PNP0100 (0001d041) PNP0b00: adding irq mask 0x100 PNP0b00: adding io range 0x70-0x71, size=0x2, align=0 pnpbios: handle 12 device ID PNP0b00 (000bd041) PNP0303: adding irq mask 0x2 PNP0303: adding io range 0x60-0x60, size=0x1, align=0 PNP0303: adding io range 0x64-0x64, size=0x1, align=0 pnpbios: handle 13 device ID PNP0303 (0303d041) PNP0c04: adding irq mask 0x2000 PNP0c04: adding io range 0xf0-0xf0, size=0x1, align=0 pnpbios: handle 14 device ID PNP0c04 (040cd041) PNP0200: adding dma mask 0x10 PNP0200: adding io range 0-0xf, size=0x10, align=0 PNP0200: adding io range 0x80-0x90, size=0x11, align=0 PNP0200: adding io range 0x94-0x9f, size=0xc, align=0 PNP0200: adding io range 0xc0-0xde, size=0x1f, align=0 pnpbios: handle 15 device ID PNP0200 (0002d041) PNP0800: adding io range 0x61-0x61, size=0x1, align=0x1 pnpbios: handle 16 device ID PNP0800 (0008d041) PNP0a03: adding io range 0xcf8-0xcff, size=0x8, align=0 pnpbios: handle 17 device ID PNP0a03 (030ad041) PNP0c02: adding io range 0xe600-0xe61f, size=0x20, align=0 PNP0c02: adding io range 0xe400-0xe47f, size=0x80, align=0 pnpbios: handle 18 device ID PNP0c02 (020cd041) sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices pmtimer0 on isa0 orm0: at iomem 0xc0000-0xccfff,0xd0000-0xd3fff on isa0 adv0: not probed (disabled) aha0: not probed (disabled) aic0: not probed (disabled) atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0xffffffff (1) atkbd: failed to reset the keyboard. kbd0 at atkbd0 kbd0: atkbd0, AT 84 (1), config:0x0, flags:0x3d0000 atkbd0: [GIANT-LOCKED] psm0: current command byte:0047 psm0: failed to reset the aux device. bt0: not probed (disabled) cs0: not probed (disabled) ed0: not probed (disabled) fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fe0: not probed (disabled) ie0: not probed (disabled) lnc0: not probed (disabled) ppc0: parallel port found at 0x278 ppc0: using extended I/O port range ppc0: ECP SPP ECP+EPP SPP ppc0: at port 0x278-0x27f irq 7 on isa0 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 plip0: bpf attached lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) sio0: irq maps: 0x221 0x231 0x221 0x221 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled sio1: irq maps: 0x221 0x221 0x221 0x221 sio1: probe failed test(s): 0 1 2 4 6 7 9 sio1 failed to probe at port 0x2f8-0x2ff irq 3 on isa0 sio2: not probed (disabled) sio3: not probed (disabled) sn0: not probed (disabled) vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 vt0: not probed (disabled) isa_probe_children: probing PnP devices unknown: can't assign resources (port) unknown: at port 0x278-0x27f on isa0 unknown: can't assign resources (irq) unknown: at port 0x3e8-0x3ef irq 4 on isa0 unknown: can't assign resources (port) unknown: at port 0x3f8-0x3ff on isa0 unknown: failed to probe at port 0x200-0x207 on isa0 unknown: failed to probe at port 0x300-0x301 irq 10 on isa0 psmcpnp0: at irq 12 on isa0 psm0: current command byte:0047 psm0: failed to reset the aux device. unknown: can't assign resources (memory) unknown: at iomem 0-0x9ffff,0x100000-0x3fffffff,0xe8000-0xeffff,0xf0000-0xf3fff,0xf4000-0xf7fff,0xf8000-0xfffff,0xdbc00-0xdbfff on isa0 unknown: can't assign resources (port) unknown: at port 0x60 on isa0 unknown: failed to probe at port 0x61 on isa0 ums0: Logitech USB-PS/2 Optical Mouse, rev 2.00/21.00, addr 2, iclass 3/1 ums0: 8 buttons and Z dir. ukbd0: Logitech Logitech USB Keyboard, rev 1.10/15.00, addr 2, iclass 3/1 kbd: new array size 4 kbd1 at ukbd0 kbd1: ukbd0, generic (0), config:0x0, flags:0x1d0000 uhid0: Logitech Logitech USB Keyboard, rev 1.10/15.00, addr 2, iclass 3/1 ugen0: vendor 0x067b product 0x2303, rev 1.10/2.02, addr 2 Device configuration finished. procfs registered Timecounter "TSC" frequency 2400098244 Hz quality 800 Timecounters tick every 1.000 msec lo0: bpf attached rr232x: no controller detected. ata0-slave: pio=PIO4 wdma=WDMA2 udma=UDMA100 cable=80 wire ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA100 cable=80 wire ad0: setting PIO4 on 963 chip ad0: 76319MB at ata0-master PIO4 ad0: 156301488 sectors [155061C/16H/63S] 16 sectors/interrupt 1 depth queue GEOM: new disk ad0 ad0: Silicon Integrated Systems check1 failed ad0: Adaptec check1 failed ad0: LSI (v3) check1 failed ad0: LSI (v2) check1 failed ad0: FreeBSD check1 failed ad1: setting PIO4 on 963 chip ad1: 76319MB at ata0-slave PIO4 ad1: 156301488 sectors [155061C/16H/63S] 16 sectors/interrupt 1 depth queue GEOM: new disk ad1 ad1: Silicon Integrated Systems check1 failed ad1: Adaptec check1 failed ad1: LSI (v3) check1 failed ad1: LSI (v2) check1 failed ad1: FreeBSD check1 failed ata1: reiniting channel .. ata1: reset tp1 mask=03 ostat0=00 ostat1=00 ata1: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb ata1: stat1=0x00 err=0x01 lsb=0x14 msb=0xeb ata1: reset tp2 stat0=00 stat1=00 devices=0xc ata1: reinit done .. ata1: reiniting channel .. ata1: reset tp1 mask=03 ostat0=00 ostat1=00 ata1: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb ata1: stat1=0x00 err=0x01 lsb=0x14 msb=0xeb ata1: reset tp2 stat0=00 stat1=00 devices=0xc ata1: reinit done .. ata1-master: pio=PIO4 wdma=WDMA2 udma=UDMA33 cable=80 wire acd0: setting PIO4 on 963 chip acd0: DVDR drive at ata1 as master acd0: read 8268KB/s (8268KB/s) write 8268KB/s (8268KB/s), 2048KB buffer, PIO4 acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, packet acd0: Writes: CDR, CDRW, DVDR, test write, burnproof acd0: Audio: play, 2 volume levels acd0: Mechanism: ejectable tray, unlocked acd0: Medium: no/blank disc ata4-master: pio=PIO4 wdma=WDMA2 udma=UDMA100 cable=80 wire ad8: setting PIO4 on PDC20376 chip ad8: 114473MB at ata4-master PIO4 ad8: 234441648 sectors [232581C/16H/63S] 16 sectors/interrupt 1 depth queue GEOM: new disk ad8 ata4: reiniting channel .. ata4: reset tp1 mask=03 ostat0=58 ostat1=00 ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. ad8: FAILURE - READ timed out LBA=234441585 ad8: Promise read metadata failed ata4: reiniting channel .. ata4: reset tp1 mask=03 ostat0=58 ostat1=00 ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. ad8: TIMEOUT - READ retrying (1 retry left) LBA=0 ata4: reiniting channel .. ata4: reset tp1 mask=03 ostat0=58 ostat1=00 ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. ad8: FAILURE - READ timed out LBA=234441631 ad8: Adaptec read metadata failed ata4: reiniting channel .. ata4: reset tp1 mask=03 ostat0=58 ostat1=00 ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. ad8: TIMEOUT - READ retrying (0 retries left) LBA=0 ata4: reiniting channel .. ata4: reset tp1 mask=03 ostat0=58 ostat1=00 ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. ad8: FAILURE - READ timed out LBA=234441644 ad8: LSI (v3) read metadata failed ata4: reiniting channel .. ata4: reset tp1 mask=03 ostat0=58 ostat1=00 ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. ad8: FAILURE - READ timed out LBA=0 ad8: LSI (v2) check1 failed ata4: reiniting channel .. ata4: reset tp1 mask=03 ostat0=58 ostat1=00 ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. ad8: FAILURE - READ timed out LBA=234441585 ad8: FreeBSD read metadata failed ATA PseudoRAID loaded ata4: reiniting channel .. ata4: reset tp1 mask=03 ostat0=58 ostat1=00 ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ad8: setting PIO4 on PDC20376 chip ata4: reinit done .. ad8: TIMEOUT - READ retrying (1 retry left) LBA=0 Trying to mount root from ufs:/dev/ad1s1a start_init: trying /sbin/init --------------030200080901070709050203-- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 20:06: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 06ABF16A474 for ; Sun, 18 Jun 2006 20:06:32 +0000 (UTC) (envelope-from rodperson@adelphia.net) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id A805F43D46 for ; Sun, 18 Jun 2006 20:06:30 +0000 (GMT) (envelope-from rodperson@adelphia.net) Received: from atomizer.opensourcebeef.net ([24.54.126.112]) by mta11.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060618200630.KMX17849.mta11.adelphia.net@atomizer.opensourcebeef.net> for ; Sun, 18 Jun 2006 16:06:30 -0400 From: Rod Person Organization: Open Source Beef To: freebsd-questions@freebsd.org Date: Sun, 18 Jun 2006 16:06:38 -0400 User-Agent: KMail/1.9.1 References: <200606180829.02104.rodperson@adelphia.net> <200606180850.06808.rodperson@adelphia.net> <86u06ifqyk.fsf@santinel.home.ua> In-Reply-To: <86u06ifqyk.fsf@santinel.home.ua> X-Face: $72, ]$Z1y\/nYF:T[d"3TSO@]'dM+)/B@hdK(?fAY@F4IPU, =?utf-8?q?wTha8oQ=5Cish=5D=26GCe=26C=5BvAG=0A=09g=3Bv=7E=60wM?=, 7H'7TW"!3zWJ_o]nb]i>oMCl=g1F$+$v+8i, xRtU(=?utf-8?q?vKPxX=5CoK7/9to!z08=7BJ=25A=0A=09p=23=60?= Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606181606.41802.rodperson@adelphia.net> Subject: Re: adjkerntz[]: sysctl(get_offset): No such file or directory X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 20:06:32 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sunday 18 June 2006 11:01 am, Andrey Slusar wrote: > Sun, 18 Jun 2006 08:50:03 -0400, Rod Person wrote: > > On Sunday 18 June 2006 8:28 am, Rod Person wrote: > > > Machine is an AMD Dual Opteron 246 running FreeBSD 6.1 Stable i386. > > > > Sorry, It's FreeBSD 7.0 Current i386 - it's a dual boot and I got > > confused :) > > Are you read src/UPDATING? Doing as UPDATING say gives me that error also. - -- Rod Person http://www.opensourcebeef.net http://blog.opensourcebeef.net -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFElbJRbMknMq8iwDERAtZEAJ9Qn8JgPwhYXHfYRfNNSkEAN33cZQCePife COwxPPfOhOvAU61PdJ+qjnw= =hi2E -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 20:10: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 E75BB16A4A5 for ; Sun, 18 Jun 2006 20:10:23 +0000 (UTC) (envelope-from nthwaver@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 B2E4943D46 for ; Sun, 18 Jun 2006 20:10:22 +0000 (GMT) (envelope-from nthwaver@gmail.com) Received: by py-out-1112.google.com with SMTP id x66so1140325pye for ; Sun, 18 Jun 2006 13:10:21 -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=mOTu8jK5DvTzm1uqIYIP5DZuwYO5cTC+YxghwQVqgaIL6qD+URHdn5w6AFeZW3k59SxXyobR/UmhXEALxKIUIzZ0GLs718PA9mJtC/cpXC0SD/cd5jLs1fEFyVRp8DDshl1BR0ZD/jmCvM2zk5JdgEtkBXvaiAWGAdZYzoLBYZk= Received: by 10.35.135.12 with SMTP id m12mr7411792pyn; Sun, 18 Jun 2006 13:10:21 -0700 (PDT) Received: by 10.35.83.13 with HTTP; Sun, 18 Jun 2006 13:10:21 -0700 (PDT) Message-ID: <17b33a80606181310j7bfdd818xcee9e5cf06295a6@mail.gmail.com> Date: Sun, 18 Jun 2006 16:10:21 -0400 From: nthwaver@gmail.com To: "FreeBSD Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: "don't know how to make" libsmutil.a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 20:10:24 -0000 I've been trying to follow these directions for setting up a secure mailserver: http://www.puresimplicity.net/~hemi/freebsd/sendmail.html Step 4 under "Sendmail setup" has given me continuous problems, mostly ending with this error: make: don't know how to make /usr/src/usr.sbin/sendmail/../../lib/libsmutil/libsmutil.a. Stop As suggested in this thread, I tried first updating the source tree with cvsup and typed "make buildworld" in /usr/src: http://lists.freebsd.org/pipermail/freebsd-questions/2005-May/086150.html However, after running for an hour or two, "make buildworld" exited with an error code, with the same message! make: don't know how to make /usr/src/usr.sbin/sendmail/../../lib/libsmutil/libsmutil.a. Stop I am using FreeBSD 6.0-release, and updated with the RELENG_6_0. This system has been installed since around March and before today I've only updated the ports tree. This was my first attempt to update the source. Have I missed any steps that have caused these errors? Thanks. - Jordan From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 20:27: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 AB3BC16A47B for ; Sun, 18 Jun 2006 20:27:27 +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 0FB4243D48 for ; Sun, 18 Jun 2006 20:27:22 +0000 (GMT) (envelope-from derek@computinginnovations.com) Received: from p17.computinginnovations.com (dhcp-10-20-30-100.computinginnovations.com [10.20.30.100]) (authenticated bits=0) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k5IKQamo051497; Sun, 18 Jun 2006 15:26:38 -0500 (CDT) Message-Id: <6.0.0.22.2.20060618152516.025306d0@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Sun, 18 Jun 2006 15:26:25 -0500 To: nthwaver@gmail.com, "FreeBSD Questions" From: Derek Ragona In-Reply-To: <17b33a80606181310j7bfdd818xcee9e5cf06295a6@mail.gmail.com> References: <17b33a80606181310j7bfdd818xcee9e5cf06295a6@mail.gmail.com> 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: "don't know how to make" libsmutil.a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 20:27:27 -0000 You may need to cvsup again, as you may have done it before the makefile for sendmail was properly updated. Or, you can download and build sendmail from source. -Derek At 03:10 PM 6/18/2006, nthwaver@gmail.com wrote: >I've been trying to follow these directions for setting up a secure >mailserver: http://www.puresimplicity.net/~hemi/freebsd/sendmail.html > >Step 4 under "Sendmail setup" has given me continuous problems, mostly >ending with this error: > > make: don't know how to make >/usr/src/usr.sbin/sendmail/../../lib/libsmutil/libsmutil.a. Stop > >As suggested in this thread, I tried first updating the source tree >with cvsup and typed "make buildworld" in /usr/src: >http://lists.freebsd.org/pipermail/freebsd-questions/2005-May/086150.html > >However, after running for an hour or two, "make buildworld" exited >with an error code, with the same message! > > make: don't know how to make >/usr/src/usr.sbin/sendmail/../../lib/libsmutil/libsmutil.a. Stop > >I am using FreeBSD 6.0-release, and updated with the RELENG_6_0. This >system has been installed since around March and before today I've >only updated the ports tree. This was my first attempt to update the >source. Have I missed any steps that have caused these errors? >Thanks. > >- Jordan >_______________________________________________ >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 Sun Jun 18 20:38: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 0136716A474 for ; Sun, 18 Jun 2006 20:38:55 +0000 (UTC) (envelope-from dan.bikle@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 528B643D45 for ; Sun, 18 Jun 2006 20:38:54 +0000 (GMT) (envelope-from dan.bikle@gmail.com) Received: by nz-out-0102.google.com with SMTP id m7so456875nzf for ; Sun, 18 Jun 2006 13:38: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:in-reply-to:mime-version:content-type:references; b=l80M+iqwue0rXxRVLtK0NCAjOedV6y3+p43ly2SQYP7z7btOuZyDZFfmnaoicBfeyImZZDDDXBHGze4ZZcsaY7znBDaQ9k6IYhjQJyCvdn3vd9OYoAWfbAu3GTrkZLp22T1J1Keh6FV4Xtz+KM2hDNf3xjA58NG43Yqp0VtUkaM= Received: by 10.36.42.5 with SMTP id p5mr939407nzp; Sun, 18 Jun 2006 13:38:53 -0700 (PDT) Received: by 10.37.15.77 with HTTP; Sun, 18 Jun 2006 13:38:53 -0700 (PDT) Message-ID: <74252ed10606181338s2fef875fqd367631c5aebb64@mail.gmail.com> Date: Sun, 18 Jun 2006 13:38:53 -0700 From: "Dan Bikle" To: freebsd-questions@freebsd.org In-Reply-To: <74252ed10606171439l13b6d24ek7e4689f7952eb895@mail.gmail.com> MIME-Version: 1.0 References: <74252ed10606171050w6fdd78c8nd7fceedf4c5c2e6b@mail.gmail.com> <74252ed10606171439l13b6d24ek7e4689f7952eb895@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: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 20:38:55 -0000 Well folks, I did a bit more looking around. I found this: http://www.walmart.com/catalog/product.do?product_id=3762910 specs: CPU: AMD Sempron 3000+ It is so cheap I'm tempted to buy it and take the risk that I could install a recent version of FreeBSD on it. Since it comes with Linux installed on it, I'm tempted to think that the interface cards for the Video and the keyboard, and the mouse are a common variety. I have a question for any of you who have done a lot of FreeBSD installs on a variety of hardware... Would you gamble $368 that you could get FreeBSD installed on this thing? -Dan On 6/17/06, Dan Bikle wrote: > > Thanks! > > I worked with the links you sent me. > For desktop systems I narrowed the list to these offerings: > > http://www.asaservers.com/config.asp?config_id=ASA%5FPC5 > > http://www.storeanywhere.com/pages/html/products/st.product_info.php?cPath=53&products_id=143 > http://eracks.com/products/Desktops > > -Dan > > > > On 6/17/06, Nikolas Britton < nikolas.britton@gmail.com> wrote: > > > > On 6/17/06, Dan Bikle < dan.bikle@gmail.com> wrote: > > > Hi, > > > > > > I need a freebsd 5.3 desktop server. > > > > > > Do you have any recommendations for some vendors? > > > > > > I could go buy some commodity hardware and do the install myself > > > but I seem to have bad luck with hands-on type tasks. > > > > > > I'm not picky about CPU; Intel or AMD is fine. > > > Anything over 1.5 GHZ should do it. > > > > > > RAM? > > > I guess 1GB would be good enough. > > > > > > Disk? > > > A couple of 80GB drives would work. > > > > > > I live in San Jose, CA; A local vendor would be great. > > > > > > > Your in luck, these guys are in San Jose: > > http://www.ironsystems.com/index.asp > > > > Here's the full list of venders: > > http://www.freebsd.org/commercial/hardware.html > > > > > > -- > > BSD Podcasts @: > > http://bsdtalk.blogspot.com/ > > http://freebsdforall.blogspot.com/ > > > > From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 20:55: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 A8EF516A484 for ; Sun, 18 Jun 2006 20:55:20 +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 8819D43D70 for ; Sun, 18 Jun 2006 20:55:16 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so590180uge for ; Sun, 18 Jun 2006 13:55:15 -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=oyDnhHqoAq51byO7lQnZ2XhXPHHJHC/bWv6f2HFXw87NPtLXJy1UI2mgitWNJyR5Wui/O38rrPTIvaFsB7Y3YK77AJhvRbALcuKxSp+ezr9oFHj0NphSwhI8lZW365v/8TP0sFSCKuIKJOzjRl0NHYI6GnWlBk7uqmurOxNKzJQ= Received: by 10.66.252.4 with SMTP id z4mr4827348ugh; Sun, 18 Jun 2006 13:55:15 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Sun, 18 Jun 2006 13:55:15 -0700 (PDT) Message-ID: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> Date: Sun, 18 Jun 2006 16:55:15 -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: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 20:55:20 -0000 Basically, I have an application that doesn't want to run in FreeBSD, though it may still run given the compatability layer. I was wondering if there was some way to make the OS respond when it ran the application, that it was linux and not BSD. i.e. ======================================== $ ./some_app Sorry, we only deal with Linux people, go away! $ sysctl.pretend.register /home/me/some_app "generic-i386-linux" $ ./some_app Hello world! ======================================== or ======================================== $ ./some_app Sorry, we only deal with Linux people, go away! $ pretend_os "generic-i386-linux" some_app Hello world! ======================================== Thanks, -Jim Stapleton From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 20:55: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 1A58016A47D for ; Sun, 18 Jun 2006 20:55:39 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8064743D62 for ; Sun, 18 Jun 2006 20:55:38 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wr-out-0506.google.com with SMTP id i20so976799wra for ; Sun, 18 Jun 2006 13:55:37 -0700 (PDT) Received: by 10.54.101.13 with SMTP id y13mr5164133wrb; Sun, 18 Jun 2006 13:55:37 -0700 (PDT) Received: from ?192.168.0.3? ( [216.45.217.148]) by mx.gmail.com with ESMTP id 10sm3627068wrl.2006.06.18.13.55.37; Sun, 18 Jun 2006 13:55:37 -0700 (PDT) Date: Sun, 18 Jun 2006 16:55:37 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom 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: <20060618165043.3A8C.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] Subject: SIIG Card Support 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, 18 Jun 2006 20:55:39 -0000 Could anyone tell me if the SIIG Ultra ATA Ultra 100 Controller Card, mfg.# SC-PE4A12 is supported in FBSD 6.1 or not? According to the manufacturer, it only supports Windows; however, that is what most manufacturers claim anyway. Thanks! -- Gerard Seibert gerard@seibercom.net Conservative, n.: One who admires radicals centuries after they are dead. Leo C. Rosten From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 20:57: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 EA2B216A474 for ; Sun, 18 Jun 2006 20:57:05 +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 939BE43D49 for ; Sun, 18 Jun 2006 20:57:05 +0000 (GMT) (envelope-from dwc@stilyagin.com) Received: from jeeves.stilyagin.local (70-58-113-174.phnx.qwest.net [70.58.113.174]) by puffy.asicommunications.com (8.13.4/8.13.3) with ESMTP id k5IKv33Q001728 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sun, 18 Jun 2006 13:57:04 -0700 (MST) Received: (from dwc@localhost) by jeeves.stilyagin.local (8.13.4/8.13.4/Submit) id k5IKuuJB008967; Sun, 18 Jun 2006 13:56:56 -0700 (MST) Date: Sun, 18 Jun 2006 13:56:56 -0700 From: Darrin Chandler To: "J.D. Bronson" Message-ID: <20060618205656.GA4974@jeeves.stilyagin.local> References: <7.0.1.0.2.20060616135513.00e743b0@sixcompanies.com> <20060616191028.GB9804@jeeves.stilyagin.local> <7.0.1.0.2.20060616141226.00e743b0@sixcompanies.com> <20060616192734.GC9804@jeeves.stilyagin.local> <7.0.1.0.2.20060616142931.00e743b0@sixcompanies.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7.0.1.0.2.20060616142931.00e743b0@sixcompanies.com> User-Agent: Mutt/1.4.2i Cc: freebsd-questions@freebsd.org Subject: Re: pf + ftp throughput X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 20:57:06 -0000 On Fri, Jun 16, 2006 at 02:31:07PM -0500, J.D. Bronson wrote: > for a trial, I am going to fire up a drive loaded with OpenBSD 3.9 > and PF and see if there is anything better/worse with the same pf.conf > file. I've been playing at home, trying to reproduce this behavior (sparc64, OpenBSD). I haven't done so yet, but I don't have the best test cases. I tried with a 12M file across the 'net, and what looked like the same issue went away, so it was just fluctuations on the net. I tried the same file from the firewall itself to a client, and times are virtually identical. What I really need is two local clients going through the firewall. If I get that going I'll let you know what I find. FWIW, I Googled pretty heavily for this and didn't turn up much. I found one mailing list message from years ago describing *exactly* the same problem. Unfortunately I didn't see any followups or further problem reports. Are you also doing nat/rdr on this box? Have you run tcpdump on the pflog interface to make sure you're matching the rules you think? I'd like to track this down, so please feel free to send me any info you think pertains to this. -- 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 Jun 18 21:13: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 499DF16A474 for ; Sun, 18 Jun 2006 21:13:07 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out3.blueyonder.co.uk (smtp-out3.blueyonder.co.uk [195.188.213.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id D83AE43D45 for ; Sun, 18 Jun 2006 21:13:06 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.140] (helo=anti-virus02-07) by smtp-out3.blueyonder.co.uk with smtp (Exim 4.52) id 1Fs4Zt-0005gb-3f; Sun, 18 Jun 2006 22:13:05 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out4.blueyonder.co.uk with esmtp (Exim 4.52) id 1Fs4Zs-0007aX-Ey; Sun, 18 Jun 2006 22:13:04 +0100 Message-ID: <4495C1DF.9040506@dial.pipex.com> Date: Sun, 18 Jun 2006 22:13:03 +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: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> In-Reply-To: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 21:13:07 -0000 Jim Stapleton wrote: > Basically, I have an application that doesn't want to run in FreeBSD, > though it may still run given the compatability layer. I was wondering > if there was some way to make the OS respond when it ran the > application, that it was linux and not BSD. > i.e. > > > ======================================== > $ ./some_app > Sorry, we only deal with Linux people, go away! > > $ sysctl.pretend.register /home/me/some_app "generic-i386-linux" > $ ./some_app > Hello world! > ======================================== That really rather depends on *how* the app is asking. If you can tell us that, we can almost certainly tell you how to fool it. Of course, if you have the source code, it should be easy as you can just comment out the test and recompile. Mind you, if the app is as short-sighted and bloody-minded as its developers, maybe you should just look for an alternative. --Alex From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 21:28: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 5446916A47E for ; Sun, 18 Jun 2006 21:28:30 +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 61AF843D55 for ; Sun, 18 Jun 2006 21:28:27 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so597339uge for ; Sun, 18 Jun 2006 14:28: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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=e6HLcPQhjLe8a8x504b5fcltmJFYneCa4yf1BXoGhutebej7rUjhghNFsDw7kn+NizlyVQvWDrZroQ4NLy6XWIHkTGohWsNmAf4fXacxEFpKUEN6wzM4AR+uGvYwvuDFzKKHSe+QfmhFxCkT3rJCuR3d4pIGkKj3nkT6S1FWNEA= Received: by 10.67.19.13 with SMTP id w13mr4856321ugi; Sun, 18 Jun 2006 14:28:26 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Sun, 18 Jun 2006 14:28:26 -0700 (PDT) Message-ID: <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> Date: Sun, 18 Jun 2006 17:28:26 -0400 From: "Jim Stapleton" To: "Alex Zbyslaw" , freebsd-questions@freebsd.org In-Reply-To: <4495C1DF.9040506@dial.pipex.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> Cc: Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 21:28:30 -0000 I don't know how to find out, except that the app is the Crossover Office demo installer. I'd like to try to find a way to trick it into running in the linux compatability mode of FreeBSD if I can. On 6/18/06, Alex Zbyslaw wrote: > Jim Stapleton wrote: > > > Basically, I have an application that doesn't want to run in FreeBSD, > > though it may still run given the compatability layer. I was wondering > > if there was some way to make the OS respond when it ran the > > application, that it was linux and not BSD. > > i.e. > > > > > > ======================================== > > $ ./some_app > > Sorry, we only deal with Linux people, go away! > > > > $ sysctl.pretend.register /home/me/some_app "generic-i386-linux" > > $ ./some_app > > Hello world! > > ======================================== > > That really rather depends on *how* the app is asking. If you can tell > us that, we can almost certainly tell you how to fool it. > > Of course, if you have the source code, it should be easy as you can > just comment out the test and recompile. > > Mind you, if the app is as short-sighted and bloody-minded as its > developers, maybe you should just look for an alternative. > > --Alex > > > From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 21:31: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 6F54216A53E for ; Sun, 18 Jun 2006 21:31:40 +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 771AC43D78 for ; Sun, 18 Jun 2006 21:31:37 +0000 (GMT) (envelope-from dwc@stilyagin.com) Received: from jeeves.stilyagin.local (70-58-113-174.phnx.qwest.net [70.58.113.174]) by puffy.asicommunications.com (8.13.4/8.13.3) with ESMTP id k5ILVa8C017866 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Sun, 18 Jun 2006 14:31:36 -0700 (MST) Received: (from dwc@localhost) by jeeves.stilyagin.local (8.13.4/8.13.4/Submit) id k5ILVU6S026052 for freebsd-questions@freebsd.org; Sun, 18 Jun 2006 14:31:30 -0700 (MST) Date: Sun, 18 Jun 2006 14:31:30 -0700 From: Darrin Chandler To: freebsd-questions@freebsd.org Message-ID: <20060618213130.GB4974@jeeves.stilyagin.local> References: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4495C1DF.9040506@dial.pipex.com> User-Agent: Mutt/1.4.2i Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 21:31:40 -0000 On Sun, Jun 18, 2006 at 10:13:03PM +0100, Alex Zbyslaw wrote: > That really rather depends on *how* the app is asking. If you can tell > us that, we can almost certainly tell you how to fool it. > > Of course, if you have the source code, it should be easy as you can > just comment out the test and recompile. > > Mind you, if the app is as short-sighted and bloody-minded as its > developers, maybe you should just look for an alternative. I agree with the above. In addition, consider respecting the wishes of the developer(s) and not using it. If they have any sort of "free" license then you can always release a portable fork. -- 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 Jun 18 21:45: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 2C6AD16A479 for ; Sun, 18 Jun 2006 21:45:31 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pfepc.post.tele.dk (pfepc.post.tele.dk [195.41.46.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4239B43D48 for ; Sun, 18 Jun 2006 21:45:30 +0000 (GMT) (envelope-from alive@dienub.org) Received: from m00h.dienub.org (dienub.org [87.49.144.133]) by pfepc.post.tele.dk (Postfix) with ESMTP id E14FB8A0034 for ; Sun, 18 Jun 2006 23:45:27 +0200 (CEST) Received: from [192.168.0.2] (unknown [192.168.0.2]) by m00h.dienub.org (Postfix) with ESMTP id AD4C01CC0A for ; Sun, 18 Jun 2006 23:45:27 +0200 (CEST) Message-ID: <4495E596.3090204@dienub.org> Date: Sun, 18 Jun 2006 23:45:26 +0000 From: "Daniel A. A." User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 CC: freebsd-questions@freebsd.org References: <200606181653.11144.alive@dienub.org> <4495C9E1.5030806@dienub.org> In-Reply-To: <4495C9E1.5030806@dienub.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Enabling acpi support renders system unbootable (was: kernel: ad8: FAILURE - READ timed out LBA=234441585) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 21:45:31 -0000 Daniel A. A. wrote: > Daniel A. A. wrote: >> Hi, >> Whenever I try to boot my desktop workstation with FreeBSD, it >> suddenly just hangs there forever. When I boot into safe mode, >> however, I get this in the dmesg: >> Jun 18 16:01:46 b00b kernel: ad8: 114473MB >> at ata4-master PIO4 >> Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441585 >> Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (1 retry >> left) LBA=0 >> Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441631 >> Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (0 retries >> left) LBA=0 >> Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441644 >> Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=0 >> Jun 18 16:01:46 b00b kernel: ad8: FAILURE - READ timed out LBA=234441585 >> Jun 18 16:01:46 b00b kernel: ad8: TIMEOUT - READ retrying (1 retry >> left) LBA=0 >> >> The hard drive is connected to an onboard Promise FastTrak (atapci1: >> port >> 0x8000-0x803f,0x7800-0x780f,0x7400-0x747f mem >> 0xab800000-0xab800fff,0xab000000-0xab01ffff irq 11 at device 14.0 on >> pci0) controller on my Asus p4s8x motherboard. The drive itself is >> connected to the optional PATA connector, which works wonderfully in >> Windows. >> >> I've currently managed to install Xorg and KDE on the box, all >> entirely in Safe Mode, but the performance is really bad, or not as >> good as it should be on a PC with a Pentium IV 2.4GHz and 1GB PC3200 >> RAM. >> Googling yields irrelevant results to my case, and search results for >> "freebsd p4s8x" (no quotes) indicate that FreeBSD should be working >> OK with my motherboard and all of its native components. >> >> So, does anybody know how to >> a) Fix this issue (or, if not) >> b) How to prevent a specific device (atapci1 or ad8) from being >> loaded during boot time? Again, googling yields no results, but I >> might be querying the wrong strings. >> >> Attached is my dmesg.boot >> >> Thanks for any help. >> >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> 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" > Well, go figure. > First, I disabled the SATA controller which I thought was the problem, > in my BIOS. This didn't give any more different results than booting > normally, except that the ad8 device wasn't created. The system just > stopped loading after creating the acd0 device. So, that must not have > been the problem, I thought. Then I disconnected the power and ATA > cable from the "problematic" hard drive, which yielded the same results. > Then, I disconnected my DVD drive, which didn't change the situation > at all, except not creating the acd0 device at boot (And just hanging > after initiating ad1, which is where I boot FreeBSD from) > So I tried booting in verbose mode, which I hoped would give some > error, or at least a clue. It didn't. At all. > Then, my logic screamed at me, and I was smiling yet again. What if > the verbose mode would give me a clue as to how the system manages to > boot in safe mode? What if it tells me something like "this and that > was skipped, proceeding safe boot"? After having figured out how to > boot in safe AND verbose mode (By editing /boot/beastie.4th a little. > Maybe booting in safe mode should be a 'boot' flag?), I happily > rebooted the box again. Nothing broke from my edit, and it booted. I > watched the screen and the scrolling text in anticipation, like a > little boy on Christmas who is hoping that Santa will bring him the > bike he's always wanted. > As the kernel, very verbosely, complained about not being able to read > stuff on the ad8 device, this kids eyes lighted up. He approached the > Christmas tree, thinking that he had spotted the bike. And then, BAM. > Everything with this boys name on the label under the tree was a soft > package. Five packages from Santa; all soft. The kid lost hope, yet > again, as his highly anticipated informative error messages were > nowhere to find. > > I've attached the verbose dmesg.boot, in the hopes that someone will > bring me a hard package with my name on it - before next Christmas. > ------------------------------------------------------------------------ > > Waiting (max 60 seconds) for system process `vnlru' to stop...done > Waiting (max 60 seconds) for system process `bufdaemon' to stop...done > Waiting (max 60 seconds) for system process `syncer' to stop... > Syncing disks, vnodes remaining...8 8 4 3 3 0 0 done > All buffers synced. > 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-RELEASE #0: Sun May 7 04:32:43 UTC 2006 > root@opus.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC > Preloaded elf kernel "/boot/kernel/kernel" at 0xc0abe000. > Preloaded elf module "/boot/kernel/snd_es137x.ko" at 0xc0abe188. > Preloaded elf module "/boot/kernel/sound.ko" at 0xc0abe238. > Calibrating clock(s) ... i8254 clock: 1193262 Hz > CLK_USE_I8254_CALIBRATION not specified - using default frequency > Timecounter "i8254" frequency 1193182 Hz quality 0 > Calibrating TSC clock ... TSC clock: 2400098244 Hz > CPU: Intel(R) Pentium(R) 4 CPU 2.40GHz (2400.10-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 > Features=0x3febfbff > real memory = 1073725440 (1023 MB) > Physical memory chunk(s): > 0x0000000000001000 - 0x000000000009bfff, 634880 bytes (155 pages) > 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) > 0x0000000000c25000 - 0x000000003edc3fff, 1041887232 bytes (254367 pages) > avail memory = 1041780736 (993 MB) > bios32: Found BIOS32 Service Directory header at 0xc00f1800 > bios32: Entry = 0xf1180 (c00f1180) Rev = 0 Len = 1 > pcibios: PCI BIOS entry at 0xf0000+0x11b0 > pnpbios: Found PnP BIOS data at 0xc00f9680 > pnpbios: Entry = f0000:96b0 Rev = 1.0 > pnpbios: OEM ID cd041 > Other BIOS signatures found: > wlan: <802.11 Link Layer> > null: > random: > nfslock: pseudo-device > io: > mem: > Pentium Pro MTRR support enabled > rr232x: RocketRAID 232x controller driver v1.02 (May 7 2006 04:32:33) > npx0: INT 16 interface > cpu0 on motherboard > pci_open(1): mode 1 addr port (0x0cf8) is 0x80000070 > pci_open(1a): mode1res=0x80000000 (0x80000000) > pci_cfgcheck: device 0 [class=060000] [hdr=80] is there (id=06481039) > pcibios: BIOS version 2.10 > Found $PIR table, 11 entries at 0xc00f1720 > PCI-Only Interrupts: none > Location Bus Device Pin Link IRQs > slot 7 1 0 A 0x41 3 4 5 7 9 10 11 12 > slot 7 1 0 B 0x42 3 4 5 7 9 10 11 12 > embedded 0 2 A 0x41 3 4 5 7 9 10 11 12 > embedded 0 2 B 0x42 3 4 5 7 9 10 11 12 > embedded 0 2 C 0x43 3 4 5 7 9 10 11 12 > embedded 0 2 D 0x44 3 4 5 7 9 10 11 12 > embedded 0 3 A 0x60 3 4 5 7 9 10 11 12 > embedded 0 3 B 0x61 3 4 5 7 9 10 11 12 > embedded 0 3 C 0x62 3 4 5 7 9 10 11 12 > embedded 0 3 D 0x63 3 4 5 7 9 10 11 12 > slot 1 0 8 A 0x44 3 4 5 7 9 10 11 12 > slot 1 0 8 B 0x41 3 4 5 7 9 10 11 12 > slot 1 0 8 C 0x42 3 4 5 7 9 10 11 12 > slot 1 0 8 D 0x43 3 4 5 7 9 10 11 12 > slot 2 0 9 A 0x42 3 4 5 7 9 10 11 12 > slot 2 0 9 B 0x43 3 4 5 7 9 10 11 12 > slot 2 0 9 C 0x44 3 4 5 7 9 10 11 12 > slot 2 0 9 D 0x41 3 4 5 7 9 10 11 12 > slot 3 0 10 A 0x43 3 4 5 7 9 10 11 12 > slot 3 0 10 B 0x44 3 4 5 7 9 10 11 12 > slot 3 0 10 C 0x41 3 4 5 7 9 10 11 12 > slot 3 0 10 D 0x42 3 4 5 7 9 10 11 12 > slot 4 0 11 A 0x44 3 4 5 7 9 10 11 12 > slot 4 0 11 B 0x41 3 4 5 7 9 10 11 12 > slot 4 0 11 C 0x42 3 4 5 7 9 10 11 12 > slot 4 0 11 D 0x43 3 4 5 7 9 10 11 12 > slot 5 0 12 A 0x41 3 4 5 7 9 10 11 12 > slot 5 0 12 B 0x42 3 4 5 7 9 10 11 12 > slot 5 0 12 C 0x43 3 4 5 7 9 10 11 12 > slot 5 0 12 D 0x44 3 4 5 7 9 10 11 12 > slot 6 0 13 A 0x42 3 4 5 7 9 10 11 12 > slot 6 0 13 B 0x43 3 4 5 7 9 10 11 12 > slot 6 0 13 C 0x44 3 4 5 7 9 10 11 12 > slot 6 0 13 D 0x41 3 4 5 7 9 10 11 12 > embedded 0 4 A 0x44 3 4 5 7 9 10 11 12 > embedded 0 14 A 0x41 3 4 5 7 9 10 11 12 > embedded 0 14 B 0x42 3 4 5 7 9 10 11 12 > embedded 0 14 C 0x43 3 4 5 7 9 10 11 12 > embedded 0 14 D 0x44 3 4 5 7 9 10 11 12 > pcib0: pcibus 0 on motherboard > pir0: on motherboard > $PIR: Links after initial probe: > Link IRQ Rtd Ref IRQs > 0x41 255 N 9 3 4 5 7 9 10 11 12 > 0x42 255 N 9 3 4 5 7 9 10 11 12 > 0x43 255 N 8 3 4 5 7 9 10 11 12 > 0x44 255 N 9 3 4 5 7 9 10 11 12 > 0x60 255 N 1 3 4 5 7 9 10 11 12 > 0x61 255 N 1 3 4 5 7 9 10 11 12 > 0x62 255 N 1 3 4 5 7 9 10 11 12 > 0x63 255 N 1 3 4 5 7 9 10 11 12 > $PIR: Found matching pin for 1.0.INTA at func 0: 11 > $PIR: Found matching pin for 0.2.INTA at func 5: 11 > $PIR: Found matching pin for 0.2.INTB at func 3: 255 > $PIR: Found matching pin for 0.2.INTC at func 7: 255 > $PIR: Found matching pin for 0.3.INTA at func 0: 9 > $PIR: Found matching pin for 0.3.INTB at func 1: 9 > $PIR: Found matching pin for 0.3.INTC at func 2: 9 > $PIR: Found matching pin for 0.3.INTD at func 3: 255 > $PIR: Found matching pin for 0.13.INTA at func 0: 255 > $PIR: Found matching pin for 0.4.INTA at func 0: 255 > $PIR: Found matching pin for 0.14.INTA at func 0: 11 > $PIR: Links after initial IRQ discovery: > Link IRQ Rtd Ref IRQs > 0x41 11 Y 9 3 4 5 7 9 10 11 12 > 0x42 255 N 9 3 4 5 7 9 10 11 12 > 0x43 255 N 8 3 4 5 7 9 10 11 12 > 0x44 255 N 9 3 4 5 7 9 10 11 12 > 0x60 9 Y 1 3 4 5 7 9 10 11 12 > 0x61 9 Y 1 3 4 5 7 9 10 11 12 > 0x62 9 Y 1 3 4 5 7 9 10 11 12 > 0x63 255 N 1 3 4 5 7 9 10 11 12 > $PIR: IRQs used by BIOS: 9 11 > $PIR: Interrupt Weights: > [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ] > [ 0 0 0 0 0 0 0 0 0 3 0 9 0 0 0 0 ] > pci0: on pcib0 > pci0: physical bus=0 > found-> vendor=0x1039, dev=0x0648, revid=0x02 > bus=0, slot=0, func=0 > class=06-00-00, hdrtype=0x00, mfdev=1 > cmdreg=0x0007, statreg=0x2210, cachelnsz=0 (dwords) > lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) > map[10]: type 1, range 32, base b0000000, size 27, enabled > found-> vendor=0x1039, dev=0x0001, revid=0x00 > bus=0, slot=1, func=0 > class=06-04-00, hdrtype=0x01, mfdev=0 > cmdreg=0x0007, statreg=0x0000, cachelnsz=0 (dwords) > lattimer=0x00 (0 ns), mingnt=0x08 (2000 ns), maxlat=0x00 (0 ns) > found-> vendor=0x1039, dev=0x0963, revid=0x04 > bus=0, slot=2, func=0 > class=06-01-00, hdrtype=0x00, mfdev=1 > cmdreg=0x000f, statreg=0x0200, cachelnsz=0 (dwords) > lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) > found-> vendor=0x1039, dev=0x7007, revid=0x00 > bus=0, slot=2, func=3 > class=0c-00-10, hdrtype=0x00, mfdev=0 > cmdreg=0x0004, statreg=0x0210, cachelnsz=0 (dwords) > lattimer=0x40 (1920 ns), mingnt=0x04 (1000 ns), maxlat=0x0c (3000 ns) > intpin=b, irq=255 > powerspec 2 supports D0 D1 D2 D3 current D0 > map[10]: type 1, range 32, base ae800000, size 12, memory disabled > found-> vendor=0x1039, dev=0x5513, revid=0x00 > bus=0, slot=2, func=5 > class=01-01-8a, hdrtype=0x00, mfdev=0 > cmdreg=0x0005, statreg=0x0200, cachelnsz=0 (dwords) > lattimer=0x80 (3840 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) > intpin=a, irq=11 > map[20]: type 4, range 32, base 0000a400, size 4, enabled > $PIR: 0:2 INTA routed to irq 11 > found-> vendor=0x1039, dev=0x7012, revid=0xa0 > bus=0, slot=2, func=7 > class=04-01-00, hdrtype=0x00, mfdev=0 > cmdreg=0x0004, statreg=0x0290, cachelnsz=0 (dwords) > lattimer=0x20 (960 ns), mingnt=0x34 (13000 ns), maxlat=0x0b (2750 ns) > intpin=c, irq=255 > powerspec 2 supports D0 D1 D2 D3 current D0 > map[10]: type 4, range 32, base 00009400, size 8, port disabled > map[14]: type 4, range 32, base 00009000, size 7, enabled > found-> vendor=0x1039, dev=0x7001, revid=0x0f > bus=0, slot=3, func=0 > class=0c-03-10, hdrtype=0x00, mfdev=1 > cmdreg=0x0017, statreg=0x0280, cachelnsz=8 (dwords) > lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) > intpin=a, irq=9 > map[10]: type 1, range 32, base ae000000, size 12, enabled > $PIR: 0:3 INTA routed to irq 9 > found-> vendor=0x1039, dev=0x7001, revid=0x0f > bus=0, slot=3, func=1 > class=0c-03-10, hdrtype=0x00, mfdev=0 > cmdreg=0x0017, statreg=0x0280, cachelnsz=8 (dwords) > lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) > intpin=b, irq=9 > map[10]: type 1, range 32, base ad800000, size 12, enabled > $PIR: 0:3 INTB routed to irq 9 > found-> vendor=0x1039, dev=0x7001, revid=0x0f > bus=0, slot=3, func=2 > class=0c-03-10, hdrtype=0x00, mfdev=0 > cmdreg=0x0017, statreg=0x0280, cachelnsz=8 (dwords) > lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) > intpin=c, irq=9 > map[10]: type 1, range 32, base ad000000, size 12, enabled > $PIR: 0:3 INTC routed to irq 9 > found-> vendor=0x1039, dev=0x7002, revid=0x00 > bus=0, slot=3, func=3 > class=0c-03-20, hdrtype=0x00, mfdev=0 > cmdreg=0x0004, statreg=0x0290, cachelnsz=8 (dwords) > lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x50 (20000 ns) > intpin=d, irq=255 > powerspec 2 supports D0 D3 current D0 > map[10]: type 1, range 32, base ac800000, size 12, memory disabled > found-> vendor=0x1039, dev=0x0900, revid=0x91 > bus=0, slot=4, func=0 > class=02-00-00, hdrtype=0x00, mfdev=0 > cmdreg=0x0004, statreg=0x0290, cachelnsz=0 (dwords) > lattimer=0x20 (960 ns), mingnt=0x34 (13000 ns), maxlat=0x0b (2750 ns) > intpin=a, irq=255 > powerspec 2 supports D0 D1 D2 D3 current D0 > map[10]: type 4, range 32, base 00008800, size 8, port disabled > map[14]: type 1, range 32, base ac000000, size 12, memory disabled > found-> vendor=0x1274, dev=0x5880, revid=0x02 > bus=0, slot=13, func=0 > class=04-01-00, hdrtype=0x00, mfdev=0 > cmdreg=0x0004, statreg=0x0410, cachelnsz=0 (dwords) > lattimer=0x20 (960 ns), mingnt=0x0c (3000 ns), maxlat=0x80 (32000 ns) > intpin=a, irq=255 > powerspec 1 supports D0 D2 D3 current D0 > map[10]: type 4, range 32, base 00008400, size 6, port disabled > found-> vendor=0x105a, dev=0x3376, revid=0x02 > bus=0, slot=14, func=0 > class=01-04-00, hdrtype=0x00, mfdev=0 > cmdreg=0x0017, statreg=0x0230, cachelnsz=8 (dwords) > lattimer=0x60 (2880 ns), mingnt=0x04 (1000 ns), maxlat=0x12 (4500 ns) > intpin=a, irq=11 > powerspec 2 supports D0 D1 D3 current D0 > map[10]: type 4, range 32, base 00008000, size 6, enabled > map[14]: type 4, range 32, base 00007800, size 4, enabled > map[18]: type 4, range 32, base 00007400, size 7, enabled > map[1c]: type 1, range 32, base ab800000, size 12, enabled > map[20]: type 1, range 32, base ab000000, size 17, enabled > $PIR: 0:14 INTA routed to irq 11 > agp0: mem 0xb0000000-0xb7ffffff at device 0.0 on pci0 > agp0: Reserved 0x8000000 bytes for rid 0x10 type 3 at 0xb0000000 > agp0: allocating GATT for aperture of size 128M > pcib1: at device 1.0 on pci0 > pcib1: secondary bus 1 > pcib1: subordinate bus 1 > pcib1: I/O decode 0xd000-0xdfff > pcib1: memory decode 0xaf000000-0xafffffff > pcib1: prefetched decode 0xc0000000-0xfebfffff > pci1: on pcib1 > pci1: physical bus=1 > found-> vendor=0x1002, dev=0x4151, revid=0x00 > bus=1, slot=0, func=0 > class=03-00-00, hdrtype=0x00, mfdev=1 > cmdreg=0x0007, statreg=0x02b0, cachelnsz=8 (dwords) > lattimer=0x40 (1920 ns), mingnt=0x08 (2000 ns), maxlat=0x00 (0 ns) > intpin=a, irq=11 > powerspec 2 supports D0 D1 D2 D3 current D0 > map[10]: type 3, range 32, base e0000000, size 28, enabled > pcib1: (null) requested memory range 0xe0000000-0xefffffff: good > map[14]: type 4, range 32, base 0000d800, size 8, enabled > pcib1: (null) requested I/O range 0xd800-0xd8ff: in range > map[18]: type 1, range 32, base af800000, size 16, enabled > pcib1: (null) requested memory range 0xaf800000-0xaf80ffff: good > $PIR: 1:0 INTA routed to irq 11 > found-> vendor=0x1002, dev=0x4171, revid=0x00 > bus=1, slot=0, func=1 > class=03-80-00, hdrtype=0x00, mfdev=0 > cmdreg=0x0004, statreg=0x02b0, cachelnsz=8 (dwords) > lattimer=0x40 (1920 ns), mingnt=0x08 (2000 ns), maxlat=0x00 (0 ns) > powerspec 2 supports D0 D1 D2 D3 current D0 > map[10]: type 3, range 32, base c0000000, size 28, memory disabled > pcib1: (null) requested memory range 0xc0000000-0xcfffffff: good > map[14]: type 1, range 32, base af000000, size 16, enabled > pcib1: (null) requested memory range 0xaf000000-0xaf00ffff: good > pci1: at device 0.0 (no driver attached) > pci1: at device 0.1 (no driver attached) > isab0: at device 2.0 on pci0 > isa0: on isab0 > fwohci0: mem 0xae800000-0xae800fff at device 2.3 on pci0 > fwohci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xae800000 > $PIR: Found IRQ 9 for link 0x42 from 9 11 > $PIR: ROUTE_INTERRUPT failed. > fwohci0: Could not allocate irq > device_attach: fwohci0 attach returned 6 > atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xa400-0xa40f irq 11 at device 2.5 on pci0 > atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xa400 > 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=0x80 err=0x80 lsb=0x80 msb=0x80 > 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=03 ostat0=50 ostat1=00 > ata1: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb > ata1: stat1=0x00 err=0x01 lsb=0x14 msb=0xeb > ata1: reset tp2 stat0=00 stat1=00 devices=0xc > ata1: [MPSAFE] > pci0: at device 2.7 (no driver attached) > ohci0: mem 0xae000000-0xae000fff irq 9 at device 3.0 on pci0 > ohci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xae000000 > 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: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 > uhub0: 2 ports with 2 removable, self powered > ohci1: mem 0xad800000-0xad800fff irq 9 at device 3.1 on pci0 > ohci1: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xad800000 > ohci1: [GIANT-LOCKED] > usb1: OHCI version 1.0, legacy support > usb1: SMM does not respond, resetting > usb1: on ohci1 > usb1: USB revision 1.0 > uhub1: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 > uhub1: 2 ports with 2 removable, self powered > ohci2: mem 0xad000000-0xad000fff irq 9 at device 3.2 on pci0 > ohci2: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xad000000 > ohci2: [GIANT-LOCKED] > usb2: OHCI version 1.0, legacy support > usb2: SMM does not respond, resetting > usb2: on ohci2 > usb2: USB revision 1.0 > uhub2: SiS OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 > uhub2: 2 ports with 2 removable, self powered > ehci0: mem 0xac800000-0xac800fff at device 3.3 on pci0 > ehci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xac800000 > $PIR: Found IRQ 9 for link 0x63 from 9 11 > $PIR: ROUTE_INTERRUPT failed. > ehci0: Could not allocate irq > device_attach: ehci0 attach returned 6 > sis0: port 0x8800-0x88ff mem 0xac000000-0xac000fff at device 4.0 on pci0 > sis0: Reserved 0x100 bytes for rid 0x10 type 4 at 0x8800 > $PIR: Found IRQ 9 for link 0x44 from 9 11 > $PIR: 0:4 INTA routed to irq 9 > miibus0: on sis0 > rlphy0: on miibus0 > rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > sis0: bpf attached > sis0: Ethernet address: 00:e0:18:b0:e3:5b > sis0: [MPSAFE] > pcm0: port 0x8400-0x843f at device 13.0 on pci0 > pcm0: Reserved 0x40 bytes for rid 0x10 type 4 at 0x8400 > pcm0: > pcm0: Codec features 18 bit DAC, 18 bit ADC, 5 bit master volume, SigmaTel 3D Enhancement > pcm0: Primary codec extended features surround DAC > pcm0: ac97 codec dac ready count: 0 > $PIR: 0:13 INTA routed to irq 9 > pcm0: [MPSAFE] > pcm0: sndbuf_setmap 3e8d5000, 1000; 0xc4bc1000 -> 3e8d5000 > pcm0: sndbuf_setmap 3e8f7000, 1000; 0xc4bc3000 -> 3e8f7000 > pcm0: > atapci1: port 0x8000-0x803f,0x7800-0x780f,0x7400-0x747f mem 0xab800000-0xab800fff,0xab000000-0xab01ffff irq 11 at device 14.0 on pci0 > pci0: child atapci1 requested type 4 for rid 0x20, but the BAR says it is an memio > atapci1: [MPSAFE] > atapci1: Reserved 0x20000 bytes for rid 0x20 type 3 at 0xab000000 > atapci1: Reserved 0x1000 bytes for rid 0x1c type 3 at 0xab800000 > atapci1: [MPSAFE] > ata2: on atapci1 > ata2: SATA connect status=00000000 > ata2: [MPSAFE] > ata3: on atapci1 > ata3: SATA connect status=00000000 > ata3: [MPSAFE] > ata4: on atapci1 > ata4: reset tp1 mask=03 ostat0=50 ostat1=00 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ata4: [MPSAFE] > ex_isa_identify() > ata: ata0 already exists; skipping it > ata: ata1 already exists; skipping it > pnp_identify: Trying Read_Port at 203 > pnp_identify: Trying Read_Port at 243 > pnp_identify: Trying Read_Port at 283 > pnp_identify: Trying Read_Port at 2c3 > pnp_identify: Trying Read_Port at 303 > pnp_identify: Trying Read_Port at 343 > pnp_identify: Trying Read_Port at 383 > pnp_identify: Trying Read_Port at 3c3 > PNP Identify complete > unknown: status reg test failed ff > unknown: status reg test failed ff > unknown: status reg test failed ff > unknown: status reg test failed ff > unknown: status reg test failed ff > unknown: status reg test failed ff > pnpbios: 16 devices, largest 114 bytes > PNP0401: adding dma mask 0x8 > PNP0401: adding irq mask 0x20 > PNP0401: adding io range 0x278-0x27f, size=0x8, align=0 > PNP0401: adding io range 0x678-0x67f, size=0x8, align=0 > pnpbios: handle 1 device ID PNP0401 (0104d041) > PNP0501: adding irq mask 0x10 > PNP0501: adding io range 0x3e8-0x3ef, size=0x8, align=0 > pnpbios: handle 2 device ID PNP0501 (0105d041) > PNP0501: adding irq mask 0x10 > PNP0501: adding io range 0x3f8-0x3ff, size=0x8, align=0 > pnpbios: handle 3 device ID PNP0501 (0105d041) > PNPb02f: adding io range 0x200-0x207, size=0x8, align=0 > pnpbios: handle 6 device ID PNPb02f (2fb0d041) > PNPb006: adding irq mask 0x400 > PNPb006: adding io range 0x300-0x301, size=0x2, align=0 > pnpbios: handle 7 device ID PNPb006 (06b0d041) > PNP0f13: adding irq mask 0x1000 > pnpbios: handle 8 device ID PNP0f13 (130fd041) > PNP0c01: adding fixed memory32 range 0-0x9ffff, size=0xa0000 > PNP0c01: adding fixed memory32 range 0x100000-0x3fffffff, size=0x3ff00000 > PNP0c01: adding fixed memory32 range 0xe8000-0xeffff, size=0x8000 > PNP0c01: adding fixed memory32 range 0xf0000-0xf3fff, size=0x4000 > PNP0c01: adding fixed memory32 range 0xf4000-0xf7fff, size=0x4000 > PNP0c01: adding fixed memory32 range 0xf8000-0xfffff, size=0x8000 > PNP0c01: adding fixed memory32 range 0xdbc00-0xdbfff, size=0x400 > PNP0c01: adding fixed memory32 range 0xfff80000-0xffffffff, size=0x80000 > pnpbios: handle 9 device ID PNP0c01 (010cd041) > PNP0100: adding irq mask 0x1 > PNP0100: adding io range 0x40-0x43, size=0x4, align=0 > pnpbios: handle 11 device ID PNP0100 (0001d041) > PNP0b00: adding irq mask 0x100 > PNP0b00: adding io range 0x70-0x71, size=0x2, align=0 > pnpbios: handle 12 device ID PNP0b00 (000bd041) > PNP0303: adding irq mask 0x2 > PNP0303: adding io range 0x60-0x60, size=0x1, align=0 > PNP0303: adding io range 0x64-0x64, size=0x1, align=0 > pnpbios: handle 13 device ID PNP0303 (0303d041) > PNP0c04: adding irq mask 0x2000 > PNP0c04: adding io range 0xf0-0xf0, size=0x1, align=0 > pnpbios: handle 14 device ID PNP0c04 (040cd041) > PNP0200: adding dma mask 0x10 > PNP0200: adding io range 0-0xf, size=0x10, align=0 > PNP0200: adding io range 0x80-0x90, size=0x11, align=0 > PNP0200: adding io range 0x94-0x9f, size=0xc, align=0 > PNP0200: adding io range 0xc0-0xde, size=0x1f, align=0 > pnpbios: handle 15 device ID PNP0200 (0002d041) > PNP0800: adding io range 0x61-0x61, size=0x1, align=0x1 > pnpbios: handle 16 device ID PNP0800 (0008d041) > PNP0a03: adding io range 0xcf8-0xcff, size=0x8, align=0 > pnpbios: handle 17 device ID PNP0a03 (030ad041) > PNP0c02: adding io range 0xe600-0xe61f, size=0x20, align=0 > PNP0c02: adding io range 0xe400-0xe47f, size=0x80, align=0 > pnpbios: handle 18 device ID PNP0c02 (020cd041) > sc: sc0 already exists; skipping it > vga: vga0 already exists; skipping it > isa_probe_children: disabling PnP devices > isa_probe_children: probing non-PnP devices > pmtimer0 on isa0 > orm0: at iomem 0xc0000-0xccfff,0xd0000-0xd3fff on isa0 > adv0: not probed (disabled) > aha0: not probed (disabled) > aic0: not probed (disabled) > atkbdc0: at port 0x60,0x64 on isa0 > atkbd0: irq 1 on atkbdc0 > atkbd: the current kbd controller command byte 0047 > atkbd: keyboard ID 0xffffffff (1) > atkbd: failed to reset the keyboard. > kbd0 at atkbd0 > kbd0: atkbd0, AT 84 (1), config:0x0, flags:0x3d0000 > atkbd0: [GIANT-LOCKED] > psm0: current command byte:0047 > psm0: failed to reset the aux device. > bt0: not probed (disabled) > cs0: not probed (disabled) > ed0: not probed (disabled) > fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 > fe0: not probed (disabled) > ie0: not probed (disabled) > lnc0: not probed (disabled) > ppc0: parallel port found at 0x278 > ppc0: using extended I/O port range > ppc0: ECP SPP ECP+EPP SPP > ppc0: at port 0x278-0x27f irq 7 on isa0 > 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 > plip0: bpf attached > lpt0: on ppbus0 > lpt0: Interrupt-driven port > ppi0: on ppbus0 > sc0: at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=0x300> > sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) > sio0: irq maps: 0x221 0x231 0x221 0x221 > sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 > sio0: type 16550A > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio1: port may not be enabled > sio1: irq maps: 0x221 0x221 0x221 0x221 > sio1: probe failed test(s): 0 1 2 4 6 7 9 > sio1 failed to probe at port 0x2f8-0x2ff irq 3 on isa0 > sio2: not probed (disabled) > sio3: not probed (disabled) > sn0: not probed (disabled) > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > vt0: not probed (disabled) > isa_probe_children: probing PnP devices > unknown: can't assign resources (port) > unknown: at port 0x278-0x27f on isa0 > unknown: can't assign resources (irq) > unknown: at port 0x3e8-0x3ef irq 4 on isa0 > unknown: can't assign resources (port) > unknown: at port 0x3f8-0x3ff on isa0 > unknown: failed to probe at port 0x200-0x207 on isa0 > unknown: failed to probe at port 0x300-0x301 irq 10 on isa0 > psmcpnp0: at irq 12 on isa0 > psm0: current command byte:0047 > psm0: failed to reset the aux device. > unknown: can't assign resources (memory) > unknown: at iomem 0-0x9ffff,0x100000-0x3fffffff,0xe8000-0xeffff,0xf0000-0xf3fff,0xf4000-0xf7fff,0xf8000-0xfffff,0xdbc00-0xdbfff on isa0 > unknown: can't assign resources (port) > unknown: at port 0x60 on isa0 > unknown: failed to probe at port 0x61 on isa0 > ums0: Logitech USB-PS/2 Optical Mouse, rev 2.00/21.00, addr 2, iclass 3/1 > ums0: 8 buttons and Z dir. > ukbd0: Logitech Logitech USB Keyboard, rev 1.10/15.00, addr 2, iclass 3/1 > kbd: new array size 4 > kbd1 at ukbd0 > kbd1: ukbd0, generic (0), config:0x0, flags:0x1d0000 > uhid0: Logitech Logitech USB Keyboard, rev 1.10/15.00, addr 2, iclass 3/1 > ugen0: vendor 0x067b product 0x2303, rev 1.10/2.02, addr 2 > Device configuration finished. > procfs registered > Timecounter "TSC" frequency 2400098244 Hz quality 800 > Timecounters tick every 1.000 msec > lo0: bpf attached > rr232x: no controller detected. > ata0-slave: pio=PIO4 wdma=WDMA2 udma=UDMA100 cable=80 wire > ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA100 cable=80 wire > ad0: setting PIO4 on 963 chip > ad0: 76319MB at ata0-master PIO4 > ad0: 156301488 sectors [155061C/16H/63S] 16 sectors/interrupt 1 depth queue > GEOM: new disk ad0 > ad0: Silicon Integrated Systems check1 failed > ad0: Adaptec check1 failed > ad0: LSI (v3) check1 failed > ad0: LSI (v2) check1 failed > ad0: FreeBSD check1 failed > ad1: setting PIO4 on 963 chip > ad1: 76319MB at ata0-slave PIO4 > ad1: 156301488 sectors [155061C/16H/63S] 16 sectors/interrupt 1 depth queue > GEOM: new disk ad1 > ad1: Silicon Integrated Systems check1 failed > ad1: Adaptec check1 failed > ad1: LSI (v3) check1 failed > ad1: LSI (v2) check1 failed > ad1: FreeBSD check1 failed > ata1: reiniting channel .. > ata1: reset tp1 mask=03 ostat0=00 ostat1=00 > ata1: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb > ata1: stat1=0x00 err=0x01 lsb=0x14 msb=0xeb > ata1: reset tp2 stat0=00 stat1=00 devices=0xc > ata1: reinit done .. > ata1: reiniting channel .. > ata1: reset tp1 mask=03 ostat0=00 ostat1=00 > ata1: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb > ata1: stat1=0x00 err=0x01 lsb=0x14 msb=0xeb > ata1: reset tp2 stat0=00 stat1=00 devices=0xc > ata1: reinit done .. > ata1-master: pio=PIO4 wdma=WDMA2 udma=UDMA33 cable=80 wire > acd0: setting PIO4 on 963 chip > acd0: DVDR drive at ata1 as master > acd0: read 8268KB/s (8268KB/s) write 8268KB/s (8268KB/s), 2048KB buffer, PIO4 > acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, packet > acd0: Writes: CDR, CDRW, DVDR, test write, burnproof > acd0: Audio: play, 2 volume levels > acd0: Mechanism: ejectable tray, unlocked > acd0: Medium: no/blank disc > ata4-master: pio=PIO4 wdma=WDMA2 udma=UDMA100 cable=80 wire > ad8: setting PIO4 on PDC20376 chip > ad8: 114473MB at ata4-master PIO4 > ad8: 234441648 sectors [232581C/16H/63S] 16 sectors/interrupt 1 depth queue > GEOM: new disk ad8 > ata4: reiniting channel .. > ata4: reset tp1 mask=03 ostat0=58 ostat1=00 > ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ata4: reinit done .. > ad8: FAILURE - READ timed out LBA=234441585 > ad8: Promise read metadata failed > ata4: reiniting channel .. > ata4: reset tp1 mask=03 ostat0=58 ostat1=00 > ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ata4: reinit done .. > ad8: TIMEOUT - READ retrying (1 retry left) LBA=0 > ata4: reiniting channel .. > ata4: reset tp1 mask=03 ostat0=58 ostat1=00 > ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ata4: reinit done .. > ad8: FAILURE - READ timed out LBA=234441631 > ad8: Adaptec read metadata failed > ata4: reiniting channel .. > ata4: reset tp1 mask=03 ostat0=58 ostat1=00 > ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ata4: reinit done .. > ad8: TIMEOUT - READ retrying (0 retries left) LBA=0 > ata4: reiniting channel .. > ata4: reset tp1 mask=03 ostat0=58 ostat1=00 > ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ata4: reinit done .. > ad8: FAILURE - READ timed out LBA=234441644 > ad8: LSI (v3) read metadata failed > ata4: reiniting channel .. > ata4: reset tp1 mask=03 ostat0=58 ostat1=00 > ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ata4: reinit done .. > ad8: FAILURE - READ timed out LBA=0 > ad8: LSI (v2) check1 failed > ata4: reiniting channel .. > ata4: reset tp1 mask=03 ostat0=58 ostat1=00 > ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ata4: reinit done .. > ad8: FAILURE - READ timed out LBA=234441585 > ad8: FreeBSD read metadata failed > ATA PseudoRAID loaded > ata4: reiniting channel .. > ata4: reset tp1 mask=03 ostat0=58 ostat1=00 > ata4: stat0=0x80 err=0x80 lsb=0x80 msb=0x80 > ata4: stat0=0x90 err=0x90 lsb=0x90 msb=0x90 > ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata4: stat1=0x00 err=0x01 lsb=0x00 msb=0x00 > ata4: reset tp2 stat0=50 stat1=00 devices=0x1 > ad8: setting PIO4 on PDC20376 chip > ata4: reinit done .. > ad8: TIMEOUT - READ retrying (1 retry left) LBA=0 > Trying to mount root from ufs:/dev/ad1s1a > start_init: trying /sbin/init > > ------------------------------------------------------------------------ > > _______________________________________________ > 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" Well, after thinking a bit over why my system would only boot in "safe mode", I remembered that when I edited /boot/beastie.4th, there were a lot of other flags set during safe mode. So I thought that maybe, just disabling dma and write caching would let me boot my system, otherwise normally, and thereby effectively narrowing down the problem to dma and write caching. However, to my surprise the problem did not go away when I merely disabled dma and wc. So I tried the other options in my loader.conf. Finally, the system booted with only hint.acpi.0.disabled=1 and loader.acpi_disabled_by_user=1 set. Great. Only one problem - What are the issues of running a system without ACPI? Will my screen/harddrives/everything else be in a constant power-on state? Is there a way to work around this problem without disabling ACPI entirely? Thanks for any help. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 22: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 8339E16A479 for ; Sun, 18 Jun 2006 22:14:58 +0000 (UTC) (envelope-from SRS0=jXkJUE=AF=vvelox.net=v.velox@yourhostingaccount.com) Received: from mailout09.yourhostingaccount.com (outmail72.yourhostingaccount.com [65.254.253.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF21C43D45 for ; Sun, 18 Jun 2006 22:14:57 +0000 (GMT) (envelope-from SRS0=jXkJUE=AF=vvelox.net=v.velox@yourhostingaccount.com) Received: from scan05.yourhostingaccount.com ([10.1.1.235] helo=scan05.yourhostingaccount.com) by mailout09.yourhostingaccount.com with esmtp (Exim) id 1Fs5Xl-0003PB-0w for freebsd-questions@freebsd.org; Sun, 18 Jun 2006 18:14:57 -0400 Received: from authsmtp08.yourhostingaccount.com ([10.1.18.8] ident=exim) by scan05.yourhostingaccount.com with spamscanlookuphost (Exim) id 1Fs5Xk-0001zl-TE for freebsd-questions@freebsd.org; Sun, 18 Jun 2006 18:14:56 -0400 Received: from authsmtp08.yourhostingaccount.com ([10.1.18.8] helo=authsmtp08.yourhostingaccount.com) by scan05.yourhostingaccount.com with esmtp (Exim) id 1Fs5Xk-0001zi-J8 for freebsd-questions@freebsd.org; Sun, 18 Jun 2006 18:14:56 -0400 Received: from 24-119-225-24.cpe.cableone.net ([24.119.225.24] helo=vixen42.vulpes) by authsmtp08.yourhostingaccount.com with esmtpa (Exim) id 1Fs5Xj-0008Ad-Ve; Sun, 18 Jun 2006 18:14:56 -0400 Date: Sun, 18 Jun 2006 17:15:05 -0500 From: Vulpes Velox To: freebsd-questions@freebsd.org Message-ID: <20060618171505.2b5bc8ab@vixen42.vulpes> In-Reply-To: <20060618165043.3A8C.GERARD@seibercom.net> References: <20060618165043.3A8C.GERARD@seibercom.net> X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd5.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-EN-UserInfo: 0d1ca1697cdb7a831d4877828571b7ab:1570f0de6936c69fef9e164fffc541bc X-EN-AuthUser: vvelox2 Sender: Vulpes Velox Cc: gerard@seibercom.net Subject: Re: SIIG Card Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 22:14:58 -0000 On Sun, 18 Jun 2006 16:55:37 -0400 Gerard Seibert wrote: > Could anyone tell me if the SIIG Ultra ATA Ultra 100 Controller > Card, mfg.# SC-PE4A12 is supported in FBSD 6.1 or not? According to > the manufacturer, it only supports Windows; however, that is what > most manufacturers claim anyway. No clue. I am happy with my Promise PDC20268 UDMA100 though. It is nice and cheap as well. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 23: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 9B7DA16A47B for ; Sun, 18 Jun 2006 23:39: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 2921743D49 for ; Sun, 18 Jun 2006 23:39: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 k5INkv3X047117; Sun, 18 Jun 2006 19:46:57 -0400 (EDT) (envelope-from chris@monochrome.org) Date: Sun, 18 Jun 2006 19:41:47 -0400 (EDT) From: Chris Hill To: Dan Bikle In-Reply-To: <74252ed10606181338s2fef875fqd367631c5aebb64@mail.gmail.com> Message-ID: <20060618183241.Y4566@tripel.monochrome.org> References: <74252ed10606171050w6fdd78c8nd7fceedf4c5c2e6b@mail.gmail.com> <74252ed10606171439l13b6d24ek7e4689f7952eb895@mail.gmail.com> <74252ed10606181338s2fef875fqd367631c5aebb64@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 23:39:28 -0000 On Sun, 18 Jun 2006, Dan Bikle wrote: > http://www.walmart.com/catalog/product.do?product_id=3762910 [...] > It is so cheap I'm tempted to buy it and take the risk that I could > install a recent version of FreeBSD on it. [...] > Would you gamble $368 that you could get FreeBSD installed on this > thing? For a basic server, I probably would. But I would not count on the integrated graphics being useable in X. Especially since the page says "Integrated Graphics up to 64 MB, default setting 32 MB", which leads me to think that this integrated graphics thingy uses system memory, which would be taken out of the not-overly-generous 512 MB. It will almost certainly work for your VGA console. I also wouldn't count on the integrated sound or even ethernet. The modem, I can just about guarantee, is a winmodem and thus probably not useable. But in all cases, it's hard to know for sure since they don't say what the hardware is. The keyboard and mouse will probably work fine. The subject line says "desktop server". My take is that it would be iffy as a desktop (might work, you never know) but probably fine as a light-duty server, although you may need to add a $10 ethernet card. I'd just double-check their return policy; if it turns out not to be what you wanted, send it back and keep looking. HTH. -- Chris Hill chris@monochrome.org ** [ Busy Expunging <|> ] From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 23:45: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 042EB16A474 for ; Sun, 18 Jun 2006 23:45:55 +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 800DF43D45 for ; Sun, 18 Jun 2006 23:45:54 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from localhost (monrovll-cuda1-24-53-251-44.pittpa.adelphia.net [24.53.251.44]) (AUTH: LOGIN wmoran, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Sun, 18 Jun 2006 19:45:53 -0400 id 00056410.4495E5B1.0000B139 Date: Sun, 18 Jun 2006 19:45:52 -0400 From: Bill Moran To: "Jim Stapleton" Message-Id: <20060618194552.26b6392c.wmoran@collaborativefusion.com> In-Reply-To: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> References: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> Organization: Collaborative Fusion X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; 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: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 23:45:55 -0000 "Jim Stapleton" wrote: > Basically, I have an application that doesn't want to run in FreeBSD, > though it may still run given the compatability layer. I was wondering > if there was some way to make the OS respond when it ran the > application, that it was linux and not BSD. Have a read of the man page for brandelf and see if that helps you. -- Bill Moran I lay down for a while, and I woke up on the ocean, floating on my back, and staring at the grey. It was completely still, 'cept for the pounding of my heart, was bring me back to life, from three strange days. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 18 23:48: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 294CE16A482 for ; Sun, 18 Jun 2006 23:48:07 +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 9282B43D45 for ; Sun, 18 Jun 2006 23:48:06 +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 1Fs6zu-000Mx2-5X for freebsd-questions@freebsd.org; Sun, 18 Jun 2006 17:48:06 -0600 Mime-Version: 1.0 (Apple Message framework v750) In-Reply-To: <20060618165043.3A8C.GERARD@seibercom.net> References: <20060618165043.3A8C.GERARD@seibercom.net> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Sun, 18 Jun 2006 17:48:05 -0600 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.750) 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: Re: SIIG Card Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 18 Jun 2006 23:48:07 -0000 On Jun 18, 2006, at 2:55 PM, Gerard Seibert wrote: > Could anyone tell me if the SIIG Ultra ATA Ultra 100 Controller Card, > mfg.# SC-PE4A12 is supported in FBSD 6.1 or not? According to the > manufacturer, it only supports Windows; however, that is what most > manufacturers claim anyway. You need to find out what chipset it has to see if there is any chance. In my experience SiiG uses standard chipsets but puts a sticker over them so you don't know what one is used and so that they can change it without changing the part number of their card... Best bet is to find a known card from the list Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00: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 63BFB16A47A for ; Mon, 19 Jun 2006 00:02:54 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FC1C43D49 for ; Mon, 19 Jun 2006 00:02:53 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id 736EA7E8C5; Sun, 18 Jun 2006 20:02:52 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yrrPK4foBUvf; Sun, 18 Jun 2006 20:02:51 -0400 (EDT) Received: from [192.168.0.3] (unknown [74.128.244.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id 6C65F7E8C4; Sun, 18 Jun 2006 20:02:48 -0400 (EDT) In-Reply-To: <44958D50.4050000@dial.pipex.com> References: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> <2A55FF5E-F764-406A-BE0E-272246F425B5@netmusician.org> <448xoska3k.fsf@be-well.ilk.org> <44733B8B.6030404@dial.pipex.com> <448FDE6B.4000703@dial.pipex.com> <38D0516F-2F6B-4700-9006-5A2D6034DC0C@netmusician.org> <449042EF.9040905@dial.pipex.com> <4680C6D4-50F9-4441-8B54-924092A1A3AD@netmusician.org> <44913391.7060906@dial.pipex.com> <7B276387-F946-4FEC-81D1-8CF9B95808E2@netmusician.org> <44958D50.4050000@dial.pipex.com> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Apple-Mail-6-569472979" Message-Id: From: Joe Auty Date: Sun, 18 Jun 2006 20:02:44 -0400 To: Alex Zbyslaw Content-Transfer-Encoding: 7bit X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Gpgmail-State: signed X-Mailer: Apple Mail (2.750) Cc: FreeBSD Questions Subject: Re: Python port 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, 19 Jun 2006 00:02:54 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --Apple-Mail-6-569472979 Content-Type: multipart/mixed; boundary=Apple-Mail-5-569472760 --Apple-Mail-5-569472760 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed On Jun 18, 2006, at 1:28 PM, Alex Zbyslaw wrote: > Joe Auty wrote: > >> >> On Jun 15, 2006, at 6:16 AM, Alex Zbyslaw wrote: >> >>> Joe Auty wrote: >>> >>>> jauty# python -v /usr/local/mailman/bin/qrunner >>>> [...snip...] >>>> # /usr/local/lib/python2.4/getopt.pyc matches /usr/local/lib/ >>>> python2.4/getopt.py >>>> import getopt # precompiled from /usr/local/lib/python2.4/ >>>> getopt.pyc >>>> # /usr/local/mailman/bin/paths.pyc matches /usr/local/mailman/ >>>> bin/ paths.py >>>> import paths # precompiled from /usr/local/mailman/bin/paths.pyc >>>> [...snip...] >>> >>> >>> OK, you just ran qrunner successfully without getting the error >>> you were getting earlier about getopt. Doesn't matter that all >>> you got was help, it found *everything* that it tried to import. >>> >>> I missed the start of this thread. How did you run qrunner to >>> get your earlier error and where did the error appear? I think >>> you said the rc script. If it's not too big can you post it? >>> Or compare it against your working mailman? >>> >> >> My Mailman rc script (exactly identical to the one on my working >> machine): >> > You're getting your error when mailman starts at boot time; is that > right? > > If so, what happens if you try as root (csh): > > # sh -x /usr/local/etc/rc.d/mailman.sh start > > (sh/bash) > > # sh -x /usr/local/etc/rc.d/mailman.sh start > > (you might have to check the exact name of the rc.d script). > > If this starts mailman then something bizarre is going on. > > If you get the same error as usual, then judicious snippets with > the error and prior context. > Running the RC script under sh, csh, and bash yields the same error spew.... I've attached the errors spewed out in their entirety: --Apple-Mail-5-569472760 Content-Transfer-Encoding: 7bit Content-Type: text/plain; x-unix-mode=0644; name="mailman spew.txt" Content-Disposition: attachment; filename="mailman spew.txt" # /usr/local/etc/rc.d/mailman.sh start Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? File "/usr/local/mailman/bin/qrunner", line 76, in ? File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback import getopt ImportError: No module named getopt Traceback (most recent call last): Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback import getopt ImportError: No module named getopt jauty# File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform dependent libraries Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] : No module named getopt 'import site' failed; use -v for traceback import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportError: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Could not find platform independent libraries Consider setting $PYTHONHOME to [:] Could not find platform dependent libraries Could not find platform independent libraries 'import site' failed; use -v for traceback Consider setting $PYTHONHOME to [:] Could not find platform independent libraries Could not find platform independent libraries Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Could not find platform independent libraries Could not find platform dependent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback Could not find platform dependent libraries 'import site' failed; use -v for traceback Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback Traceback (most recent call last): Traceback (most recent call last): Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt import getopt import getopt ImportErrorImportErrorimport getopt ImportError: : ImportError File "/usr/local/mailman/bin/qrunner", line 76, in ? No module named getoptNo module named getopt: : import getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? No module named getoptNo module named getopt import getopt Traceback (most recent call last): ImportErrorImportError File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt : : ImportErrorNo module named getoptNo module named getoptimport getopt : ImportErrorNo module named getoptCould not find platform independent libraries : Could not find platform dependent libraries No module named getoptConsider setting $PYTHONHOME to [:] Could not find platform independent libraries 'import site' failed; use -v for traceback Could not find platform dependent libraries Could not find platform independent libraries Consider setting $PYTHONHOME to [:] Could not find platform dependent libraries 'import site' failed; use -v for traceback Traceback (most recent call last): Could not find platform independent libraries File "/usr/local/mailman/bin/qrunner", line 76, in ? Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Traceback (most recent call last): import getopt Could not find platform independent libraries File "/usr/local/mailman/bin/qrunner", line 76, in ? ImportErrorCould not find platform dependent libraries : Consider setting $PYTHONHOME to [:] import getopt Could not find platform independent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback ImportErrorNo module named getopt'import site' failed; use -v for traceback Could not find platform independent libraries : Traceback (most recent call last): No module named getopt'import site' failed; use -v for traceback File "/usr/local/mailman/bin/qrunner", line 76, in ? Could not find platform dependent libraries Traceback (most recent call last): import getopt Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] File "/usr/local/mailman/bin/qrunner", line 76, in ? ImportErrorCould not find platform independent libraries : Could not find platform independent libraries Could not find platform dependent libraries No module named getoptCould not find platform dependent libraries 'import site' failed; use -v for traceback Consider setting $PYTHONHOME to [:] Consider setting $PYTHONHOME to [:] Traceback (most recent call last): Consider setting $PYTHONHOME to [:] Could not find platform independent libraries import getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? 'import site' failed; use -v for traceback Could not find platform dependent libraries 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback ImportErrorConsider setting $PYTHONHOME to [:] : 'import site' failed; use -v for traceback No module named getoptimport getopt Traceback (most recent call last): Traceback (most recent call last): Traceback (most recent call last): Traceback (most recent call last): ImportErrorCould not find platform independent libraries File "/usr/local/mailman/bin/qrunner", line 76, in ? File "/usr/local/mailman/bin/qrunner", line 76, in ? File "/usr/local/mailman/bin/qrunner", line 76, in ? File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): : Could not find platform dependent libraries File "/usr/local/mailman/bin/qrunner", line 76, in ? No module named getoptConsider setting $PYTHONHOME to [:] import getopt import getopt import getopt import getopt 'import site' failed; use -v for traceback ImportErrorImportErrorImportErrorImportErrorimport getopt : : : : ImportErrorCould not find platform independent libraries No module named getoptNo module named getopt: No module named getoptNo module named getoptNo module named getoptCould not find platform dependent libraries Traceback (most recent call last): Consider setting $PYTHONHOME to [:] File "/usr/local/mailman/bin/qrunner", line 76, in ? 'import site' failed; use -v for traceback Could not find platform independent libraries import getopt Could not find platform dependent libraries ImportErrorTraceback (most recent call last): Consider setting $PYTHONHOME to [:] : Could not find platform independent libraries Could not find platform independent libraries File "/usr/local/mailman/bin/qrunner", line 76, in ? 'import site' failed; use -v for traceback No module named getoptCould not find platform independent libraries Could not find platform dependent libraries Could not find platform dependent libraries Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Consider setting $PYTHONHOME to [:] Could not find platform dependent libraries Could not find platform dependent libraries import getopt Traceback (most recent call last): Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Consider setting $PYTHONHOME to [:] Consider setting $PYTHONHOME to [:] ImportError File "/usr/local/mailman/bin/qrunner", line 76, in ? 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback : No module named getoptimport getopt Traceback (most recent call last): 'import site' failed; use -v for traceback ImportErrorCould not find platform independent libraries Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): : Could not find platform dependent libraries Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? No module named getoptConsider setting $PYTHONHOME to [:] File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? Could not find platform independent libraries 'import site' failed; use -v for traceback import getopt ImportError import getopt Could not find platform dependent libraries Traceback (most recent call last): import getopt ImportError: import getopt ImportErrorConsider setting $PYTHONHOME to [:] File "/usr/local/mailman/bin/qrunner", line 76, in ? ImportError: No module named getoptImportError: 'import site' failed; use -v for traceback : No module named getopt : No module named getoptTraceback (most recent call last): import getopt No module named getopt No module named getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? ImportError : Could not find platform independent libraries import getopt No module named getoptCould not find platform independent libraries Could not find platform dependent libraries ImportError Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] : Could not find platform independent libraries Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback No module named getoptCould not find platform independent libraries Could not find platform dependent libraries 'import site' failed; use -v for traceback Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Traceback (most recent call last): Consider setting $PYTHONHOME to [:] Could not find platform independent libraries Could not find platform independent libraries 'import site' failed; use -v for traceback File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): 'import site' failed; use -v for traceback Could not find platform dependent libraries Could not find platform independent libraries Could not find platform dependent libraries File "/usr/local/mailman/bin/qrunner", line 76, in ? Could not find platform independent libraries Consider setting $PYTHONHOME to [:] Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Traceback (most recent call last): import getopt Could not find platform dependent libraries 'import site' failed; use -v for traceback Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback File "/usr/local/mailman/bin/qrunner", line 76, in ? ImportErrorimport getopt Consider setting $PYTHONHOME to [:] Traceback (most recent call last): 'import site' failed; use -v for traceback : ImportError'import site' failed; use -v for traceback File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): Traceback (most recent call last): import getopt No module named getopt: Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? File "/usr/local/mailman/bin/qrunner", line 76, in ? No module named getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt Traceback (most recent call last): ImportError ImportErrorimport getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt : import getopt : ImportError ImportErrorNo module named getoptImportErrorNo module named getopt: import getopt : Could not find platform independent libraries Could not find platform independent libraries : No module named getoptImportErrorNo module named getoptCould not find platform dependent libraries Could not find platform dependent libraries No module named getopt : Consider setting $PYTHONHOME to [:] Consider setting $PYTHONHOME to [:] No module named getoptCould not find platform independent libraries 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback Could not find platform dependent libraries Traceback (most recent call last): Could not find platform independent libraries Consider setting $PYTHONHOME to [:] File "/usr/local/mailman/bin/qrunner", line 76, in ? Could not find platform independent libraries Could not find platform dependent libraries Could not find platform independent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Could not find platform independent libraries Could not find platform dependent libraries 'import site' failed; use -v for traceback Traceback (most recent call last): import getopt Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? ImportErrorTraceback (most recent call last): Consider setting $PYTHONHOME to [:] Could not find platform independent libraries File "/usr/local/mailman/bin/qrunner", line 76, in ? : 'import site' failed; use -v for traceback File "/usr/local/mailman/bin/qrunner", line 76, in ? 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback Could not find platform dependent libraries import getopt No module named getopt Traceback (most recent call last): Consider setting $PYTHONHOME to [:] import getopt ImportError Traceback (most recent call last): import getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? 'import site' failed; use -v for traceback ImportError: File "/usr/local/mailman/bin/qrunner", line 76, in ? ImportError Traceback (most recent call last): : No module named getopt : import getopt File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): No module named getopt import getopt No module named getoptImportError File "/usr/local/mailman/bin/qrunner", line 76, in ? ImportError : import getopt : No module named getoptImportErrorimport getopt No module named getopt ImportError : : Could not find platform independent libraries Could not find platform independent libraries No module named getoptNo module named getoptCould not find platform dependent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportErrorimport getopt : ImportErrorNo module named getopt: No module named getopt Could not find platform independent libraries Could not find platform independent libraries Could not find platform dependent libraries Could not find platform dependent libraries Consider setting $PYTHONHOME to [:] Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportErrorimport getopt : ImportErrorNo module named getopt: No module named getopt Could not find platform independent libraries Could not find platform dependent libraries Could not find platform independent libraries Consider setting $PYTHONHOME to [:] Could not find platform dependent libraries 'import site' failed; use -v for traceback Consider setting $PYTHONHOME to [:] 'import site' failed; use -v for traceback Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? Traceback (most recent call last): File "/usr/local/mailman/bin/qrunner", line 76, in ? import getopt ImportErrorimport getopt : ImportErrorNo module named getopt: No module named getopt --Apple-Mail-5-569472760 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed ----------- Joe Auty NetMusician: web publishing software for musicians http://www.netmusician.org joe@netmusician.org --Apple-Mail-5-569472760-- --Apple-Mail-6-569472979 content-type: application/pgp-signature; x-mac-type=70674453; name=PGP.sig content-description: This is a digitally signed message part content-disposition: inline; filename=PGP.sig content-transfer-encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFElemlCgdfeCwsL5ERAlTjAJ41gcyldGkdoFtuCosBn3qg185PmgCdHhvS 3h3/4sEdz4SWsjYL8VPa4pw= =ZCTE -----END PGP SIGNATURE----- --Apple-Mail-6-569472979-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00:27: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 4052216A479; Mon, 19 Jun 2006 00:27:23 +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 E808A43D45; Mon, 19 Jun 2006 00:27:22 +0000 (GMT) (envelope-from user@dhp.com) Received: by shell.dhp.com (Postfix, from userid 896) id 705AF31332; Sun, 18 Jun 2006 20:27:18 -0400 (EDT) Date: Sun, 18 Jun 2006 20:27:18 -0400 (EDT) From: Ensel Sharon To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-fs@freebsd.org Subject: Please help - adaptec 2820sa not allowing 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: Mon, 19 Jun 2006 00:27:23 -0000 I did all my due diligence, I contacted freebsd-fs and _made sure_ that even though the 2820sa is not listed by name in the HCL, that I could take a 6.1-RELEASE cd and install freebsd on a 2820sa. I was _assured_ that these cards are supported in 6.1-RELEASE, that all is well, and I could install and that was that. Now I boot off of the 6.1-RELEASE cd, and sysinstall tells me "no disks found". I tried safe mode, same result. I tried disabling all unnecessary items from the BIOS (onboard sata, USB, com2, LPT) and same result. FreeBSD 6.1-RELEASE iso just does not find a disk controller. Period. So ... what do I do ?? I see no way of adding a driver to sysinstall .. .and even if I did I have no idea what to put there, as the published driver from adaptec is only for 5.x. I have to assume that aac is built into the sysinstall kernel, so what gives ? Why can't sysinstall see my 2820sa cards ? (and drives) Thanks. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00:39: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 10C8C16A479 for ; Mon, 19 Jun 2006 00:39:26 +0000 (UTC) (envelope-from jahilliya@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 41DE743D4C for ; Mon, 19 Jun 2006 00:39:25 +0000 (GMT) (envelope-from jahilliya@gmail.com) Received: by nz-out-0102.google.com with SMTP id m7so478123nzf for ; Sun, 18 Jun 2006 17:39: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VY4V0/zFwbsdXx8fHJrgXpTMV5qKb44KYT8vmWhiQIPC5mwFHDeBRacf91ceZciB7nrWkhK3L+GSDrkqWVwXWCu3D/9dFykEQPZC8a54prgW92hz+f/3uV6c9MNPm7hek232rfX/IVS30Av/aHWebccD//maq5A0eCDJk7FTMas= Received: by 10.36.7.20 with SMTP id 20mr2106158nzg; Sun, 18 Jun 2006 17:39:24 -0700 (PDT) Received: by 10.37.15.74 with HTTP; Sun, 18 Jun 2006 17:39:24 -0700 (PDT) Message-ID: Date: Mon, 19 Jun 2006 08:39:24 +0800 From: Jahilliya To: "Ensel Sharon" 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: Cc: freebsd-fs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not allowing 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: Mon, 19 Jun 2006 00:39:26 -0000 On 6/19/06, Ensel Sharon wrote: > > I did all my due diligence, I contacted freebsd-fs and _made sure_ that > even though the 2820sa is not listed by name in the HCL, that I could take > a 6.1-RELEASE cd and install freebsd on a 2820sa. > > I was _assured_ that these cards are supported in 6.1-RELEASE, that all is > well, and I could install and that was that. > > Now I boot off of the 6.1-RELEASE cd, and sysinstall tells me "no disks > found". > > I tried safe mode, same result. I tried disabling all unnecessary items > from the BIOS (onboard sata, USB, com2, LPT) and same result. > > FreeBSD 6.1-RELEASE iso just does not find a disk controller. Period. > > So ... what do I do ?? I see no way of adding a driver to sysinstall > .. .and even if I did I have no idea what to put there, as the published > driver from adaptec is only for 5.x. > > I have to assume that aac is built into the sysinstall kernel, so what > gives ? Why can't sysinstall see my 2820sa cards ? (and drives) Try hitting scroll lock and then page up to view the dmesg or go to the emergency console and run dmesg to see if it picked up any aac devices. You may need to load the module yourself, you should be able to do this from the emergency console (not sure tho). I've steered clear of the *20SA series of cards from Adaptec (mainly buying the 2410SA) for the two facts, SATA2 isn't listed anywhere on the hardware list and only the xx10SA series SATA cards are listed. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00: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 E8CF516A47C for ; Mon, 19 Jun 2006 00:41:50 +0000 (UTC) (envelope-from zionicman@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3DA743D6D for ; Mon, 19 Jun 2006 00:41:44 +0000 (GMT) (envelope-from zionicman@gmail.com) Received: by wx-out-0102.google.com with SMTP id i31so735426wxd for ; Sun, 18 Jun 2006 17: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:in-reply-to:mime-version:content-type:references; b=p7AnDaef2YE673K4aqu0+zKWiFrtmdVoyRzl1Gv8Aw57OFqgOp9BdOUCe83w6T9bNiH2LxbZQ1uJaUrfrn54KNdUrbI3cRoRWKMuiCsbcaIM9pCxV9xcKpknRqaplSd30CcYSvjSt3CaDZ1S1P/lpMKc8G33dlLVq9qp5vlQJR8= Received: by 10.70.92.17 with SMTP id p17mr7609194wxb; Sun, 18 Jun 2006 17:41:43 -0700 (PDT) Received: by 10.70.111.17 with HTTP; Sun, 18 Jun 2006 17:41:43 -0700 (PDT) Message-ID: Date: Sun, 18 Jun 2006 20:41:43 -0400 From: "David Hoffman" To: freebsd-chat@freebsd.org, freebsd-questions@freebsd.org, freebsd-user-groups@freebsd.org, thisdayislong In-Reply-To: MIME-Version: 1.0 References: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Fwd: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 00:41:51 -0000 ---------- Forwarded message ---------- From: David Hoffman Date: Jun 18, 2006 8:38 PM Subject: Re: Serious breach of copyright -- First post To: Brett I think a formal apology should be issued by the infringers. Hasn't this gone on long enough? On 6/18/06, Brett < thisdayislong@gmail.com> wrote: > > Hello, > > I have not received a response in regards to this article, and it > still does not hold the proper references. I have posted a DMCA > takedown notice, which is available for viewing at > http://arbornet.org/~soup/dmca.html. I urge the webmaster of the > infringing site to add the copyright references as soon as possible. > > Thank you. > > Bonjour =E0 tous, > Je n'ai pas encore re=E7u de r=E9ponse au sujet de cet article, qui ne > porte pas ses r=E9ferences =E9xig=E9es. J'ai affich=E9 un "DMCA takedown > notice" (en anglais seulement) sur mon site, que l'on peut voir au > http://arbornet.org/~soup/dmca.html. Je demande cordialement au > webma=EEtre du site non-autoris=E9 d'ajouter les r=E9f=E9rences =E9xig=E9= es dans > les plus brefs d=E9lais. > > Merci. > > > On 6/18/06, David Hoffman wrote: > > It appears the page at > > http://www.houfug.org/help/install_freebsd.htm constitutes > > a serious breach of copyright. The article, which was originally > written > > and posted to the Internet by the owner of the account soup@arbornet.or= g, > is > > falsely attributed to the Houston FUG, whose members maliciously remove= d > all > > reference to its original creator. On a related note, the FUG seems to > be > > part of an organized group to convince all States to adopt English as a= n > > > official language, a bigoted and misguided policy. > > > > Plagiarism should not be tolerated. > > > > Thanks. > > > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00:45: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 EC5D916A474; Mon, 19 Jun 2006 00:45:02 +0000 (UTC) (envelope-from joe@joeholden.co.uk) Received: from elise.stf.rewt.org.uk (elise.stf.rewt.org.uk [82.152.108.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC0E843D48; Mon, 19 Jun 2006 00:45:01 +0000 (GMT) (envelope-from joe@joeholden.co.uk) Received: from [82.152.108.166] (im.a.raver.not.a.fucking.drug-addict.be [82.152.108.166]) (authenticated bits=0) by elise.stf.rewt.org.uk (8.13.6/8.13.4) with ESMTP id k5J0irgH007597 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jun 2006 01:44:56 +0100 (BST) (envelope-from joe@joeholden.co.uk) Message-ID: <4495F37F.1050807@joeholden.co.uk> Date: Mon, 19 Jun 2006 01:44:47 +0100 From: Joe Holden User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: David Hoffman References: In-Reply-To: X-Enigmail-Version: 0.94.0.0 OpenPGP: id=13A6D1E7; url=http://www.joeholden.co.uk/pubkey.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig6C8284A013D3FD2EBF0DD16D" X-Spam-Status: No, score=-3.3 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on elise.stf.rewt.org.uk Cc: thisdayislong , freebsd-chat@freebsd.org, freebsd-user-groups@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Fwd: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: joe@joeholden.co.uk List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 00:45:03 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig6C8284A013D3FD2EBF0DD16D Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable David Hoffman wrote: > ---------- Forwarded message ---------- > From: David Hoffman > Date: Jun 18, 2006 8:38 PM > Subject: Re: Serious breach of copyright -- First post > To: Brett > > I think a formal apology should be issued by the infringers. > > Hasn't this gone on long enough? > > > On 6/18/06, Brett < thisdayislong@gmail.com> wrote: >> >> Hello, >> >> I have not received a response in regards to this article, and it >> still does not hold the proper references. I have posted a DMCA >> takedown notice, which is available for viewing at >> http://arbornet.org/~soup/dmca.html. >> I urge the webmaster of the >> infringing site to add the copyright references as soon as possible. >> >> Thank you. >> >> Bonjour =E0 tous, >> Je n'ai pas encore re=E7u de r=E9ponse au sujet de cet article, qui ne= >> porte pas ses r=E9ferences =E9xig=E9es. J'ai affich=E9 un "DMCA taked= own >> notice" (en anglais seulement) sur mon site, que l'on peut voir au >> http://arbornet.org/~soup/dmca.html. >> Je demande cordialement au >> webma=EEtre du site non-autoris=E9 d'ajouter les r=E9f=E9rences =E9xig= =E9es dans >> les plus brefs d=E9lais. >> >> Merci. >> >> >> On 6/18/06, David Hoffman wrote: >> > It appears the page at >> > http://www.houfug.org/help/install_freebsd.htm constitutes >> > a serious breach of copyright. The article, which was originally >> written >> > and posted to the Internet by the owner of the account >> soup@arbornet.org, >> is >> > falsely attributed to the Houston FUG, whose members maliciously >> removed >> all >> > reference to its original creator. On a related note, the FUG >> seems to >> be >> > part of an organized group to convince all States to adopt English >> as an >> >> > official language, a bigoted and misguided policy. >> > >> > Plagiarism should not be tolerated. >> > >> > Thanks. >> > >> > _______________________________________________ > freebsd-chat@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-chat > To unsubscribe, send any mail to "freebsd-chat-unsubscribe@freebsd.org"= > Sorry if im being naive, but what does this have to do with the official FreeBSD project? and even more so, these lists? Ta, Joe --------------enig6C8284A013D3FD2EBF0DD16D 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 iD8DBQFElfOBdQJXshOm0ecRAnBFAKCA+C3PLODkLXQz3Ij+1LyofT/CKgCeOKYS WqpSxt5P7uOje3cA/suKjOQ= =MDWM -----END PGP SIGNATURE----- --------------enig6C8284A013D3FD2EBF0DD16D-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00:49: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 3A70916A479; Mon, 19 Jun 2006 00:49:25 +0000 (UTC) (envelope-from john@kozubik.com) Received: from kozubik.com (kozubik.com [69.43.165.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDE2243D45; Mon, 19 Jun 2006 00:49:24 +0000 (GMT) (envelope-from john@kozubik.com) Received: from kozubik.com (localhost [127.0.0.1]) by kozubik.com (8.12.11/8.12.11) with ESMTP id k5J0nQ3k003391; Sun, 18 Jun 2006 17:49:26 -0700 (PDT) (envelope-from john@kozubik.com) Received: from localhost (john@localhost) by kozubik.com (8.12.11/8.12.11/Submit) with ESMTP id k5J0nQ0t003388; Sun, 18 Jun 2006 17:49:26 -0700 (PDT) (envelope-from john@kozubik.com) Date: Sun, 18 Jun 2006 17:49:26 -0700 (PDT) From: John Kozubik To: Jahilliya In-Reply-To: Message-ID: <20060618174555.M730@kozubik.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-fs@freebsd.org, Ensel Sharon , freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not allowing 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: Mon, 19 Jun 2006 00:49:25 -0000 On Mon, 19 Jun 2006, Jahilliya wrote: > Try hitting scroll lock and then page up to view the dmesg or go to > the emergency console and run dmesg to see if it picked up any aac > devices. You may need to load the module yourself, you should be able > to do this from the emergency console (not sure tho). > > I've steered clear of the *20SA series of cards from Adaptec (mainly > buying the 2410SA) for the two facts, SATA2 isn't listed anywhere on > the hardware list and only the xx10SA series SATA cards are listed. Yes, that's a good point - which is why I was very cautious and made doubly sure to ask very clearly on this mailing list "can I install freebsd 6.1 on a 2820sa even though it is not in the HCL" and I was assured that the answer was yes. So you are saying you think that the 6.1-RELEASE iso does not have aac built into it ? After 4-5 years of it being in every install media, even floppies, you think it suddenly is just not there anymore ? I find that difficult to believe... I'll check the dmesg in scroll lock to be sure, but I am pretty sure it comes up with nothing aac-related. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00:54: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 AE14816A47D; Mon, 19 Jun 2006 00:54:41 +0000 (UTC) (envelope-from ingrid@cityscope.net) Received: from ns1.cityscope.net (cityscope.net [66.151.76.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3161843D48; Mon, 19 Jun 2006 00:54:41 +0000 (GMT) (envelope-from ingrid@cityscope.net) Received: from ingrid (user-0cetm18.cable.mindspring.com [24.238.216.40]) by ns1.cityscope.net (8.12.1/8.12.1) with ESMTP id k5J0sm0V014234; Sun, 18 Jun 2006 19:54:49 -0500 (CDT) Message-Id: <200606190054.k5J0sm0V014234@ns1.cityscope.net> From: "Ingrid Kast Fuller" To: "'David Hoffman'" , , , , "'thisdayislong'" Date: Sun, 18 Jun 2006 19:54:25 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Thread-Index: AcaTOSuR+jHf0CB8R9miBDhARB2A7gAATUtw In-Reply-To: X-Antivirus: avast! (VPS 0625-0, 06/19/2006), Outbound message X-Antivirus-Status: Clean Cc: Subject: RE: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 00:54:41 -0000 I responded to Bretts email 6 minutes after he informed me there maybe a problem with this article. He did NOT bother to tell me he was the owner of it. All I knew is someone named Brett at thisdayislong@gmail.com was letting me know there was a problem. I immediately went to arbornet.org to see where the original information was so I could find the originator's name and emailed him back, here is my reply. -----Original Message----- From: Ingrid Kast Fuller [mailto:ingrid@cityscope.net] Sent: Sunday, June 18, 2006 6:40 PM To: 'Brett' Subject: RE: concerned question I got the information from the freebsd-config mailing list which is referenced at the bottom. Do you know where the original information is on arbornet.org? I would not want to infringe on anyone's rights. Ingrid Kast Fuller CityScope Net 713-477-6161 3910 Fairmont Parkway #264 Pasadena, TX 77504-3076 http://www.cityscope.net -----Original Message----- From: Brett [mailto:thisdayislong@gmail.com] Sent: Sunday, June 18, 2006 6:34 PM To: ingrid@cityscope.net Subject: concerned question Hi. It has come to my attention that you have an article, located at http://www.houfug.org/help/install_freebsd.htm that is hosted on your fine site and yet is not referenced. It holds a copyright reference for houfug, who did not write the article. Please attribute the work to soup@arbornet.org . Thank you, A concerned citizen From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00: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 8519016A481 for ; Mon, 19 Jun 2006 00:55:13 +0000 (UTC) (envelope-from zionicman@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id A16AC43D68 for ; Mon, 19 Jun 2006 00:55:02 +0000 (GMT) (envelope-from zionicman@gmail.com) Received: by wx-out-0102.google.com with SMTP id i31so736442wxd for ; Sun, 18 Jun 2006 17:55: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:cc:in-reply-to:mime-version:content-type:references; b=Vr9SNfYMpkGF/M9pG13zb84346OaGAG2IVYaSKzxbD5zqBBwjkgJDNfsQJDdPrYnnVs4O9wkz5y9y8FTJ+YfeEnQ4dJJINXZUsLdvSpqlRgRKgXV/gyvFWsNjf1V0eeplSIEEc1dK91WutjuR/0EHCkrLWTXdIuFd384DC2SEoU= Received: by 10.70.46.2 with SMTP id t2mr6327347wxt; Sun, 18 Jun 2006 17:54:59 -0700 (PDT) Received: by 10.70.111.17 with HTTP; Sun, 18 Jun 2006 17:54:59 -0700 (PDT) Message-ID: Date: Sun, 18 Jun 2006 20:54:59 -0400 From: "David Hoffman" To: "Ingrid Kast Fuller" In-Reply-To: <200606190044.k5J0iP0V013858@ns1.cityscope.net> MIME-Version: 1.0 References: <200606190044.k5J0iP0V013858@ns1.cityscope.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: thisdayislong , freebsd-chat@freebsd.org, freebsd-user-groups@freebsd.org, freebsd-questions@freebsd.org Subject: Re: [Hou-freebsd] Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 00:55:13 -0000 On 6/18/06, Ingrid Kast Fuller wrote: > > If someone added it to the freebsd-config mailing list, they should not > have mailed a copyritten piece on a mailing list for public use. > This has been added to the bottom of the page since we are unsure of the > originator: > Things can be distributed on public mailing lists while still retaining their copyright. soup@arbornet.org did nothing to void his exclusive rights to the work in question. *We have been given the email address of: soup@arbornet.org as the original > copyright person. Unfortunately, we have no way of confirming this as yet. > We are trying to locate WHO originally wrote this. We took this off the > freebsd-config mailing list which is a public mailing list.* > You've been provided both with an archive of initial publication including soup@arbornet.org's address as the author, as well as a URL to a DMCA takedown notice hosted in his webspace. This is sufficient. *It seems this David Hoffman is directly attacking our group. Because there > are no references to HOUFUG being a part of an organized group to adopt > English as the official language. HOUFUG does not have any political ties > with anyone. We only have a FreeBSD mailing list to discuss FreeBSD issues. > * > I'm not directly attacking your group. If you're not political, and I'm arguing against something political, how could I possibly be 'attacking' your group? "On a related note, the FUG seems to be part of an organized group to > convince all States to adopt English as an official language, a bigoted and > misguided policy." > > I personally have a link to the US English organization on my PERSONAL > home page of www.ingridfuller.com. This has nothing to do with HOUFUG or > FreeBSD at all. What I believe in is my business and my right as a citizen > of the United States. This is NOT a misguided or bigoted policy. We've > been speaking English since Day 1 and the International Language is > "ENGLISH". > You certainly have a right to be misguided and bigoted. Americans have spoken English since 'Day 1', but they've also spoken several other languages since that time, and today speak even more. The lingua franca of the world today may be English, but it doesn't follow from that that it should be the official language of all states. *Ingrid Kast Fuller > **CityScope Net 713-477-6161 > 3910 Fairmont Parkway #264 > Pasadena, TX 77504-3076 > **http://www.cityscope.net* > > > ------------------------------ > *From:* hou-freebsd-admin@houfug.org [mailto:hou-freebsd-admin@houfug.org] > *On Behalf Of *David Hoffman > *Sent:* Sunday, June 18, 2006 6:49 PM > *To:* hou-freebsd@houfug.org > *Cc:* ingrid@cityscope.net; freebsd-user-groups@freebsd.org; > freebsd-standards@freebsd.org; freebsd-questions@freebsd.org; > freebsd-chat@freebsd.org; wikien-l@wikipedia.org; wikitech-l@wikimedia.org > *Subject:* [Hou-freebsd] Serious breach of copyright -- First post > > **It appears the page at http://www.houfug.org/help/install_freebsd.htmconstitutes a serious breach of copyright. The article, which was > originally written and posted to the Internet by the owner of the account > soup@arbornet.org, is falsely attributed to the Houston FUG, whose members > maliciously removed all reference to its original creator. On a related > note, the FUG seems to be part of an organized group to convince all States > to adopt English as an official language, a bigoted and misguided policy. > > Plagiarism should not be tolerated. > > Thanks. > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 00: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 BDAB216A47B; Mon, 19 Jun 2006 00:56:18 +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 4F77D43DA0; Mon, 19 Jun 2006 00:55:56 +0000 (GMT) (envelope-from user@dhp.com) Received: by shell.dhp.com (Postfix, from userid 896) id 06A453132F; Sun, 18 Jun 2006 20:55:52 -0400 (EDT) Date: Sun, 18 Jun 2006 20:55:52 -0400 (EDT) From: Ensel Sharon To: Jahilliya In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-fs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not allowing 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: Mon, 19 Jun 2006 00:56:18 -0000 On Mon, 19 Jun 2006, Jahilliya wrote: > Try hitting scroll lock and then page up to view the dmesg or go to > the emergency console and run dmesg to see if it picked up any aac > devices. You may need to load the module yourself, you should be able > to do this from the emergency console (not sure tho). > > I've steered clear of the *20SA series of cards from Adaptec (mainly > buying the 2410SA) for the two facts, SATA2 isn't listed anywhere on > the hardware list and only the xx10SA series SATA cards are listed. Ok, aac is in the dmesg. I can see both 2820sa cards in the dmesg, and I see no errors, etc. - there are just no drives listed in dmesg. My setup is 8 500 Gb drives in a single raid-6 array, size ~2.8TB. Any problems with that ? Perhaps sysinstall cannot deal with a >2TB drive ? There are no other drives in the system besides the single 2.8TB raid 6 array ... Thanks. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:01: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 34E2C16A4A7 for ; Mon, 19 Jun 2006 01:01:00 +0000 (UTC) (envelope-from jahilliya@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 538B743D70 for ; Mon, 19 Jun 2006 01:00:59 +0000 (GMT) (envelope-from jahilliya@gmail.com) Received: by nz-out-0102.google.com with SMTP id m7so480045nzf for ; Sun, 18 Jun 2006 18:00: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VJPEno0nmk6TFXmQdIICL1MLCvtJTsW30cYiIk9h8Ga83DWGciCBHTsPfRNtilz2QMzjXVn7cpZYPKwcPgMGsA1AsGp5jLk5FJAGuoLem858sQ46zgtXchAKVCap/El2w6Gr9RD2jweD6UJkL/BNYRzQ9dGjZjnBSU/k7Jjqtpo= Received: by 10.36.91.2 with SMTP id o2mr1129593nzb; Sun, 18 Jun 2006 18:00:58 -0700 (PDT) Received: by 10.37.15.74 with HTTP; Sun, 18 Jun 2006 18:00:58 -0700 (PDT) Message-ID: Date: Mon, 19 Jun 2006 09:00:58 +0800 From: Jahilliya To: "John Kozubik" In-Reply-To: <20060618174555.M730@kozubik.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060618174555.M730@kozubik.com> Cc: freebsd-fs@freebsd.org, Ensel Sharon , freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not allowing 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: Mon, 19 Jun 2006 01:01:00 -0000 On 6/19/06, John Kozubik wrote: > > > On Mon, 19 Jun 2006, Jahilliya wrote: > > > Try hitting scroll lock and then page up to view the dmesg or go to > > the emergency console and run dmesg to see if it picked up any aac > > devices. You may need to load the module yourself, you should be able > > to do this from the emergency console (not sure tho). > > > > I've steered clear of the *20SA series of cards from Adaptec (mainly > > buying the 2410SA) for the two facts, SATA2 isn't listed anywhere on > > the hardware list and only the xx10SA series SATA cards are listed. > > > Yes, that's a good point - which is why I was very cautious and made > doubly sure to ask very clearly on this mailing list "can I install > freebsd 6.1 on a 2820sa even though it is not in the HCL" and I was > assured that the answer was yes. > > So you are saying you think that the 6.1-RELEASE iso does not have aac > built into it ? After 4-5 years of it being in every install media, even > floppies, you think it suddenly is just not there anymore ? I find that > difficult to believe... > > I'll check the dmesg in scroll lock to be sure, but I am pretty sure it > comes up with nothing aac-related. I'm saying it's a possibility if you're not seeing anything AAC related in the dmesg and you should make sure that it is in the kernel or loaded as a module by running kldload (kldload will give some error about symbol already existing if it is built into the kernel). From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:01: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 8AA2216A474 for ; Mon, 19 Jun 2006 01:01:01 +0000 (UTC) (envelope-from thisdayislong@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 EB62F43D6D for ; Mon, 19 Jun 2006 01:00:56 +0000 (GMT) (envelope-from thisdayislong@gmail.com) Received: by nf-out-0910.google.com with SMTP id o63so1052672nfa for ; Sun, 18 Jun 2006 18:00: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=iWl42MJF/NKe1lBLYMX9LcrjaTtgo+s0eM9LJIlyQE3xnaNRAaaipJApwil9axrXKCD3y0K9KEmY08SeKOv6RQ58YwWmSVRL4HXwcP7WwgHRnWY/UNAcfTsc7E/gg9SsTuHfsWk4ITNcQ9YJCqaYnjDzVvlHAGggttN5bRnlVKU= Received: by 10.49.15.8 with SMTP id s8mr4453127nfi; Sun, 18 Jun 2006 18:00:55 -0700 (PDT) Received: by 10.49.3.14 with HTTP; Sun, 18 Jun 2006 18:00:55 -0700 (PDT) Message-ID: Date: Sun, 18 Jun 2006 21:00:55 -0400 From: Brett To: "Ingrid Kast Fuller" In-Reply-To: <200606190054.k5J0sm0V014234@ns1.cityscope.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200606190054.k5J0sm0V014234@ns1.cityscope.net> Cc: David Hoffman , freebsd-chat@freebsd.org, freebsd-user-groups@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:01:01 -0000 Hello I hope the DMCA copyright notice, found at http://arbornet.org/~soup/dmca.html , clears up any confusion. thank you! On 6/18/06, Ingrid Kast Fuller wrote: > I responded to Bretts email 6 minutes after he informed me there maybe a > problem with this article. He did NOT bother to tell me he was the owner of > it. All I knew is someone named Brett at thisdayislong@gmail.com was > letting me know there was a problem. I immediately went to arbornet.org to > see where the original information was so I could find the originator's name > and emailed him back, here is my reply. > > -----Original Message----- > From: Ingrid Kast Fuller [mailto:ingrid@cityscope.net] > Sent: Sunday, June 18, 2006 6:40 PM > To: 'Brett' > Subject: RE: concerned question > > I got the information from the freebsd-config mailing list which is > referenced at the bottom. > Do you know where the original information is on arbornet.org? I would not > want to infringe on anyone's rights. > > > Ingrid Kast Fuller > CityScope Net 713-477-6161 > 3910 Fairmont Parkway #264 > Pasadena, TX 77504-3076 > http://www.cityscope.net > > > > -----Original Message----- > From: Brett [mailto:thisdayislong@gmail.com] > Sent: Sunday, June 18, 2006 6:34 PM > To: ingrid@cityscope.net > Subject: concerned question > > Hi. > > It has come to my attention that you have an article, located at > http://www.houfug.org/help/install_freebsd.htm > that is hosted on your fine site and yet is not referenced. It holds a > copyright reference for houfug, who did not write the article. > Please attribute the work to soup@arbornet.org . > > Thank you, > A concerned citizen > > > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:04: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 F0D3016A47B for ; Mon, 19 Jun 2006 01:04:58 +0000 (UTC) (envelope-from jahilliya@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBC4C43D6B for ; Mon, 19 Jun 2006 01:04:57 +0000 (GMT) (envelope-from jahilliya@gmail.com) Received: by nz-out-0102.google.com with SMTP id m7so480395nzf for ; Sun, 18 Jun 2006 18:04: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:content-transfer-encoding:content-disposition:references; b=KV30n6GcTdgX0Mn+179vrDDN7oHc2yaPrMMR/jLWBi4lG7Z0k/nRmIE2BcrtQzpF/3wnCRIA5BzUoGP9TCNS2N1dB8570VvKX4nvbGWStM0oQSN1KX62DpcYMBUDmdKlvup3/AU+9bMeGqonfUws8Scn7M+aLpy+DgA2uFe6Vmk= Received: by 10.37.12.45 with SMTP id p45mr6799747nzi; Sun, 18 Jun 2006 18:04:57 -0700 (PDT) Received: by 10.37.15.74 with HTTP; Sun, 18 Jun 2006 18:04:56 -0700 (PDT) Message-ID: Date: Mon, 19 Jun 2006 09:04:56 +0800 From: Jahilliya To: "Ensel Sharon" 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: Cc: freebsd-fs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not allowing 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: Mon, 19 Jun 2006 01:04:59 -0000 > Ok, aac is in the dmesg. > > I can see both 2820sa cards in the dmesg, and I see no errors, etc. - > there are just no drives listed in dmesg. > > My setup is 8 500 Gb drives in a single raid-6 array, size ~2.8TB. Any > problems with that ? Perhaps sysinstall cannot deal with a >2TB drive > ? There are no other drives in the system besides the single 2.8TB raid 6 > array ... > Have you got any other drives you can attach to the raid? If so, disconnect the 8 drives connected, connect up a couple that are not part of the raid and configure them as a simple raid 1 and see if the installers sees that raid. Or try any combination in drives to bring the raid size down below 2TB (I'm sure this limitation has been fixed.) From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:05: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 2017216A47C for ; Mon, 19 Jun 2006 01:05:58 +0000 (UTC) (envelope-from zionicman@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1365043D7C for ; Mon, 19 Jun 2006 01:05:37 +0000 (GMT) (envelope-from zionicman@gmail.com) Received: by wx-out-0102.google.com with SMTP id i31so737289wxd for ; Sun, 18 Jun 2006 18:05: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:in-reply-to:mime-version:content-type:references; b=PKFCAkZpis4LwewoenlXm6HY/mi7rFec0NAaZuqBCrPZgvvzv1xysl7OgPh24SQ9ha/vpZp9FwCARxCNdTPPyp8B9auAmPq3Q/pX3703ZlJbjkiJAbcdqOlTc+Vv49Urle9rLsX0ZYIiCgTVBMxzefVLRwccszuNRrEV5ZD/Wv0= Received: by 10.70.17.12 with SMTP id 12mr7599529wxq; Sun, 18 Jun 2006 18:05:37 -0700 (PDT) Received: by 10.70.111.17 with HTTP; Sun, 18 Jun 2006 18:05:37 -0700 (PDT) Message-ID: Date: Sun, 18 Jun 2006 21:05:37 -0400 From: "David Hoffman" To: Brett In-Reply-To: MIME-Version: 1.0 References: <200606190054.k5J0sm0V014234@ns1.cityscope.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: Ingrid Kast Fuller , freebsd-chat@freebsd.org, freebsd-user-groups@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:05:58 -0000 It'll certainly be less confusing that what HouFUG is publishing. They've now noted on their site that it was written by you. However, they STILL claim they own the copyright. Have you waived any of your exclusive rights to the work? On 6/18/06, Brett wrote: > > Hello > > I hope the DMCA copyright notice, found at > http://arbornet.org/~soup/dmca.html , clears up any confusion. > > thank you! > On 6/18/06, Ingrid Kast Fuller wrote: > > I responded to Bretts email 6 minutes after he informed me there maybe a > > problem with this article. He did NOT bother to tell me he was the > owner of > > it. All I knew is someone named Brett at thisdayislong@gmail.com was > > letting me know there was a problem. I immediately went to arbornet.orgto > > see where the original information was so I could find the originator's > name > > and emailed him back, here is my reply. > > > > -----Original Message----- > > From: Ingrid Kast Fuller [mailto:ingrid@cityscope.net] > > Sent: Sunday, June 18, 2006 6:40 PM > > To: 'Brett' > > Subject: RE: concerned question > > > > I got the information from the freebsd-config mailing list which is > > referenced at the bottom. > > Do you know where the original information is on arbornet.org? I would > not > > want to infringe on anyone's rights. > > > > > > Ingrid Kast Fuller > > CityScope Net 713-477-6161 > > 3910 Fairmont Parkway #264 > > Pasadena, TX 77504-3076 > > http://www.cityscope.net > > > > > > > > -----Original Message----- > > From: Brett [mailto:thisdayislong@gmail.com] > > Sent: Sunday, June 18, 2006 6:34 PM > > To: ingrid@cityscope.net > > Subject: concerned question > > > > Hi. > > > > It has come to my attention that you have an article, located at > > http://www.houfug.org/help/install_freebsd.htm > > that is hosted on your fine site and yet is not referenced. It holds a > > copyright reference for houfug, who did not write the article. > > Please attribute the work to soup@arbornet.org . > > > > Thank you, > > A concerned citizen > > > > > > > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:06: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 986E816A47B for ; Mon, 19 Jun 2006 01:06:46 +0000 (UTC) (envelope-from lordsporkton@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3391543DB0 for ; Mon, 19 Jun 2006 01:06:46 +0000 (GMT) (envelope-from lordsporkton@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so995230nzn for ; Sun, 18 Jun 2006 18:06: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:content-transfer-encoding:content-disposition; b=GbvU9XpTM8bWrCyq2bRZUQVeG/iUZPmwmU7dNrxRFXrutnkQRp/nG83BaQLlqRR4Qz75JenS+nIcvI6eJ1+37uk6nYkpEsw37DAnTAcBdH7joL52Rj9Wl9sYBriTl/pi3Sjll2rCeHrn6IKWlbWuaBiUaSAd45Mu6koEpv6HTVI= Received: by 10.64.112.8 with SMTP id k8mr273336qbc; Sun, 18 Jun 2006 18:06:45 -0700 (PDT) Received: by 10.65.11.9 with HTTP; Sun, 18 Jun 2006 18:06:45 -0700 (PDT) Message-ID: Date: Sun, 18 Jun 2006 18:06:45 -0700 From: "Lawrence Horvath" 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: syslog all commands X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:06:46 -0000 Im looking for a way to syslog all commands run my a group of users, i was looking at the authpriv.debug but it doesn't log _every_ command, is there anyother way to syslog all the commands run by a user? thanks -Lawrence From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:12: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 111D016A47B for ; Mon, 19 Jun 2006 01:12:25 +0000 (UTC) (envelope-from zionicman@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CAAB43D46 for ; Mon, 19 Jun 2006 01:12:23 +0000 (GMT) (envelope-from zionicman@gmail.com) Received: by wx-out-0102.google.com with SMTP id i31so737854wxd for ; Sun, 18 Jun 2006 18:12: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=kPtcKy2XdlSsKAtEJeWgangks4RCFQYAbL5VMbA/KKgIS6ift1B2yFLp3wleFdPDq5Tye71BcdZVmFFqN75TTrSPFE/ISL2Tv0Yq6CVLGlvbH8R2x/ZbppmPXgYc/FrZkKiJvK5n6ZaOjTOjSIzE5C+pVZalgZYpjzWv7IQs9Io= Received: by 10.70.132.14 with SMTP id f14mr7657380wxd; Sun, 18 Jun 2006 18:12:22 -0700 (PDT) Received: by 10.70.111.17 with HTTP; Sun, 18 Jun 2006 18:12:22 -0700 (PDT) Message-ID: Date: Sun, 18 Jun 2006 21:12:22 -0400 From: "David Hoffman" To: Brett In-Reply-To: MIME-Version: 1.0 References: <200606190054.k5J0sm0V014234@ns1.cityscope.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: Ingrid Kast Fuller , freebsd-chat@freebsd.org, freebsd-user-groups@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:12:25 -0000 Update: their website now attributes copyright to both HouFUG AND Brett. This is despite the fact that Brett seems to be the sole owner of the work. I'm not sure why this community feels it can disregard rights to intellectual property, especially when it produces so much on its OWN to be proud of. Why steal other people's stuff? On 6/18/06, David Hoffman wrote: > > It'll certainly be less confusing that what HouFUG is publishing. They've > now noted on their site that it was written by you. However, they STILL > claim they own the copyright. Have you waived any of your exclusive rights > to the work? > > On 6/18/06, Brett wrote: > > > Hello > > > > I hope the DMCA copyright notice, found at > > http://arbornet.org/~soup/dmca.html, clears up any confusion. > > > > thank you! > > On 6/18/06, Ingrid Kast Fuller < ingrid@cityscope.net> wrote: > > > I responded to Bretts email 6 minutes after he informed me there maybe > > a > > > problem with this article. He did NOT bother to tell me he was the > > owner of > > > it. All I knew is someone named Brett at thisdayislong@gmail.com was > > > letting me know there was a problem. I immediately went to > > arbornet.org to > > > see where the original information was so I could find the > > originator's name > > > and emailed him back, here is my reply. > > > > > > -----Original Message----- > > > From: Ingrid Kast Fuller [mailto: ingrid@cityscope.net] > > > Sent: Sunday, June 18, 2006 6:40 PM > > > To: 'Brett' > > > Subject: RE: concerned question > > > > > > I got the information from the freebsd-config mailing list which is > > > referenced at the bottom. > > > Do you know where the original information is on arbornet.org? I > > would not > > > want to infringe on anyone's rights. > > > > > > > > > Ingrid Kast Fuller > > > CityScope Net 713-477-6161 > > > 3910 Fairmont Parkway #264 > > > Pasadena, TX 77504-3076 > > > http://www.cityscope.net > > > > > > > > > > > > -----Original Message----- > > > From: Brett [mailto:thisdayislong@gmail.com] > > > Sent: Sunday, June 18, 2006 6:34 PM > > > To: ingrid@cityscope.net > > > Subject: concerned question > > > > > > Hi. > > > > > > It has come to my attention that you have an article, located at > > > http://www.houfug.org/help/install_freebsd.htm > > > that is hosted on your fine site and yet is not referenced. It holds > > a > > > copyright reference for houfug, who did not write the article. > > > Please attribute the work to soup@arbornet.org . > > > > > > Thank you, > > > A concerned citizen > > > > > > > > > > > > > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:21: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 3026116A474 for ; Mon, 19 Jun 2006 01:21:14 +0000 (UTC) (envelope-from zionicman@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8510A43D45 for ; Mon, 19 Jun 2006 01:21:13 +0000 (GMT) (envelope-from zionicman@gmail.com) Received: by wx-out-0102.google.com with SMTP id i31so738575wxd for ; Sun, 18 Jun 2006 18:21:13 -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=ZOqtzzELNV0o3cyqiGOx5ctrc7JbxNQL5nxuKHt0cYs/X6ML7dhvCS2d6yeYXA9NIqX20P9BzZY6YrcuL21VHDAJhcI6fNQyTuq+thha+6D3XXAbZxZvjY9OqFYkvEKvEWHdxTCfK9F0OS0yqd2j8LwwQKRzv+iKjdZZufygUD0= Received: by 10.70.24.3 with SMTP id 3mr7625676wxx; Sun, 18 Jun 2006 18:21:12 -0700 (PDT) Received: by 10.70.111.17 with HTTP; Sun, 18 Jun 2006 18:21:12 -0700 (PDT) Message-ID: Date: Sun, 18 Jun 2006 21:21:12 -0400 From: "David Hoffman" To: freebsd-questions@freebsd.org In-Reply-To: MIME-Version: 1.0 References: <4495F9A1.8040407@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: Fwd: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:21:14 -0000 ---------- Forwarded message ---------- From: David Hoffman Date: Jun 18, 2006 9:19 PM Subject: Re: Fwd: Serious breach of copyright -- First post To: Dennis Olvany Cc: freebsd-chat@freebsd.org, freebsd-questions@freebsd.org, freebsd-user-groups@freebsd.org, thisdayislong , ingrid@cityscope.net On 6/18/06, Dennis Olvany wrote: > > I had a look at http://www.houfug.org/help/install_freebsd.htm and I am > afraid that you will find this article is not eligible for copyright. It > constitutes neither an artistic nor literary work. The article conveys > only facts and facts are not eligible for copyright. > I'm afraid you're incorrect. The work in question is indeed copyrightable under the Berne Convention, which many countries have ratified, including the United States, where the content is hosted. The United States, as well as many other countries, also have national laws which allow this work to be copyrighted. It's also important to note that HouFUG clearly believes the work can be copyrighted, since they have included a copyright notice on the page. This implies tremendous bad faith: regardless of whether or not the article is copyrightable (it is), they have removed any reference to the true owner and have claimed it as their own. This is not acceptable behaviour. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:24: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 A6CFA16A474 for ; Mon, 19 Jun 2006 01:24:21 +0000 (UTC) (envelope-from dscheidt@panix.com) Received: from mail3.panix.com (mail3.panix.com [166.84.1.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FBF743D46 for ; Mon, 19 Jun 2006 01:24:21 +0000 (GMT) (envelope-from dscheidt@panix.com) Received: from panix5.panix.com (panix5.panix.com [166.84.1.5]) by mail3.panix.com (Postfix) with ESMTP id 65E2113A8C2; Sun, 18 Jun 2006 21:24:20 -0400 (EDT) Received: (from dscheidt@localhost) by panix5.panix.com (8.11.6p3/8.8.8/PanixN1.1) id k5J1OKe09198; Sun, 18 Jun 2006 21:24:20 -0400 (EDT) Date: Sun, 18 Jun 2006 21:24:20 -0400 From: David Scheidt To: Lawrence Horvath Message-ID: <20060619012420.GA20345@panix.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.10i Cc: freebsd-questions@freebsd.org Subject: Re: syslog all commands X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:24:21 -0000 On Sun, Jun 18, 2006 at 06:06:45PM -0700, Lawrence Horvath wrote: > Date: Sun, 18 Jun 2006 18:06:45 -0700 > From: Lawrence Horvath > To: freebsd-questions@freebsd.org > Subject: syslog all commands > > Im looking for a way to syslog all commands run my a group of users, i > was looking at the authpriv.debug but it doesn't log _every_ command, > is there anyother way to syslog all the commands run by a user? > Is process accounting good enough? It'll record the name of the commands run by all users, what terminal they were run from, how much cpu time they used, and start and stop times. See the man pages for acct(5) and lastcomm(1). It's turned on by setting accounting_enable="YES" in /etc/rc.conf, and running /etc/rc.d/accounting start David From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:43: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 6A23B16A47A for ; Mon, 19 Jun 2006 01:43:18 +0000 (UTC) (envelope-from nehe@cruzinternet.com) Received: from mail.cruzinternet.com (mail.cruzinternet.com [216.234.167.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5E1343D49 for ; Mon, 19 Jun 2006 01:43:17 +0000 (GMT) (envelope-from nehe@cruzinternet.com) Received: (qmail 4868 invoked from network); 19 Jun 2006 01:43:17 -0000 Received: from iphost-216-234-182-9.cruzinternet.com (HELO ?192.168.1.2?) (216.234.182.9) by mail.cruzinternet.com with SMTP; 19 Jun 2006 01:43:17 -0000 Message-ID: <44960134.9030502@cruzinternet.com> Date: Sun, 18 Jun 2006 19:43:16 -0600 From: Jeff Molofee User-Agent: Thunderbird 1.5.0.4 (X11/20060610) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060617071239.1F08D16A56D@hub.freebsd.org> In-Reply-To: <20060617071239.1F08D16A56D@hub.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:43:18 -0000 After upgrading to linux_base-fc4, I've noticed a lot of applications and games that will no longer run. One of the games is HoH. I receive the following error when trying to run it... does anyone know how to fix this? ./HoH: error while loading shared libraries: libstdc++-libc6.2-2.so.3: cannot open shared object file: No such file or directory From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:48: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 0C87116A474; Mon, 19 Jun 2006 01:48:00 +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 862CF43D46; Mon, 19 Jun 2006 01:47:59 +0000 (GMT) (envelope-from user@dhp.com) Received: by shell.dhp.com (Postfix, from userid 896) id ABD9631324; Sun, 18 Jun 2006 21:47:58 -0400 (EDT) Date: Sun, 18 Jun 2006 21:47:58 -0400 (EDT) From: Ensel Sharon To: freebsd-fs@freebsd.org In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not ... RESOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:48:00 -0000 On Mon, 19 Jun 2006, Jahilliya wrote: > > Ok, aac is in the dmesg. > > > > I can see both 2820sa cards in the dmesg, and I see no errors, etc. - > > there are just no drives listed in dmesg. > > > > My setup is 8 500 Gb drives in a single raid-6 array, size ~2.8TB. Any > > problems with that ? Perhaps sysinstall cannot deal with a >2TB drive > > ? There are no other drives in the system besides the single 2.8TB raid 6 > > array ... > > > > Have you got any other drives you can attach to the raid? > > If so, disconnect the 8 drives connected, connect up a couple that are > not part of the raid and configure them as a simple raid 1 and see if > the installers sees that raid. Or try any combination in drives to > bring the raid size down below 2TB (I'm sure this limitation has been > fixed.) Ok, the answer is that it has not been fixed. 6.1 sysinstall does in fact see both 2820sa controllers, and when I put in a single 160GB sata drive, it does see that single drive and I can install onto it, etc. Sysinstall does _not_ see my 2.7TB raid6 array. I suspect that if it were smaller than 2TB, it would see it correctly. I have a number of options with which to deal with this, all of which involve either wasting money or wasting disk space. Fantastic. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01: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 88DC516A47A for ; Mon, 19 Jun 2006 01:57:07 +0000 (UTC) (envelope-from travis@fitch.id.au) Received: from kaur.zehym.com (fitch.id.au [203.89.243.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2432143D45 for ; Mon, 19 Jun 2006 01:57:06 +0000 (GMT) (envelope-from travis@fitch.id.au) Received: from tfitch (tfitch.gc.net.au [203.89.220.251]) (authenticated bits=0) by kaur.zehym.com (8.13.1/8.13.1) with ESMTP id k5J1mfxY037157; Mon, 19 Jun 2006 11:48:44 +1000 (EST) (envelope-from travis@fitch.id.au) Message-Id: <200606190148.k5J1mfxY037157@kaur.zehym.com> From: "Travis Fitch" To: Date: Mon, 19 Jun 2006 11:56:57 +1000 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Thread-Index: AcaTQ6VOM0dc6zyrTRa6iQkQiFp1HA== Subject: Sendmail and high kernel CPU utilisation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:57:07 -0000 Hello, I was hoping someone might be able to shed some light on an issue I am having with sendmail on FreeBSD 5.2.1 running on a Sun V120. If you look at the snippet from top you can see that several sendmail process are casing the kernel to use ~ 65% of the CPU. I am having some issues profiling what is causing this issue. You can also see the load is quite high. last pid: 72705; load averages: 12.22, 12.29, 12.00 up 1+06:09:44 11:42:28 86 processes: 14 running, 72 sleeping CPU states: 35.5% user, 0.0% nice, 64.5% system, 0.0% interrupt, 0.0% idle Mem: 148M Active, 104M Inact, 73M Wired, 520K Cache, 60M Buf, 131M Free Swap: 2057M Total, 102M Used, 1954M Free, 4% Inuse PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND 20958 root 122 0 23368K 5472K RUN 44:32 8.64% 8.64% sendmail 62864 root 122 0 23432K 5528K RUN 10:45 8.54% 8.54% sendmail 70522 root 122 0 23448K 5544K RUN 2:43 8.35% 8.35% sendmail 91279 smmsp 122 0 12224K 3832K RUN 60:17 8.25% 8.25% sendmail 66302 root 122 0 23392K 5472K RUN 8:36 8.25% 8.25% sendmail 16850 root 122 0 23432K 5528K RUN 51:31 8.20% 8.20% sendmail 66306 root 121 0 23448K 5528K RUN 8:34 8.11% 8.11% sendmail 68330 root 121 0 23432K 5528K RUN 5:37 8.11% 8.11% sendmail 51654 root 121 0 23392K 5472K RUN 16:40 8.06% 8.06% sendmail 66377 root 121 0 23392K 5472K RUN 8:22 8.01% 8.01% sendmail 69364 root 121 0 23432K 5504K RUN 3:50 8.01% 8.01% sendmail The other interesting thing is that a lot of the SMTP connections hang around for quite some time. These connection just keep building up and slowly bring the system to a crawl. correo:root# ps aux| grep -v grep | grep sendmail root 62864 8.0 1.1 23432 5528 ?? R 10:06AM 10:49.58 sendmail: k5J06CMN062864 mx02.globalcenter.net.au [203.89.192.35]: DATA (sendmail) root 66306 8.0 1.1 23448 5528 ?? R 10:18AM 8:38.72 sendmail: k5J0IoxC066306 omta02ps.mx.bigpond.com [144.140.83.154]: DATA (sendmail) root 66377 7.9 1.1 23392 5472 ?? R 10:20AM 8:26.25 sendmail: k5J0KHGa066377 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) root 20958 8.0 1.1 23368 5472 ?? R 5:14AM 44:36.44 sendmail: k5IJF2bd020958 [83.173.162.41]: DATA (sendmail) root 68330 8.0 1.1 23432 5528 ?? R 10:43AM 5:41.33 sendmail: k5J0hOAk068330 mx01.globalcenter.net.au [203.89.192.34]: DATA (sendmail) root 69364 8.0 1.1 23432 5504 ?? R 10:59AM 3:54.45 sendmail: k5J0xmg6069364 omta05ps.mx.bigpond.com [144.140.83.195]: DATA (sendmail) root 70522 8.0 1.1 23448 5544 ?? R 11:11AM 2:47.79 sendmail: k5J1BY7Y070522 mx01.globalcenter.net.au [203.89.192.34]: DATA (sendmail) root 66302 8.0 1.1 23392 5472 ?? R 10:18AM 8:40.20 sendmail: k5J0If8t066302 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) smmsp 91279 8.0 0.7 12224 3832 ?? Rs 4:01AM 60:20.92 sendmail: Queue runner@00:10:00 for /var/spool/clientmqueue (sendmail) root 16850 8.0 1.1 23432 5528 ?? R 4:30AM 51:34.91 sendmail: k5IIUaWm016850 [201.150.67.51]: DATA (sendmail) root 51654 8.0 1.1 23392 5472 ?? R 9:37AM 16:44.52 sendmail: k5INbbYo051654 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) root 91276 0.0 1.0 22928 5032 ?? Ss 4:01AM 0:03.05 sendmail: rejecting connections on daemon MSA: load average: 12 (sendmail) I have rebuilt the world and kernel to see if the resolves my issue, but alas no luck. Hopefully someone will be able to point be in the right direction. Regards, Travis From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01: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 33A1716A479 for ; Mon, 19 Jun 2006 01:59:21 +0000 (UTC) (envelope-from walt@wump.org) Received: from mxsf05.cluster1.charter.net (mxsf05.cluster1.charter.net [209.225.28.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5AB043D6D for ; Mon, 19 Jun 2006 01:59:14 +0000 (GMT) (envelope-from walt@wump.org) Received: from mxip20a.cluster1.charter.net (mxip20a.cluster1.charter.net [209.225.28.150]) by mxsf05.cluster1.charter.net (8.12.11/8.12.11) with ESMTP id k5J1xDsA018579 for ; Sun, 18 Jun 2006 21:59:13 -0400 Received: from 68-116-98-9.dhcp.rsbg.or.charter.com (HELO [10.0.0.10]) ([68.116.98.9]) by mxip20a.cluster1.charter.net with ESMTP; 18 Jun 2006 21:59:12 -0400 X-IronPort-AV: i="4.06,148,1149480000"; d="scan'208"; a="407966257:sNHT23789306" Mime-Version: 1.0 X-Sender: wump@sorcom.com@mail.mcsi.net Message-Id: In-Reply-To: <64167.192.168.0.104.1150620551.squirrel@192.168.0.50> References: <63411.192.168.0.104.1150566985.squirrel@192.168.0.50> <64167.192.168.0.104.1150620551.squirrel@192.168.0.50> Date: Sun, 18 Jun 2006 18:15:06 -0700 To: freebsd-questions@freebsd.org From: Walt Pawley Content-Type: text/plain; charset="us-ascii" Subject: Re: X ATI driver? - solved, sort of X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:59:21 -0000 Operationally, at least, I seem to resolved my problem with Xorg 6.9.0 and using the Mach32 ATI video card. I included lines in xorg.conf.new in Section "Device" ... Option "tv_out" "false" Option "tv_standard" "None" I suspect only the latter is necessary but haven't experimented to see. The reason for doing this seems to me to be some bugs in the ATI driver arrangement and Xorg general code. It seems that there are many implementations of strncasecmp in different packages, despite what seems to be a "standard" available in libc (???). Xorg's is xf86strncasecmp and is written so that it goes ahead and dereferences a null pointer if one is passed to it - hence the segment error crash. The null pointer comes from the string TvStd not being initialized when ATIProcessOptions runs with the "Xorg -configure" generated xorg.conf.new file. While I haven't traced how the variable gets defined, by changing the option above, that would seem to be the effect as it quits crashing subsequently. -- Walter M. Pawley Wump Research & Company 676 River Bend Road, Roseburg, OR 97470 541-672-8975 From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 02:06: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 9D2F016A47F; Mon, 19 Jun 2006 02:06:39 +0000 (UTC) (envelope-from anderson@centtech.com) Received: from mh2.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4394F43D45; Mon, 19 Jun 2006 02:06:39 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [192.168.42.22] (andersonbox2.centtech.com [192.168.42.22]) by mh2.centtech.com (8.13.1/8.13.1) with ESMTP id k5J26bHi029249; Sun, 18 Jun 2006 21:06:37 -0500 (CDT) (envelope-from anderson@centtech.com) Message-ID: <449606B8.5080106@centtech.com> Date: Sun, 18 Jun 2006 21:06:48 -0500 From: Eric Anderson User-Agent: Thunderbird 1.5.0.4 (X11/20060612) MIME-Version: 1.0 To: Ensel Sharon References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.87.1/1549/Sat Jun 17 17:20:39 2006 on mh2.centtech.com X-Virus-Status: Clean Cc: freebsd-fs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not ... RESOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 02:06:39 -0000 Ensel Sharon wrote: > > On Mon, 19 Jun 2006, Jahilliya wrote: > >>> Ok, aac is in the dmesg. >>> >>> I can see both 2820sa cards in the dmesg, and I see no errors, etc. - >>> there are just no drives listed in dmesg. >>> >>> My setup is 8 500 Gb drives in a single raid-6 array, size ~2.8TB. Any >>> problems with that ? Perhaps sysinstall cannot deal with a >2TB drive >>> ? There are no other drives in the system besides the single 2.8TB raid 6 >>> array ... >>> >> Have you got any other drives you can attach to the raid? >> >> If so, disconnect the 8 drives connected, connect up a couple that are >> not part of the raid and configure them as a simple raid 1 and see if >> the installers sees that raid. Or try any combination in drives to >> bring the raid size down below 2TB (I'm sure this limitation has been >> fixed.) > > > Ok, the answer is that it has not been fixed. > > 6.1 sysinstall does in fact see both 2820sa controllers, and when I put in > a single 160GB sata drive, it does see that single drive and I can install > onto it, etc. > > Sysinstall does _not_ see my 2.7TB raid6 array. I suspect that if it were > smaller than 2TB, it would see it correctly. > > I have a number of options with which to deal with this, all of which > involve either wasting money or wasting disk space. Fantastic. Right - FreeBSD doesn't recognize >2TB LUNs. You should make two LUNs, and concat them or stripe them with GEOM. Don't use the large partition for the OS either. You shouldn't waste either disk space or money. Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Anything that works is better than anything that doesn't. ------------------------------------------------------------------------ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 02:15: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 7B2EA16A479 for ; Mon, 19 Jun 2006 02:15:11 +0000 (UTC) (envelope-from dennisolvany@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.233]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF60B43D45 for ; Mon, 19 Jun 2006 02:15:10 +0000 (GMT) (envelope-from dennisolvany@gmail.com) Received: by wr-out-0506.google.com with SMTP id 57so1105738wri for ; Sun, 18 Jun 2006 19:15:10 -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=TxRjVnALTuffSUcGImcg5LJhVyS79dOZ0ZTT974aJiqvUpnzDU3wGCEcbnKachhBClnhGI4UIQQfGfTU1i3R2hy/QUrFhYx43lu+sKS7mlBoIAZQVseviVwPoQivEYZAoCJJEZAvgdHahcct4gXJ3NqjPKVOev8H8NzSvcBWGnI= Received: by 10.54.100.7 with SMTP id x7mr5466914wrb; Sun, 18 Jun 2006 19:15:10 -0700 (PDT) Received: from ?195.16.87.34? ( [195.16.87.34]) by mx.gmail.com with ESMTP id 40sm6496080wrl.2006.06.18.19.15.06; Sun, 18 Jun 2006 19:15:10 -0700 (PDT) Message-ID: <449608A8.3010101@gmail.com> Date: Sun, 18 Jun 2006 21:15:04 -0500 From: Dennis Olvany User-Agent: Thunderbird 1.5 (X11/20060211) MIME-Version: 1.0 To: David Hoffman References: <4495F9A1.8040407@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Fwd: Fwd: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 02:15:11 -0000 >> ...facts are not eligible for copyright. > I'm afraid you're incorrect. The work in question is indeed copyrightable > under the Berne Convention, which many countries have ratified, including > the United States, where the content is hosted. The United States, as well > as many other countries, also have national laws which allow this work > to be > copyrighted. At best, the article may be considered a derivative work of the described software/hardware and therefore the intellectual property of the respective manufacturers. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 02:29: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 6E58516A479 for ; Mon, 19 Jun 2006 02:29:08 +0000 (UTC) (envelope-from lordsporkton@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id F002E43D48 for ; Mon, 19 Jun 2006 02:29:07 +0000 (GMT) (envelope-from lordsporkton@gmail.com) Received: by wr-out-0506.google.com with SMTP id i24so949288wra for ; Sun, 18 Jun 2006 19:29: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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=PKK+MitqqzDbCApEFfP4//12pcEexsqmIV4VhkWxCeIKxlKzD/yHHhqFSxTcHLOgpnSgckGDS+jb/Gac+7j1YXI9rgarA/ow7zEj3tQd3xnhO/3ZDEtyxuWX0w99OcPGYZD/9y2LN0uiUmnykJCB3K2s6H350TkDaERVTIyE0SY= Received: by 10.65.236.9 with SMTP id n9mr4824078qbr; Sun, 18 Jun 2006 19:29:06 -0700 (PDT) Received: by 10.65.11.9 with HTTP; Sun, 18 Jun 2006 19:29:06 -0700 (PDT) Message-ID: Date: Sun, 18 Jun 2006 19:29:06 -0700 From: "Lawrence Horvath" To: "David Scheidt" , freebsd-questions@freebsd.org In-Reply-To: <20060619012420.GA20345@panix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060619012420.GA20345@panix.com> Cc: Subject: Re: syslog all commands X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 02:29:08 -0000 I was kinda hoping for arguments as well, and possibly the time and date of when it was run. On 6/18/06, David Scheidt wrote: > On Sun, Jun 18, 2006 at 06:06:45PM -0700, Lawrence Horvath wrote: > > Date: Sun, 18 Jun 2006 18:06:45 -0700 > > From: Lawrence Horvath > > To: freebsd-questions@freebsd.org > > Subject: syslog all commands > > > > Im looking for a way to syslog all commands run my a group of users, i > > was looking at the authpriv.debug but it doesn't log _every_ command, > > is there anyother way to syslog all the commands run by a user? > > > > Is process accounting good enough? It'll record the name of the > commands run by all users, what terminal they were run from, how much > cpu time they used, and start and stop times. > > See the man pages for acct(5) and lastcomm(1). It's turned on by > setting accounting_enable="YES" in /etc/rc.conf, and running > /etc/rc.d/accounting start > > David > I was kinda hoping for arguments as well, and possibly the time and date of when it was run. -- -Lawrence From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 02:44: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 48A3116A479; Mon, 19 Jun 2006 02:44:39 +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 2C1D443D6A; Mon, 19 Jun 2006 02:44:38 +0000 (GMT) (envelope-from user@dhp.com) Received: by shell.dhp.com (Postfix, from userid 896) id 148C831323; Sun, 18 Jun 2006 22:44:37 -0400 (EDT) Date: Sun, 18 Jun 2006 22:44:36 -0400 (EDT) From: Ensel Sharon To: Eric Anderson In-Reply-To: <449606B8.5080106@centtech.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-fs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not ... RESOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 02:44:39 -0000 On Sun, 18 Jun 2006, Eric Anderson wrote: > > 6.1 sysinstall does in fact see both 2820sa controllers, and when I put in > > a single 160GB sata drive, it does see that single drive and I can install > > onto it, etc. > > > > Sysinstall does _not_ see my 2.7TB raid6 array. I suspect that if it were > > smaller than 2TB, it would see it correctly. > > > > I have a number of options with which to deal with this, all of which > > involve either wasting money or wasting disk space. Fantastic. > > Right - FreeBSD doesn't recognize >2TB LUNs. You should make two LUNs, > and concat them or stripe them with GEOM. Don't use the large partition > for the OS either. > > You shouldn't waste either disk space or money. Let's say I have 8 disks. Let's say I require raid6. If I make one array, I lose 25% to raid overhead. If I make two arrays, I lose 50% to raid overhead. So it would seem that my inability to use a >2TB LUN does indeed lose me both space and waste money. My solution is to use two disks as a mirror, and use the other six for a raid6 array, thus losing 3/8 to raid overhead instead of 4/8, but it's still worse than 2/8 which is what I wanted to do ... Perhaps I misunderstand you ? From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 02: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 33F7C16A47C for ; Mon, 19 Jun 2006 02:51:19 +0000 (UTC) (envelope-from ijp@aanet.com.au) Received: from mail.aanet.com.au (mail.aanet.com.au [202.63.43.131]) by mx1.FreeBSD.org (Postfix) with SMTP id 58A4743D5F for ; Mon, 19 Jun 2006 02:51:17 +0000 (GMT) (envelope-from ijp@aanet.com.au) Received: (qmail 24178 invoked by uid 89); 19 Jun 2006 02:51:21 -0000 Received: by simscan 1.2.0 ppid: 23955, pid: 24020, t: 0.9927s scanners: attach: 1.2.0 clamav: 0.88.1/m:37/d:1390 Received: from cust2534.qld01.dataco.com.au (HELO ?192.168.1.13?) (202.63.53.230) by mail.aanet.com.au with SMTP; 19 Jun 2006 02:51:20 -0000 Message-ID: <4496116F.4050005@aanet.com.au> Date: Mon, 19 Jun 2006 12:52:31 +1000 From: Ian Pulsford User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd References: <20060616125618.44045.qmail@web8903.mail.in.yahoo.com> In-Reply-To: <20060616125618.44045.qmail@web8903.mail.in.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: additions in adzap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 02:51:19 -0000 dharam paul wrote: > Hi, > Where is the location of 'squid_redirect' for adzap in > freebsd? > On Windows I can locate it. > > Regards /usr/local/libexec/squid_redirect From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 02:51: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 C737B16A52E for ; Mon, 19 Jun 2006 02:51:23 +0000 (UTC) (envelope-from lmclouth@mn.rr.com) Received: from ms-smtp-04.rdc-kc.rr.com (ms-smtp-04.rdc-kc.rr.com [24.94.166.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9808C43D48 for ; Mon, 19 Jun 2006 02:51:21 +0000 (GMT) (envelope-from lmclouth@mn.rr.com) Received: from [192.168.2.14] (CPE-72-131-76-25.mn.res.rr.com [72.131.76.25]) by ms-smtp-04.rdc-kc.rr.com (8.13.6/8.13.6) with ESMTP id k5J2pJZO027312 for ; Sun, 18 Jun 2006 21:51:19 -0500 (CDT) Message-ID: <44960EDC.2020906@mn.rr.com> Date: Sun, 18 Jun 2006 21:41:32 -0500 From: Lewis McLouth User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: freebsd-questions Content-Type: multipart/mixed; boundary="------------060204060605070004030001" X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: pkgdb.db locked X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 02:51:23 -0000 This is a multi-part message in MIME format. --------------060204060605070004030001 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hello. When I run the command pkgdb -Fu, I get the response [Rebuilding the pkgdb in /var/db/pkg ... can't convert String into Integer: Cannot update the pkgdb!] I think I know where I goofed, so here's the story on my suspected mistake. I just upgraded from RELENG_5_4 to RELENG_6, which went fairly smooth. I'm now upgrading my ports but I was foolish today and ran portupgrade without first reading /usr/ports/UPDATING. I think this is the source of my problem (as in, running the command. Of course not reading UPDATING is another problem! but I don't need help with that). So, I first ran portupgrade -arR portupgrade did not upgrade linux_base-8 and instead reported that it was marked as IGNORE and to use linux_base-fc-4. So, I ran the commands cd /usr/ports/emulators/linux_base-8 make deinstall cd ../linux_base-fc-4 make install clean This it did fine, but when I now try to run pkgdb -Fu, I get the following output: [Rebuilding the pkgdb in /var/db/pkg ... can't convert String into Integer: Cannot update the pkgdb!] I then read /usr/ports/UPDATING, saw that linux_base-8 was dropped and replaced by linux_base-fc-4. So, I then did the suggested command. portupgrade -f -o emulators/linux_base-fc4 linux_base\* This produced [Rebuilding the pkgdb in /var/db/pkg ... [Rebuilding the pkgdb in /var/db/pkg ... ** Database file locked. Waiting. ** Timeout. Lock looks dead. Remove it. /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:261:in `origin': can't convert String into Integer: Cannot update the pkgdb!] (PkgDB::DBError) from /usr/local/lib/ruby/site_ruby/1.8/pkginfo.rb:178:in `origin' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:977:in `tsort_build' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:971:in `tsort_build' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:993:in `sort_build' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:997:in `sort_build!' from /usr/local/sbin/portupgrade:705:in `main' from /usr/local/lib/ruby/1.8/optparse.rb:815:in `initialize' from /usr/local/sbin/portupgrade:216:in `main' from /usr/local/sbin/portupgrade:2048 I've googled for the phrase 'pkgdb "Lock looks dead"' and various combinations of the output hoping to learn how to unlock pkgdb.db but with no luck. Plus, I cannot locate pkgdb.dg with ls -a /var/db/pkg My questions are: How do I remove the lock on pkgdb? Where does pkgdb.db go when its locked? find does not locate it. I ran find / pkgdb.db | grep pkgdb.db find: pkgdb.db: No such file or directory Also, if pkgdb.db was deleted, how do I rebuild the pkgdb.db? (pkgdb -f does not rebuild pkgdb.db, I just checked) The output of uname -a and ls /var/db/pkg are attached. Any help would be appreciated. Thanks Lewis --------------060204060605070004030001 Content-Type: text/plain; name="lspkg" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="lspkg" ORBit2-2.14.0_1 a2ps-a4-4.13b_3 acroread7-7.0.1_2,1 acroreadwrapper-0.0.20060221 apache-ant-1.6.5_1 artwiz-fonts-1.0_1 atk-1.11.4_1 autoconf-2.13.000227_5 autoconf-2.59_2 automake-1.4.6_2 avahi-0.6.10_3 bison-2.1_2 bitstream-vera-1.10_2 cairo-1.0.4_1 cdplayer.app-1.7_1 coreutils-5.2.1 cups-base-1.1.23.0_9 cvsup-16.1h_2 db4-4.0.14_1,1 db41-4.1.25_3 dbh-1.0.24_1 dbus-0.62 desktop-file-utils-0.11 djbfft-0.76_2 dri-6.4.1,2 expat-2.0.0_1 firefox-1.5.0.4,1 fontconfig-2.3.2_5,1 freefont-ttf-20060126 freefonts-0.10_2 freetype2-2.1.10_3 gamin-0.1.7_2 gcc-ooo-3.4.1_2 gconf2-2.14.0_2 gdbm-1.8.3_2 gettext-0.14.5_2 glib-1.2.10_12 glib-2.10.3 glitz-0.4.4_1 gmake-3.80_2 gnome-vfs-2.14.2_3 gnomehier-2.1_2 gnomemimedata-2.4.2 gnutls-1.2.11 google-earth-4 gtk-1.2.10_15 gtk-2.8.19 gtk-xfce-engine-2.2.8_1 help2man-1.36.4_1 hicolor-icon-theme-0.5 imake-6.9.0 intltool-0.35.0 javavmwrapper-2.3 jdk-1.4.2p8_3 jmk-x11-fonts-3.0 jpeg-6b_4 lame-3.96.1 lcms-1.14_1,1 libIDL-0.8.6_2 libXft-2.1.7_1 liba52-devel-0.7.4.2005112800 libart_lgpl2-2.3.17_1 libbonobo-2.14.0_2 libcdaudio-0.99.12p2_1 libdaemon-0.10_1 libdrm-2.0.1_1 libdvdcss-1.2.9_2 libdvdread-0.9.4_1 libgcrypt-1.2.2_1 libglade2-2.5.1_5 libgpg-error-1.3 libiconv-1.9.2_2 libmad-0.15.1b_2 libmikmod-3.1.11_1 libmng-1.0.9 libogg-1.1.3,3 libproplist-0.10.1_1 libtool-1.5.22_2 libungif-4.1.4_1 libvorbis-1.1.2,3 libxfce4gui-4.2.3_1 libxfce4mcs-4.2.3_1 libxfce4util-4.2.3.2_1 libxml2-2.6.26 linc-1.0.3_6 links-2.1.p21,1 linux-XFree86-libs-4.3.99.902_7 linux-atk-1.8.0_2 linux-expat-1.95.7_1 linux-fontconfig-2.2.3_4 linux-glib2-2.4.8_2 linux-gtk2-2.4.14_4 linux-jpeg-6b.33_1 linux-pango-1.6.0_2 linux-png-1.2.8_1 linux-sun-jdk-1.4.2.12 linux-tiff-3.6.1_6 linux_base-fc-4_1 linux_dri-4.4.0 m4-1.4.4 mozilla-1.7.13,2 mozilla-fonts-1.0_1 mplayer-gtk-0.99.7_15 mplayer-skins-1.1.2_1 nas-1.8 nasm-0.98.39,1 nspr-4.6.1 nss-3.11.1 ogle-0.9.2_5 ogle-gui-0.9.2_5 open-motif-2.2.3_2 openldap-client-2.2.30 openoffice.org-2.0.3rc5 p5-Archive-Zip-1.16 p5-Compress-Zlib-1.41 p5-File-Temp-0.16_4 p5-PathTools-3.18 p5-Scalar-List-Utils-1.18,1 p5-Test-Harness-2.62 p5-Test-Simple-0.62 p5-XML-Parser-2.34_2 p5-gettext-1.05_1 p5-type1inst-0.6.1_2 pango-1.12.3 patch-2.5.4 pcgen-5.8.0 pcre-6.6_1 perl-5.6.2_2 perl-5.8.8 pkgconfig-0.20_2 png-1.2.8_3 popt-1.7_1 portupgrade-2.1.4_2,1 python-2.4.3 qmake-3.3.6 qt-3.3.6_2 rpm-3.0.6_13 rpm2cpio-1.2_2 ruby-1.8.4_8,1 ruby18-bdb-0.5.9 samba-libsmbclient-3.0.22 sgifonts-1.0.1 shared-mime-info-0.17_1 startup-notification-0.8_2 svgalib-1.4.3_5 thunderbird-1.5.0.4 tiff-3.8.2 unmakeself-1.0 unzip-5.52_2 urwfonts-1.0_1 urwfonts-ttf-1.0.7b18 win32-codecs-3.1.0.p7_2,1 windowmaker-0.92.0_2 wmicons-1.0 xfce-4.2.3.2 xfce4-appfinder-4.2.3 xfce4-desktop-4.2.3_1 xfce4-fm-4.2.3_1 xfce4-icon-theme-4.2.3 xfce4-iconbox-4.2.3_1 xfce4-mcs-manager-4.2.3 xfce4-mcs-plugins-4.2.3_1 xfce4-mixer-4.2.3_1 xfce4-panel-4.2.3_1 xfce4-print-4.2.3_1 xfce4-session-4.2.3_1 xfce4-systray-4.2.3_1 xfce4-toys-4.2.3_1 xfce4-trigger-launcher-4.2.3_1 xfce4-utils-4.2.3_1 xfce4-wm-4.2.3.2_1 xmlcatmgr-2.2 xmms-1.2.10_6 xorg-6.9.0 xorg-clients-6.9.0_3 xorg-documents-6.9.0 xorg-fonts-100dpi-6.9.0_1 xorg-fonts-75dpi-6.9.0_1 xorg-fonts-cyrillic-6.9.0_1 xorg-fonts-encodings-6.9.0_1 xorg-fonts-miscbitmaps-6.9.0_1 xorg-fonts-truetype-6.9.0 xorg-fonts-type1-6.9.0 xorg-fontserver-6.9.0_1 xorg-libraries-6.9.0 xorg-manpages-6.9.0 xorg-nestserver-6.9.0 xorg-printserver-6.9.0_1 xorg-server-6.9.0_4 xorg-vfbserver-6.9.0_1 xterm-213 zip-2.31 --------------060204060605070004030001 Content-Type: text/plain; name="unamea" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="unamea" FreeBSD faith.WorkGroup 6.1-STABLE FreeBSD 6.1-STABLE #0: Sat Jun 17 12:43:41 CDT 2006 root@faith.WorkGroup:/usr/obj/usr/src/sys/FAITH i386 --------------060204060605070004030001-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 03: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 973F416A47C for ; Mon, 19 Jun 2006 03:16:29 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DBEB43D45 for ; Mon, 19 Jun 2006 03:16:29 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id 3E0E07E8C5; Sun, 18 Jun 2006 23:16:28 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2sYURvGDcYSP; Sun, 18 Jun 2006 23:16:27 -0400 (EDT) Received: from [192.168.0.3] (unknown [74.128.244.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id CC5557E8C4; Sun, 18 Jun 2006 23:16:26 -0400 (EDT) In-Reply-To: <44958D50.4050000@dial.pipex.com> References: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> <2A55FF5E-F764-406A-BE0E-272246F425B5@netmusician.org> <448xoska3k.fsf@be-well.ilk.org> <44733B8B.6030404@dial.pipex.com> <448FDE6B.4000703@dial.pipex.com> <38D0516F-2F6B-4700-9006-5A2D6034DC0C@netmusician.org> <449042EF.9040905@dial.pipex.com> <4680C6D4-50F9-4441-8B54-924092A1A3AD@netmusician.org> <44913391.7060906@dial.pipex.com> <7B276387-F946-4FEC-81D1-8CF9B95808E2@netmusician.org> <44958D50.4050000@dial.pipex.com> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <4EE3B16A-F260-4032-8606-F2E8D75E92A2@netmusician.org> Content-Transfer-Encoding: 7bit From: Joe Auty Date: Sun, 18 Jun 2006 23:16:24 -0400 To: Alex Zbyslaw X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Gpgmail-State: signed X-Mailer: Apple Mail (2.750) Cc: FreeBSD Questions Subject: Re: Python port 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, 19 Jun 2006 03:16:29 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I sent on this problem to the Mailman list and got the following response.... is this useful? > Joe Auty wrote: > >> >> On Jun 18, 2006, at 12:41 PM, Mark Sapiro wrote: >> >> >>> Joe Auty wrote: >>> >>>> >>>> When I try to startup the Mailport FreeBSD port via its rc >>>> script, I >>>> get the following: >>>> >>>> >>>> ... snipped all sorts of stuff .... >>>> >>>> Traceback (most recent call last): >>>> Could not find platform independent libraries >>>> File "/usr/local/mailman/bin/qrunner", line 76, in ? >>>> >>> >>> >>> >>> First it seems some configuration step may have been missed. >>> >>> should have been replaced with a path - probably /usr/local/ >>> mailman/. >>> >> >> Hmmm... >> >> How do I correct this? >> > > > I have no idea. What I said in my first response still applies. > > > >>>> This same port works on another FreeBSD machine of mine. I've posed >>>> this question to the FreeBSD Questions list, but I seem to have >>>> baffled some, which is why I thought I would post this question >>>> here. >>>> I hope this appropriate to post here. >>>> > > > You might compare the 'rc' file on this machine to the one on the > working machine. That might provide a clue. > > > This is the paragraph I was referring to above by "what I said ..." > > > >>> We probably can't be much help either. The output you posted seems >>> 'interleaved' and is not too intelligible without knowing what is >>> being run. In general, we are not able to help much with 3rd party >>> packages when the problem is with the package rather than the >>> underlying Mailman. >>> >>> >> >> Just in case you'd like to take a stab at this, I'm enclosing the >> full error message. I'd *really* appreciate your help if you are able >> to help me, since I'd really like to get Mailman running again on >> this computer somehow, and have reached the end of my rope... >> > > > The full output really isn't any more help than the excerpt, since we > still have no idea what's in /usr/local/etc/rc.d/mailman.sh that's > producing all these errors. This script is part of your FreeBSD port. > It's not in our distribution. Also, we have no idea in what ways files > we do know about have been changed in your package. > > One wild guess - look at bin/paths.py. It should contain real paths as > definitions for 'prefix' and 'exec_prefix'. If it's wrong, then so > probably are cron/paths.py and scripts/paths.py (and who knows what > else). > > -- > Mark Sapiro The highway is for gamblers, > San Francisco Bay Area, California better use your sense - B. Dylan > > - ----------- Joe Auty NetMusician: web publishing software for musicians http://www.netmusician.org joe@netmusician.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFElhcJCgdfeCwsL5ERAt6PAJ0SXIrbu4000QYRmR7Wwo4kiOwfDwCeN0gK f5QmeUciYUq9w+e5rcHyoxw= =JWcR -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 03:43: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 AB6B216A479; Mon, 19 Jun 2006 03:43:42 +0000 (UTC) (envelope-from anderson@centtech.com) Received: from mh2.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 394BB43D49; Mon, 19 Jun 2006 03:43:41 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [192.168.42.22] (andersonbox2.centtech.com [192.168.42.22]) by mh2.centtech.com (8.13.1/8.13.1) with ESMTP id k5J3hdU8044161; Sun, 18 Jun 2006 22:43:39 -0500 (CDT) (envelope-from anderson@centtech.com) Message-ID: <44961D76.4050509@centtech.com> Date: Sun, 18 Jun 2006 22:43:50 -0500 From: Eric Anderson User-Agent: Thunderbird 1.5.0.4 (X11/20060612) MIME-Version: 1.0 To: Ensel Sharon References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.87.1/1549/Sat Jun 17 17:20:39 2006 on mh2.centtech.com X-Virus-Status: Clean Cc: freebsd-fs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not ... RESOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 03:43:42 -0000 Ensel Sharon wrote: > > On Sun, 18 Jun 2006, Eric Anderson wrote: > >>> 6.1 sysinstall does in fact see both 2820sa controllers, and when I put in >>> a single 160GB sata drive, it does see that single drive and I can install >>> onto it, etc. >>> >>> Sysinstall does _not_ see my 2.7TB raid6 array. I suspect that if it were >>> smaller than 2TB, it would see it correctly. >>> >>> I have a number of options with which to deal with this, all of which >>> involve either wasting money or wasting disk space. Fantastic. >> Right - FreeBSD doesn't recognize >2TB LUNs. You should make two LUNs, >> and concat them or stripe them with GEOM. Don't use the large partition >> for the OS either. >> >> You shouldn't waste either disk space or money. > > > Let's say I have 8 disks. > > Let's say I require raid6. > > If I make one array, I lose 25% to raid overhead. > > If I make two arrays, I lose 50% to raid overhead. > > So it would seem that my inability to use a >2TB LUN does indeed lose me > both space and waste money. I suppose if you call increased redundancy 'waste' then yes. Wouldn't two 4 disk RAID 5 arrays give you similar (not exactly, but close) redundancy to the RAID6 option, and keep your space up? If you require RAID6, then the point is mute, and you're stuck with multiple RAID6 arrays unless your controller allows you to carve LUNs from the array, so you could create a 2.7TB 8 disk RAID6, then carve off a few LUNs for the OS to see. By the way - FreeBSD isn't the only OS without the addressing necessary to support >2TB SCSI LUNs. > My solution is to use two disks as a mirror, and use the other six for a > raid6 array, thus losing 3/8 to raid overhead instead of 4/8, but it's > still worse than 2/8 which is what I wanted to do ... > > Perhaps I misunderstand you ? That sounds reasonable, and should give you a working setup. Judging by the disks and setup, it sounds like you are looking for a good archive type storage, and not high performance (high-IO) storage, so the above configuration would suit you just fine I suspect. Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Anything that works is better than anything that doesn't. ------------------------------------------------------------------------ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 01:26: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 D32E116A479; Mon, 19 Jun 2006 01:26:03 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from pittgoth.com (ns1.pittgoth.com [216.38.206.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7906843D45; Mon, 19 Jun 2006 01:26:03 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (ip70-177-190-239.dc.dc.cox.net [70.177.190.239]) (authenticated bits=0) by pittgoth.com (8.13.4/8.13.4) with ESMTP id k5J1U8Kt007831 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 18 Jun 2006 21:30:09 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Sun, 18 Jun 2006 21:25:46 -0400 From: Tom Rhodes To: "Ingrid Kast Fuller" Message-Id: <20060618212546.5631373f.trhodes@FreeBSD.org> In-Reply-To: <200606190044.k5J0iP0V013858@ns1.cityscope.net> References: <200606190044.k5J0iP0V013858@ns1.cityscope.net> X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Mon, 19 Jun 2006 05:18:08 +0000 Cc: zionicman@gmail.com, hou-freebsd@houfug.org, freebsd-user-groups@FreeBSD.org, wikien-l@wikipedia.org, freebsd-chat@FreeBSD.org, freebsd-standards@FreeBSD.org, freebsd-questions@FreeBSD.org, wikitech-l@wikimedia.org Subject: Re: [Hou-freebsd] Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 01:26:04 -0000 On Sun, 18 Jun 2006 19:44:02 -0500 "Ingrid Kast Fuller" wrote: > If someone added it to the freebsd-config mailing list, they should not have > mailed a copyritten piece on a mailing list for public use. > This has been added to the bottom of the page since we are unsure of the > originator: Viewing the page, it does seem to have the email address listed, with a name. Now, I haven't checked the name, mainly because I have not emailed this person; however, regardless of the issues discussed, the FreeBSD doesn't control user groups. The so called issue should be taken up with the user group in question. -- Tom Rhodes From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 06:10: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 A11FB16A47B for ; Mon, 19 Jun 2006 06:10:39 +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 362BD43D45 for ; Mon, 19 Jun 2006 06:10:38 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-242.dynamic.qsc.de [212.202.39.242]) by efacilitas.de (Postfix) with ESMTP id AC7724C7BB; Mon, 19 Jun 2006 08:11:08 +0200 (CEST) Received: from [192.168.1.2] (muhkuh.local [192.168.1.2]) by eurystheus.local (Postfix) with ESMTP id 304D452868; Mon, 19 Jun 2006 08:09:54 +0200 (CEST) Message-ID: <44963FEC.3050909@cs.tu-berlin.de> Date: Mon, 19 Jun 2006 08:10:52 +0200 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-AT; rv:1.7.13) Gecko/20060519 X-Accept-Language: de, en MIME-Version: 1.0 To: Mark References: <200606181915.k5IJFCvv015074@asarian-host.net> In-Reply-To: <200606181915.k5IJFCvv015074@asarian-host.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: 'FreeBSD-Questions Questions' Subject: Re: Does FreeBSD 4.11-STABLE support the Intel PWLA8391GT NIC? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 06:10:39 -0000 Mark schrieb: > A similar question as before: does FreeBSD 4.11-STABLE support the Intel > PWLA8391GT NIC card? According to Google this card is also known as Intel PRO/1000. It should work with the em(4) driver. See also http://www.freebsd.org/releases/4.11R/hardware-i386.html#ETHERNET > Earlier, I recieved a link to the FreeBSD site for 'older' versions, but I > only saw 4.11-RELEASE there. 4.11-RELEASE is the latest release of the 4-STABLE branch. There are only a few minor changes between the latest release and -STABLE in this case. You should consider to use a more recent release, e.g. 6.1-RELEASE. Björn From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 08:18: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 E16C016A47A for ; Mon, 19 Jun 2006 08:18:08 +0000 (UTC) (envelope-from philippe.lang@attiksystem.ch) Received: from mail.attiksystem.ch (f29.attiksystem.ch [212.147.59.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30F5943D4C for ; Mon, 19 Jun 2006 08:18:07 +0000 (GMT) (envelope-from philippe.lang@attiksystem.ch) Received: from poweredge.attiksystem.ch (poweredge.attiksystem.ch [10.0.0.29]) by mail.attiksystem.ch (8.12.11/8.12.11) with ESMTP id k5J8I5c1077814 for ; Mon, 19 Jun 2006 10:18:05 +0200 (CEST) (envelope-from philippe.lang@attiksystem.ch) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Mon, 19 Jun 2006 10:18:05 +0200 Message-ID: <6C0CF58A187DA5479245E0830AF84F4218CCF9@poweredge.attiksystem.ch> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ICH5R, ICH7R or Promise PDC20378 RAID? Thread-Index: AcaTS5K4wmA3F3K+RoSzUz+NJXuOwQAIoG3Q From: "Philippe Lang" To: "freebsd-questions" X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.49 on 10.0.0.111 Subject: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 08:18:09 -0000 Hi, I've got two boxes that would be perfect for a small server. The motherboards are: - ASUS P4C800-E Deluxe, with ICH5R and Promise PDC20378 - ASUS P5WD2, with ICH7R I intend to install FreeBSD 6.1, and I wonder which chipset you would recommend me for RAID 1? I need something rock-solid, of course... Thanks! -------------- Philippe Lang Attik System Switzerland From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 08:34: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 0A69716A474 for ; Mon, 19 Jun 2006 08:34:22 +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 299F343D69 for ; Mon, 19 Jun 2006 08:34:15 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.140] (helo=anti-virus02-07) by smtp-out5.blueyonder.co.uk with smtp (Exim 4.52) id 1FsFD4-0006Hr-71; Mon, 19 Jun 2006 09:34:14 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out5.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsFD3-0004Pz-Gf; Mon, 19 Jun 2006 09:34:13 +0100 Message-ID: <44966182.3020202@dial.pipex.com> Date: Mon, 19 Jun 2006 09:34:10 +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: Joe Auty References: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> <2A55FF5E-F764-406A-BE0E-272246F425B5@netmusician.org> <448xoska3k.fsf@be-well.ilk.org> <44733B8B.6030404@dial.pipex.com> <448FDE6B.4000703@dial.pipex.com> <38D0516F-2F6B-4700-9006-5A2D6034DC0C@netmusician.org> <449042EF.9040905@dial.pipex.com> <4680C6D4-50F9-4441-8B54-924092A1A3AD@netmusician.org> <44913391.7060906@dial.pipex.com> <7B276387-F946-4FEC-81D1-8CF9B95808E2@netmusician.org> <44958D50.4050000@dial.pipex.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Python port 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, 19 Jun 2006 08:34:22 -0000 Joe Auty wrote: > > On Jun 18, 2006, at 1:28 PM, Alex Zbyslaw wrote: > >> Joe Auty wrote: >> >>> >>> On Jun 15, 2006, at 6:16 AM, Alex Zbyslaw wrote: >>> >>>> Joe Auty wrote: >>>> >>>>> jauty# python -v /usr/local/mailman/bin/qrunner >>>>> [...snip...] >>>>> # /usr/local/lib/python2.4/getopt.pyc matches /usr/local/lib/ >>>>> python2.4/getopt.py >>>>> import getopt # precompiled from /usr/local/lib/python2.4/ getopt.pyc >>>>> # /usr/local/mailman/bin/paths.pyc matches /usr/local/mailman/ >>>>> bin/ paths.py >>>>> import paths # precompiled from /usr/local/mailman/bin/paths.pyc >>>>> [...snip...] >>>> >>>> >>>> >>>> OK, you just ran qrunner successfully without getting the error >>>> you were getting earlier about getopt. Doesn't matter that all >>>> you got was help, it found *everything* that it tried to import. >>>> >>>> I missed the start of this thread. How did you run qrunner to >>>> get your earlier error and where did the error appear? I think >>>> you said the rc script. If it's not too big can you post it? >>>> Or compare it against your working mailman? >>>> >>> >>> My Mailman rc script (exactly identical to the one on my working >>> machine): >>> >> You're getting your error when mailman starts at boot time; is that >> right? >> >> If so, what happens if you try as root (csh): >> >> # sh -x /usr/local/etc/rc.d/mailman.sh start >> >> (you might have to check the exact name of the rc.d script). >> >> If this starts mailman then something bizarre is going on. >> >> If you get the same error as usual, then judicious snippets with the >> error and prior context. >> > > Running the RC script under sh, csh, and bash yields the same error > spew.... > > I've attached the errors spewed out in their entirety: Sorry, the csh/sh distinction should have been edited out by me - I was redirecting the output in my first edit then took it out. However, the point was to run with sh -x as that will trace execution and might find where has been written. Can you try: $ ls /usr/local/etc/rc.d/mailman* $ ls /etc/rc.d/mailman* (in case some old script has hung around) $ find /usr/local/mailman -type f -exec egrep -H '' {} \; (to try to find somewhere in mailman install) and if that finds nothing $ sh -x /usr/local/etc/rc.d/mailman.sh start [from mailman list] > One wild guess - look at bin/paths.py. It should contain real paths as > definitions for 'prefix' and 'exec_prefix'. If it's wrong, then so > probably are cron/paths.py and scripts/paths.py (and who knows what > else). We tried looking in that first file a couple iterations ago :-( Above I've tried looking in others but I don't think that will be it. don't think it's the mailman install per se as you ran qrunner from the command line and it worked. Try again to be sure: /usr/local/mailman/bin/qrunner and you' should get the help message and not an import error. --Alex From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 08:34: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 184F916A482 for ; Mon, 19 Jun 2006 08:34:46 +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 C981443D76 for ; Mon, 19 Jun 2006 08:34:36 +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.072.1) id 4492E80F0007E7CB for freebsd-questions@freebsd.org; Mon, 19 Jun 2006 10:34:36 +0200 Received: (qmail 17424 invoked from network); 19 Jun 2006 10:34:35 +0200 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with SMTP; 19 Jun 2006 10:34:35 +0200 Received: (qmail 17287 invoked by uid 1001); 19 Jun 2006 10:34:35 +0200 Date: Mon, 19 Jun 2006 10:34:35 +0200 From: Erik Trulsson To: =?iso-8859-1?Q?Bj=F6rn_K=F6nig?= Message-ID: <20060619083435.GA17102@owl.midgard.homeip.net> Mail-Followup-To: =?iso-8859-1?Q?Bj=F6rn_K=F6nig?= , Mark , 'FreeBSD-Questions Questions' References: <200606181915.k5IJFCvv015074@asarian-host.net> <44963FEC.3050909@cs.tu-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <44963FEC.3050909@cs.tu-berlin.de> User-Agent: Mutt/1.5.11 Cc: 'FreeBSD-Questions Questions' Subject: Re: Does FreeBSD 4.11-STABLE support the Intel PWLA8391GT NIC? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 08:34:46 -0000 On Mon, Jun 19, 2006 at 08:10:52AM +0200, Bj=F6rn K=F6nig wrote: > Mark schrieb: > >A similar question as before: does FreeBSD 4.11-STABLE support the Intel > >PWLA8391GT NIC card? >=20 > According to Google this card is also known as Intel PRO/1000. It should= =20 > work with the em(4) driver. Intel PRO/1000 is a whole family of gigabit cards. The name for the particular card in question here is the Intel PRO/1000 GT Desktop Adapter. If I have read the CVS logs correctly, support for this particular card was added to RELENG_4 somtime between 4.10-RELEASE and 4.11-RELEASE (Oct 2004 to be more exact), so it should be supported in 4.11-RELEASE as well as in 4.11-STABLE (but not in 4.10-RELEASE or older.) >=20 > See also http://www.freebsd.org/releases/4.11R/hardware-i386.html#ETHERNET Unfortunately that document does not make it clear exactly which cards are supported. >=20 > >Earlier, I recieved a link to the FreeBSD site for 'older' versions, but= I > >only saw 4.11-RELEASE there. >=20 > 4.11-RELEASE is the latest release of the 4-STABLE branch. There are=20 > only a few minor changes between the latest release and -STABLE in this= =20 > case. There has actually been quite a few changes (mostly fairly minor) in 4-STAB= LE since 4.11 was released. Considering it has been almost 18 months since 4.11 was released, this is not surprising. --=20 Erik Trulsson ertr1013@student.uu.se From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 08:39: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 BB22D16A47B for ; Mon, 19 Jun 2006 08:39:20 +0000 (UTC) (envelope-from bak@bitcare.dk) Received: from pfepb.post.tele.dk (pfepb.post.tele.dk [195.41.46.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3610F43D5E for ; Mon, 19 Jun 2006 08:39:19 +0000 (GMT) (envelope-from bak@bitcare.dk) Received: from x1-6-00-03-0d-1a-eb-0c.k431.webspeed.dk (x1-6-00-03-0d-1a-eb-0c.k431.webspeed.dk [83.89.16.142]) by pfepb.post.tele.dk (Postfix) with ESMTP id 66266A50049 for ; Mon, 19 Jun 2006 10:39:18 +0200 (CEST) From: "Bak - Bitcare.dk" To: freebsd-questions@freebsd.org Date: Mon, 19 Jun 2006 10:39:13 +0200 User-Agent: KMail/1.8.2 Organization: www.bitcare.dk MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606191039.13118.bak@bitcare.dk> Subject: USB mouse not 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: Mon, 19 Jun 2006 08:39:20 -0000 Hi everybody, I'm having trouble getting my USB mouse to work on my FreeBSD 6.0.... It worked fine before on Windows XP and Ubuntu Linux. My laptop is a Fujitsu-Siemens Amilo A7640. The mouse is Microsoft Comfort Optical Mouse 3000. dmesg gives the following results: -------------- [...] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model IntelliMouse, device ID 3 ppc0: parallel port not found. sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 8250 or not responding 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 uhid0: Microsoft Microsoft Optical Mouse with Tilt Wheel, rev 2.00/1.20, addr [...] ------------------------------------------------- As far as I can tell (and I am new to FreeBSD) psm0 is my fingertouch mouse and uhid0 is my USB mouse. Other than that I am clueless as to where I edit the settings to make the USB mouse functional. I tried googling but didn't find an answer... Hope someone can help. -- Saeed From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 08:43: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 85F7516A47C for ; Mon, 19 Jun 2006 08:43:28 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out3.blueyonder.co.uk (smtp-out3.blueyonder.co.uk [195.188.213.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B60A43D45 for ; Mon, 19 Jun 2006 08:43:28 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.138] (helo=anti-virus01-09) by smtp-out3.blueyonder.co.uk with smtp (Exim 4.52) id 1FsFLz-00074k-3b; Mon, 19 Jun 2006 09:43:27 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out1.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsFLv-0005Ky-81; Mon, 19 Jun 2006 09:43:23 +0100 Message-ID: <449663A8.5070203@dial.pipex.com> Date: Mon, 19 Jun 2006 09:43:20 +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: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> In-Reply-To: <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 08:43:28 -0000 Jim Stapleton wrote: > I don't know how to find out, except that the app is the Crossover > Office demo installer. I'd like to try to find a way to trick it into > running in the linux compatability mode of FreeBSD if I can. So is there source code? Or is it some dumb binary rpm? You could try running it under ktrace, then look at the output of kdump (assuming that works for linux apps), but the output will be *long* so you will have to edit out a judicious part which leads up to the "Linux" string being printed, and it might not help. But, it might, for example, look to see if some file exists (/etc/redhat-release or something). Darrin Chandler wrote: >In addition, consider respecting the wishes of >the developer(s) and not using it. If they have any sort of "free" >license then you can always release a portable fork. Respect a license? Yes, probably. Respect the wishes? Fat chance. That way lies doom... --Alex From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 08:51: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 B3D2916A474 for ; Mon, 19 Jun 2006 08:51:40 +0000 (UTC) (envelope-from anrays@gmail.com) Received: from tor.farlep.net (tor.farlep.net [213.130.1.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D86C43D48 for ; Mon, 19 Jun 2006 08:51:39 +0000 (GMT) (envelope-from anrays@gmail.com) Received: from santinel.home.ua (nas-6-202.dialup.farlep.net [213.130.9.203]) by tor.farlep.net with ESMTP id k5J8pSY6030095; Mon, 19 Jun 2006 11:51:28 +0300 Received: from anray by santinel.home.ua with local (Exim 4.62; FreeBSD) id 1FsFTA-000JL5-BN; Mon, 19 Jun 2006 11:50:52 +0300 To: "Bak - Bitcare.dk" References: <200606191039.13118.bak@bitcare.dk> Organization: Santinel From: Andrey Slusar Date: Mon, 19 Jun 2006 11:50:52 +0300 In-Reply-To: <200606191039.13118.bak@bitcare.dk> (bak@bitcare.dk's message of "Mon, 19 Jun 2006 10:39:13 +0200") Message-ID: <86odwpv89f.fsf@santinel.home.ua> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.5-b27 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-SMTP-Vilter-Version: 1.1.8 X-SMTP-Vilter-Virus-Backend: clamd X-SMTP-Vilter-Status: clean X-SMTP-Vilter-clamd-Virus-Status: clean Cc: freebsd-questions@freebsd.org Subject: Re: USB mouse not 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: Mon, 19 Jun 2006 08:51:40 -0000 Mon, 19 Jun 2006 10:39:13 +0200, Bak - Bitcare.dk wrote: > Hi everybody, > I'm having trouble getting my USB mouse to work on my FreeBSD 6.0.... It > worked fine before on Windows XP and Ubuntu Linux. > My laptop is a Fujitsu-Siemens Amilo A7640. > The mouse is Microsoft Comfort Optical Mouse 3000. > dmesg gives the following results: > [...] > psm0: irq 12 on atkbdc0 > psm0: [GIANT-LOCKED] > psm0: model IntelliMouse, device ID 3 > ppc0: parallel port not found. > sc0: at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=0x300> > sio0: configured irq 4 not in bitmap of probed irqs 0 > sio0: port may not be enabled > sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 > sio0: type 8250 or not responding > 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 > uhid0: Microsoft Microsoft Optical Mouse with Tilt Wheel, rev 2.00/1.20, addr > [...] > ------------------------------------------------- > As far as I can tell (and I am new to FreeBSD) psm0 is my fingertouch mouse > and uhid0 is my USB mouse. Other than that I am clueless as to where I edit > the settings to make the USB mouse functional. `kldload ums' and use the ums* devices. -- Regards, Andrey. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 09:42: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 6647A16A47E for ; Mon, 19 Jun 2006 09:42:53 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from gaia.nimnet.asn.au (nimbin.lnk.telstra.net [139.130.45.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F18843D48 for ; Mon, 19 Jun 2006 09:42:40 +0000 (GMT) (envelope-from smithi@nimnet.asn.au) Received: from localhost (smithi@localhost) by gaia.nimnet.asn.au (8.8.8/8.8.8R1.4) with SMTP id TAA01677; Mon, 19 Jun 2006 19:42:24 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Mon, 19 Jun 2006 19:42:24 +1000 (EST) From: Ian Smith To: Jerry McAllister In-Reply-To: <20060612182725.89E4B16A4D4@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org, standardhk@gmail.com Subject: Re: about freebsd partition 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: Mon, 19 Jun 2006 09:42:53 -0000 On Mon, 12 Jun 2006 freebsd-questions Digest, Vol 138, Issue 5 wrote: > To: standardhk@gmail.com (t s) > > my harddisk(40G FAT32) : > > c:\ (primary 10G windows XP root) That's one slice (DOS: partition) > > d:\ (logical 5G with data) > > e:\ (logical 5G with data) > > f:\ (logical 10G with data) > > g:\ (logical 10G empty) And all of those DOS logical drives are probably within slice (ad0s2) Unless things have changed with XP, s/probably/certainly/ > > so i want to release 500MB from "d:\" for the second primary partition > > and then put the freebsd "/" on it, the other put to "g:\" just like the > > belows: > > > > windows xp mode > > c:\ (primary 10G windows XP root) That much is fine, best (probably still essential) to have your DOS on the first slice (DOS: partition) ad0s1. Preferably FAT32 if you need to read/write it from FreeBSD, but read-only NTFS is said to work. > > d:\ (logical 4.5G with data) ====> 500MB for freebsd "/" (second primary > > "ad0s2") ad0s2 is the whole slice (DOS: primary partition) from which DOS logical drives are allocated. Here 'drive d:' might be mount_msdos'd as ad0s5, e: as ad0s6 and f: as ad0s7 etc. Weird but it works; this was how I got to recover (ro was all I dared) previous OS/2 HPFS partitions years ago. > > e:\ (logical 5G with data) > > f:\ (logical 10G with data) > > cannot see the g:\ ==========> used by /var /usr /swap Do you (Steve) have a third slice ad0s3 allocated for /var /usr & swap? > > is it ok??? but i don't know how to create the "ad0s2"??? and edit the g:\ > > for /var, /usr, /swap??? > > Well, sort of OK. I would not be inclined to put a FreeBSD slice > right in the middle of your MS logical drives. But, I think you > could do it. I don't believe so, Jerry. Unlike Linux, you can't install FreeBSD on other than what BIOS/DOS calls a primary (MBR) partition, and we call a slice (to save a message, I appreciated your upcoming FAQ about that!) > Secondly, I don't know what just having 500 MB for a FreeBSD '/' would > get you. It would not be enough to run FreeBSD. But, probably you > haven't told the whole story. Something else must be there. Anyway, > I would be inclined to take the FreeBSD slice out of that empty GB > space that currently shows up as g: on you Microsloth system. Not unless it's another primary MBR / fdisk partition, but yes it's not clear. I'm not sure of the wisdom of only having / in one slice, and /usr, /var (and swap) on another, though you can. I'd use DOS fdisk to remove one or more of those 'logical drives' then PM or something to consolidate free space, and put FreeBSD on ad0s3, 10G at least :) > > any disk edit tool can do it??? > > I have successfully used Partition Magic for this sort of thing. > It is available at not too high a price from most places that > sell software. As long as all the MS stuff is FAT, I think > there are some free tools that will work too, but I haven't used > them so can not attest to their effectiveness or reliability. > A couple come with the FreeBSD distribution. But, the free tools > do not handle NTFS which is why I haven't used them. If Steve places much value on the data on other than his c: (ad0s1) then investing in Partition Magic might be wise. I've used presizer in fingers-crossed mode to shrink whole-disk-as-C: setups, and it worked, but there was nothing precious there. > You will first need to use the disk tool such as Partition Magic > to shrink the existing structures and put a new primary slice in > the space. Indeed. > Then, when you run the FreeBSD install, you have it mark the slice as > a FreeBSD slice. Up until that point, it is not really a FreeBSD ad0s2, > just some generic space. Partition Magic does not know how to mark > the slice (which it calls a primary partition, using MS terminology) > as a FreeBSD slice. So FreeBSD's fdisk does it. (Even if you > use sysinstall to write the slice, it really just calls fdisk) Yes, but if he wants to keep some of his 'logical drives' they'll stay in ad0s2 (accessed as above as ad0s[567]) and ad0s3 will be FreeBSD, no? Cheers, Ian > Good luck, > > ////jerry > > > > > thank you very much > > > > steve (come from hong kong) From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 09: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 C816516A47C for ; Mon, 19 Jun 2006 09:55:35 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0179E43D45 for ; Mon, 19 Jun 2006 09:55:34 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by hu-out-0102.google.com with SMTP id 27so519848hub for ; Mon, 19 Jun 2006 02:55:33 -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=I5BIQDhBaI6jiPpiFlAOcgiVUkNDqtQ1GyaqguWrDfH1yEdAOD+Ii/CZE3RprDVCXhdTnsvnpEFmdlbjW6AzrU/SYHsR5PKdoKXPk/W1QCq/tNVnRFHFcNKVeGTbzzVrpav6cXg4sbEcLi4MMWwV18nIRctvDeTvGJYbCQHd4cw= Received: by 10.67.89.6 with SMTP id r6mr5363726ugl; Mon, 19 Jun 2006 02:55:33 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Mon, 19 Jun 2006 02:55:32 -0700 (PDT) Message-ID: <80f4f2b20606190255g6e742279r18fed593af119106@mail.gmail.com> Date: Mon, 19 Jun 2006 05:55:32 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <449663A8.5070203@dial.pipex.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> <449663A8.5070203@dial.pipex.com> Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 09:55:35 -0000 OK, that was easier than expected. These blobs appeared around everything "linux", but don't look horribly useful. I'll check later to see if I can find anything else. is there anything I should be looking for aside from linux? $ wc -l kdumped 11413 kdumped 7851 rm RET fcntl 0 7851 rm CALL fstatfs(0x4,0xbfbfe670) 7851 rm RET fstatfs 0 7851 rm CALL fstat(0x4,0xbfbfe850) 7851 rm RET fstat 0 7851 rm CALL fchdir(0x4) 7851 rm RET fchdir 0 7851 rm CALL getdirentries(0x4,0x8051000,0x1000,0x8050014) 7851 rm RET getdirentries 512/0x200 7851 rm CALL lstat(0x804f2a8,0x804f248) 7851 rm NAMI "perl" 7851 rm RET lstat 0 7851 rm CALL lstat(0x804f3a8,0x804f348) 7851 rm NAMI "cxupgrade" 7851 rm RET lstat 0 7851 rm CALL lstat(0x804f4a8,0x804f448) 7851 rm NAMI "tcl" 7851 rm RET lstat 0 7851 rm CALL lstat(0x804f5a8,0x804f548) 7851 rm NAMI "nsplugin-linux.so" 7851 rm RET lstat 0 7851 rm CALL lstat(0x804f6a8,0x804f648) 7851 rm NAMI "nsplugin-linux64.so" 7851 rm RET lstat 0 7851 rm CALL lstat(0x804f7a8,0x804f748) 7851 rm NAMI "xml" 7851 rm RET lstat 0 7851 rm CALL lstat(0x804fea8,0x804fe48) 7851 rm NAMI "libxml2.so.2.6.19" 7851 rm RET lstat 0 7851 rm CALL lstat(0x804ffa8,0x804ff48) 7851 rm NAMI "libxml2.so.2" 7851 rm RET lstat 0 7851 rm CALL lstat(0x80520a8,0x8052048) 7851 rm NAMI "libxml2.so" 7851 rm RET lstat 0 7851 rm CALL lstat(0x80521a8,0x8052148) 7851 rm NAMI "libxslt.so.1.1.14" 7851 rm RET lstat 0 7851 rm CALL lstat(0x80522a8,0x8052248) 7851 rm NAMI "libxslt.so.1" 7851 rm RET lstat 0 7851 rm CALL lstat(0x80523a8,0x8052348) 7851 rm NAMI "libxslt.so" 7851 rm RET lstat 0 7851 rm CALL lstat(0x80524a8,0x8052448) 7851 rm CALL unlink(0x80530a8) 7851 rm NAMI "libimg1.2.so" 7851 rm RET unlink 0 7851 rm CALL unlink(0x80531a8) 7851 rm NAMI "libTktable2.8.so" 7851 rm RET unlink 0 7851 rm CALL open(0x2813fcd0,0,0) 7851 rm NAMI ".." 7851 rm RET open 4 7851 rm CALL fstat(0x4,0xbfbfe8c0) 7851 rm RET fstat 0 7851 rm CALL fchdir(0x4) 7851 rm RET fchdir 0 7851 rm CALL close(0x4) 7851 rm RET close 0 7851 rm CALL rmdir(0x804f4a8) 7851 rm NAMI "tcl" 7851 rm RET rmdir 0 7851 rm CALL unlink(0x804f5a8) 7851 rm NAMI "nsplugin-linux.so" 7851 rm RET unlink 0 7851 rm CALL unlink(0x804f6a8) 7851 rm NAMI "nsplugin-linux64.so" 7851 rm RET unlink 0 7851 rm CALL stat(0x804f7a8,0xbfbfe850) 7851 rm NAMI "xml" 7851 rm RET stat 0 7851 rm CALL open(0x804f7a8,0x4,0x1) 7851 rm NAMI "xml" 7851 rm RET open 4 7851 rm CALL fstat(0x4,0xbfbfe850) 7851 rm RET fstat 0 7851 rm CALL fcntl(0x4,0x2,0x1) 7851 rm RET fcntl 0 7851 rm CALL fstatfs(0x4,0xbfbfe670) 7851 rm RET fstatfs 0 7851 rm CALL fstat(0x4,0xbfbfe850) 7851 rm RET fstat 0 7851 rm CALL fchdir(0x4) 7851 rm RET fchdir 0 7851 rm CALL getdirentries(0x4,0x8051000,0x1000,0x8050014) 7851 rm RET getdirentries 512/0x200 7851 rm CALL lstat(0x8052da8,0x8052d48) 7851 rm NAMI "perl" 7851 rm RET lstat 0 7851 rm CALL getdirentries(0x4,0x8051000,0x1000,0x8050014) 7851 rm RET rmdir 0 7851 rm CALL unlink(0x804f3a8) 7851 rm NAMI "setup.glade" 7851 rm RET unlink 0 7851 rm CALL stat(0x804f4a8,0xbfbfe850) 7851 rm NAMI "bin" 7851 rm RET stat 0 7851 rm CALL open(0x804f4a8,0x4,0x1) 7851 rm NAMI "bin" 7851 rm RET open 4 7851 rm CALL fstat(0x4,0xbfbfe850) 7851 rm RET fstat 0 7851 rm CALL fcntl(0x4,0x2,0x1) 7851 rm RET fcntl 0 7851 rm CALL fstatfs(0x4,0xbfbfe670) 7851 rm RET fstatfs 0 7851 rm CALL fstat(0x4,0xbfbfe850) 7851 rm RET fstat 0 7851 rm CALL fchdir(0x4) 7851 rm RET fchdir 0 7851 rm CALL getdirentries(0x4,0x8051000,0x1000,0x8050014) 7851 rm RET getdirentries 512/0x200 7851 rm CALL lstat(0x804f2a8,0x804f248) 7851 rm NAMI "Linux" 7851 rm RET lstat 0 7851 rm CALL getdirentries(0x4,0x8051000,0x1000,0x8050014) 7851 rm RET getdirentries 0 7851 rm CALL lseek(0x4,0,0,0,0) 7851 rm RET lseek 0 7851 rm CALL close(0x4) 7851 rm RET close 0 7851 rm CALL stat(0x804f2a8,0xbfbfe850) 7851 rm NAMI "Linux" 7851 rm RET stat 0 7851 rm CALL open(0x804f2a8,0x4,0x1) 7851 rm NAMI "Linux" 7851 rm RET open 4 7851 rm CALL fstat(0x4,0xbfbfe850) 7851 rm RET fstat 0 7851 rm CALL fcntl(0x4,0x2,0x1) 7851 rm RET fcntl 0 7851 rm CALL fstatfs(0x4,0xbfbfe670) 7851 rm RET fstatfs 0 7851 rm CALL fstat(0x4,0xbfbfe850) 7851 rm RET fstat 0 7851 rm CALL fchdir(0x4) 7851 rm RET fchdir 0 7851 rm CALL getdirentries(0x4,0x8051000,0x1000,0x8050014) 7851 rm RET getdirentries 512/0x200 7851 rm CALL lstat(0x804f3a8,0x804f348) 7851 rm NAMI "x86" 7851 rm RET lstat 0 7851 rm CALL getdirentries(0x4,0x8051000,0x1000,0x8050014) 7851 rm RET getdirentries 0 7851 rm CALL lseek(0x4,0,0,0,0) 7851 rm RET lseek 0 7851 rm CALL close(0x4) 7851 rm RET close 0 7851 rm CALL stat(0x804f3a8,0xbfbfe850) 7851 rm RET unlink 0 7851 rm CALL open(0x2813fcd0,0,0) 7851 rm NAMI ".." 7851 rm RET open 4 7851 rm CALL fstat(0x4,0xbfbfe8c0) 7851 rm RET fstat 0 7851 rm CALL fchdir(0x4) 7851 rm RET fchdir 0 7851 rm CALL close(0x4) 7851 rm RET close 0 7851 rm CALL rmdir(0x804f3a8) 7851 rm NAMI "x86" 7851 rm RET rmdir 0 7851 rm CALL open(0x2813fcd0,0,0) 7851 rm NAMI ".." 7851 rm RET open 4 7851 rm CALL fstat(0x4,0xbfbfe8c0) 7851 rm RET fstat 0 7851 rm CALL fchdir(0x4) 7851 rm RET fchdir 0 7851 rm CALL close(0x4) 7851 rm RET close 0 7851 rm CALL rmdir(0x804f2a8) 7851 rm NAMI "Linux" 7851 rm RET rmdir 0 7851 rm CALL open(0x2813fcd0,0,0) 7851 rm NAMI ".." 7851 rm RET open 4 7851 rm CALL fstat(0x4,0xbfbfe8c0) 7851 rm RET fstat 0 7851 rm CALL fchdir(0x4) 7851 rm RET fchdir 0 7851 rm CALL close(0x4) 7851 rm RET close 0 7851 rm CALL rmdir(0x804f4a8) 7851 rm NAMI "bin" 7851 rm RET rmdir 0 7851 rm CALL unlink(0x804f5a8) 7851 rm NAMI "GPLV2" 7851 rm RET unlink 0 7851 rm CALL unlink(0x804f6a8) 7851 rm NAMI "preinstall.sh" 7851 rm RET unlink 0 7851 rm CALL unlink(0x804f7a8) 7851 rm NAMI "preuninstall" 7851 rm RET unlink 0 7851 rm CALL unlink(0x804f8a8) On 6/19/06, Alex Zbyslaw wrote: > Jim Stapleton wrote: > > > I don't know how to find out, except that the app is the Crossover > > Office demo installer. I'd like to try to find a way to trick it into > > running in the linux compatability mode of FreeBSD if I can. > > So is there source code? Or is it some dumb binary rpm? > > You could try running it under ktrace, then look at the output of kdump > (assuming that works for linux apps), but the output will be *long* so > you will have to edit out a judicious part which leads up to the "Linux" > string being printed, and it might not help. But, it might, for > example, look to see if some file exists (/etc/redhat-release or something). > > Darrin Chandler wrote: > > >In addition, consider respecting the wishes of > >the developer(s) and not using it. If they have any sort of "free" > >license then you can always release a portable fork. > > > Respect a license? Yes, probably. Respect the wishes? Fat chance. That way lies doom... > > --Alex > > > > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 10:10: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 5696B16A47B for ; Mon, 19 Jun 2006 10:10:05 +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 6AA2043D4C for ; Mon, 19 Jun 2006 10:10:00 +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.6/8.13.6/Debian-1) with ESMTP id k5JA9McY023951 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 19 Jun 2006 13:09:23 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.6/8.13.6) with ESMTP id k5JABhVW004260; Mon, 19 Jun 2006 13:11:43 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.6/8.13.6/Submit) id k5JABcY9004259; Mon, 19 Jun 2006 13:11:38 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 19 Jun 2006 13:11:38 +0300 From: Giorgos Keramidas To: Dan Bikle Message-ID: <20060619101138.GA4170@gothmog.pc> References: <74252ed10606171050w6fdd78c8nd7fceedf4c5c2e6b@mail.gmail.com> <200606171416.52309.amistry@am-productions.biz> <74252ed10606171129k2f5e57e6me799aae645b4a9c3@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <74252ed10606171129k2f5e57e6me799aae645b4a9c3@mail.gmail.com> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.269, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 1.13, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: Anish Mistry , freebsd-questions@freebsd.org Subject: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 10:10:05 -0000 On 2006-06-17 11:29, Dan Bikle wrote: > Anish, > > Thanks this is good info. > > I'll be using this server for development of a Ruby on Rails. > > Currently I do development on a Mac. > > My production server is running freeBSD 5.3 You shouldn't be running a production server with 5.3 at all. The 5.3 release was clearly marked as a "developer preview" release, so if you are still running systems with that version, then you should *first* upgrade your production systems to a more stable FreeBSD version. Many important bugs have been fixed on the 5.X branch since the 5.3 version was built, so you should target at the _very_ least the more stable, debugged & featureful 5.4 or 5.5 releases, or even RELENG_5. > I want a development environment which is closer to production > than my Mac is. Which is a very good point. This is why you should definitely start by fixing the version of the production system :) From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 10:10: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 D272116A4C1 for ; Mon, 19 Jun 2006 10:10:28 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 973E043D46 for ; Mon, 19 Jun 2006 10:10:27 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by hu-out-0102.google.com with SMTP id 28so488280hug for ; Mon, 19 Jun 2006 03:10: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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=YROIzq8tW5KaUxBqbjQ/weXq/LT2BltOKCf3DsMOujpNGAHDpwsP3NK57Z12zE4+mZFhIQ8C0LWlTWLAackCWyYemLpsxlWqGaw8q1ENcLYIFKz+S0x3ukZIRCnzosDwxLDQ8eq2aSoOJ8TzqCxedg6gBXY38VremkIXofpYegg= Received: by 10.67.103.7 with SMTP id f7mr1867171ugm; Mon, 19 Jun 2006 02:44:27 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Mon, 19 Jun 2006 02:44:27 -0700 (PDT) Message-ID: <80f4f2b20606190244t5a33b255l980d542a46e98a95@mail.gmail.com> Date: Mon, 19 Jun 2006 05:44:27 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <449663A8.5070203@dial.pipex.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> <449663A8.5070203@dial.pipex.com> Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 10:10:28 -0000 Ahh, it is, in fact, a binary sh. The binary compatability looks pretty thourough, and it seems most of the details in the compatability section for most apps seem to involve making them check for BSD instead of linux, and ensuring they run in compatability mode, I'll run ktrace tonight. thanks. I really want to proove to these people that the port will not be a $60k effor, more like a $20 effort. On 6/19/06, Alex Zbyslaw wrote: > Jim Stapleton wrote: > > > I don't know how to find out, except that the app is the Crossover > > Office demo installer. I'd like to try to find a way to trick it into > > running in the linux compatability mode of FreeBSD if I can. > > So is there source code? Or is it some dumb binary rpm? > > You could try running it under ktrace, then look at the output of kdump > (assuming that works for linux apps), but the output will be *long* so > you will have to edit out a judicious part which leads up to the "Linux" > string being printed, and it might not help. But, it might, for > example, look to see if some file exists (/etc/redhat-release or something). > > Darrin Chandler wrote: > > >In addition, consider respecting the wishes of > >the developer(s) and not using it. If they have any sort of "free" > >license then you can always release a portable fork. > > > Respect a license? Yes, probably. Respect the wishes? Fat chance. That way lies doom... > > --Alex > > > > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 10:21: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 837F316A47F for ; Mon, 19 Jun 2006 10:21:54 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out2.blueyonder.co.uk (smtp-out2.blueyonder.co.uk [195.188.213.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8437743D72 for ; Mon, 19 Jun 2006 10:21:52 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.139] (helo=anti-virus01-10) by smtp-out2.blueyonder.co.uk with smtp (Exim 4.52) id 1FsGtD-0004EK-Im; Mon, 19 Jun 2006 11:21:51 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out4.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsGtC-0003HS-Jt; Mon, 19 Jun 2006 11:21:50 +0100 Message-ID: <44967ABE.3030503@dial.pipex.com> Date: Mon, 19 Jun 2006 11:21:50 +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: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> <449663A8.5070203@dial.pipex.com> <80f4f2b20606190255g6e742279r18fed593af119106@mail.gmail.com> In-Reply-To: <80f4f2b20606190255g6e742279r18fed593af119106@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 10:21:54 -0000 Jim Stapleton wrote: > OK, that was easier than expected. These blobs appeared around > everything "linux", but don't look horribly useful. I'll check later > to see if I can find anything else. is there anything I should be > looking for aside from linux? What you want to find is the error message you got about "Only runs on Linux". I was assuming this is just a single binary, but if there is lots of stuff including sh scripts and stuff then a grep for some part of the string in all the files might point you in the right direction. I think Linux was all caps so a case-sensitive grep (i.e. not -i) for Linux should do the trick. If in doubt try to find the earliest word in the error string since ktrace will chop off long strings. (Sorry, lost your original post already and can't exactly remember the string). > I really want to proove to these people that the port will not be a > $60k effor, more like a $20 effort. Better not tell you my hourly rate then ;-) --Alex From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 10:33: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 8E38016A479 for ; Mon, 19 Jun 2006 10:33:53 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) 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 0C20743D45 for ; Mon, 19 Jun 2006 10:33:52 +0000 (GMT) (envelope-from erikt@midgard.homeip.net) Received: from falcon.midgard.homeip.net (83.253.29.241) by pne-smtpout2-sn1.fre.skanova.net (7.2.072.1) id 4492E966000880BF for freebsd-questions@freebsd.org; Mon, 19 Jun 2006 12:33:52 +0200 Received: (qmail 18382 invoked from network); 19 Jun 2006 12:33:51 +0200 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with SMTP; 19 Jun 2006 12:33:51 +0200 Received: (qmail 18062 invoked by uid 1001); 19 Jun 2006 12:33:51 +0200 Date: Mon, 19 Jun 2006 12:33:51 +0200 From: Erik Trulsson To: Giorgos Keramidas Message-ID: <20060619103351.GA18026@owl.midgard.homeip.net> Mail-Followup-To: Giorgos Keramidas , Dan Bikle , Anish Mistry , freebsd-questions@freebsd.org References: <74252ed10606171050w6fdd78c8nd7fceedf4c5c2e6b@mail.gmail.com> <200606171416.52309.amistry@am-productions.biz> <74252ed10606171129k2f5e57e6me799aae645b4a9c3@mail.gmail.com> <20060619101138.GA4170@gothmog.pc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060619101138.GA4170@gothmog.pc> User-Agent: Mutt/1.5.11 Cc: Dan Bikle , Anish Mistry , freebsd-questions@freebsd.org Subject: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 10:33:53 -0000 On Mon, Jun 19, 2006 at 01:11:38PM +0300, Giorgos Keramidas wrote: > On 2006-06-17 11:29, Dan Bikle wrote: > > Anish, > > > > Thanks this is good info. > > > > I'll be using this server for development of a Ruby on Rails. > > > > Currently I do development on a Mac. > > > > My production server is running freeBSD 5.3 > > You shouldn't be running a production server with 5.3 at all. > > The 5.3 release was clearly marked as a "developer preview" release No, it was not. 5.3 was a perfectly ordinary release. It was in fact the first 5.x release that was *not* marked as a "developer preview". > , so > if you are still running systems with that version, then you should > *first* upgrade your production systems to a more stable FreeBSD > version. > > Many important bugs have been fixed on the 5.X branch since the 5.3 > version was built, so you should target at the _very_ least the more > stable, debugged & featureful 5.4 or 5.5 releases, or even RELENG_5. Upgrading to 5.5 (or even 6.1) is probably a good idea for two reasons. The first is that, just as you say, several bugs have been fixed since 5.3 . The other reason is that both 5.3 and 5.4 will only be supported for a couple months more, while 5.5 will be supported for nearly two more years. (See http://www.freebsd.org/security/ for exact dates.) > > > I want a development environment which is closer to production > > than my Mac is. > > Which is a very good point. > > This is why you should definitely start by fixing the version of the > production system :) > -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 10:40: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 C4F7316A47C for ; Mon, 19 Jun 2006 10:40:14 +0000 (UTC) (envelope-from gary@pattersonsoftware.com) Received: from mail-ihug.icp-qv1-irony6.iinet.net.au (ihug-mail.icp-qv1-irony6.iinet.net.au [203.59.1.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFB7F43D49 for ; Mon, 19 Jun 2006 10:40:13 +0000 (GMT) (envelope-from gary@pattersonsoftware.com) Received: from 203-206-126-46.dyn.iinet.net.au (HELO tosh) ([203.206.126.46]) by mail-ihug.icp-qv1-irony6.iinet.net.au with ESMTP; 19 Jun 2006 18:40:12 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.06,150,1149436800"; d="scan'208"; a="343790159:sNHT12680764" From: "Gary" To: Date: Mon, 19 Jun 2006 20:40:10 +1000 Message-ID: <000a01c6938c$bde0f920$1f01a8c0@tosh> 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.2869 Thread-Index: AcaTjLz4YGdnUUdbRsyGSmUCtJzzTQ== X-Antivirus: avast! (VPS 0625-0, 19/06/2006), Outbound message X-Antivirus-Status: Clean Subject: Compatible bottom end ibm servers with freebsd 6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 10:40:14 -0000 Hello all, We have a client who is looking to buy a bottom end ibm server. Can anyone verify if they have freebsd 6 running on any of the following or similar? I'm guessing the issues would be with things like SERIAL ATA - INTEGRATED, RAID 0 & 1 ONBOARD type controllers and the like if any. Any success with xSeries x100, x206m, x226, x306M? If someone gives me a green light for these or any other similar ibms, that would be great. Many thanks Gary From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 10:53: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 DC34016A47C for ; Mon, 19 Jun 2006 10:53:23 +0000 (UTC) (envelope-from shinjii@virusinfo.rdksupportinc.com) Received: from mail6.tpgi.com.au (mail6.tpgi.com.au [203.12.160.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C06443D48 for ; Mon, 19 Jun 2006 10:53:23 +0000 (GMT) (envelope-from shinjii@virusinfo.rdksupportinc.com) X-TPG-Antivirus: Passed Received: from localhost (60-241-6-11.tpgi.com.au [60.241.6.11]) by mail6.tpgi.com.au (envelope-from shinjii@virusinfo.rdksupportinc.com) (8.13.6/8.13.6) with ESMTP id k5JArKaU021854 for ; Mon, 19 Jun 2006 20:53:21 +1000 From: Warren Liddell To: freebsd-questions@freebsd.org Date: Mon, 19 Jun 2006 20:45:04 +1000 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: <200606192045.04241.shinjii@virusinfo.rdksupportinc.com> Subject: NTOP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 10:53:23 -0000 im runnign FreeBSD 6.1-STABLE and each time i start NTOP it keeps looking to use rl0 which isnt active or used, however sis0 is used, so im wanting to know how i can tell ntop to use sis0 instead of rl0 ? From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 11:12: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 42A9616A47C for ; Mon, 19 Jun 2006 11:12:04 +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 CCF8F43D58 for ; Mon, 19 Jun 2006 11:12:02 +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.6/8.13.6/Debian-1) with ESMTP id k5JB9c48027336 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 19 Jun 2006 14:09:44 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.6/8.13.6) with ESMTP id k5JBBx2o004703; Mon, 19 Jun 2006 14:12:00 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.6/8.13.6/Submit) id k5JBBtW9004702; Mon, 19 Jun 2006 14:11:55 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 19 Jun 2006 14:11:55 +0300 From: Giorgos Keramidas To: Dan Bikle , Anish Mistry , freebsd-questions@freebsd.org Message-ID: <20060619111155.GB4589@gothmog.pc> References: <74252ed10606171050w6fdd78c8nd7fceedf4c5c2e6b@mail.gmail.com> <200606171416.52309.amistry@am-productions.biz> <74252ed10606171129k2f5e57e6me799aae645b4a9c3@mail.gmail.com> <20060619101138.GA4170@gothmog.pc> <20060619103351.GA18026@owl.midgard.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060619103351.GA18026@owl.midgard.homeip.net> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.287, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 1.11, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: Subject: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 11:12:04 -0000 On 2006-06-19 12:33, Erik Trulsson wrote: >On Mon, Jun 19, 2006 at 01:11:38PM +0300, Giorgos Keramidas wrote: >>On 2006-06-17 11:29, Dan Bikle wrote: >>> Anish, >>> >>> Thanks this is good info. >>> >>> I'll be using this server for development of a Ruby on Rails. >>> >>> Currently I do development on a Mac. >>> >>> My production server is running freeBSD 5.3 >> >> You shouldn't be running a production server with 5.3 at all. >> >> The 5.3 release was clearly marked as a "developer preview" release > > No, it was not. 5.3 was a perfectly ordinary release. It was in fact > the first 5.x release that was *not* marked as a "developer preview". You're right. I must have been thinking of 5.2.1. Sorry for the misinformation :-/ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 11:23: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 CB02F16A474 for ; Mon, 19 Jun 2006 11:23:20 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CE1A43D55 for ; Mon, 19 Jun 2006 11:23:16 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by hu-out-0102.google.com with SMTP id 28so496879hug for ; Mon, 19 Jun 2006 04:23:15 -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=lYJnyUJIHjYdp2BlKG36cCvqv02zI3689knkn3p5J/SPHdFMlVGH80Of/bmvom+Cw8dAtzZRgujQGvbcHklPQykBVCxNmyOL2SDLGVQK241rs8MTDXj7KlwRIO69hCyxBm6CuWm9nhmuqV7NdQvce6rHM+QA8lRKWbU3IZ4IlnI= Received: by 10.66.250.17 with SMTP id x17mr1746128ugh; Mon, 19 Jun 2006 04:23:14 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Mon, 19 Jun 2006 04:23:14 -0700 (PDT) Message-ID: <80f4f2b20606190423w2385da69o8984a50c47a8162c@mail.gmail.com> Date: Mon, 19 Jun 2006 07:23:14 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <44967ABE.3030503@dial.pipex.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> <449663A8.5070203@dial.pipex.com> <80f4f2b20606190255g6e742279r18fed593af119106@mail.gmail.com> <44967ABE.3030503@dial.pipex.com> Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 11:23:20 -0000 found it; uname -a, I fixed that line, now I just need to figure out how to get the appropriate libs (glibc) into my compat dir... it isn't in any of the linux compat ports. -Jim Stapleton On 6/19/06, Alex Zbyslaw wrote: > Jim Stapleton wrote: > > > OK, that was easier than expected. These blobs appeared around > > everything "linux", but don't look horribly useful. I'll check later > > to see if I can find anything else. is there anything I should be > > looking for aside from linux? > > What you want to find is the error message you got about "Only runs on > Linux". I was assuming this is just a single binary, but if there is > lots of stuff including sh scripts and stuff then a grep for some part > of the string in all the files might point you in the right direction. > I think Linux was all caps so a case-sensitive grep (i.e. not -i) for > Linux should do the trick. If in doubt try to find the earliest word in > the error string since ktrace will chop off long strings. (Sorry, lost > your original post already and can't exactly remember the string). > > > I really want to proove to these people that the port will not be a > > $60k effor, more like a $20 effort. > > Better not tell you my hourly rate then ;-) > > --Alex > > > > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 11:48: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 72BCE16A50D for ; Mon, 19 Jun 2006 11:48:08 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id C053043D48 for ; Mon, 19 Jun 2006 11:48:07 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by hu-out-0102.google.com with SMTP id 27so535032hub for ; Mon, 19 Jun 2006 04:48: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:mime-version:content-type:content-transfer-encoding:content-disposition; b=tspDFfWQVX3/kpFWYS0uhnApmz/LnxutAyFubB+it5uqhU6nsSR3OnYON+3ux2iVPdSVdly5BVHGhkJqEISxXsv89X8HLiJDgPAihjq6xiTWY/sAXQvFprLieS+6k007SvsXRRuZMzHsrvtEU8g2yTmVUHR2N/CdSjs14bQCQaw= Received: by 10.66.252.4 with SMTP id z4mr5430536ugh; Mon, 19 Jun 2006 04:21:49 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Mon, 19 Jun 2006 04:21:49 -0700 (PDT) Message-ID: <80f4f2b20606190421m73657c9aq828cdacb1779e43@mail.gmail.com> Date: Mon, 19 Jun 2006 07:21:49 -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: where does one find glibc for /usr/compat/linux/lib ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 11:48:08 -0000 I looked at a few of the emulator/linux* ports, and it was not in their pkg-plist files, only something in their usr/sbin (glibc_post_upgrad), which, when ran, does not generate a glibc that I can find in the any of BSDs lib directories, or the compat/linux/lib, compat/linux/usr/lib either. Is there any port I can install to get this? Or should i just make a link to my systems "libc"? Thanks -Jim Stapleton From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 09:58: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 575C816A47A; Mon, 19 Jun 2006 09:58:03 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC91A43D46; Mon, 19 Jun 2006 09:58:02 +0000 (GMT) (envelope-from des@des.no) Received: from tim.des.no (localhost [127.0.0.1]) by spam.des.no (Postfix) with ESMTP id 883D82087; Mon, 19 Jun 2006 11:57:57 +0200 (CEST) X-Spam-Tests: none X-Spam-Learn: disabled X-Spam-Score: 0.0/3.0 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on tim.des.no Received: from xps.des.no (des.no [80.203.243.180]) by tim.des.no (Postfix) with ESMTP id 0D8692086; Mon, 19 Jun 2006 11:57:57 +0200 (CEST) Received: by xps.des.no (Postfix, from userid 1001) id DD80F33C8D; Mon, 19 Jun 2006 11:57:56 +0200 (CEST) From: des@des.no (Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?=) To: Dennis Olvany References: <4495F9A1.8040407@gmail.com> Date: Mon, 19 Jun 2006 11:57:56 +0200 In-Reply-To: <4495F9A1.8040407@gmail.com> (Dennis Olvany's message of "Sun, 18 Jun 2006 20:10:57 -0500") Message-ID: <867j3dwjq3.fsf@xps.des.no> User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailman-Approved-At: Mon, 19 Jun 2006 11:50:28 +0000 Cc: David Hoffman , freebsd-user-groups@freebsd.org, thisdayislong , freebsd-chat@freebsd.org, ingrid@cityscope.net, freebsd-questions@freebsd.org Subject: Re: Fwd: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 09:58:03 -0000 Dennis Olvany writes: > I had a look at http://www.houfug.org/help/install_freebsd.htm and I am > afraid that you will find this article is not eligible for copyright. It > constitutes neither an artistic nor literary work. The article conveys > only facts and facts are not eligible for copyright. You're on to something, but you didn't quite get it right. Copyright law does not care about artistic or literary qualities; and while plain facts are not copyrightable, as you point out, their expression certainly is. A Haynes workshop manual, for instance, is neither art nor literature, and it is full of facts, but it is definitely copyrightable. I can put up a web page describing how to change the starter motor on my brother's Citro=EBn CX (bitch of a job, I'll have you know), but I have to use my own words and photos, not those from my brother's Haynes manual. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 11:56: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 3599916A474 for ; Mon, 19 Jun 2006 11:56:55 +0000 (UTC) (envelope-from pabmara@fiv.upv.es) Received: from smtp.upv.es (84-123-5-49.onocable.ono.com [84.123.5.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB96543D72 for ; Mon, 19 Jun 2006 11:56:54 +0000 (GMT) (envelope-from pabmara@fiv.upv.es) Received: by localhost.localdomain (Postfix, from userid 1001) id 537AA3E; Mon, 19 Jun 2006 13:57:25 +0200 (CEST) Date: Mon, 19 Jun 2006 13:57:25 +0200 From: Pablo =?iso-8859-1?Q?Mar=EDn_Ram=F3n?= To: Jim Stapleton Message-ID: <20060619115725.GA10846@localhost.localdomain> References: <80f4f2b20606190421m73657c9aq828cdacb1779e43@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <80f4f2b20606190421m73657c9aq828cdacb1779e43@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: where does one find glibc for /usr/compat/linux/lib ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 11:56:55 -0000 > I looked at a few of the emulator/linux* ports, and it was not in > their pkg-plist files, only something in their usr/sbin > (glibc_post_upgrad), which, when ran, does not generate a glibc that I > can find in the any of BSDs lib directories, or the compat/linux/lib, > compat/linux/usr/lib either. $ grep ^lib/libc /usr/ports/emulators/linux_base-8/pkg-plist lib/libc-2.3.2.so lib/libc.so.6 lib/libcrypt-2.3.2.so lib/libcrypt.so.1 $ ls /usr/compat/linux/lib/libc* /usr/compat/linux/lib/libc-2.3.2.so /usr/compat/linux/lib/libcrypt-2.3.2.so /usr/compat/linux/lib/libc.so.6 /usr/compat/linux/lib/libcrypt.so.1 From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12: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 2559C16A479 for ; Mon, 19 Jun 2006 12:14:08 +0000 (UTC) (envelope-from Richard.Mayo@us.army.mil) Received: from cecom6.monmouth.army.mil (cecom6.monmouth.army.mil [134.80.0.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CF7943D62 for ; Mon, 19 Jun 2006 12:14:07 +0000 (GMT) (envelope-from Richard.Mayo@us.army.mil) Received: from MONM226.nae.ds.army.mil (mailsw2.monmouth.army.mil [134.80.5.41]) by cecom6.monmouth.army.mil (8.13.6/8.13.6) with ESMTP id k5JCDxTl010551 for ; Mon, 19 Jun 2006 08:14:03 -0400 (EDT) Received: from SWGM6.nae.ds.army.mil (unverified) by MONM226.nae.ds.army.mil (Content Technologies SMTPRS 4.3.12) with ESMTP id for ; Mon, 19 Jun 2006 08:13:59 -0400 Received: by swgm6.nae.ds.army.mil with Internet Mail Service (5.5.2658.27) id ; Mon, 19 Jun 2006 08:13:59 -0400 Message-ID: From: "Mayo, Richard A RDECOM CERDEC STCD SRI" To: "'freebsd-questions@freebsd.org'" Date: Mon, 19 Jun 2006 08:13:57 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2658.27) Content-Type: text/plain Subject: RE: Getting Source Code after Installing the Software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 12:14:08 -0000 Can you simply tell me the name of the tar ball on the CD? Rich Mayo SRI International x76435 > -----Original Message----- > From: Lowell Gilbert [mailto:freebsd-questions-local@be-well.ilk.org] > Sent: Friday, June 16, 2006 4:40 PM > To: Mayo, Richard A RDECOM CERDEC STCD SRI > Cc: 'freebsd-questions@freebsd.org' > Subject: Re: Getting Source Code after Installing the Software > > "Mayo, Richard A RDECOM CERDEC STCD SRI" > writes: > > > I installed FreeBSD on a couple of computers without > installing any source code. Now (naturally), I want to get a > hold of the kernel source so I can re-compile and enable > support for PIM and Multicast Routing. > > > > However, I can't figure how to get the source off my CDs. > I downloaded the ISO's for Disk 1 and Disk 2 of FreeBSD 6.1--RELEASE. > > Can anybody tell me where I can find the source code on > these disks so I don't have to run a re-installation just to get it?? > > You can run sysinstall without doing an install. > If you really want to extract the source directly with tar, it's been > explained on this list a number of times over the years. > > Or get more up-to-date sources by cvsup, as someone else suggested. > > Shall we go on? There are more possibilities, albeit less generally > useful. > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12:16: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 B142B16A47F for ; Mon, 19 Jun 2006 12:16:08 +0000 (UTC) (envelope-from djp@polands.org) Received: from corinth.polands.org (CPE-72-129-222-120.new.res.rr.com [72.129.222.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id E366143D5E for ; Mon, 19 Jun 2006 12:15:59 +0000 (GMT) (envelope-from djp@polands.org) Received: from jericho.polands.org (jericho.polands.org [172.16.1.35]) by corinth.polands.org (8.13.6/8.13.6) with ESMTP id k5JCFvL8012618; Mon, 19 Jun 2006 07:15:57 -0500 (CDT) (envelope-from djp@polands.org) Received: from jericho.polands.org (localhost [127.0.0.1]) by jericho.polands.org (8.13.6/8.13.6) with ESMTP id k5JCFuM7045509; Mon, 19 Jun 2006 07:15:56 -0500 (CDT) (envelope-from djp@jericho.polands.org) Received: (from djp@localhost) by jericho.polands.org (8.13.6/8.13.6/Submit) id k5JCFuYh045508; Mon, 19 Jun 2006 07:15:56 -0500 (CDT) (envelope-from djp) Date: Mon, 19 Jun 2006 07:15:56 -0500 From: Doug Poland To: Philippe Lang Message-ID: <20060619121556.GA45447@polands.org> References: <6C0CF58A187DA5479245E0830AF84F4218CCF9@poweredge.attiksystem.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6C0CF58A187DA5479245E0830AF84F4218CCF9@poweredge.attiksystem.ch> User-Agent: Mutt/1.5.11 X-Virus-Scanned: ClamAV 0.87/1549/Sat Jun 17 17:20:39 2006 on corinth.polands.org X-Virus-Status: Clean Cc: freebsd-questions Subject: Re: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 12:16:08 -0000 On Mon, Jun 19, 2006 at 10:18:05AM +0200, Philippe Lang wrote: > Hi, > > I've got two boxes that would be perfect for a small server. The > motherboards are: > > - ASUS P4C800-E Deluxe, with ICH5R and Promise PDC20378 > - ASUS P5WD2, with ICH7R > > I intend to install FreeBSD 6.1, and I wonder which chipset you would > recommend me for RAID 1? I need something rock-solid, of course... > I'm running -STABLE on a P4C800-E. I've never had a problem with the PDC20378. Recently, I added two drives on the ICH5R with no issues. A little benchmarking shows the ICH5R to be a little faster. HTH, -- Regards, Doug From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12:23: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 057BF16A47D for ; Mon, 19 Jun 2006 12:23:15 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8A0043D55 for ; Mon, 19 Jun 2006 12:23:12 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id CA2467E8C5; Mon, 19 Jun 2006 08:23:11 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cES9ZH1bWzaS; Mon, 19 Jun 2006 08:23:11 -0400 (EDT) Received: from [192.168.0.3] (unknown [74.128.244.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id D23C07E8C4; Mon, 19 Jun 2006 08:23:10 -0400 (EDT) In-Reply-To: <44966182.3020202@dial.pipex.com> References: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> <2A55FF5E-F764-406A-BE0E-272246F425B5@netmusician.org> <448xoska3k.fsf@be-well.ilk.org> <44733B8B.6030404@dial.pipex.com> <448FDE6B.4000703@dial.pipex.com> <38D0516F-2F6B-4700-9006-5A2D6034DC0C@netmusician.org> <449042EF.9040905@dial.pipex.com> <4680C6D4-50F9-4441-8B54-924092A1A3AD@netmusician.org> <44913391.7060906@dial.pipex.com> <7B276387-F946-4FEC-81D1-8CF9B95808E2@netmusician.org> <44958D50.4050000@dial.pipex.com> <44966182.3020202@dial.pipex.com> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Joe Auty Date: Mon, 19 Jun 2006 08:23:17 -0400 To: Alex Zbyslaw X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Gpgmail-State: signed X-Mailer: Apple Mail (2.750) Cc: FreeBSD Questions Subject: Re: Python port 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, 19 Jun 2006 12:23:15 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Jun 19, 2006, at 4:34 AM, Alex Zbyslaw wrote: > Joe Auty wrote: > >> >> On Jun 18, 2006, at 1:28 PM, Alex Zbyslaw wrote: >> >>> Joe Auty wrote: >>> >>>> >>>> On Jun 15, 2006, at 6:16 AM, Alex Zbyslaw wrote: >>>> >>>>> Joe Auty wrote: >>>>> >>>>>> jauty# python -v /usr/local/mailman/bin/qrunner >>>>>> [...snip...] >>>>>> # /usr/local/lib/python2.4/getopt.pyc matches /usr/local/ >>>>>> lib/ python2.4/getopt.py >>>>>> import getopt # precompiled from /usr/local/lib/python2.4/ >>>>>> getopt.pyc >>>>>> # /usr/local/mailman/bin/paths.pyc matches /usr/local/mailman/ >>>>>> bin/ paths.py >>>>>> import paths # precompiled from /usr/local/mailman/bin/paths.pyc >>>>>> [...snip...] >>>>> >>>>> >>>>> >>>>> OK, you just ran qrunner successfully without getting the >>>>> error you were getting earlier about getopt. Doesn't matter >>>>> that all you got was help, it found *everything* that it >>>>> tried to import. >>>>> >>>>> I missed the start of this thread. How did you run qrunner to >>>>> get your earlier error and where did the error appear? I >>>>> think you said the rc script. If it's not too big can you >>>>> post it? Or compare it against your working mailman? >>>>> >>>> >>>> My Mailman rc script (exactly identical to the one on my >>>> working machine): >>>> >>> You're getting your error when mailman starts at boot time; is >>> that right? >>> >>> If so, what happens if you try as root (csh): >>> >>> # sh -x /usr/local/etc/rc.d/mailman.sh start >>> >>> (you might have to check the exact name of the rc.d script). >>> >>> If this starts mailman then something bizarre is going on. >>> >>> If you get the same error as usual, then judicious snippets with >>> the error and prior context. >>> >> >> Running the RC script under sh, csh, and bash yields the same >> error spew.... >> >> I've attached the errors spewed out in their entirety: > > Sorry, the csh/sh distinction should have been edited out by me - I > was redirecting the output in my first edit then took it out. > However, the point was to run with sh -x as that will trace > execution and might find where has been written. > > Can you try: > > $ ls /usr/local/etc/rc.d/mailman* > # ls /usr/local/etc/rc.d/mailman* /usr/local/etc/rc.d/mailman.sh > $ ls /etc/rc.d/mailman* > # ls /etc/rc.d/mailman* ls: No match. > (in case some old script has hung around) > > $ find /usr/local/mailman -type f -exec egrep -H '' {} \; > > (to try to find somewhere in mailman install) > # find /usr/local/mailman -type f -exec egrep -H '' {} \; /usr/local/mailman/messages/ja/README.ja: % cd /pythonlib > and if that finds nothing > > $ sh -x /usr/local/etc/rc.d/mailman.sh start > Same problem, would you like a copy of this output? I'm presuming the lines prefaced by a "+" are of interest to you? + named_symlink_enable=YES + kerberos5_server_enable=NO + kerberos5_server=/usr/libexec/kdc + kadmind5_server_enable=NO + kadmind5_server=/usr/libexec/kadmind + kpasswdd_server_enable=NO + kpasswdd_server=/usr/libexec/kpasswdd + rwhod_enable=NO Anything in particular you'd like me to pull from this output? > [from mailman list] > >> One wild guess - look at bin/paths.py. It should contain real >> paths as >> definitions for 'prefix' and 'exec_prefix'. If it's wrong, then so >> probably are cron/paths.py and scripts/paths.py (and who knows what >> else). > > > > We tried looking in that first file a couple iterations ago :- > ( Above I've tried looking in others but I don't think that will > be it. don't think it's the mailman install per se as you ran > qrunner from the command line and it worked. Try again to be sure: > > /usr/local/mailman/bin/qrunner > > and you' should get the help message and not an import error. > Indeed, I do! Thanks again for your help! I hope that isolating and resolving my problem will be useful for others too... - ----------- Joe Auty NetMusician: web publishing software for musicians http://www.netmusician.org joe@netmusician.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFElpc2CgdfeCwsL5ERAmTMAKCP+gq9x5grPHc/2PrSLlBnvPltGQCfZj1Z sIzmqj95/1mEeuAlhOENNfo= =faPl -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12:25: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 9EAF316A479 for ; Mon, 19 Jun 2006 12:25:45 +0000 (UTC) (envelope-from m.belushkin@fz-juelich.de) Received: from nemesis.itkp.uni-bonn.de (nemesis.itkp.uni-bonn.de [131.220.226.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A8BA43D70 for ; Mon, 19 Jun 2006 12:25:45 +0000 (GMT) (envelope-from m.belushkin@fz-juelich.de) Received: from [131.220.226.150] (unknown [131.220.226.150]) by nemesis.itkp.uni-bonn.de (Postfix) with ESMTP id 86B7EC782 for ; Mon, 19 Jun 2006 14:25:43 +0200 (CEST) Message-ID: <4496989D.7010608@fz-juelich.de> Date: Mon, 19 Jun 2006 14:29:17 +0200 From: Max Belushkin User-Agent: Thunderbird 1.5.0.4 (X11/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: pkgdb problem after portupgrade - operation not permitted X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 12:25:45 -0000 I just portupgrade'd portupgrade on a FreeBSD 6.0-RELEASE to portupgrade 2.0.1 (2006/06/18), and right after this pkgdb fails on all operations, i.e.: pkgdb -fu [Rebuilding the pkgdb in /var/db/pkg ... - 63 packages found (-0 +63) Operation not permitted: skipping... . Operation not permitted: skipping... . ... etc. Operation not permitted: Cannot update the pkgdb!] Naturally, portupgrade itself now fails to do anything. I've googled for the "Operation not permitted" error in pkgdb, but I could not find any useful pointers to the source of the problem. Any help is much appreciated. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12:39: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 7AFDA16A47C for ; Mon, 19 Jun 2006 12:39:27 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out3.blueyonder.co.uk (smtp-out3.blueyonder.co.uk [195.188.213.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53A8043D68 for ; Mon, 19 Jun 2006 12:39:03 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.136] (helo=anti-virus01-07) by smtp-out3.blueyonder.co.uk with smtp (Exim 4.52) id 1FsJ1w-0000be-6x; Mon, 19 Jun 2006 13:39:00 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out5.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsJ1v-0003RJ-D7; Mon, 19 Jun 2006 13:38:59 +0100 Message-ID: <44969AE2.4000102@dial.pipex.com> Date: Mon, 19 Jun 2006 13:38:58 +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: Joe Auty References: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> <2A55FF5E-F764-406A-BE0E-272246F425B5@netmusician.org> <448xoska3k.fsf@be-well.ilk.org> <44733B8B.6030404@dial.pipex.com> <448FDE6B.4000703@dial.pipex.com> <38D0516F-2F6B-4700-9006-5A2D6034DC0C@netmusician.org> <449042EF.9040905@dial.pipex.com> <4680C6D4-50F9-4441-8B54-924092A1A3AD@netmusician.org> <44913391.7060906@dial.pipex.com> <7B276387-F946-4FEC-81D1-8CF9B95808E2@netmusician.org> <44958D50.4050000@dial.pipex.com> <44966182.3020202@dial.pipex.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Python port 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, 19 Jun 2006 12:39:27 -0000 Joe Auty wrote: >> >> $ sh -x /usr/local/etc/rc.d/mailman.sh start >> > and if that finds nothing > > Same problem, would you like a copy of this output? I'm presuming the > lines prefaced by a "+" are of interest to you? Yes, very much! They're what the shell actually does. Most will be useless to us, but I really hope something in there points to the answer. > > + named_symlink_enable=YES > + kerberos5_server_enable=NO > + kerberos5_server=/usr/libexec/kdc > + kadmind5_server_enable=NO > + kadmind5_server=/usr/libexec/kadmind > + kpasswdd_server_enable=NO > + kpasswdd_server=/usr/libexec/kpasswdd > + rwhod_enable=NO > > Anything in particular you'd like me to pull from this output? > Why don't you mail *just me* the whole thing and if I can figure out what's going wrong I'll summarise to the list the bits that helped. Also a copy of /usr/local/etc/rc.d/mailman.sh Of course, if you have a Web site, you could just pop the full output and the script there and email the links to the list. --Alex From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12:45: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 39BC616A47A for ; Mon, 19 Jun 2006 12:45:54 +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 B920743D6D for ; Mon, 19 Jun 2006 12:45:53 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.146] (helo=anti-virus03-09) by smtp-out5.blueyonder.co.uk with smtp (Exim 4.52) id 1FsJ8b-0002mR-3A; Mon, 19 Jun 2006 13:45:53 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out6.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsJ8a-0007Vn-39; Mon, 19 Jun 2006 13:45:52 +0100 Message-ID: <44969C7F.1030307@dial.pipex.com> Date: Mon, 19 Jun 2006 13:45:51 +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: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> <449663A8.5070203@dial.pipex.com> <80f4f2b20606190255g6e742279r18fed593af119106@mail.gmail.com> <44967ABE.3030503@dial.pipex.com> <80f4f2b20606190423w2385da69o8984a50c47a8162c@mail.gmail.com> In-Reply-To: <80f4f2b20606190423w2385da69o8984a50c47a8162c@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 12:45:54 -0000 Jim Stapleton wrote: > found it; uname -a, I fixed that line, now I just need to figure out > how to get the appropriate libs (glibc) into my compat dir... it isn't > in any of the linux compat ports. Good stuff. The glibc you have might just do fine. Just make a symlink from the one you want to the one you have and try! There's an FC4 linux in the ports, IIRC which is as recent as any Linux I have to administer; I have trouble believing you'd need a newer one otherwise the app won't even run on most Linux machines :-) Or maybe your app has an RPM for an older linux you could try. --Alex From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12: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 256AE16A47A for ; Mon, 19 Jun 2006 12:48:48 +0000 (UTC) (envelope-from nospam@mgedv.net) Received: from mail.mgedv.net (mail.mgedv.net [81.223.168.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB38543D66 for ; Mon, 19 Jun 2006 12:48:47 +0000 (GMT) (envelope-from nospam@mgedv.net) Received: from metis (sslint.my.loop [1.1.1.1]) by mail.my.loop (mgedv) with ESMTP id 5C49245796; Mon, 19 Jun 2006 14:48:45 +0200 (CEST) From: "no@spam@mgedv.net" To: Date: Mon, 19 Jun 2006 14:48:48 +0200 Message-ID: <003701c6939e$b628a270$01010101@avalon.lan> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcaTmfcBCOLT+a/SRU+WV+HkMFYuGQAAzrIw Cc: Richard.Mayo@us.army.mil Subject: RE: Getting Source Code after Installing the Software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 12:48:48 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of > Mayo, Richard A RDECOM CERDEC STCD SRI > Sent: Monday, June 19, 2006 2:14 PM > To: 'freebsd-questions@freebsd.org' > Subject: RE: Getting Source Code after Installing the Software > > Can you simply tell me the name of the tar ball on the CD? > DID ANYBODY LOOK ON THE SENDER ADDRESS OF THIS ORIGINAL POSTING!? --> Richard.Mayo@us.army.mil <-- I BET THERE ARE SEVERAL GUYS WHO KNOW HOW TO INSTALL THE SOURCE OF FREEBSD AT THE US ARMY! BUT IF NOT [i'll prepare a bill for bush upon that if he comes to town ;-)]: put the correct cd into your ATA-CDROM and then: mkdir -p /cdrom mount /dev/acd0 /cdrom cd /cdrom/`uname -r`/src export DESTDIR=/ ./install.sh cd / umount /cdrom and now there should be more in /usr/src. have fun and don't threaten anybody or spy on anybody with these systems! From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12: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 6898416A47C; Mon, 19 Jun 2006 12:51:53 +0000 (UTC) (envelope-from freebsd-questions@auscert.org.au) Received: from titania.auscert.org.au (gw.auscert.org.au [203.5.112.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9642443D68; Mon, 19 Jun 2006 12:51:52 +0000 (GMT) (envelope-from freebsd-questions@auscert.org.au) Received: from app.auscert.org.au (app [10.0.1.192]) by titania.auscert.org.au (8.12.10/8.12.10) with ESMTP id k5JCpouE086289; Mon, 19 Jun 2006 22:51:50 +1000 (EST) Received: from app.auscert.org.au (localhost.auscert.org.au [127.0.0.1]) by app.auscert.org.au (8.13.1/8.13.1) with ESMTP id k5JCpo7Y054704; Mon, 19 Jun 2006 22:51:50 +1000 (EST) (envelope-from freebsd-questions@auscert.org.au) Message-Id: <200606191251.k5JCpo7Y054704@app.auscert.org.au> To: freebsd-questions@freebsd.org From: freebsd-questions@auscert.org.au Date: Mon, 19 Jun 2006 22:51:50 +1000 Cc: freebsd-ports@freebsd.org Subject: portupgrade confusing '-P' and '-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, 19 Jun 2006 12:51:53 -0000 Hi, I'm in the middle of configuring a repeatable jail installation with some ports - in a nutshell, I want to install from locally built packages, but if not available locally I want to build the port myself _and_ create a package for future repetition. To prevent remote fetching, I set the PKG_FETCH variable to /bin/false as recommended. Here's the part I found curious: # portinstall -N -P -p x11-toolkits/gtk20 [Updating the pkgdb in /var/db/pkg ... - 63 packages found (-0 +0) done] ---> Checking for the latest package of 'x11-toolkits/gtk20' ---> Found a package of 'x11-toolkits/gtk20': /usr/ports/packages/All/gtk-2.8.18_1.tbz (gtk-2.8.18_1) ---> Fetching the package(s) for 'gtk-2.8.19' (x11-toolkits/gtk20) [Updating the pkgdb in /var/db/pkg ... - 63 packages found (-0 +0) done] ---> Fetching gtk-2.8.19 ** The command returned a non-zero exit status: 127 ** Failed to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-5.3-release/All/gtk-2.8.19.tbz ** The command returned a non-zero exit status: 127 ** Failed to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-5.3-release/All/gtk-2.8.19.tgz ** Failed to fetch gtk-2.8.19 ** Listing the failed packages (*:skipped / !:failed) ! gtk-2.8.19 (fetch error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed ---> Fetching the latest package(s) for 'gtk20' (x11-toolkits/gtk20) ---> Fetching gtk20 ** The command returned a non-zero exit status: 127 ** Failed to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-5.3-release/Latest/gtk20.tbz ** The command returned a non-zero exit status: 127 ** Failed to fetch ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-5.3-release/Latest/gtk20.tgz ** Failed to fetch gtk20 ** Listing the failed packages (*:skipped / !:failed) ! gtk20@ (fetch error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed ---> Located a package version 2.8.18_1 (/usr/ports/packages/All/gtk-2.8.18_1.tbz) ---> Using it anyway although it is not the latest version (2.8.19), since -PP/--use-packages-only is specified ---> Installing 'gtk-2.8.18_1' from a package ---> Installing the new version via the package pkg_add: warning: package 'gtk-2.8.18_1' requires 'libxml2-2.6.24_1', but 'libxml2-2.6.26' is installed Note from the above that portinstall is presuming that -PP was used and is not building the port. I can omit the '-p' and this stops the occurrence of this error, but then I don't get a package creation and that means I'll have to build this port from scratch every time I want to install it. I could force package creation of all ports, but this seems wasteful when only a few require this process. Is this a bug in portupgrade, or have I just used a conflicting array of arguments? cheers, -- Joel Hatton -- Infrastructure Manager | Hotline: +61 7 3365 4417 AusCERT - Australia's national CERT | Fax: +61 7 3365 7031 The University of Queensland | WWW: www.auscert.org.au Qld 4072 Australia | Email: auscert@auscert.org.au From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 12:57: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 DAC1D16A474 for ; Mon, 19 Jun 2006 12:57:26 +0000 (UTC) (envelope-from anrays@gmail.com) Received: from tor.farlep.net (tor.farlep.net [213.130.1.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 304DF43D48 for ; Mon, 19 Jun 2006 12:57:25 +0000 (GMT) (envelope-from anrays@gmail.com) Received: from santinel.home.ua (990-62.dialup.farlep.net [213.130.7.192]) by tor.farlep.net with ESMTP id k5JCv76i021037; Mon, 19 Jun 2006 15:57:17 +0300 Received: from anray by santinel.home.ua with local (Exim 4.62; FreeBSD) id 1FsJIm-000K8f-8b; Mon, 19 Jun 2006 15:56:24 +0300 To: Max Belushkin References: <4496989D.7010608@fz-juelich.de> Organization: Santinel From: Andrey Slusar Date: Mon, 19 Jun 2006 15:56:24 +0300 In-Reply-To: <4496989D.7010608@fz-juelich.de> (Max Belushkin's message of "Mon, 19 Jun 2006 14:29:17 +0200") Message-ID: <86u06hwbgn.fsf@santinel.home.ua> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.5-b27 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-SMTP-Vilter-Version: 1.1.8 X-SMTP-Vilter-Virus-Backend: clamd X-SMTP-Vilter-Status: clean X-SMTP-Vilter-clamd-Virus-Status: clean Cc: freebsd-questions@freebsd.org Subject: Re: pkgdb problem after portupgrade - operation not permitted X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 12:57:26 -0000 Mon, 19 Jun 2006 14:29:17 +0200, Max Belushkin wrote: > I just portupgrade'd portupgrade on a FreeBSD 6.0-RELEASE to > portupgrade 2.0.1 (2006/06/18), and right after this pkgdb fails on > all operations, i.e.: > pkgdb -fu > [Rebuilding the pkgdb in /var/db/pkg ... - 63 > packages found (-0 +63) > Operation not permitted: skipping... > . > Operation not permitted: skipping... > . > ... etc. > Operation not permitted: Cannot update the pkgdb!] > Naturally, portupgrade itself now fails to do anything. I've googled > for the "Operation not permitted" error in pkgdb, but I could not find > any useful pointers to the source of the problem. Any help is much > appreciated. Now portupgarde is back to stable 2.1.1 version. Update you ports tree. ,---- | Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo | ports/sysutils/portupgrade/files patch-bin-portsclean patch-bin-portupgrade | patch-lib-pkgdb.rb patch-lib-pkgtools.rb | From: Sergey Matveychuk | To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org | X-Sent: 11 minutes, 17 seconds ago | | sem 2006-06-19 12:41:58 UTC | | FreeBSD ports repository | | Modified files: | sysutils/portupgrade Makefile distinfo | Added files: | sysutils/portupgrade/files patch-lib-pkgtools.rb | Removed files: | sysutils/portupgrade/files patch-bin-portsclean | patch-bin-portupgrade | patch-lib-pkgdb.rb | Log: | - Roll back to stable 2.1.1 version. | I'd like to wait a repocopy but marcus seems will unaccessible for a week. | | Revision Changes Path | 1.224 +4 -5 ports/sysutils/portupgrade/Makefile | 1.164 +3 -3 ports/sysutils/portupgrade/distinfo | 1.3 +0 -11 ports/sysutils/portupgrade/files/patch-bin-portsclean (dead) | 1.6 +0 -28 ports/sysutils/portupgrade/files/patch-bin-portupgrade (dead) | 1.2 +0 -25 ports/sysutils/portupgrade/files/patch-lib-pkgdb.rb (dead) | 1.1 +20 -0 ports/sysutils/portupgrade/files/patch-lib-pkgtools.rb (new) `---- -- Andrey Slusar From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13:00: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 4018E16A474 for ; Mon, 19 Jun 2006 13:00:16 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail7.sea5.speakeasy.net (mail7.sea5.speakeasy.net [69.17.117.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id B526243D4C for ; Mon, 19 Jun 2006 13:00:15 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 12504 invoked from network); 19 Jun 2006 13:00:15 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail7.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 19 Jun 2006 13:00:15 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 5D79B28449; Mon, 19 Jun 2006 09:00:14 -0400 (EDT) To: "Mayo, Richard A RDECOM CERDEC STCD SRI" References: From: Lowell Gilbert Date: Mon, 19 Jun 2006 09:00:14 -0400 In-Reply-To: (Richard A. RDECOM CERDEC STCD Mayo's message of "Mon, 19 Jun 2006 08:13:57 -0400") Message-ID: <447j3d5mht.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: Getting Source Code after Installing the Software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 13:00:16 -0000 Don't top-post, please. "Mayo, Richard A RDECOM CERDEC STCD SRI" writes: > Can you simply tell me the name of the tar ball on the CD? It's split(1). 6.1-RELEASE/src/ has it broken into different pieces of the sources. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13:00: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 E858E16A541 for ; Mon, 19 Jun 2006 13:00:35 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id D682D43D69 for ; Mon, 19 Jun 2006 13:00:31 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by hu-out-0102.google.com with SMTP id 27so545934hub for ; Mon, 19 Jun 2006 06:00:30 -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=bPY8ZrrldwvHDP0O+AyX6O4xSP7qVo4mYvFUGgxWBkFtAraYuZKm2sdD42nh28kun0bzTOkgDYdoF2BtlvwovsoIR1ReNi9Vjw3kzv+R58/6rVnFFbSzMUnYhNiYS2sZxBa9ka1oTOIcKEufV1VfUaugoC74TQcGmG3MqeHb8zM= Received: by 10.67.97.7 with SMTP id z7mr5510985ugl; Mon, 19 Jun 2006 05:53:28 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Mon, 19 Jun 2006 05:53:28 -0700 (PDT) Message-ID: <80f4f2b20606190553me46f2e8xb30ed0fd28aabb69@mail.gmail.com> Date: Mon, 19 Jun 2006 08:53:28 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <44969C7F.1030307@dial.pipex.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> <449663A8.5070203@dial.pipex.com> <80f4f2b20606190255g6e742279r18fed593af119106@mail.gmail.com> <44967ABE.3030503@dial.pipex.com> <80f4f2b20606190423w2385da69o8984a50c47a8162c@mail.gmail.com> <44969C7F.1030307@dial.pipex.com> Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 13:00:36 -0000 The problem is I don't already have one, though there is a reply to my other post that I'll be looking at in a few minutes, maybe something will be there. I updated the locate db, and tried to locate "glibc", but I only found documentation, and a few bin (not lib) compat files that look like they are meant to upgrade something, but creat no glibc. What I was considering was linking my "libc.so.6" file (no "g") to a glibc file in compat. -Jim Stapleton > Good stuff. > > The glibc you have might just do fine. Just make a symlink from the one > you want to the one you have and try! There's an FC4 linux in the > ports, IIRC which is as recent as any Linux I have to administer; I have > trouble believing you'd need a newer one otherwise the app won't even > run on most Linux machines :-) Or maybe your app has an RPM for an > older linux you could try. > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13: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 9E11116A49E for ; Mon, 19 Jun 2006 13:05:05 +0000 (UTC) (envelope-from danial_thom@yahoo.com) Received: from web33314.mail.mud.yahoo.com (web33314.mail.mud.yahoo.com [68.142.206.129]) by mx1.FreeBSD.org (Postfix) with SMTP id 2B52143D77 for ; Mon, 19 Jun 2006 13:04:53 +0000 (GMT) (envelope-from danial_thom@yahoo.com) Received: (qmail 17967 invoked by uid 60001); 19 Jun 2006 13:04:52 -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=KJsEh6FKt964miBsgjvnJ3wE5GfNYnee4VUOjjIbS3IlePcstnifRWia7AMuTtu+nQSjEdE+A+b80DzjEkyg4fpWmIzqTCrl9NFOYip2C/SnOimWYHjmjElkqN+1SPeJix+09rF8pJpBtVISjU+Adg3raRp0NbMZ1vM3ytj6Z3g= ; Message-ID: <20060619130452.17965.qmail@web33314.mail.mud.yahoo.com> Received: from [65.34.182.15] by web33314.mail.mud.yahoo.com via HTTP; Mon, 19 Jun 2006 06:04:52 PDT Date: Mon, 19 Jun 2006 06:04:52 -0700 (PDT) From: Danial Thom To: Giorgos Keramidas , Dan Bikle , Anish Mistry , freebsd-questions@freebsd.org In-Reply-To: <20060619111155.GB4589@gothmog.pc> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: Subject: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: danial_thom@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 13:05:05 -0000 --- Giorgos Keramidas wrote: > On 2006-06-19 12:33, Erik Trulsson > wrote: > >On Mon, Jun 19, 2006 at 01:11:38PM +0300, > Giorgos Keramidas wrote: > >>On 2006-06-17 11:29, Dan Bikle > wrote: > >>> Anish, > >>> > >>> Thanks this is good info. > >>> > >>> I'll be using this server for development > of a Ruby on Rails. > >>> > >>> Currently I do development on a Mac. > >>> > >>> My production server is running freeBSD 5.3 > >> > >> You shouldn't be running a production server > with 5.3 at all. > >> > >> The 5.3 release was clearly marked as a > "developer preview" release > > > > No, it was not. 5.3 was a perfectly ordinary > release. It was in fact > > the first 5.x release that was *not* marked > as a "developer preview". > > You're right. I must have been thinking of > 5.2.1. > > Sorry for the misinformation :-/ I'd say that a $55. celeron on Freebsd 4.11 would be just as fast as a Sempron an 5.3, so why not save some money and get something that everyone knows is "production ready"? DT __________________________________________________ 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 Jun 19 13:12: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 20E2916A479 for ; Mon, 19 Jun 2006 13:12:25 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out2.blueyonder.co.uk (smtp-out2.blueyonder.co.uk [195.188.213.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0A6F43D45 for ; Mon, 19 Jun 2006 13:12:23 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.144] (helo=anti-virus03-07) by smtp-out2.blueyonder.co.uk with smtp (Exim 4.52) id 1FsJYF-0004VS-3p; Mon, 19 Jun 2006 14:12:23 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out6.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsJYE-0004Tf-GT; Mon, 19 Jun 2006 14:12:22 +0100 Message-ID: <4496A2B6.80709@dial.pipex.com> Date: Mon, 19 Jun 2006 14:12:22 +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: <80f4f2b20606181355x3155c33dp1e498dea663000c5@mail.gmail.com> <4495C1DF.9040506@dial.pipex.com> <80f4f2b20606181428o270e0dedl885bf38540723b15@mail.gmail.com> <449663A8.5070203@dial.pipex.com> <80f4f2b20606190255g6e742279r18fed593af119106@mail.gmail.com> <44967ABE.3030503@dial.pipex.com> <80f4f2b20606190423w2385da69o8984a50c47a8162c@mail.gmail.com> <44969C7F.1030307@dial.pipex.com> <80f4f2b20606190553me46f2e8xb30ed0fd28aabb69@mail.gmail.com> In-Reply-To: <80f4f2b20606190553me46f2e8xb30ed0fd28aabb69@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: smoke and mirrors - any way to trick an app into thinking I'm running linux? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 13:12:25 -0000 Alex wrote: > > The glibc you have might just do fine. Just make a symlink from the one > you want to the one you have and try! Jim Stapleton wrote: > The problem is I don't already have one, though there is a reply to my > other post that I'll be looking at in a few minutes, maybe something > will be there. I updated the locate db, and tried to locate "glibc", > but I only found documentation, and a few bin (not lib) compat files > that look like they are meant to upgrade something, but creat no > glibc. What I was considering was linking my "libc.so.6" file (no "g") > to a glibc file in compat. > glibc is the name of the "package" (gnu libc) but the actual library is called libc.so.?, at least on the Linux machine I just looked at. Are you sure the app is looking for glibc? Trying to link the compat/linux/lib/libc -> glibc is worth a try (just don't link to the FreebSD libc), but I don't think it's right. Generally, all libraries have to start with "lib" or the linker doesn't know how to find them. --Alex From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13:14: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 D2ECA16A49E; Mon, 19 Jun 2006 13:14:11 +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 E4D3143D77; Mon, 19 Jun 2006 13:14:08 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.138] (helo=anti-virus01-09) by smtp-out4.blueyonder.co.uk with smtp (Exim 4.52) id 1FsJZp-0000xu-4I; Mon, 19 Jun 2006 14:14:01 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out4.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsJZm-0006Yk-Hh; Mon, 19 Jun 2006 14:13:58 +0100 Message-ID: <4496A315.4020504@dial.pipex.com> Date: Mon, 19 Jun 2006 14:13: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: freebsd-questions@auscert.org.au References: <200606191251.k5JCpo7Y054704@app.auscert.org.au> In-Reply-To: <200606191251.k5JCpo7Y054704@app.auscert.org.au> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: portupgrade confusing '-P' and '-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, 19 Jun 2006 13:14:11 -0000 freebsd-questions@auscert.org.au wrote: >Note from the above that portinstall is presuming that -PP was used and >is not building the port. I can omit the '-p' and this stops the occurrence >of this error, but then I don't get a package creation and that means I'll >have to build this port from scratch every time I want to install it. I >could force package creation of all ports, but this seems wasteful when >only a few require this process. Is this a bug in portupgrade, or have I >just used a conflicting array of arguments? > > Don't know why what you are doing doesn't work, but you can create the package afterwards with pkg_create. So no, you won't have to build it every time. --Alex From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13:19: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 CAB5F16A47B for ; Mon, 19 Jun 2006 13:19:52 +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 89E1543D68 for ; Mon, 19 Jun 2006 13:19:47 +0000 (GMT) (envelope-from mikhailg@webanoide.org) Received: from [192.168.0.4] (ppp110-20.lns1.hba1.internode.on.net [150.101.110.20]) (authenticated bits=0) by overlord.navalradio.cl (8.13.4/8.13.4) with ESMTP id k5JDIPBP033691; Mon, 19 Jun 2006 09:18:30 -0400 (CLT) (envelope-from mikhailg@webanoide.org) Message-ID: <4496A415.2030500@webanoide.org> Date: Mon, 19 Jun 2006 23:18:13 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 1.5.0.4 (Macintosh/20060530) MIME-Version: 1.0 To: Jonathan Horne References: <200606180854.27889.jhorne@dfwlp.com> In-Reply-To: <200606180854.27889.jhorne@dfwlp.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-99.9 required=5.0 tests=AWL,USER_IN_WHITELIST autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on overlord.navalradio.cl Cc: freebsd-questions@freebsd.org Subject: Re: deployment considerations between STABLE and RELENG X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 13:19:52 -0000 Jonathan Horne wrote: > its been a while since i have come to the point where i can cvsup and > buildworld my systems without making any mistakes. but, at this point, so > far, i only buildworld up to STABLE. i do have one dev system that > yesterday, i finally did a buildworld to RELENG. > > as i understand it, STABLE contains all security/bug fixes, as well as all > enhancements to other applications as they have been developed. and that > RELENG contains only security and bugfixes. have i gathered my information > correctly? Yes you have. You might want to read the following article: http://www.dwlabs.ca/freebsd/docs/version-guide/article.html > im interested in polling the users of this list (who frequently buildworld on > their systems), what situations (deployments) STABLE is for, and the same for > RELENG. > Personally, for me, "if it ain't broke, don't fix it". I only follow errata branches. If you can't afford any down time then don't do it. If you are willing to play around and go off-line for the weekend then go for it. Everything depends on how mission critical your servers are. I still have a few 5.3 boxes cranking around. They've served me well, hence I don't see any necessity upgrading them, yet. 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 Jun 19 13:21: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 6057116A47C for ; Mon, 19 Jun 2006 13:21:44 +0000 (UTC) (envelope-from Richard.Mayo@us.army.mil) Received: from cecom6.monmouth.army.mil (cecom6.monmouth.army.mil [134.80.0.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id F28D743D58 for ; Mon, 19 Jun 2006 13:21:40 +0000 (GMT) (envelope-from Richard.Mayo@us.army.mil) Received: from MONM226.nae.ds.army.mil (mailsw2.monmouth.army.mil [134.80.5.41]) by cecom6.monmouth.army.mil (8.13.6/8.13.6) with ESMTP id k5JDLdov028114 for ; Mon, 19 Jun 2006 09:21:39 -0400 (EDT) Received: from SWGM6.nae.ds.army.mil (unverified) by MONM226.nae.ds.army.mil (Content Technologies SMTPRS 4.3.12) with ESMTP id for ; Mon, 19 Jun 2006 09:21:39 -0400 Received: by swgm6.nae.ds.army.mil with Internet Mail Service (5.5.2658.27) id ; Mon, 19 Jun 2006 09:21:39 -0400 Message-ID: From: "Mayo, Richard A RDECOM CERDEC STCD SRI" To: freebsd-questions@freebsd.org Date: Mon, 19 Jun 2006 09:21:37 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2658.27) Content-Type: text/plain Subject: RE: Getting Source Code after Installing the Software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 13:21:44 -0000 > DID ANYBODY LOOK ON THE SENDER ADDRESS OF THIS ORIGINAL POSTING!? > --> Richard.Mayo@us.army.mil <-- > > I BET THERE ARE SEVERAL GUYS WHO KNOW HOW TO > INSTALL THE SOURCE OF FREEBSD AT THE US ARMY! I'm sure you're right, but we're kind of spread out and we don't talk all that much... From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13:26: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 48D5E16A474 for ; Mon, 19 Jun 2006 13:26:55 +0000 (UTC) (envelope-from cknipe@savage.za.org) Received: from www16b.your-server.co.za (www16b.your-server.co.za [196.22.132.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id F151C43D5F for ; Mon, 19 Jun 2006 13:26:51 +0000 (GMT) (envelope-from cknipe@savage.za.org) Received: from [127.0.0.1] (helo=localhost) by www16b.your-server.co.za with esmtp (Exim 4.52) id 1FsJmA-0007Mf-VG for freebsd-questions@freebsd.org; Mon, 19 Jun 2006 15:26:49 +0200 Received: from 196-207-40-213.gprs.vodacom.co.za (196-207-40-213.gprs.vodacom.co.za [196.207.40.213]) by default.your-server.co.za (IMP) with HTTP for ; Mon, 19 Jun 2006 15:26:46 +0200 Message-ID: <1150723606.4496a616e3352@196.22.132.16> Date: Mon, 19 Jun 2006 15:26:46 +0200 From: cknipe@savage.za.org To: freebsd-questions@freebsd.org References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.5 X-Originating-IP: 196.207.40.213 Subject: RE: Getting Source Code after Installing the Software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 13:26:55 -0000 Quoting "Mayo, Richard A RDECOM CERDEC STCD SRI" : > > > DID ANYBODY LOOK ON THE SENDER ADDRESS OF THIS ORIGINAL POSTING!? > > --> Richard.Mayo@us.army.mil <-- > > > > I BET THERE ARE SEVERAL GUYS WHO KNOW HOW TO > > INSTALL THE SOURCE OF FREEBSD AT THE US ARMY! > > I'm sure you're right, but we're kind of spread out and we don't talk all > that much... ROTFLOL! :) From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13:36: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 7FD6116A47C; Mon, 19 Jun 2006 13:36:37 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from relay-er5.mbrd.ru (relay-er5.mbrd.ru [194.117.71.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id F287043D45; Mon, 19 Jun 2006 13:36:36 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from msd.mbrd.ru ([172.16.33.193]) by relay-er5.mbrd.ru with esmtpa (Exim 4.x) id 1FsJvb-000Nvn-0A; Mon, 19 Jun 2006 17:36:31 +0400 Message-ID: <4496A85E.6040800@FreeBSD.org> Date: Mon, 19 Jun 2006 17:36:30 +0400 From: Sergey Matveychuk User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@auscert.org.au References: <200606191251.k5JCpo7Y054704@app.auscert.org.au> In-Reply-To: <200606191251.k5JCpo7Y054704@app.auscert.org.au> X-Enigmail-Version: 0.93.2.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: portupgrade confusing '-P' and '-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, 19 Jun 2006 13:36:37 -0000 freebsd-questions@auscert.org.au wrote: > Hi, > > I'm in the middle of configuring a repeatable jail installation with some > ports - in a nutshell, I want to install from locally built packages, but > if not available locally I want to build the port myself _and_ create a > package for future repetition. To prevent remote fetching, I set the > PKG_FETCH variable to /bin/false as recommended. Here's the part I found > curious: I don't understand how you plan to build a port without of fetching of a distfile? -- Dixi. Sem. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13:42: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 B71FA16A4A9 for ; Mon, 19 Jun 2006 13:42:24 +0000 (UTC) (envelope-from nospam@mgedv.net) Received: from mail.mgedv.net (mail.mgedv.net [81.223.168.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 099CE43D53 for ; Mon, 19 Jun 2006 13:42:21 +0000 (GMT) (envelope-from nospam@mgedv.net) Received: from metis (sslint.my.loop [1.1.1.1]) by mail.my.loop (mgedv) with ESMTP id 0D30445796 for ; Mon, 19 Jun 2006 15:42:21 +0200 (CEST) From: "no@spam@mgedv.net" To: Date: Mon, 19 Jun 2006 15:42:24 +0200 Message-ID: <000b01c693a6$32b31850$01010101@avalon.lan> 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.2180 Thread-Index: AcaTpjFxmfU2V7H3RsKDhb4jD6R0Yg== Subject: random(4) confusions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 13:42:24 -0000 hi, if i run man 4 random, i'll get the following: The kern.random.sys.burst variable instructs the kernel thread that pro- cesses the harvest queue to tsleep(9) briefly after that many events have been processed. This helps prevent the random device from being so com- pute-bound that it takes over all processing ability. A value of 0 (zero) is treated as infinity, and will only allow the kernel to pause if the queue is empty. Only values in the range [0..20] are accepted. if i try to read/set this setting, sysctl returns: sysctl: unknown oid 'kern.random.sys.burst' what's wrong, my kernel or the manpage? [6.1-RELEASE/i386] From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 13:50: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 6314B16A479 for ; Mon, 19 Jun 2006 13:50:59 +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 C550443D45 for ; Mon, 19 Jun 2006 13:50:56 +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.6/8.13.6/Debian-1) with ESMTP id k5JDoNAg004087 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 19 Jun 2006 16:50:26 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.6/8.13.6) with ESMTP id k5JDoH8s040648; Mon, 19 Jun 2006 16:50:17 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.6/8.13.6/Submit) id k5JDoCVc040646; Mon, 19 Jun 2006 16:50:12 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 19 Jun 2006 16:50:12 +0300 From: Giorgos Keramidas To: Danial Thom Message-ID: <20060619135011.GA40614@gothmog.pc> References: <20060619111155.GB4589@gothmog.pc> <20060619130452.17965.qmail@web33314.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060619130452.17965.qmail@web33314.mail.mud.yahoo.com> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.296, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 1.10, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: Dan Bikle , Anish Mistry , freebsd-questions@freebsd.org Subject: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 13:50:59 -0000 On 2006-06-19 06:04, Danial Thom wrote: >--- Giorgos Keramidas wrote: >>On 2006-06-19 12:33, Erik Trulsson wrote: >>>> The 5.3 release was clearly marked as a "developer preview" >>>> release >>> >>> No, it was not. 5.3 was a perfectly ordinary release. It was in >>> fact the first 5.x release that was *not* marked as a "developer >>> preview". >> >> You're right. I must have been thinking of 5.2.1. >> >> Sorry for the misinformation :-/ > > I'd say that a $55. celeron on Freebsd 4.11 would be just as fast as a > Sempron an 5.3, so why not save some money and get something that > everyone knows is "production ready"? I'm not so sure. It would take quite a few tests and some _real_ numbers to convince me that such a claim was true :-) From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 14:08: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 5529316A479 for ; Mon, 19 Jun 2006 14:08:41 +0000 (UTC) (envelope-from map7@optusnet.com.au) Received: from mail-ihug.icp-qv1-irony5.iinet.net.au (ihug-mail.icp-qv1-irony5.iinet.net.au [203.59.1.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94C8D43D48 for ; Mon, 19 Jun 2006 14:08:39 +0000 (GMT) (envelope-from map7@optusnet.com.au) Received: from 203-214-90-222.dyn.iinet.net.au (HELO [192.168.1.2]) ([203.214.90.222]) by mail-ihug.icp-qv1-irony5.iinet.net.au with ESMTP; 19 Jun 2006 22:08:38 +0800 X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.06,152,1149436800"; d="scan'208"; a="806796073:sNHT12976268" Message-ID: <4496B0C8.2030401@optusnet.com.au> Date: Tue, 20 Jun 2006 00:12:24 +1000 From: Michael Pope User-Agent: Thunderbird 1.5.0.4 (X11/20060606) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: configgen.sh automake 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: Mon, 19 Jun 2006 14:08:41 -0000 I'm having a problem with aclocal and Automake when I'm running configgen.sh for inkscape on FreeBSD 5.4. Here is the error: ===> Running aclocal... aclocal: couldn't open directory `/usr/local/gnu-autotools/share/aclocal': No such file or directory ===> Running autoheader... ===> Running libtoolize... ===> Running automake... configure.ac:12: version mismatch. This is Automake 1.9.6, configure.ac:12: but the definition used by this AM_INIT_AUTOMAKE configure.ac:12: comes from Automake 1.8.5. You should recreate configure.ac:12: aclocal.m4 with aclocal and run automake again. ===> Running autoconf... ===> Configure script created successfully What is aclocal? There isn't any man page on it. How do I recreate my aclocal.m4 using the 1.9.6 version (which is installed)? From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 14:21: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 51F5516A474 for ; Mon, 19 Jun 2006 14:21:05 +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 B07CD43D48 for ; Mon, 19 Jun 2006 14:21:04 +0000 (GMT) (envelope-from mikhailg@webanoide.org) Received: from [192.168.0.4] (ppp110-20.lns1.hba1.internode.on.net [150.101.110.20]) (authenticated bits=0) by overlord.navalradio.cl (8.13.4/8.13.4) with ESMTP id k5JEKfAS034137; Mon, 19 Jun 2006 10:20:44 -0400 (CLT) (envelope-from mikhailg@webanoide.org) Message-ID: <4496B2AD.8000109@webanoide.org> Date: Tue, 20 Jun 2006 00:20:29 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 1.5.0.4 (Macintosh/20060530) MIME-Version: 1.0 To: Travis Fitch References: <200606190148.k5J1mfxY037157@kaur.zehym.com> In-Reply-To: <200606190148.k5J1mfxY037157@kaur.zehym.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-99.9 required=5.0 tests=AWL,USER_IN_WHITELIST autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on overlord.navalradio.cl Cc: freebsd-questions@freebsd.org Subject: Re: Sendmail and high kernel CPU utilisation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 14:21:05 -0000 Travis Fitch wrote: > Hello, > > I was hoping someone might be able to shed some light on an issue I am > having with sendmail on FreeBSD 5.2.1 running on a Sun V120. > > [...] > > I have rebuilt the world and kernel to see if the resolves my issue, but > alas no luck. > > Hopefully someone will be able to point be in the right direction. > Hi, Ever considered upgrading to latest release? 5.2.1 is rather old and EOL'd. 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 Jun 19 14:22: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 4FEE016A47B for ; Mon, 19 Jun 2006 14:22:42 +0000 (UTC) (envelope-from nikolas.britton@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 1D2A343D49 for ; Mon, 19 Jun 2006 14:22:38 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id m7so582110nzf for ; Mon, 19 Jun 2006 07:22: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=re0wVUvJQbgX/zzz0yq2B7NmJLC9EbADoXw5PmpkxlAYN6WGZWbZrIxl5jylpgrYIib+qKml7e3JcInrzBtKGCq669Wb6kL1mVJ1keGCL1s26KfrLXSdXWZ/2Wb52HwlrTBfL5xwai2LnUJF7I8ik0O+Y62wzXBoZ7BaesJ+uLY= Received: by 10.36.224.17 with SMTP id w17mr801086nzg; Mon, 19 Jun 2006 07:22:38 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Mon, 19 Jun 2006 07:22:38 -0700 (PDT) Message-ID: Date: Mon, 19 Jun 2006 09:22:38 -0500 From: "Nikolas Britton" To: "Giorgos Keramidas" In-Reply-To: <20060619135011.GA40614@gothmog.pc> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060619111155.GB4589@gothmog.pc> <20060619130452.17965.qmail@web33314.mail.mud.yahoo.com> <20060619135011.GA40614@gothmog.pc> Cc: Dan Bikle , Danial Thom , Anish Mistry , freebsd-questions@freebsd.org Subject: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 14:22:42 -0000 On 6/19/06, Giorgos Keramidas wrote: > On 2006-06-19 06:04, Danial Thom wrote: > >--- Giorgos Keramidas wrote: > >>On 2006-06-19 12:33, Erik Trulsson wrote: > >>>> The 5.3 release was clearly marked as a "developer preview" > >>>> release > >>> > >>> No, it was not. 5.3 was a perfectly ordinary release. It was in > >>> fact the first 5.x release that was *not* marked as a "developer > >>> preview". > >> > >> You're right. I must have been thinking of 5.2.1. > >> > >> Sorry for the misinformation :-/ > > > > I'd say that a $55. celeron on Freebsd 4.11 would be just as fast as a > > Sempron an 5.3, so why not save some money and get something that > > everyone knows is "production ready"? > > I'm not so sure. It would take quite a few tests and some _real_ > numbers to convince me that such a claim was true :-) > Any 64-bit AMD chip will knock the socks off of equivalent Intel solutions in code compiling benchmarks. This doesn't always hold true though, for example Adobe Photoshop is still faster on Intel because the app is tuned for big pipelines / NetBurst. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 14:24: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 1465C16A474 for ; Mon, 19 Jun 2006 14:24:28 +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 CCC2743D6A for ; Mon, 19 Jun 2006 14:24:22 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5JEOMNR092606; Mon, 19 Jun 2006 09:24:22 -0500 (CDT) (envelope-from dan) Date: Mon, 19 Jun 2006 09:24:21 -0500 From: Dan Nelson To: "no@spam@mgedv.net" Message-ID: <20060619142421.GA9539@dan.emsphone.com> References: <000b01c693a6$32b31850$01010101@avalon.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000b01c693a6$32b31850$01010101@avalon.lan> X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: random(4) confusions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 14:24:28 -0000 In the last episode (Jun 19), no@spam@mgedv.net said: > if i run man 4 random, i'll get the following: > > The kern.random.sys.burst variable instructs the kernel thread > that pro- cesses the harvest queue to tsleep(9) briefly after > that many events have been processed. This helps prevent the > random device from being so com- pute-bound that it takes over > all processing ability. A value of 0 (zero) is treated as > infinity, and will only allow the kernel to pause if the queue > is empty. Only values in the range [0..20] are accepted. > > if i try to read/set this setting, sysctl returns: > sysctl: unknown oid 'kern.random.sys.burst' > > what's wrong, my kernel or the manpage? > [6.1-RELEASE/i386] >From looking at commit logs, the manpage wasn't updated to remove the reference to that sysctl when it was obsoleted: RCS file: /home/ncvs/src/sys/dev/random/randomdev.c,v revision 1.45 date: 2003/11/17 23:02:21; author: markm; state: Exp; lines: +92 -101 Overhaul the entropy device: o There is no need to break up the event harvesting into ${burst} sized chunks, so retire that feature. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 14:34: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 44C9D16A4C1 for ; Mon, 19 Jun 2006 14:34:40 +0000 (UTC) (envelope-from steinex@nognu.de) Received: from shodan.nognu.de (shodan.nognu.de [85.14.216.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAF5543D49 for ; Mon, 19 Jun 2006 14:34:39 +0000 (GMT) (envelope-from steinex@nognu.de) Received: by shodan.nognu.de (Postfix, from userid 1002) id B775BB825; Mon, 19 Jun 2006 16:34:37 +0200 (CEST) Date: Mon, 19 Jun 2006 16:34:37 +0200 From: Frank Steinborn To: Jeff Molofee Mail-Followup-To: Jeff Molofee , freebsd-questions@freebsd.org References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44960134.9030502@cruzinternet.com> User-Agent: mutt-ng/devel-r804 (FreeBSD) Message-Id: <20060619143437.B775BB825@shodan.nognu.de> Cc: freebsd-questions@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 14:34:40 -0000 Jeff Molofee wrote: > After upgrading to linux_base-fc4, I've noticed a lot of applications and > games that will no longer run. One of the games is HoH. I receive the > following error when trying to run it... does anyone know how to fix this? > > ./HoH: error while loading shared libraries: libstdc++-libc6.2-2.so.3: > cannot open shared object file: No such file or directory Try to recompile the programs that aren't running anymore. HTH; Frank From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:00: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 7DDD316A481 for ; Mon, 19 Jun 2006 15:00:53 +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 06FC54485D for ; Mon, 19 Jun 2006 15:00:51 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.145] (helo=anti-virus03-08) by smtp-out5.blueyonder.co.uk with smtp (Exim 4.52) id 1FsLFC-0006bx-Gn; Mon, 19 Jun 2006 16:00:50 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out1.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsLFA-0000Ja-Vc; Mon, 19 Jun 2006 16:00:49 +0100 Message-ID: <4496BC20.4010204@dial.pipex.com> Date: Mon, 19 Jun 2006 16:00:48 +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: Nikolas Britton References: <20060619111155.GB4589@gothmog.pc> <20060619130452.17965.qmail@web33314.mail.mud.yahoo.com> <20060619135011.GA40614@gothmog.pc> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: I need a freebsd 5.3 desktop server; recommendations? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:00:53 -0000 Nikolas Britton wrote: > On 2006-06-19 06:04, Danial Thom wrote: >> > I'd say that a $55. celeron on Freebsd 4.11 would be just as fast as a >> > Sempron an 5.3, so why not save some money and get something that >> > everyone knows is "production ready"? >> >> I'm not so sure. It would take quite a few tests and some _real_ >> numbers to convince me that such a claim was true :-) >> > > Any 64-bit AMD chip will knock the socks off of equivalent Intel > solutions in code compiling benchmarks. This doesn't always hold true > though, for example Adobe Photoshop is still faster on Intel because > the app is tuned for big pipelines / NetBurst. > _______________________________________________ I think the point was that slower-processor+4.11 is faster than faster-processor+5.3 which may or may not be true and might depend greatly on workload. Without actual benchmarks, it's just speculation. And it's still only really interesting if it still holds significantly for 6.X rather than 5.X. Even then, I am inclined to the opinion that CPUs get faster so quickly that even a 20% difference will evaporate in months, and since 5/6.X support newer hardware, I couldn't actually care less if they are a bit less efficient. AMD64s are nice though :-) --Alex I see it was our perennial 5.X basher Danial Thom you are quoting. He's a bit of a troll, in case you hadn't noticed ;-) From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:04: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 D3F7A16A479 for ; Mon, 19 Jun 2006 15:04:21 +0000 (UTC) (envelope-from mrparsons@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 602F744877 for ; Mon, 19 Jun 2006 15:04:14 +0000 (GMT) (envelope-from mrparsons@gmail.com) Received: by wr-out-0506.google.com with SMTP id i28so854424wra for ; Mon, 19 Jun 2006 08:04:13 -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=bAuNxJ2y0feh5i7niRKD0vJ1WVhGstcHIQ7rgYXAnLQ7JyXY7I1QGjeYBP/kky6VmmPTei9anieR1vmHuj/PR1OXLIGTwi5LL+sW/b8pqU+mBV08FttfW+lqt+6ZOUGjoOeWWMExfvjQybUj0JA0/1pRxnTfcJyl2y8R8HS1s6s= Received: by 10.64.179.12 with SMTP id b12mr4541748qbf; Mon, 19 Jun 2006 08:04:13 -0700 (PDT) Received: by 10.65.51.1 with HTTP; Mon, 19 Jun 2006 08:04:13 -0700 (PDT) Message-ID: Date: Mon, 19 Jun 2006 11:04:13 -0400 From: "M. Parsons" 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: ed0 and xl0 watchdog/timeout 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: Mon, 19 Jun 2006 15:04:22 -0000 >From /var/log/messages: Jun 19 10:43:35 freebsd kernel: ed0: device timeout Jun 19 10:43:39 freebsd last message repeated 2 times Jun 19 10:43:41 freebsd kernel: xl0: watchdog timeout Jun 19 10:43:41 freebsd kernel: ed0: device timeout Jun 19 10:43:41 freebsd kernel: xl0: link state changed to DOWN Jun 19 10:43:43 freebsd kernel: ed0: device timeout Jun 19 10:43:43 freebsd kernel: xl0: link state changed to UP Jun 19 10:43:45 freebsd kernel: ed0: device timeout Jun 19 10:43:48 freebsd kernel: xl0: watchdog timeout Jun 19 10:43:48 freebsd kernel: ed0: device timeout Jun 19 10:43:48 freebsd kernel: xl0: link state changed to DOWN dmesg says: (minus the mac addys which Ive removed) xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0xec80-0xecff mem 0xfebfff80-0xfebfffff irq 11 at device 11.0 on pci0 miibus0: on xl0 ed0: port 0xef40-0xef5f irq 10 at device 12.0 on pci0 ed0: type RTL8029 (16 bit) ed0 is PCI card connected to a pppoe isp xl0 is PCI connected to another computer via crossover/natted The above happens if I use max upstream (60 KiloBytes/sec) on the pppoe connection for a long amount of time (>6 hours). Otherwise, everything works fine. Rebooting the machine is the only solution. Killing pppd and restarting does not obtain an ip from the isp. And restarting xl0 also does not bring back the lan connection. 6.0-Release is the version Im using. Any ideas? Besides not using any upstream. :) All cards worked flawlessly in a linux system for 3 years. System is a dual p2-333. The kernel is SMP enabled. Thank you. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:08: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 1C93816A49E for ; Mon, 19 Jun 2006 15:08:45 +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 B2D8543FCD for ; Mon, 19 Jun 2006 14:39:34 +0000 (GMT) (envelope-from mikhailg@webanoide.org) Received: from [192.168.0.4] (ppp110-20.lns1.hba1.internode.on.net [150.101.110.20]) (authenticated bits=0) by overlord.navalradio.cl (8.13.4/8.13.4) with ESMTP id k5JEdVdJ034270; Mon, 19 Jun 2006 10:39:34 -0400 (CLT) (envelope-from mikhailg@webanoide.org) Message-ID: <4496B716.7080505@webanoide.org> Date: Tue, 20 Jun 2006 00:39:18 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 1.5.0.4 (Macintosh/20060530) MIME-Version: 1.0 To: Lewis McLouth References: <44960EDC.2020906@mn.rr.com> In-Reply-To: <44960EDC.2020906@mn.rr.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-99.9 required=5.0 tests=AWL,USER_IN_WHITELIST autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on overlord.navalradio.cl Cc: freebsd-questions Subject: Re: pkgdb.db locked X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:08:45 -0000 Lewis McLouth wrote: > Hello. > > When I run the command pkgdb -Fu, I get the response > > [Rebuilding the pkgdb in /var/db/pkg ... can't convert > String into Integer: Cannot update the pkgdb!] > > I think I know where I goofed, so here's the story on my suspected mistake. > > I just upgraded from RELENG_5_4 to RELENG_6, which went fairly smooth. > I'm now upgrading my ports but I was foolish today and ran portupgrade > without first reading /usr/ports/UPDATING. I think this is the source > of my problem (as in, running the command. Of course not reading > UPDATING is another problem! but I don't need help with that). > So, I first ran > > portupgrade -arR > > portupgrade did not upgrade linux_base-8 and instead reported that it > was marked as IGNORE and to use linux_base-fc-4. So, I ran the commands > > cd /usr/ports/emulators/linux_base-8 > make deinstall > cd ../linux_base-fc-4 > make install clean > > This it did fine, but when I now try to run pkgdb -Fu, I get the > following output: > > [Rebuilding the pkgdb in /var/db/pkg ... can't convert > String into Integer: Cannot update the pkgdb!] > > I then read /usr/ports/UPDATING, saw that linux_base-8 was dropped and > replaced by linux_base-fc-4. > > So, I then did the suggested command. > > portupgrade -f -o emulators/linux_base-fc4 linux_base\* > > This produced > > [Rebuilding the pkgdb in /var/db/pkg ... [Rebuilding > the pkgdb in /var/db/pkg ... ** Database file locked. > Waiting. > ** Timeout. Lock looks dead. Remove it. > /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:261:in `origin': can't > convert String into Integer: Cannot update the pkgdb!] (PkgDB::DBError) > from /usr/local/lib/ruby/site_ruby/1.8/pkginfo.rb:178:in `origin' > from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:977:in `tsort_build' > from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:971:in `tsort_build' > from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:993:in `sort_build' > from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:997:in `sort_build!' > from /usr/local/sbin/portupgrade:705:in `main' > from /usr/local/lib/ruby/1.8/optparse.rb:815:in `initialize' > from /usr/local/sbin/portupgrade:216:in `main' > from /usr/local/sbin/portupgrade:2048 > > I've googled for the phrase 'pkgdb "Lock looks dead"' and various > combinations of the output hoping to learn how to unlock pkgdb.db but > with no luck. Plus, I cannot locate pkgdb.dg with > > ls -a /var/db/pkg > > My questions are: How do I remove the lock on pkgdb? Where does > pkgdb.db go when its locked? find does not locate it. I ran > > find / pkgdb.db | grep pkgdb.db > find: pkgdb.db: No such file or directory > > Also, if pkgdb.db was deleted, how do I rebuild the pkgdb.db? (pkgdb -f > does not rebuild pkgdb.db, I just checked) > > The output of uname -a and ls /var/db/pkg are attached. > > Any help would be appreciated. > Hi, I'm not an expert, but I'll chuck my 2c in this. I once had a disagreement with pkgdb myself. The conflict ended up by removing the contents of: /var/db/ports /var/db/pkg Before that, I deinstalled all packages though. After the cleansing session, I reinstalled all ports from scratch. pkgdb is happy now. The thing is, I only had around 10 packages installed, so rebuilding them wasn't an issue for me. For sure that was dirty but quick. 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 Jun 19 15:11: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 0F78E16A4D1 for ; Mon, 19 Jun 2006 15:11:44 +0000 (UTC) (envelope-from m.belushkin@fz-juelich.de) Received: from nemesis.itkp.uni-bonn.de (nemesis.itkp.uni-bonn.de [131.220.226.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F6D34437A for ; Mon, 19 Jun 2006 14:43:25 +0000 (GMT) (envelope-from m.belushkin@fz-juelich.de) Received: from [131.220.226.150] (unknown [131.220.226.150]) by nemesis.itkp.uni-bonn.de (Postfix) with ESMTP id 88E85C784; Mon, 19 Jun 2006 16:43:24 +0200 (CEST) Message-ID: <4496B8E2.2050301@fz-juelich.de> Date: Mon, 19 Jun 2006 16:46:58 +0200 From: Max Belushkin User-Agent: Thunderbird 1.5.0.4 (X11/20060516) MIME-Version: 1.0 To: Andrey Slusar References: <4496989D.7010608@fz-juelich.de> <86u06hwbgn.fsf@santinel.home.ua> In-Reply-To: <86u06hwbgn.fsf@santinel.home.ua> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: [SOLVED] Re: pkgdb problem after portupgrade - operation not permitted X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:11:44 -0000 Andrey Slusar wrote: > Now portupgarde is back to stable 2.1.1 version. Update you ports > tree. Thank you, this solved the problem. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15: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 5013116A4A9 for ; Mon, 19 Jun 2006 15:12:08 +0000 (UTC) (envelope-from stapleton.41@gmail.com) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id A887444785 for ; Mon, 19 Jun 2006 14:51:30 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by hu-out-0102.google.com with SMTP id 28so526381hug for ; Mon, 19 Jun 2006 07:51:29 -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=TDiL24qSfVio20JZy/aMkc9Re360ifqqCSk4yasfTK6IUktY14k1NIj3u1C8aPD84UM9Q9hCSAezj4YH9uVH4/2co2BVRdC/lfETzpDYhWB1VyVE/CB5W0slV7Y0YjFIpLBfc3gfS51IIxMazWZ06U0pjOdGJKvx3xcQ+ptc9Cw= Received: by 10.66.250.17 with SMTP id x17mr1828734ugh; Mon, 19 Jun 2006 05:56:55 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Mon, 19 Jun 2006 05:56:55 -0700 (PDT) Message-ID: <80f4f2b20606190556w31257af6ybf43011349eecb6d@mail.gmail.com> Date: Mon, 19 Jun 2006 08:56:55 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <20060619115725.GA10846@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <80f4f2b20606190421m73657c9aq828cdacb1779e43@mail.gmail.com> <20060619115725.GA10846@localhost.localdomain> Subject: Re: where does one find glibc for /usr/compat/linux/lib ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:12:08 -0000 that's libc, not glibc, the stuff I'm working on is specifically looking for a "glibc.so" file. Am I missing something? -Jim Stapleton On 6/19/06, Pablo Mar=EDn Ram=F3n wrote: > > I looked at a few of the emulator/linux* ports, and it was not in > > their pkg-plist files, only something in their usr/sbin > > (glibc_post_upgrad), which, when ran, does not generate a glibc that I > > can find in the any of BSDs lib directories, or the compat/linux/lib, > > compat/linux/usr/lib either. > > $ grep ^lib/libc /usr/ports/emulators/linux_base-8/pkg-plist > lib/libc-2.3.2.so > lib/libc.so.6 > lib/libcrypt-2.3.2.so > lib/libcrypt.so.1 > > $ ls /usr/compat/linux/lib/libc* > /usr/compat/linux/lib/libc-2.3.2.so > /usr/compat/linux/lib/libcrypt-2.3.2.so > /usr/compat/linux/lib/libc.so.6 > /usr/compat/linux/lib/libcrypt.so.1 > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:14: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 2371E16A523 for ; Mon, 19 Jun 2006 15:14:16 +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 90C6143DEF for ; Mon, 19 Jun 2006 15:13:38 +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, 19 Jun 2006 11:13:31 -0400 id 0005642C.4496BF1B.0000F77B Received: from Internal Mail-Server by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 19 Jun 2006 11:05:18 -0400 Date: Mon, 19 Jun 2006 11:13:30 -0400 From: Bill Moran To: lmclouth@mn.rr.com Message-Id: <20060619111330.ef3e2224.wmoran@collaborativefusion.com> In-Reply-To: <4496B716.7080505@webanoide.org> References: <44960EDC.2020906@mn.rr.com> <4496B716.7080505@webanoide.org> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.6 (GTK+ 2.8.19; 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: pkgdb.db locked X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:14:16 -0000 > Lewis McLouth wrote: [snip] > > Also, if pkgdb.db was deleted, how do I rebuild the pkgdb.db? (pkgdb -f > > does not rebuild pkgdb.db, I just checked) portupgrade -an In order for portupgrade to analyze your packages, it needs to update the pkgdb. It will create it if it doesn't exist. I'm sure there's a less-roundabout way to accomplish this ... -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:19: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 E185216A47D for ; Mon, 19 Jun 2006 15:19:13 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from pne-smtpout1-sn2.hy.skanova.net (pne-smtpout1-sn2.hy.skanova.net [81.228.8.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A66943DDF for ; Mon, 19 Jun 2006 15:19:07 +0000 (GMT) (envelope-from erikt@midgard.homeip.net) Received: from falcon.midgard.homeip.net (83.253.29.241) by pne-smtpout1-sn2.hy.skanova.net (7.2.072.1) id 44967A1C00016CA2 for freebsd-questions@freebsd.org; Mon, 19 Jun 2006 17:19:06 +0200 Received: (qmail 20277 invoked from network); 19 Jun 2006 17:19:06 +0200 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with SMTP; 19 Jun 2006 17:19:06 +0200 Received: (qmail 19749 invoked by uid 1001); 19 Jun 2006 17:19:06 +0200 Date: Mon, 19 Jun 2006 17:19:06 +0200 From: Erik Trulsson To: Jim Stapleton Message-ID: <20060619151906.GA19730@owl.midgard.homeip.net> Mail-Followup-To: Jim Stapleton , freebsd-questions@freebsd.org References: <80f4f2b20606190421m73657c9aq828cdacb1779e43@mail.gmail.com> <20060619115725.GA10846@localhost.localdomain> <80f4f2b20606190556w31257af6ybf43011349eecb6d@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <80f4f2b20606190556w31257af6ybf43011349eecb6d@mail.gmail.com> User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: where does one find glibc for /usr/compat/linux/lib ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:19:14 -0000 On Mon, Jun 19, 2006 at 08:56:55AM -0400, Jim Stapleton wrote: > that's libc, not glibc, the stuff I'm working on is specifically > looking for a "glibc.so" file. Am I missing something? >=20 > -Jim Stapleton Somebody is missing something. The 'libc' files listed below *are* glibc (at least libc.so.6 is, libc-2.3.2.so might be some older libc implementation installed for compatibility purposes.) A normal Linux system does not have any 'glibc.so' file installed, but will have the files listed below. >=20 > On 6/19/06, Pablo Mar=EDn Ram=F3n wrote: > >> I looked at a few of the emulator/linux* ports, and it was not in > >> their pkg-plist files, only something in their usr/sbin > >> (glibc_post_upgrad), which, when ran, does not generate a glibc that I > >> can find in the any of BSDs lib directories, or the compat/linux/lib, > >> compat/linux/usr/lib either. > > > >$ grep ^lib/libc /usr/ports/emulators/linux_base-8/pkg-plist > >lib/libc-2.3.2.so > >lib/libc.so.6 > >lib/libcrypt-2.3.2.so > >lib/libcrypt.so.1 > > > >$ ls /usr/compat/linux/lib/libc* > >/usr/compat/linux/lib/libc-2.3.2.so > >/usr/compat/linux/lib/libcrypt-2.3.2.so > >/usr/compat/linux/lib/libc.so.6 > >/usr/compat/linux/lib/libcrypt.so.1 > > > _______________________________________________ > 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 Erik Trulsson ertr1013@student.uu.se From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:28: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 9C74616A479 for ; Mon, 19 Jun 2006 15:28:46 +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 1CFDA43D45 for ; Mon, 19 Jun 2006 15:28:45 +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, 19 Jun 2006 11:28:45 -0400 id 00056410.4496C2AD.0000F978 Received: from Internal Mail-Server by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 19 Jun 2006 11:20:32 -0400 Date: Mon, 19 Jun 2006 11:28:44 -0400 From: Bill Moran To: lmclouth@mn.rr.com Message-Id: <20060619112844.b9b3b831.wmoran@collaborativefusion.com> In-Reply-To: <20060619111330.ef3e2224.wmoran@collaborativefusion.com> References: <44960EDC.2020906@mn.rr.com> <4496B716.7080505@webanoide.org> <20060619111330.ef3e2224.wmoran@collaborativefusion.com> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.6 (GTK+ 2.8.19; 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: pkgdb.db locked X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:28:46 -0000 In response to Bill Moran : > > > Lewis McLouth wrote: > > [snip] > > > > Also, if pkgdb.db was deleted, how do I rebuild the pkgdb.db? (pkgdb -f > > > does not rebuild pkgdb.db, I just checked) > > portupgrade -an > > In order for portupgrade to analyze your packages, it needs to update the > pkgdb. It will create it if it doesn't exist. Nevermind. That's not working. pkgdb -fu is failing as well. Shouldn't it generate the pkgdb if it doesn't exist? -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:29: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 C9E6616A526 for ; Mon, 19 Jun 2006 15:29:33 +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 1467043D66 for ; Mon, 19 Jun 2006 15:29:27 +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.62 (FreeBSD)) (envelope-from ) id 1FsLgs-000Ozi-07; Mon, 19 Jun 2006 09:29:26 -0600 Message-ID: <0c3301c693b5$25dcf880$37cba1cd@emerytelcom.com> From: "Elliot Finley" To: "Philippe Pegon" , "Thierry Lacoste" References: <004b01c691eb$b3bf0420$0201a8c0@aldebaran> <449525A8.2060403@crc.u-strasbg.fr> Date: Mon, 19 Jun 2006 09:29:24 -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@freebsd.org Subject: Re: monitoring raid arrays 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: Mon, 19 Jun 2006 15:29:34 -0000 How about monitoring the array on a Dell PowerEdge 2650? relevant dmesg output: FreeBSD 6.0-RELEASE-p2 #0: Mon Jan 16 12:27:14 MST 2006 aacch0: port 0xcc00-0xccff mem 0xfccff000-0xfccfffff irq 30 at device 6.0 on pci5 aacch1: port 0xc800-0xc8ff mem 0xfccfe000-0xfccfefff irq 31 at device 6.1 on pci5 aac0: mem 0xf0000000-0xf7ffffff irq 30 at device 8.1 on pci4 aac0: [FAST] aac0: Adaptec Raid Controller 2.0.0-1 ----- Original Message ----- From: "Philippe Pegon" To: "Thierry Lacoste" Cc: Sent: Sunday, June 18, 2006 4:06 AM Subject: Re: monitoring raid arrays > Thierry Lacoste wrote: > > I'm running FreeBSD 6.1 on a Compaq Proliant and a Dell PowerEdge 1800. > > They have hardware raid 1 arrays controlled respectively by a Compaq > > Smart Array 532 > > controller and PERC 4/SC. > > > > Here is the relevant dmesg output on the Proliant: > > ciss0: port 0x4000-0x40ff mem > > 0xf7fc0000-0xf7ffffff,0xf7ef0000-0xf7ef3fff irq 24 at device 3.0 on pci7 > > [snip] > > da0 at ciss0 bus 0 target 0 lun 0 > > da0: Fixed Direct Access SCSI-0 device > > da0: 135.168MB/s transfers > > da0: 34727MB (71122560 512 byte sectors: 255H 32S/T 8716C) > > > > Here is the relevant dmesg output on the PowerEdge: > > amr0: mem 0xf80f0000-0xf80fffff irq 37 at > > device 5.0 on pci2 > > amr0: delete logical drives supported by controller > > amr0: Firmware 351S, BIOS 1.10, 64MB RAM > > [snip] > > amr0: delete logical drives supported by controller > > amrd0: on amr0 > > amrd0: 139900MB (286515200 sectors) RAID 1 (optimal) > > > > What are my options to monitor the status of these arrays? > > for ciss, you can use camcontrol (in the base system) like that: > > # camcontrol inquiry da0 > pass0: Fixed Direct Access SCSI-0 device > pass0: 135.168MB/s transfers > > for amr, you can use the new port /usr/ports/sysutils/amrstat like that: > > # amrstat > Logical volume 0 optimal (16.96 GB, RAID1) > Physical drive 0:0 online > Physical drive 0:1 online > > > > > Best regards, > > Thierry. > > -- > Philippe Pegon > _______________________________________________ > 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 Jun 19 15:41: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 5457C16A481 for ; Mon, 19 Jun 2006 15:41:19 +0000 (UTC) (envelope-from apircalabu@bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD96D43D48 for ; Mon, 19 Jun 2006 15:41:14 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 19926 invoked by uid 1010); 19 Jun 2006 18:41:11 +0300 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.bitdefender.com with SMTP; 19 Jun 2006 18:41:11 +0300 Date: Mon, 19 Jun 2006 18:41:10 +0300 From: Adi Pircalabu To: Jeff Molofee Message-ID: <20060619184110.321ff967@apircalabu.dsd.ro> In-Reply-To: <44960134.9030502@cruzinternet.com> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> Organization: BitDefender X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (13) Cc: freebsd-questions@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:41:19 -0000 (Cc-ed to freebsd-ports@, sorry if anyone's affected by cross-posting) On Sun, 18 Jun 2006 19:43:16 -0600 Jeff Molofee wrote: > After upgrading to linux_base-fc4, I've noticed a lot of applications > and games that will no longer run. One of the games is HoH. I receive > the following error when trying to run it... does anyone know how to > fix this? > > ./HoH: error while loading shared libraries: > libstdc++-libc6.2-2.so.3: cannot open shared object file: No such > file or directory Apparently that application needs (yet another?) compatibility Linux libraries, because it was built with g++-2.96 and linked against libstdc++-libc6.2-2.so.3. Feel free to send a problem report for this so it won't get lost, linux_base-fc4 maintainers should take a look at it and update the port. -- Adi Pircalabu (PGP Key ID 0x04329F5E) -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:56: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 8E0C016A474 for ; Mon, 19 Jun 2006 15:56:15 +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 2A88F43D45 for ; Mon, 19 Jun 2006 15:56:14 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.146] (helo=anti-virus03-09) by smtp-out5.blueyonder.co.uk with smtp (Exim 4.52) id 1FsM6i-00071a-Ch; Mon, 19 Jun 2006 16:56:08 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out5.blueyonder.co.uk with esmtp (Exim 4.52) id 1FsM6e-0001JF-DK; Mon, 19 Jun 2006 16:56:04 +0100 Message-ID: <4496C913.4030101@dial.pipex.com> Date: Mon, 19 Jun 2006 16:56:03 +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: Elliot Finley References: <004b01c691eb$b3bf0420$0201a8c0@aldebaran> <449525A8.2060403@crc.u-strasbg.fr> <0c3301c693b5$25dcf880$37cba1cd@emerytelcom.com> In-Reply-To: <0c3301c693b5$25dcf880$37cba1cd@emerytelcom.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: monitoring raid arrays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:56:15 -0000 Elliot Finley wrote: >How about monitoring the array on a Dell PowerEdge 2650? >relevant dmesg output: > >FreeBSD 6.0-RELEASE-p2 #0: Mon Jan 16 12:27:14 MST 2006 >aacch0: port 0xcc00-0xccff mem 0xfccff000-0xfccfffff irq >30 at device 6.0 on pci5 >aacch1: port 0xc800-0xc8ff mem 0xfccfe000-0xfccfefff irq >31 at device 6.1 on pci5 >aac0: mem 0xf0000000-0xf7ffffff irq 30 at device 8.1 on >pci4 >aac0: [FAST] >aac0: Adaptec Raid Controller 2.0.0-1 > > Port: aaccli-1.0 Path: /usr/ports/sysutils/aaccli Info: Adaptec SCSI RAID administration tool Maint: bms@FreeBSD.org B-deps: R-deps: WWW: http://support.dell.com/ Never tried it but it looks like your best bet. --Alex From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 15:57: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 B225A16A474 for ; Mon, 19 Jun 2006 15:57:20 +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 5566C43D5C for ; Mon, 19 Jun 2006 15:57:20 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 5AC3A5E50; Mon, 19 Jun 2006 11:57:19 -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 Qx0-3luILfp2; Mon, 19 Jun 2006 11:57:18 -0400 (EDT) Received: from [199.103.21.238] (pan.codefab.com [199.103.21.238]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 8A7215CF5; Mon, 19 Jun 2006 11:57:18 -0400 (EDT) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Mon, 19 Jun 2006 11:57:15 -0400 To: Ensel Sharon X-Mailer: Apple Mail (2.750) Cc: FreeBSD Mailing List Subject: Re: Please help - adaptec 2820sa not ... RESOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 15:57:20 -0000 On Jun 18, 2006, at 10:44 PM, Ensel Sharon wrote: > Let's say I have 8 disks. > > Let's say I require raid6. You require RAID-6 because...? If you want more fault tolerance or better performance, RAID-10 makes a lot more sense to me than RAID-6, but YMMV. > If I make one array, I lose 25% to raid overhead. > > If I make two arrays, I lose 50% to raid overhead. Using RAID-6 with 4 disks does not make much sense, no. (Using RAID-10 with 4 disks works great, however. Yes, the overhead is greater, but the write performance is much better, and it would seem like RAID-10 would result in you having a configuration that fits into 2TB LUN limitation....) -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 16:12: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 089B116A47A for ; Mon, 19 Jun 2006 16:12:20 +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 A8E6843D46 for ; Mon, 19 Jun 2006 16:12:19 +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.62 (FreeBSD)) (envelope-from ) id 1FsMML-000K9e-T6; Mon, 19 Jun 2006 10:12:18 -0600 Message-ID: <0cab01c693bb$22d8d180$37cba1cd@emerytelcom.com> From: "Elliot Finley" To: "Alex Zbyslaw" References: <004b01c691eb$b3bf0420$0201a8c0@aldebaran> <449525A8.2060403@crc.u-strasbg.fr> <0c3301c693b5$25dcf880$37cba1cd@emerytelcom.com> <4496C913.4030101@dial.pipex.com> Date: Mon, 19 Jun 2006 10:12:15 -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@freebsd.org Subject: Re: monitoring raid arrays 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: Mon, 19 Jun 2006 16:12:20 -0000 ----- Original Message ----- From: "Alex Zbyslaw" > Elliot Finley wrote: > > >How about monitoring the array on a Dell PowerEdge 2650? > >relevant dmesg output: > > > >FreeBSD 6.0-RELEASE-p2 #0: Mon Jan 16 12:27:14 MST 2006 > >aacch0: port 0xcc00-0xccff mem 0xfccff000-0xfccfffff irq > >30 at device 6.0 on pci5 > >aacch1: port 0xc800-0xc8ff mem 0xfccfe000-0xfccfefff irq > >31 at device 6.1 on pci5 > >aac0: mem 0xf0000000-0xf7ffffff irq 30 at device 8.1 on > >pci4 > >aac0: [FAST] > >aac0: Adaptec Raid Controller 2.0.0-1 > > > > > Port: aaccli-1.0 > Path: /usr/ports/sysutils/aaccli > Info: Adaptec SCSI RAID administration tool > Maint: bms@FreeBSD.org > B-deps: > R-deps: > WWW: http://support.dell.com/ > > Never tried it but it looks like your best bet. Yes, I saw this too. Doesn't work on 6.x though because of the MAKEDEV requirement. Elliot From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 16: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 F402516A479 for ; Mon, 19 Jun 2006 16:15:53 +0000 (UTC) (envelope-from apircalabu@bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB99C43D76 for ; Mon, 19 Jun 2006 16:15:45 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 18257 invoked by uid 1010); 19 Jun 2006 19:15:42 +0300 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.bitdefender.com with SMTP; 19 Jun 2006 19:15:42 +0300 Date: Mon, 19 Jun 2006 19:15:42 +0300 From: Adi Pircalabu To: Adi Pircalabu Message-ID: <20060619191542.614d03ad@apircalabu.dsd.ro> In-Reply-To: <20060619184110.321ff967@apircalabu.dsd.ro> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> Organization: BitDefender X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_VWhm9COjKhvgmqV=o1Go6q4" X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (13) Cc: bsam@ipt.ru, Jeff Molofee , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 16:15:54 -0000 --MP_VWhm9COjKhvgmqV=o1Go6q4 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline (Really cc-ed to freebsd-ports@freebsd.org and Boris Samodorov a.k.a bsam@ipt.ru) On Mon, 19 Jun 2006 18:41:10 +0300 Adi Pircalabu wrote: > On Sun, 18 Jun 2006 19:43:16 -0600 Jeff Molofee wrote: > > > After upgrading to linux_base-fc4, I've noticed a lot of > > applications and games that will no longer run. One of the games is > > HoH. I receive the following error when trying to run it... does > > anyone know how to fix this? > > > > ./HoH: error while loading shared libraries: > > libstdc++-libc6.2-2.so.3: cannot open shared object file: No such > > file or directory > > Apparently that application needs (yet another?) compatibility Linux > libraries, because it was built with g++-2.96 and linked against > libstdc++-libc6.2-2.so.3. > Feel free to send a problem report for this so it won't get lost, > linux_base-fc4 maintainers should take a look at it and update the > port. Jeff, I've attached a patch for linux_base-fc4, can you please test it and see if it fixes the dependency problem? Cheers -- Adi Pircalabu (PGP Key ID 0x04329F5E) --MP_VWhm9COjKhvgmqV=o1Go6q4 Content-Type: text/x-patch; name=linux_base-fc4.diff Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=linux_base-fc4.diff diff -urN /usr/ports/emulators/linux_base-fc4/Makefile /data/adi/work/ports/linux_base-fc4/Makefile --- /usr/ports/emulators/linux_base-fc4/Makefile Sat Jun 10 16:35:52 2006 +++ /data/adi/work/ports/linux_base-fc4/Makefile Mon Jun 19 19:04:57 2006 @@ -8,7 +8,7 @@ PORTNAME= fc PORTVERSION= 4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators linux MASTER_SITES= ${MASTER_SITE_FEDORA_LINUX} MASTER_SITE_SUBDIR= ${PORTVERSION}/${LINUX_RPM_ARCH}/os/Fedora/RPMS \ @@ -28,6 +28,7 @@ bzip2-1.0.2-16.${LINUX_RPM_ARCH}.rpm \ bzip2-libs-1.0.2-16.${LINUX_RPM_ARCH}.rpm \ compat-db-4.2.52-2.FC4.${LINUX_RPM_ARCH}.rpm \ + compat-libstdc++-296-2.96-132.fc4.${LINUX_RPM_ARCH}.rpm \ compat-libstdc++-33-3.2.3-47.fc4.${LINUX_RPM_ARCH}.rpm \ coreutils-5.2.1-48.1.${LINUX_RPM_ARCH}.rpm \ db4-4.3.27-5.fc4.${LINUX_RPM_ARCH}.rpm \ diff -urN /usr/ports/emulators/linux_base-fc4/distinfo.i386 /data/adi/work/ports/linux_base-fc4/distinfo.i386 --- /usr/ports/emulators/linux_base-fc4/distinfo.i386 Fri Jun 2 23:50:32 2006 +++ /data/adi/work/ports/linux_base-fc4/distinfo.i386 Mon Jun 19 19:04:57 2006 @@ -13,6 +13,9 @@ MD5 (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.i386.rpm) = 4351cbd58365904bc2a21c946b624837 SHA256 (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.i386.rpm) = c1ec3e21db3d4ef616ce78dcf2913508fdea6b70b674267af0f0d180428fda8b SIZE (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.i386.rpm) = 859566 +MD5 (rpm/i386/fedora/4/compat-libstdc++-296-2.96-132.fc4.i386.rpm) = 3f002b614c92079a32a30eaa721aba58 +SHA256 (rpm/i386/fedora/4/compat-libstdc++-296-2.96-132.fc4.i386.rpm) = 0f4d0394c4f746bfc6418e8fd6b46a496f742a16d4bb96589cbe56b4975f94fd +SIZE (rpm/i386/fedora/4/compat-libstdc++-296-2.96-132.fc4.i386.rpm) = 178657 MD5 (rpm/i386/fedora/4/compat-libstdc++-33-3.2.3-47.fc4.i386.rpm) = dab411528a710a5f61e1981f173beddc SHA256 (rpm/i386/fedora/4/compat-libstdc++-33-3.2.3-47.fc4.i386.rpm) = 1b07f3d0c61b5a4737ac7d007485d04b7d51a00476924d5dc399a1fa347376ac SIZE (rpm/i386/fedora/4/compat-libstdc++-33-3.2.3-47.fc4.i386.rpm) = 233643 @@ -100,87 +103,3 @@ MD5 (rpm/i386/fedora/4/zlib-1.2.2.2-5.fc4.i386.rpm) = 7222e84cfa404931ff11e5e4b3edad5e SHA256 (rpm/i386/fedora/4/zlib-1.2.2.2-5.fc4.i386.rpm) = 904382b92317044565f8951f67700db60c86bacad659f3e0050c1dffa401fe70 SIZE (rpm/i386/fedora/4/zlib-1.2.2.2-5.fc4.i386.rpm) = 49500 -MD5 (rpm/i386/fedora/4/basesystem-8.0-5.src.rpm) = d928e0cc1c629716aefc843ff150eec6 -SHA256 (rpm/i386/fedora/4/basesystem-8.0-5.src.rpm) = 9c809619bf56d59d6cad2620d40b0b5356e77aa0045b928ad2a6e977150a3b3b -SIZE (rpm/i386/fedora/4/basesystem-8.0-5.src.rpm) = 3638 -MD5 (rpm/i386/fedora/4/bash-3.0-31.src.rpm) = 691751a30e991d536b262a27784de212 -SHA256 (rpm/i386/fedora/4/bash-3.0-31.src.rpm) = 996dd5ea6ddc997b2ff700b6f854a62355295f7ca9506e1cdc0c8004ecf12372 -SIZE (rpm/i386/fedora/4/bash-3.0-31.src.rpm) = 4479090 -MD5 (rpm/i386/fedora/4/bzip2-1.0.2-16.src.rpm) = 4f35fd36a4977bea9985015bf0f1515e -SHA256 (rpm/i386/fedora/4/bzip2-1.0.2-16.src.rpm) = cd5b82e1331bf7be636ce8ee3720de4261983ddd00bf51f9eb3048161169bcc4 -SIZE (rpm/i386/fedora/4/bzip2-1.0.2-16.src.rpm) = 677935 -MD5 (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.src.rpm) = 6072a40a834c5d29f4d88454a234d52a -SHA256 (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.src.rpm) = 7c92a659930984682a6704ce40bff3919d1e87a5be3e9d534a42148761c1cb76 -SIZE (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.src.rpm) = 7176462 -MD5 (rpm/i386/fedora/4/coreutils-5.2.1-48.1.src.rpm) = 42624b59a9843f09184d017a2ce4f397 -SHA256 (rpm/i386/fedora/4/coreutils-5.2.1-48.1.src.rpm) = 8aa024c536905da47fd580b99df4c80bd85107f151178665a18995cfcf0db277 -SIZE (rpm/i386/fedora/4/coreutils-5.2.1-48.1.src.rpm) = 4379037 -MD5 (rpm/i386/fedora/4/db4-4.3.27-5.fc4.src.rpm) = 989c2696624adf5c06d794947c079589 -SHA256 (rpm/i386/fedora/4/db4-4.3.27-5.fc4.src.rpm) = ffc33b4429734eb9c7463d278296efdd176650bc4b12f0d7a0ed7ec5819cf64b -SIZE (rpm/i386/fedora/4/db4-4.3.27-5.fc4.src.rpm) = 6216986 -MD5 (rpm/i386/fedora/4/elfutils-0.108-1.src.rpm) = b160cf80191681446cb1c210d9f7f78d -SHA256 (rpm/i386/fedora/4/elfutils-0.108-1.src.rpm) = cce9410a30009cce58324c6b8786f8396c4809fd67fe83377028de8cc8108066 -SIZE (rpm/i386/fedora/4/elfutils-0.108-1.src.rpm) = 956664 -MD5 (rpm/i386/fedora/4/fedora-release-4-2.src.rpm) = 4139db13ba196b8166c5d8d26eda2cd6 -SHA256 (rpm/i386/fedora/4/fedora-release-4-2.src.rpm) = c2321ce83d5a539eaec41ffa7db3249595c123825ea648138be6271b3f7dd0cb -SIZE (rpm/i386/fedora/4/fedora-release-4-2.src.rpm) = 659531 -MD5 (rpm/i386/fedora/4/filesystem-2.3.4-1.src.rpm) = bf99172525fcf3be4e50bd35c145e7f6 -SHA256 (rpm/i386/fedora/4/filesystem-2.3.4-1.src.rpm) = 328a8c7a690903750dfcf4bb0ffc7c59a2cefebd42242139105f04ebca7a21da -SIZE (rpm/i386/fedora/4/filesystem-2.3.4-1.src.rpm) = 9596 -MD5 (rpm/i386/fedora/4/freetype-2.1.9-2.src.rpm) = 57eec7fc6789863952b4804bab34ac8c -SHA256 (rpm/i386/fedora/4/freetype-2.1.9-2.src.rpm) = 7ef1877115abbdf5c7709c97cb013e891dfd942a69dd4a8578a6878e236816d5 -SIZE (rpm/i386/fedora/4/freetype-2.1.9-2.src.rpm) = 2000954 -MD5 (rpm/i386/fedora/4/gdbm-1.8.0-25.src.rpm) = aec4384f6ceb1ead6d8f832047382623 -SHA256 (rpm/i386/fedora/4/gdbm-1.8.0-25.src.rpm) = b84dfc205f670ae98587bbbdb0718189a719424eebfd5723a43f010d5272bf55 -SIZE (rpm/i386/fedora/4/gdbm-1.8.0-25.src.rpm) = 144106 -MD5 (rpm/i386/fedora/4/glib-1.2.10-16.src.rpm) = 6fa2087c2afa3d0116c3ce2bdf75899d -SHA256 (rpm/i386/fedora/4/glib-1.2.10-16.src.rpm) = 04b050474badd901408096357c470837528501b9c5c10f58510db866af5efe1b -SIZE (rpm/i386/fedora/4/glib-1.2.10-16.src.rpm) = 431139 -MD5 (rpm/i386/fedora/4/glibc-2.3.6-3.src.rpm) = 59b05df424f4f75495456ad66624d713 -SHA256 (rpm/i386/fedora/4/glibc-2.3.6-3.src.rpm) = a830d35116d1a054fe48c51eae553a895afcf7985c29162c6bbb1d86a1c4812b -SIZE (rpm/i386/fedora/4/glibc-2.3.6-3.src.rpm) = 15747320 -MD5 (rpm/i386/fedora/4/grep-2.5.1-48.2.src.rpm) = e40b2fe83f1644f1f20415b47ffc17c5 -SHA256 (rpm/i386/fedora/4/grep-2.5.1-48.2.src.rpm) = 1992428f995ccd846701bc8acb4fff1bbb4e13ecfe3e189c1ab12cca516432a5 -SIZE (rpm/i386/fedora/4/grep-2.5.1-48.2.src.rpm) = 556106 -MD5 (rpm/i386/fedora/4/acl-2.2.32-1.FC4.2.src.rpm) = 836ff927ffa4d67b6f324da2f9abf41c -SHA256 (rpm/i386/fedora/4/acl-2.2.32-1.FC4.2.src.rpm) = 5262660e8131be60081bee12e9be92b9f6bea6365a531160093b74a44e1dd15b -SIZE (rpm/i386/fedora/4/acl-2.2.32-1.FC4.2.src.rpm) = 157565 -MD5 (rpm/i386/fedora/4/attr-2.4.24-1.FC4.1.src.rpm) = 0a35ec2167cb05fa5d2975095b15f539 -SHA256 (rpm/i386/fedora/4/attr-2.4.24-1.FC4.1.src.rpm) = 213bf7b46918c7cf5d7d366209efac8a18b27c1522d13a9ca4da7c20230c5c90 -SIZE (rpm/i386/fedora/4/attr-2.4.24-1.FC4.1.src.rpm) = 113040 -MD5 (rpm/i386/fedora/4/gcc-4.0.2-8.fc4.src.rpm) = f978ed429253fb5bc0f686164edec0e9 -SHA256 (rpm/i386/fedora/4/gcc-4.0.2-8.fc4.src.rpm) = bf8f7364d3c075893ac18d80e8f1f7e2d45258c835192be966f620cba90896b7 -SIZE (rpm/i386/fedora/4/gcc-4.0.2-8.fc4.src.rpm) = 30578973 -MD5 (rpm/i386/fedora/4/libselinux-1.23.11-1.1.src.rpm) = fa5d60c264eec51b97f77b5a9d4eca48 -SHA256 (rpm/i386/fedora/4/libselinux-1.23.11-1.1.src.rpm) = 6698df05dfb8243b271791574f164a01c2ba434c20461fb83d1855260d91b10a -SIZE (rpm/i386/fedora/4/libselinux-1.23.11-1.1.src.rpm) = 107764 -MD5 (rpm/i386/fedora/4/libtermcap-2.0.8-41.src.rpm) = e78fe61ae4b20d4b550122c72ef7fbc7 -SHA256 (rpm/i386/fedora/4/libtermcap-2.0.8-41.src.rpm) = 06179d2dbd59f5b92fce580e5788157164209eadcf6b3b79c3345743b612dfcb -SIZE (rpm/i386/fedora/4/libtermcap-2.0.8-41.src.rpm) = 228192 -MD5 (rpm/i386/fedora/4/ncurses-5.4-19.fc4.src.rpm) = 9dc4cdd85aad1cb377316f4d1a66ba9d -SHA256 (rpm/i386/fedora/4/ncurses-5.4-19.fc4.src.rpm) = f630e0273fe2746998450e8a6b455315173761bea9d5a614436af58d348b22bf -SIZE (rpm/i386/fedora/4/ncurses-5.4-19.fc4.src.rpm) = 2104494 -MD5 (rpm/i386/fedora/4/pcre-5.0-4.1.fc4.src.rpm) = ec1decec12e651d1d5bec690e3627a7d -SHA256 (rpm/i386/fedora/4/pcre-5.0-4.1.fc4.src.rpm) = 0fc1bc344a1b67a27b150262b2e78d51c0d8feb71a30442718df7ac299c28068 -SIZE (rpm/i386/fedora/4/pcre-5.0-4.1.fc4.src.rpm) = 470023 -MD5 (rpm/i386/fedora/4/readline-5.0-3.src.rpm) = a24059a0106db146b8711f1268f66bd9 -SHA256 (rpm/i386/fedora/4/readline-5.0-3.src.rpm) = 049606fe2569a798da173708f4430bd5a26b5edb1142cb024eea4924e6e9db1e -SIZE (rpm/i386/fedora/4/readline-5.0-3.src.rpm) = 1827432 -MD5 (rpm/i386/fedora/4/rpm-4.4.1-23.src.rpm) = 0e3cf17bb86cd8dbf0953be4b05ef7e0 -SHA256 (rpm/i386/fedora/4/rpm-4.4.1-23.src.rpm) = 6d2407c5b130b038fcbaea0b6922122cf8111af0b0d41404f606a461d684a734 -SIZE (rpm/i386/fedora/4/rpm-4.4.1-23.src.rpm) = 11506077 -MD5 (rpm/i386/fedora/4/setserial-2.17-19.src.rpm) = 9f24f3aadb6a8052420f21c5abdfd16b -SHA256 (rpm/i386/fedora/4/setserial-2.17-19.src.rpm) = 92ff7afdfad3a0ca61123fd6f60ac2b965011c06a7150ec418eb9cdc24fba9fb -SIZE (rpm/i386/fedora/4/setserial-2.17-19.src.rpm) = 60907 -MD5 (rpm/i386/fedora/4/setup-2.5.44-1.1.src.rpm) = 5f0bff9438e942dc4219cdefd8b90707 -SHA256 (rpm/i386/fedora/4/setup-2.5.44-1.1.src.rpm) = db5621b08adfd87dd071900498ecce7238ab44f84d76ff5da70a984a52fd1373 -SIZE (rpm/i386/fedora/4/setup-2.5.44-1.1.src.rpm) = 39582 -MD5 (rpm/i386/fedora/4/slang-1.4.9-17.src.rpm) = 586b5d88c4df26eac37e2bce6a678f4f -SHA256 (rpm/i386/fedora/4/slang-1.4.9-17.src.rpm) = 70c23e79a5d9dd6dd27335f3152e00e51a0337dfbbab4f80916e71270b116626 -SIZE (rpm/i386/fedora/4/slang-1.4.9-17.src.rpm) = 652792 -MD5 (rpm/i386/fedora/4/termcap-5.4-7fc4.src.rpm) = c7ac6c9bab2bd2134c30dc7ece5dfd2d -SHA256 (rpm/i386/fedora/4/termcap-5.4-7fc4.src.rpm) = defa1bac93c816dbd2abeac8147cbe1a829abf0cbd2ff12f38a6856f26c06a13 -SIZE (rpm/i386/fedora/4/termcap-5.4-7fc4.src.rpm) = 2797156 -MD5 (rpm/i386/fedora/4/zlib-1.2.2.2-5.fc4.src.rpm) = 98e700c464d19833dcedc322ed025609 -SHA256 (rpm/i386/fedora/4/zlib-1.2.2.2-5.fc4.src.rpm) = 41720cbaab00616b54c3cd19127752a19ca2a7a2606089647a835373c8ba41a4 -SIZE (rpm/i386/fedora/4/zlib-1.2.2.2-5.fc4.src.rpm) = 467658 diff -urN /usr/ports/emulators/linux_base-fc4/pkg-plist /data/adi/work/ports/linux_base-fc4/pkg-plist --- /usr/ports/emulators/linux_base-fc4/pkg-plist Fri Jun 2 23:50:32 2006 +++ /data/adi/work/ports/linux_base-fc4/pkg-plist Mon Jun 19 19:04:57 2006 @@ -594,6 +594,9 @@ usr/lib/libreadline.so.5.0 usr/lib/libslang-utf8.so.1 usr/lib/libslang-utf8.so.1.4.9 +usr/lib/libstdc++-2-libc6.1-1-2.9.0.so +usr/lib/libstdc++-3-libc6.2-2-2.10.0.so +usr/lib/libstdc++-libc6.2-2.so.3 usr/lib/libstdc++.so.5 usr/lib/libstdc++.so.5.0.7 usr/lib/libstdc++.so.6 --MP_VWhm9COjKhvgmqV=o1Go6q4 Content-Type: text/plain; name="BitDefender.txt" Content-Disposition: inline; filename="BitDefender.txt" -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ --MP_VWhm9COjKhvgmqV=o1Go6q4-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 16:17: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 507B016A47B for ; Mon, 19 Jun 2006 16:17:55 +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 7D21B43D5D for ; Mon, 19 Jun 2006 16:17:43 +0000 (GMT) (envelope-from derek@computinginnovations.com) Received: from p17.computinginnovations.com (dhcp-10-20-30-100.computinginnovations.com [10.20.30.100]) (authenticated bits=0) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k5JGGOfs016691; Mon, 19 Jun 2006 11:16:25 -0500 (CDT) Message-Id: <6.0.0.22.2.20060619111155.0253cc00@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Mon, 19 Jun 2006 11:16:16 -0500 To: "Travis Fitch" , From: Derek Ragona In-Reply-To: <200606190148.k5J1mfxY037157@kaur.zehym.com> References: <200606190148.k5J1mfxY037157@kaur.zehym.com> 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: Sendmail and high kernel CPU utilisation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 16:17:55 -0000 Travis, This may be from someone mail bombing your server with large email attachments. However, you should increase the logging by sendmail adding or changing the sendmail option: -O LogLevel=80 Usually this is set in /etc/rc.conf. I find 80 is pretty good for showing a lot of detail. Then you can look in your sendmail log in /var/log/maillog for what sendmail is actually doing. Hope this helps. -Derek At 08:56 PM 6/18/2006, Travis Fitch wrote: >Hello, > >I was hoping someone might be able to shed some light on an issue I am >having with sendmail on FreeBSD 5.2.1 running on a Sun V120. > >If you look at the snippet from top you can see that several sendmail >process are casing the kernel to use ~ 65% of the CPU. I am having some >issues profiling what is causing this issue. You can also see the load is >quite high. > >last pid: 72705; load averages: 12.22, 12.29, 12.00 >up 1+06:09:44 11:42:28 >86 processes: 14 running, 72 sleeping >CPU states: 35.5% user, 0.0% nice, 64.5% system, 0.0% interrupt, 0.0% >idle >Mem: 148M Active, 104M Inact, 73M Wired, 520K Cache, 60M Buf, 131M Free >Swap: 2057M Total, 102M Used, 1954M Free, 4% Inuse > > PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND >20958 root 122 0 23368K 5472K RUN 44:32 8.64% 8.64% sendmail >62864 root 122 0 23432K 5528K RUN 10:45 8.54% 8.54% sendmail >70522 root 122 0 23448K 5544K RUN 2:43 8.35% 8.35% sendmail >91279 smmsp 122 0 12224K 3832K RUN 60:17 8.25% 8.25% sendmail >66302 root 122 0 23392K 5472K RUN 8:36 8.25% 8.25% sendmail >16850 root 122 0 23432K 5528K RUN 51:31 8.20% 8.20% sendmail >66306 root 121 0 23448K 5528K RUN 8:34 8.11% 8.11% sendmail >68330 root 121 0 23432K 5528K RUN 5:37 8.11% 8.11% sendmail >51654 root 121 0 23392K 5472K RUN 16:40 8.06% 8.06% sendmail >66377 root 121 0 23392K 5472K RUN 8:22 8.01% 8.01% sendmail >69364 root 121 0 23432K 5504K RUN 3:50 8.01% 8.01% sendmail > > >The other interesting thing is that a lot of the SMTP connections hang >around for quite some time. These connection just keep building up and >slowly bring the system to a crawl. > >correo:root# ps aux| grep -v grep | grep sendmail >root 62864 8.0 1.1 23432 5528 ?? R 10:06AM 10:49.58 sendmail: >k5J06CMN062864 mx02.globalcenter.net.au [203.89.192.35]: DATA (sendmail) >root 66306 8.0 1.1 23448 5528 ?? R 10:18AM 8:38.72 sendmail: >k5J0IoxC066306 omta02ps.mx.bigpond.com [144.140.83.154]: DATA (sendmail) >root 66377 7.9 1.1 23392 5472 ?? R 10:20AM 8:26.25 sendmail: >k5J0KHGa066377 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) >root 20958 8.0 1.1 23368 5472 ?? R 5:14AM 44:36.44 sendmail: >k5IJF2bd020958 [83.173.162.41]: DATA (sendmail) >root 68330 8.0 1.1 23432 5528 ?? R 10:43AM 5:41.33 sendmail: >k5J0hOAk068330 mx01.globalcenter.net.au [203.89.192.34]: DATA (sendmail) >root 69364 8.0 1.1 23432 5504 ?? R 10:59AM 3:54.45 sendmail: >k5J0xmg6069364 omta05ps.mx.bigpond.com [144.140.83.195]: DATA (sendmail) >root 70522 8.0 1.1 23448 5544 ?? R 11:11AM 2:47.79 sendmail: >k5J1BY7Y070522 mx01.globalcenter.net.au [203.89.192.34]: DATA (sendmail) >root 66302 8.0 1.1 23392 5472 ?? R 10:18AM 8:40.20 sendmail: >k5J0If8t066302 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) >smmsp 91279 8.0 0.7 12224 3832 ?? Rs 4:01AM 60:20.92 sendmail: >Queue runner@00:10:00 for /var/spool/clientmqueue (sendmail) >root 16850 8.0 1.1 23432 5528 ?? R 4:30AM 51:34.91 sendmail: >k5IIUaWm016850 [201.150.67.51]: DATA (sendmail) >root 51654 8.0 1.1 23392 5472 ?? R 9:37AM 16:44.52 sendmail: >k5INbbYo051654 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) >root 91276 0.0 1.0 22928 5032 ?? Ss 4:01AM 0:03.05 sendmail: >rejecting connections on daemon MSA: load average: 12 (sendmail) > >I have rebuilt the world and kernel to see if the resolves my issue, but >alas no luck. > >Hopefully someone will be able to point be in the right direction. > >Regards, > >Travis > >_______________________________________________ >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 Jun 19 16:20: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 400F016A47E; Mon, 19 Jun 2006 16:20:42 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D9EA43D5E; Mon, 19 Jun 2006 16:20:38 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [10.10.3.185] ([69.15.205.254]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k5JGKGAY084368; Mon, 19 Jun 2006 10:20:22 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <4496CEBB.4020200@samsco.org> Date: Mon, 19 Jun 2006 10:20:11 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Eric Anderson References: <449606B8.5080106@centtech.com> In-Reply-To: <449606B8.5080106@centtech.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=3.8 tests=none autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: freebsd-fs@freebsd.org, Ensel Sharon , freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not ... RESOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 16:20:42 -0000 Eric Anderson wrote: > Ensel Sharon wrote: > >> >> On Mon, 19 Jun 2006, Jahilliya wrote: >> >>>> Ok, aac is in the dmesg. >>>> >>>> I can see both 2820sa cards in the dmesg, and I see no errors, etc. - >>>> there are just no drives listed in dmesg. >>>> >>>> My setup is 8 500 Gb drives in a single raid-6 array, size ~2.8TB. Any >>>> problems with that ? Perhaps sysinstall cannot deal with a >2TB drive >>>> ? There are no other drives in the system besides the single 2.8TB >>>> raid 6 >>>> array ... >>>> >>> Have you got any other drives you can attach to the raid? >>> >>> If so, disconnect the 8 drives connected, connect up a couple that are >>> not part of the raid and configure them as a simple raid 1 and see if >>> the installers sees that raid. Or try any combination in drives to >>> bring the raid size down below 2TB (I'm sure this limitation has been >>> fixed.) >> >> >> >> Ok, the answer is that it has not been fixed. >> >> 6.1 sysinstall does in fact see both 2820sa controllers, and when I >> put in >> a single 160GB sata drive, it does see that single drive and I can >> install >> onto it, etc. >> >> Sysinstall does _not_ see my 2.7TB raid6 array. I suspect that if it >> were >> smaller than 2TB, it would see it correctly. >> >> I have a number of options with which to deal with this, all of which >> involve either wasting money or wasting disk space. Fantastic. > > > Right - FreeBSD doesn't recognize >2TB LUNs. Wrong on several counts. First, the AAC driver does not present arrays to the system as SCSI LUNs. The traditional 2TB limit with 12 byte CDB issue simply doesn't exist with this driver. Second, the FreeBSD SCSI layer knows how to issue 16 byte CDBs to access >2TB, assuming that the target understands the 16-byte protocol. So no, there is no 2TB limit inherent to FreeBSD. The only limit is with individual drivers and with hardware. Scott From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 16:22: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 4642216A47D for ; Mon, 19 Jun 2006 16:22:44 +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 6E5F843D5F for ; Mon, 19 Jun 2006 16:22:37 +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 1FsMWK-0004YG-92; Mon, 19 Jun 2006 10:22:36 -0600 In-Reply-To: <0cab01c693bb$22d8d180$37cba1cd@emerytelcom.com> References: <004b01c691eb$b3bf0420$0201a8c0@aldebaran> <449525A8.2060403@crc.u-strasbg.fr> <0c3301c693b5$25dcf880$37cba1cd@emerytelcom.com> <4496C913.4030101@dial.pipex.com> <0cab01c693bb$22d8d180$37cba1cd@emerytelcom.com> Mime-Version: 1.0 (Apple Message framework v750) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Mon, 19 Jun 2006 10:22:35 -0600 To: Elliot Finley X-Mailer: Apple Mail (2.750) 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 Cc: FreeBSD-Questions Questions Subject: Re: monitoring raid arrays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 16:22:44 -0000 On Jun 19, 2006, at 10:12 AM, Elliot Finley wrote: >> Port: aaccli-1.0 >> Path: /usr/ports/sysutils/aaccli >> Info: Adaptec SCSI RAID administration tool >> Maint: bms@FreeBSD.org >> B-deps: >> R-deps: >> WWW: http://support.dell.com/ >> >> Never tried it but it looks like your best bet. > > Yes, I saw this too. Doesn't work on 6.x though because of the > MAKEDEV > requirement. I am not running the Dell version but the "actual" generic adaptec Linux version with the Linux compat stuff installed and it works fine with 6.0. You should be able to Google and see what people did to make it work. And the same thing probably? should work with the Dell version? Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 16:29: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 DCF4316A474; Mon, 19 Jun 2006 16:29:55 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 009F243D72; Mon, 19 Jun 2006 16:29:25 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [10.10.3.185] ([69.15.205.254]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k5JGTHGU084489; Mon, 19 Jun 2006 10:29:23 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <4496D0D8.8040705@samsco.org> Date: Mon, 19 Jun 2006 10:29:12 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060206 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ensel Sharon References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=0.0 required=3.8 tests=none autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: freebsd-fs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not allowing 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: Mon, 19 Jun 2006 16:29:56 -0000 Ensel Sharon wrote: > I did all my due diligence, I contacted freebsd-fs and _made sure_ that > even though the 2820sa is not listed by name in the HCL, that I could take > a 6.1-RELEASE cd and install freebsd on a 2820sa. > > I was _assured_ that these cards are supported in 6.1-RELEASE, that all is > well, and I could install and that was that. > No, you were not assured, at least not by when we discussed this last week. I told you that I personally did not guarantee that it worked, only that I had heard reports that it did. You have two variables here. One is that it's an array that is larger than what the aac driver has supported in the past. Second is that it's RAID-6. Both of these variables should be handled by the aac driver update that happened last year, but again, I couldn't validate it, so I can only go with the reports of others. As others suggested, you need to experiment with simplier configurations. This will help us identify the cause and hopefully implement a fix. No one is asking you to throw away money or resources. Since you've already done the simple test with a single drive, could you do the following two tests: 1. RAID-5, full size (whatever >2TB value you were talking about). 2. RAID-6, <2TB. From there, I'll figure out what needs to be done to get it fully working for you. Scott From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 16: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 D83D316A47D for ; Mon, 19 Jun 2006 16:33:28 +0000 (UTC) (envelope-from doug@safeport.com) Received: from pemaquid.safeport.com (pemaquid.safeport.com [209.31.154.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ACC943D66 for ; Mon, 19 Jun 2006 16:33:15 +0000 (GMT) (envelope-from doug@safeport.com) Received: from localhost (localhost [127.0.0.1]) by pemaquid.safeport.com (8.13.4/8.12.11) with ESMTP id k5JGXDv4019441 for ; Mon, 19 Jun 2006 12:33:13 -0400 (EDT) (envelope-from doug@safeport.com) Date: Mon, 19 Jun 2006 12:33:13 -0400 (EDT) From: doug@safeport.com To: freebsd-questions@FreeBSD.ORG Message-ID: <20060619110513.P14403@pemaquid.safeport.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Subject: suspend/resume 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: Mon, 19 Jun 2006 16:33:28 -0000 Is this the correct formum for an Xorg question? None the Xorg project lists seem to be the equivalent of the XFree86 user's list. I have a thinkpad T42p running 6.1 cvsup'd to 6/17. Without X the S1 and S3 states work perfectly. I left the system in an S3 suspend for about 3 hours with virtually zero battery drain. Great work by the acpi team. The video is a Raedon ATI so I am using the ati driver. Doing an S3 suspend gets the black screen lockup upon resuming described many times on this list. Commenting out the dri module, the resume works, but the bottom half of the KDE desktop background is not restored. KDE control panel can be used to to correct this. I use the lid notify to issue an xrefresh command. This shows (I think) the data in the scrren buffer is corrupted. This is clearly an bug in the ati driver which has been reported by linux users 1000s of times. ATI seems to think they support Linux so maybe something will happen. My last question: is there another X command that would cause X to think it had lost the background data or a way to automatically have KDE refresh the desktop background? I have tried using a xrefresh command to restore the screen. _____ Douglas Denault http://www.safeport.com doug@safeport.com Voice: 301-469-8766 Fax: 301-469-0601 From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 16:41: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 B1FB216A47A; Mon, 19 Jun 2006 16:41:36 +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 3B78443D46; Mon, 19 Jun 2006 16:41:36 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from stat.sem.ipt.ru ([192.168.12.1] helo=srv.sem.ipt.ru) by mail.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1FsMof-000JaG-5N; Mon, 19 Jun 2006 20:41:33 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1FsMpy-0004KM-Ez; Mon, 19 Jun 2006 20:42:54 +0400 To: Adi Pircalabu References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> From: Boris Samorodov Date: Mon, 19 Jun 2006 20:42:54 +0400 In-Reply-To: <20060619191542.614d03ad@apircalabu.dsd.ro> (Adi Pircalabu's message of "Mon, 19 Jun 2006 19:15:42 +0300") Message-ID: <61855713@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: Jeff Molofee , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 16:41:36 -0000 On Mon, 19 Jun 2006 19:15:42 +0300 Adi Pircalabu wrote: > (Really cc-ed to freebsd-ports@freebsd.org and Boris Samodorov a.k.a > bsam@ipt.ru) > On Mon, 19 Jun 2006 18:41:10 +0300 Adi Pircalabu wrote: > > On Sun, 18 Jun 2006 19:43:16 -0600 Jeff Molofee wrote: > > > > > After upgrading to linux_base-fc4, I've noticed a lot of > > > applications and games that will no longer run. One of the games is > > > HoH. I receive the following error when trying to run it... does > > > anyone know how to fix this? > > > > > > ./HoH: error while loading shared libraries: > > > libstdc++-libc6.2-2.so.3: cannot open shared object file: No such > > > file or directory > > > > Apparently that application needs (yet another?) compatibility Linux > > libraries, because it was built with g++-2.96 and linked against > > libstdc++-libc6.2-2.so.3. > > Feel free to send a problem report for this so it won't get lost, > > linux_base-fc4 maintainers should take a look at it and update the > > port. > Jeff, I've attached a patch for linux_base-fc4, can you please test it > and see if it fixes the dependency problem? Adi, you did the right thing -- that library is missing at the port. There are two hints. 1. The plist file is not full (one llibrary missing). I'd recommend you to test the patches (on probably fresh machine). Then on deinstalling you'll notice those files that remain undeletted. You may consider reading http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/ and http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-testing.html to create a good (i.e. ready-to-commit) patches. 2. To create a good distinfo file for a linux port try to use "make PACKAGE_BUILDING=YES makesum". There are may source files (under GPL) which we must (at least) have while building linux (GPL) ports. PS. I've already sent Jeff a patch and he gave me a successful feedback. I hope this patch will be committed soon. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 17:08: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 D6F7316A479 for ; Mon, 19 Jun 2006 17:08:59 +0000 (UTC) (envelope-from luchezar.petkov@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 7702943D4C for ; Mon, 19 Jun 2006 17:08:58 +0000 (GMT) (envelope-from luchezar.petkov@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so927534uge for ; Mon, 19 Jun 2006 10:08: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; b=t+AT2ncSboqVQxJAr4/E3oOQ98Ul509K7FQ77UKj0GopOlxPCEWx9CYLoDLd8zUNjsucnlIu7xasE8tVPTIyFGJJgpkVmk7E+wOdxYGmuMg7yYHH/fj62VuobJJ8z24/NzODh6aJxqUqOdsa/6sTvpwKEDqQv9SgQKY0ZRFZKHs= Received: by 10.78.26.9 with SMTP id 9mr2177941huz; Mon, 19 Jun 2006 10:08:56 -0700 (PDT) Received: by 10.78.48.7 with HTTP; Mon, 19 Jun 2006 10:08:55 -0700 (PDT) Message-ID: <766a5a9e0606191008m30ed65daj6800a6c0c3f8c26a@mail.gmail.com> Date: Mon, 19 Jun 2006 20:08:55 +0300 From: "Luchezar Petkov" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Autotools 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, 19 Jun 2006 17:09:00 -0000 From: Luchezar Petkov To: FreeBSD-Questions Cc: Bcc: Subject: Autotools problems. Reply-To: Hi, list. I'm trying to install Enlightenment DR17 from CVS, but I have some problems. I've tryed with the Configgen utility (devel/configgen) but I still have problems. The strange is, that some of the libraries are compilling fine, and some aren't. And no, the code is NOT broken. Be sure. Here is some output. ---- EVAS (using Configgen): ---- ~/src/e/e17/libs/evas ] configgen.sh ===> Running aclocal... /usr/local/gnu-autotools/share/aclocal/audiofile.m4:12: warning: underquoted definition of AM_PATH_AUDIOFILE run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/local/gnu-autotools/share/aclocal/ao.m4:9: warning: underquoted definition of XIPH_PATH_AO /usr/local/share/aclocal/speex.m4:10: warning: underquoted definition of XIPH_PATH_SPEEX /usr/local/share/aclocal/linc.m4:1: warning: underquoted definition of AM_PATH_LINC /usr/local/share/aclocal/libmikmod.m4:11: warning: underquoted definition of AM_PATH_LIBMIKMOD /usr/local/share/aclocal/libfame.m4:6: warning: underquoted definition of AM_PATH_LIBFAME /usr/local/share/aclocal/glib.m4:8: warning: underquoted definition of AM_PATH_GLIB /usr/local/share/aclocal/audiofile.m4:12: warning: underquoted definition of AM_PATH_AUDIOFILE /usr/local/share/aclocal/ao.m4:9: warning: underquoted definition of XIPH_PATH_AO /usr/local/share/aclocal/aalib.m4:12: warning: underquoted definition of AM_PATH_AALIB /usr/X11R6/share/aclocal/xmms.m4:17: warning: underquoted definition of XMMS_TEST_VERSION /usr/X11R6/share/aclocal/xmms.m4:62: warning: underquoted definition of AM_PATH_XMMS /usr/X11R6/share/aclocal/gtk.m4:7: warning: underquoted definition of AM_PATH_GTK ===> Running autoheader... ===> Running libtoolize... ===> Running automake... ===> Running autoconf... configure.in:118: error: possibly undefined macro: AC_PATH_GENERIC If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.in:120: error: possibly undefined macro: AC_MSG_ERROR ===> Configure script created successfully ~/src/e/e17/libs/evas ] ./configure [... normal ./configure-ing ...] [...and.. BANG!] checking for working alloca.h... no checking for alloca... yes ./configure.lineno: 22121: Syntax error: word unexpected (expecting ")") ------------------------------------- EVAS (Using ./autogen.sh) It's fine! But... why isn't it working with Configgen? It worked as a charm a month ago! ----------------- ETK. Using Configgen. -------- ~/src/e/e17/proto/etk ] configgen.sh ===> Running aclocal... /usr/local/gnu-autotools/share/aclocal/audiofile.m4:12: warning: underquoted definition of AM_PATH_AUDIOFILE run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/local/gnu-autotools/share/aclocal/ao.m4:9: warning: underquoted definition of XIPH_PATH_AO /usr/local/share/aclocal/speex.m4:10: warning: underquoted definition of XIPH_PATH_SPEEX /usr/local/share/aclocal/linc.m4:1: warning: underquoted definition of AM_PATH_LINC /usr/local/share/aclocal/libmikmod.m4:11: warning: underquoted definition of AM_PATH_LIBMIKMOD /usr/local/share/aclocal/libfame.m4:6: warning: underquoted definition of AM_PATH_LIBFAME /usr/local/share/aclocal/glib.m4:8: warning: underquoted definition of AM_PATH_GLIB /usr/local/share/aclocal/audiofile.m4:12: warning: underquoted definition of AM_PATH_AUDIOFILE /usr/local/share/aclocal/ao.m4:9: warning: underquoted definition of XIPH_PATH_AO /usr/local/share/aclocal/aalib.m4:12: warning: underquoted definition of AM_PATH_AALIB /usr/X11R6/share/aclocal/xmms.m4:17: warning: underquoted definition of XMMS_TEST_VERSION /usr/X11R6/share/aclocal/xmms.m4:62: warning: underquoted definition of AM_PATH_XMMS /usr/X11R6/share/aclocal/gtk.m4:7: warning: underquoted definition of AM_PATH_GTK ===> Running autoheader... ===> Running libtoolize... ===> Running automake... Makefile.am:3: `intl' should not be in SUBDIRS when AM_GNU_GETTEXT([external]) is used ===> Running autoconf... configure.in:114: error: possibly undefined macro: AC_PATH_GENERIC If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.in:128: error: possibly undefined macro: AC_MSG_ERROR ===> Configure script created successfully ~/src/e/e17/proto/etk ] ./configure [normal ./configure-ing] checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes function: not found ./configure.lineno: arithmetic expression: syntax error: " * 100 " -- WHAT THE HELL?! ------------ ETK. Using ./autogen.sh ------------ ~/src/e/e17/proto/etk ] ./autogen.sh Running aclocal... /usr/local/gnu-autotools/share/aclocal/audiofile.m4:12: warning: underquoted definition of AM_PATH_AUDIOFILE run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/local/gnu-autotools/share/aclocal/ao.m4:9: warning: underquoted definition of XIPH_PATH_AO Running autoheader... Running autoconf... Running libtoolize... Running automake... Makefile.am:3: `intl' should not be in SUBDIRS when AM_GNU_GETTEXT([external]) is used Generating gettext etk.pot template ./configure :: the same thing (function: not found ./configure.lineno: arithmetic expression: syntax error: " * 100 ") Please, help. --- Luchezar P. Petkov From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 17:11: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 C593B16A479 for ; Mon, 19 Jun 2006 17:11:03 +0000 (UTC) (envelope-from forrie@forrie.com) Received: from forrie.com (c-24-62-224-60.hsd1.nh.comcast.net [24.62.224.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDC3543D68 for ; Mon, 19 Jun 2006 17:11:02 +0000 (GMT) (envelope-from forrie@forrie.com) Received: from [192.168.230.27] (spk-gw.online-buddies.com [66.92.69.182]) (authenticated bits=0) by forrie.com (8.13.6/8.13.6) with ESMTP id k5JHBdHD063590 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 19 Jun 2006 13:11:44 -0400 (EDT) (envelope-from forrie@forrie.com) Message-ID: <4496DAAE.8@forrie.com> Date: Mon, 19 Jun 2006 13:11:10 -0400 From: Forrest Aldrich User-Agent: Thunderbird 1.5.0.4 (Windows/20060612) 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: ClamAV 0.88.2/1549/Sat Jun 17 18:20:39 2006 on mail.forrie.com X-Virus-Status: Clean Subject: Bootup/netconfig oddity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 17:11:03 -0000 I have a freshly-built (cvsup'd today) FreeBSD_6.1 system which fails to set the default router upon boot. I have tried two routers, both on the same /24 segment... "network unreachable". These were set using the "defaultrouter=xxx.xx.xxx.xx" in /etc/rc.conf. However... if I manually use "dhclient em0", it works. I wonder if I'm hitting a bug, or ... _F From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 17:23: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 CFF2F16A47A for ; Mon, 19 Jun 2006 17:23:07 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FF5543D46 for ; Mon, 19 Jun 2006 17:23:05 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [192.168.2.2] ([69.27.149.254]) by ezekiel.daleco.biz (8.13.4/8.13.1) with ESMTP id k5JHLv42000314; Mon, 19 Jun 2006 12:22:17 -0500 (CDT) (envelope-from kdk@daleco.biz) Message-ID: <4496DD2A.3020409@daleco.biz> Date: Mon, 19 Jun 2006 12:21:46 -0500 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.0.2) Gecko/20060509 SeaMonkey/1.0.1 MIME-Version: 1.0 To: "M. Parsons" References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: ed0 and xl0 watchdog/timeout 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: Mon, 19 Jun 2006 17:23:07 -0000 M. Parsons wrote: >> From /var/log/messages: > > Jun 19 10:43:35 freebsd kernel: ed0: device timeout > Jun 19 10:43:39 freebsd last message repeated 2 times > Jun 19 10:43:41 freebsd kernel: xl0: watchdog timeout > Jun 19 10:43:41 freebsd kernel: ed0: device timeout > Jun 19 10:43:41 freebsd kernel: xl0: link state changed to DOWN > Jun 19 10:43:43 freebsd kernel: ed0: device timeout > Jun 19 10:43:43 freebsd kernel: xl0: link state changed to UP > Jun 19 10:43:45 freebsd kernel: ed0: device timeout > Jun 19 10:43:48 freebsd kernel: xl0: watchdog timeout > Jun 19 10:43:48 freebsd kernel: ed0: device timeout > Jun 19 10:43:48 freebsd kernel: xl0: link state changed to DOWN > > dmesg says: (minus the mac addys which Ive removed) > > xl0: <3Com 3c905B-TX Fast Etherlink XL> port 0xec80-0xecff mem > 0xfebfff80-0xfebfffff irq 11 at device 11.0 on pci0 > miibus0: on xl0 > > ed0: port 0xef40-0xef5f irq 10 at device 12.0 on pci0 > ed0: type RTL8029 (16 bit) > > > ed0 is PCI card connected to a pppoe isp > > xl0 is PCI connected to another computer via crossover/natted > > The above happens if I use max upstream (60 KiloBytes/sec) on the pppoe > connection for a long amount of time (>6 hours). Otherwise, everything > works fine. > > Rebooting the machine is the only solution. Killing pppd and restarting > does not obtain an ip from the isp. And restarting xl0 also does not bring > back the lan connection. > > 6.0-Release is the version Im using. > > Any ideas? Besides not using any upstream. :) IANAE, but maybe the answer is to update? 6.0-RELEASE is pretty much officially *old*, ;-) and it's quite likely that the devices will work better with the newer driver code. IIRC, there were lots of messages with such issues "back in the day", and I don't see as many anymore --- this one notwithstanding, of course. Otherwise, I've no clue. HTH, Kevin Kinsey -- Q: What is orange and goes click, click? A: A ball point carrot. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 17:39: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 4EE2516A47B for ; Mon, 19 Jun 2006 17:39:45 +0000 (UTC) (envelope-from Philippe.Pegon@crc.u-strasbg.fr) Received: from mailhost.u-strasbg.fr (mailhost.u-strasbg.fr [130.79.200.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E10A43D67 for ; Mon, 19 Jun 2006 17:39:34 +0000 (GMT) (envelope-from Philippe.Pegon@crc.u-strasbg.fr) Received: from baal.u-strasbg.fr (baal.u-strasbg.fr [IPv6:2001:660:2402::41]) by mailhost.u-strasbg.fr (8.13.6/jtpda-5.5pre1) with ESMTP id k5JHdUvX062409 ; Mon, 19 Jun 2006 19:39:30 +0200 (CEST) Received: from [IPv6:::1] (crc.u-strasbg.fr [IPv6:2001:660:2402:1001::1]) by baal.u-strasbg.fr (8.13.7/jtpda-5.5pre1) with ESMTP id k5JHdTeg019147 ; Mon, 19 Jun 2006 19:39:29 +0200 (CEST) Message-ID: <4496E14D.2010604@crc.u-strasbg.fr> Date: Mon, 19 Jun 2006 19:39:25 +0200 From: Philippe Pegon User-Agent: Thunderbird 1.5.0.4 (X11/20060605) MIME-Version: 1.0 To: Elliot Finley References: <004b01c691eb$b3bf0420$0201a8c0@aldebaran> <449525A8.2060403@crc.u-strasbg.fr> <0c3301c693b5$25dcf880$37cba1cd@emerytelcom.com> In-Reply-To: <0c3301c693b5$25dcf880$37cba1cd@emerytelcom.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (mailhost.u-strasbg.fr [IPv6:2001:660:2402::153]); Mon, 19 Jun 2006 19:39:30 +0200 (CEST) X-Virus-Scanned: ClamAV 0.88.2/1550/Mon Jun 19 19:01:35 2006 on mr3.u-strasbg.fr X-Virus-Status: Clean X-Spam-Status: No, score=-0.0 required=5.0 tests=NO_RELAYS autolearn=disabled version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on mr3.u-strasbg.fr Cc: Thierry Lacoste , freebsd-questions@freebsd.org Subject: Re: monitoring raid arrays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 17:39:45 -0000 Elliot Finley wrote: > How about monitoring the array on a Dell PowerEdge 2650? > relevant dmesg output: > > FreeBSD 6.0-RELEASE-p2 #0: Mon Jan 16 12:27:14 MST 2006 > aacch0: port 0xcc00-0xccff mem 0xfccff000-0xfccfffff irq > 30 at device 6.0 on pci5 > aacch1: port 0xc800-0xc8ff mem 0xfccfe000-0xfccfefff irq > 31 at device 6.1 on pci5 > aac0: mem 0xf0000000-0xf7ffffff irq 30 at device 8.1 on > pci4 > aac0: [FAST] > aac0: Adaptec Raid Controller 2.0.0-1 I don't know for aac, I don't use this controller. Have you tried with camcontrol or maybe with the ports /usr/ports/sysutils/aaccli ? -- Philippe Pegon From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 18:11: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 6F07D16A474 for ; Mon, 19 Jun 2006 18:11:26 +0000 (UTC) (envelope-from hakmi@rogers.com) Received: from smtp105.rog.mail.re2.yahoo.com (smtp105.rog.mail.re2.yahoo.com [206.190.36.83]) by mx1.FreeBSD.org (Postfix) with SMTP id D416B43D58 for ; Mon, 19 Jun 2006 18:11:25 +0000 (GMT) (envelope-from hakmi@rogers.com) Received: (qmail 55891 invoked from network); 19 Jun 2006 18:11:25 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:From:To:Subject:Date:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Mailer:X-MimeOLE:In-Reply-To:thread-index; b=WW5omqmr2qiRdK7wb+Nz0/uNSF9xHV7RyY3uQsSkXFIorYk8Mu+ZYEWH+uhapBjBFQ8D+c1WuHgkciy9mzP6v4iNQrF/G79btq0t1eccOjvO2pJ4IMeKgH2fuITOB2xfHdNTJ7q4+z7JvqWsb2pTvjwQOL/mqSHjuBCjpBNQhg4= ; Received: from unknown (HELO tamouh) (hakmi@rogers.com@70.27.160.99 with login) by smtp105.rog.mail.re2.yahoo.com with SMTP; 19 Jun 2006 18:11:24 -0000 From: "Tamouh H." To: "'FreeBSD-Questions Questions'" Date: Mon, 19 Jun 2006 14:11:45 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 In-Reply-To: thread-index: AcaTvVwavYIetvoeSFCmqo8kSEMFXAADkYRw Message-Id: <20060619181125.D416B43D58@mx1.FreeBSD.org> Subject: RE: monitoring raid arrays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 18:11:26 -0000 =20 >=20 >=20 > On Jun 19, 2006, at 10:12 AM, Elliot Finley wrote: >=20 > >> Port: aaccli-1.0 > >> Path: /usr/ports/sysutils/aaccli > >> Info: Adaptec SCSI RAID administration tool > >> Maint: bms@FreeBSD.org > >> B-deps: > >> R-deps: > >> WWW: http://support.dell.com/ > >> > >> Never tried it but it looks like your best bet. > > > > Yes, I saw this too. Doesn't work on 6.x though because of the=20 > > MAKEDEV requirement. >=20 > I am not running the Dell version but the "actual" generic=20 > adaptec Linux version with the Linux compat stuff installed=20 > and it works fine with 6.0. You should be able to Google and=20 > see what people did to make it work. And the same thing=20 > probably? should work with the Dell version? >=20 > Chad >=20 The aaccli works only with certain Adaptec firmware. If the adaptec card = has the newest firmwares (I believe the ones in April + ), the aaccli = will not work. Official Adaptec stand as it appears that they don't have storage = management on FreeBSD. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 18:18: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 9DA5F16A474 for ; Mon, 19 Jun 2006 18:18:06 +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 5FC7F43D48 for ; Mon, 19 Jun 2006 18:18:06 +0000 (GMT) (envelope-from bill@wiliweld.com) Received: from liam.billschoolcraft.com ([71.141.255.238]) by typhoon.he.net for ; Mon, 19 Jun 2006 11:17:56 -0700 Date: Mon, 19 Jun 2006 11:17:56 -0700 (PDT) From: Bill Schoolcraft X-X-Sender: bill@liam.billschoolcraft.com 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: "linksysmon" Linksys Router logging util? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 18:18:06 -0000 Hello Family, I spotted a program called "linksysmon" and was wondering if there is anything in "ports" that is similar? It's for accessing the logs of a Linksys router. Thanks -- Bill Schoolcraft || http://wiliweld.com <> " Life is not measured by the number of breaths you take, but by the moments that take your breath away!" From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 18:35: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 D558916A474 for ; Mon, 19 Jun 2006 18:35:52 +0000 (UTC) (envelope-from lcapps@cteresource.org) Received: from gershwin.cteresource.org (mail.cteresource.org [206.136.187.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6033443D60 for ; Mon, 19 Jun 2006 18:35:47 +0000 (GMT) (envelope-from lcapps@cteresource.org) Received: by gershwin.cteresource.org (Postfix, from userid 1003) id 01EF31CC91; Mon, 19 Jun 2006 14:32:04 -0400 (EDT) Received: from [192.168.1.130] (hank.cteresource.org [192.168.1.130]) by gershwin.cteresource.org (Postfix) with ESMTP id E16031CC4C for ; Mon, 19 Jun 2006 14:32:03 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v750) In-Reply-To: <20060619112844.b9b3b831.wmoran@collaborativefusion.com> References: <44960EDC.2020906@mn.rr.com> <4496B716.7080505@webanoide.org> <20060619111330.ef3e2224.wmoran@collaborativefusion.com> <20060619112844.b9b3b831.wmoran@collaborativefusion.com> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <4336FAF4-0605-47D3-8B50-AB3645A6728D@cteresource.org> Content-Transfer-Encoding: 7bit From: Lee Capps Date: Mon, 19 Jun 2006 14:35:11 -0400 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.750) X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.0.2 Subject: Re: pkgdb.db locked X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 18:35:52 -0000 On Jun 19, 2006, at 11:28 AM, Bill Moran wrote: > In response to Bill Moran : > >> >>> Lewis McLouth wrote: >> >> [snip] >> >>>> Also, if pkgdb.db was deleted, how do I rebuild the pkgdb.db? >>>> (pkgdb -f >>>> does not rebuild pkgdb.db, I just checked) >> >> portupgrade -an >> >> In order for portupgrade to analyze your packages, it needs to >> update the >> pkgdb. It will create it if it doesn't exist. > > Nevermind. That's not working. > > pkgdb -fu is failing as well. Shouldn't it generate the pkgdb if > it doesn't > exist? I had the same trouble this morning. Apparently the 'portupgrade' port was broken this morning. a cvsup and desintall and reinstall of portupgrade worked for me. This will downgrade the port to the last stable version. Lee --- Lee Capps Technology Specialist lcapps@cteresource.org From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 20:17: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 8EE2116A47A for ; Mon, 19 Jun 2006 20:17:15 +0000 (UTC) (envelope-from juancr@dsa.es) Received: from llca513-a.servidoresdns.net (llca513-a.servidoresdns.net [217.76.128.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21A2543D48 for ; Mon, 19 Jun 2006 20:17:14 +0000 (GMT) (envelope-from juancr@dsa.es) Received: from mail.dsa.es (localhost.localdomain [127.0.0.1]) by llca513-a.servidoresdns.net (Postfix) with SMTP id 3842E9ED096 for ; Mon, 19 Jun 2006 22:17:13 +0200 (CEST) Received: from 84.18.2.11 (SquirrelMail authenticated user faf352c) by llca513-a.servidoresdns.net with HTTP; Mon, 19 Jun 2006 20:17:13 -0000 (GMT) Message-ID: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> Date: Mon, 19 Jun 2006 20:17:13 -0000 (GMT) From: "DSA - JCR" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.2-0.1.7.x MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal Subject: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 20:17:15 -0000 Hi all I am mounting a NFS server (FreeBSD 6.1 "amd64") for a MS Windows Network for a customer and I see that I can not see the NFS server from windows boxes. Must I install Samba for that? or anything in the MS Windows boxes? I thougth that Windows understand NFS but seems to be not. best regards and thanks in advance Juan Coruña Desarrollo de Software Atlantico From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 20:32: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 AC6FC16A481 for ; Mon, 19 Jun 2006 20:32:03 +0000 (UTC) (envelope-from speshak@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 D3CCF43D45 for ; Mon, 19 Jun 2006 20:32:02 +0000 (GMT) (envelope-from speshak@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1011353uge for ; Mon, 19 Jun 2006 13:32:01 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=KZT15glO9VuHJjJnRNLHe7te6oowcPx7c5vOIzM+6DnpMIPu43QIVMueNmidlYyM8gJk5bmWyYpOkYlQeCjeWu0ynq8ijaCMGEwGbm/YfmNfsjIt+JYTM58sp1KztIYwVWmr3IVOKerKALwEazh2Liac2j7q6/2ejeYstKmeTdg= Received: by 10.66.252.4 with SMTP id z4mr5891373ugh; Mon, 19 Jun 2006 13:32:00 -0700 (PDT) Received: by 10.66.222.15 with HTTP; Mon, 19 Jun 2006 13:32:00 -0700 (PDT) Message-ID: <9aa9fc180606191332l377fd7eak5f6b849e80aa8772@mail.gmail.com> Date: Mon, 19 Jun 2006 15:32:00 -0500 From: "Scott Peshak" Sender: speshak@gmail.com 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-Google-Sender-Auth: 69326d02c17410c6 Subject: 5.5-RELEASE gone from mirrors for alpha arch? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 20:32:03 -0000 Hi all, I was working on installing 5.5-RELEASE on an alpha box i have this weekend (I can't use 6.x, need arla afs support) but it seems that all of the packages & install sets are no longer on the mirrors, although the ISOs are. What happened to the binaries? (not really a big deal to me now, i just rebuild world on the box to get it to 5.5, but still it is very confusing to be able to get a 5.5 boot iso and then not be able to use it to get a 5.5 release installed.) Scott From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 20:32: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 91DCE16A4A0 for ; Mon, 19 Jun 2006 20:32:15 +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 4521043D48 for ; Mon, 19 Jun 2006 20:32:15 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 29401 invoked from network); 19 Jun 2006 20:32:14 -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 ; 19 Jun 2006 20:32:14 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 68B4228449; Mon, 19 Jun 2006 16:32:14 -0400 (EDT) To: Warren Liddell References: <200606192045.04241.shinjii@virusinfo.rdksupportinc.com> From: Lowell Gilbert Date: Mon, 19 Jun 2006 16:32:14 -0400 In-Reply-To: <200606192045.04241.shinjii@virusinfo.rdksupportinc.com> (Warren Liddell's message of "Mon, 19 Jun 2006 20:45:04 +1000") Message-ID: <4464iw3n01.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: NTOP 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: Mon, 19 Jun 2006 20:32:15 -0000 Warren Liddell writes: > im runnign FreeBSD 6.1-STABLE and each time i start NTOP it keeps looking to > use rl0 which isnt active or used, however sis0 is used, so im wanting to > know how i can tell ntop to use sis0 instead of rl0 ? Did you specify the interface explicitly with the -i parameter? From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 20: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 E0D3916A49A for ; Mon, 19 Jun 2006 20:37:00 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67B3343D45 for ; Mon, 19 Jun 2006 20:36:59 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [192.168.2.2] ([69.27.149.254]) by ezekiel.daleco.biz (8.13.4/8.13.1) with ESMTP id k5JKZJ1S001509; Mon, 19 Jun 2006 15:35:41 -0500 (CDT) (envelope-from kdk@daleco.biz) Message-ID: <44970A7D.3080003@daleco.biz> Date: Mon, 19 Jun 2006 15:35:09 -0500 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.0.2) Gecko/20060509 SeaMonkey/1.0.1 MIME-Version: 1.0 To: DSA - JCR References: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> In-Reply-To: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 20:37:01 -0000 DSA - JCR wrote: > Hi all > > I am mounting a NFS server (FreeBSD 6.1 "amd64") for a MS Windows Network > for a customer and I see that I can not see the NFS server from windows > boxes. > > Must I install Samba for that? or anything in the MS Windows boxes? > I thougth that Windows understand NFS but seems to be not. I'm not sure if you *must* install Samba, but I am not aware of an alternative OTTOMH. Windows speaks SMB by default; anything else would be an "add in". We use Samba successfully at most of our locations. Kevin Kinsey -- Don't try to have the last word -- you might get it. -- Lazarus Long From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 20:43: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 528DD16A484 for ; Mon, 19 Jun 2006 20:43:15 +0000 (UTC) (envelope-from bloodofanubis@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 70C6743D64 for ; Mon, 19 Jun 2006 20:43:13 +0000 (GMT) (envelope-from bloodofanubis@gmail.com) Received: by py-out-1112.google.com with SMTP id c31so1296151pyd for ; Mon, 19 Jun 2006 13:43:12 -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=tkdPlCIhiK48uDQv2zHt3Eocll8r04AGBCsEKlndUuAb8E/XMTLfwG1mSkJiFSIAV1ewI0Kgw2Q3jtfjQcibP+5vp0J+By5gRZfocQxB6gwKyZ1Q/Qu2KIL+k2efE3jenlz6eSV2O27X49QKdALHV7C9Aev/H2hxN9CpWrFzByY= Received: by 10.35.20.14 with SMTP id x14mr8726188pyi; Mon, 19 Jun 2006 13:43:12 -0700 (PDT) Received: by 10.35.105.6 with HTTP; Mon, 19 Jun 2006 13:43:12 -0700 (PDT) Message-ID: <2345a6660606191343p4d303fa1qf4e8a07e9c963e71@mail.gmail.com> Date: Mon, 19 Jun 2006 15:43:12 -0500 From: "Jacob Jennings" 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: make buildworld 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: Mon, 19 Jun 2006 20:43:15 -0000 Hello, I am attempting to update my FreeBSD 6.0 installation's source tree directly after the install. I have cvsup'ed "src-all" and run "make buildworld" in /usr/src. However, this command fails in a different spot each time with a segmentation fault. Once the error message was "Internal compiler error: Segmentation fault: 11" and another time it was "Segmentation fault: (core dumped): Error 139", and I simply cannot find a solution to this on google or freebsd forums. I read that it may be linked to bad memory, but I installed memtest and ran it with no complaints therefrom. What could possibly be the problem? From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 20:48: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 3EFF816A60C for ; Mon, 19 Jun 2006 20:48:58 +0000 (UTC) (envelope-from greenwood.andy@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B21043D5C for ; Mon, 19 Jun 2006 20:48:52 +0000 (GMT) (envelope-from greenwood.andy@gmail.com) Received: by wx-out-0102.google.com with SMTP id i31so871310wxd for ; Mon, 19 Jun 2006 13:48: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=S3a2Iv6mH5AGQVOgOAV7y7IPzXVu/lBXKRJmtVVg05BSekzQzzjHbrFgn00OOfDwxKZhYHjN70x5lCjYUQ0PN9h+jMgNv9xHu1YaSuIjAj+5s3cLQeEgF1x+Mf07UyTiYPQFAqzvUioyJNG0YB7Pkza29krLucTSFVREPyPQ6SE= Received: by 10.70.83.9 with SMTP id g9mr9188975wxb; Mon, 19 Jun 2006 13:48:51 -0700 (PDT) Received: by 10.70.12.3 with HTTP; Mon, 19 Jun 2006 13:48:51 -0700 (PDT) Message-ID: <3ee9ca710606191348h698b925bn491c71996c0a839c@mail.gmail.com> Date: Mon, 19 Jun 2006 16:48:51 -0400 From: "Andy Greenwood" To: "Jacob Jennings" In-Reply-To: <2345a6660606191343p4d303fa1qf4e8a07e9c963e71@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: <2345a6660606191343p4d303fa1qf4e8a07e9c963e71@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: make buildworld 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: Mon, 19 Jun 2006 20:48:58 -0000 memtest is a good start, but isn't definate. I would recommend running memtest86, which you can get at http://www.memtest86.com/, overnight or longer and see if it comes up with anything. I had some wierd problems with compilling and this let me know that one of my sticks was bad. replaced them and everything works like a champ now. On 6/19/06, Jacob Jennings wrote: > Hello, I am attempting to update my FreeBSD 6.0 installation's source > tree directly after the install. I have cvsup'ed "src-all" and run > "make buildworld" in /usr/src. However, this command fails in a > different spot each time with a segmentation fault. Once the error > message was "Internal compiler error: Segmentation fault: 11" and > another time it was "Segmentation fault: (core dumped): Error 139", > and I simply cannot find a solution to this on google or freebsd > forums. I read that it may be linked to bad memory, but I installed > memtest and ran it with no complaints therefrom. What could possibly > be the problem? > _______________________________________________ > 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 Jun 19 20:54: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 8482916A47B for ; Mon, 19 Jun 2006 20:54:45 +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 3158643D45 for ; Mon, 19 Jun 2006 20:54:45 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 16932 invoked from network); 19 Jun 2006 20:54:45 -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 ; 19 Jun 2006 20:54:44 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 5DB4A28449; Mon, 19 Jun 2006 16:54:44 -0400 (EDT) To: "Jacob Jennings" References: <2345a6660606191343p4d303fa1qf4e8a07e9c963e71@mail.gmail.com> From: Lowell Gilbert Date: Mon, 19 Jun 2006 16:54:44 -0400 In-Reply-To: <2345a6660606191343p4d303fa1qf4e8a07e9c963e71@mail.gmail.com> (Jacob Jennings's message of "Mon, 19 Jun 2006 15:43:12 -0500") Message-ID: <44zmg827e3.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: make buildworld 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: Mon, 19 Jun 2006 20:54:45 -0000 "Jacob Jennings" writes: > Hello, I am attempting to update my FreeBSD 6.0 installation's source > tree directly after the install. I have cvsup'ed "src-all" and run > "make buildworld" in /usr/src. However, this command fails in a > different spot each time with a segmentation fault. Once the error > message was "Internal compiler error: Segmentation fault: 11" and > another time it was "Segmentation fault: (core dumped): Error 139", > and I simply cannot find a solution to this on google or freebsd > forums. I read that it may be linked to bad memory, but I installed > memtest and ran it with no complaints therefrom. What could possibly > be the problem? If you try the same compile procedure and get *different* failures each time, it's almost certainly some kind of bad hardware. Memory is the most likely but not the only possibility. See the 'Why do my programs occasionally die with "Signal 11" errors?' entry in the FreeBSD FAQ. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 20:56: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 66CC616A47B for ; Mon, 19 Jun 2006 20:56:51 +0000 (UTC) (envelope-from shawn@guillemette.org) Received: from proofpoint3.metrocast.net (proofpoint3.metrocast.net [65.175.128.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94CF043D6D for ; Mon, 19 Jun 2006 20:56:40 +0000 (GMT) (envelope-from shawn@guillemette.org) Received: from frikenfrak (mc1.metrocast.net [65.175.128.10]) by proofpoint3.metrocast.net (8.13.6/8.13.6) with ESMTP id k5JKucbH027306 for ; Mon, 19 Jun 2006 16:56:39 -0400 From: "Shawn Guillemette" To: Date: Mon, 19 Jun 2006 16:56:39 -0400 Message-ID: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Importance: Normal X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 mlx=0 adultscore=0 adjust=-20 reason=mlx engine=3.1.0-0606150000 definitions=3.0.0-0606190007 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Content filtering X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 20:56:51 -0000 Hello,=20 =20 I have recently been thinking about adding content filtering = to my FreeBSD fire wall at home as the kids are starting to use the = internet more and they are getting older too ;-)=20 =20 =20 I'm running FreeBSD 4.11 RELEASE using IPFW as my firewall. The system = its running on is an old alpha machine. I was wondering if anyone knew of a = port that I could use to filter some web content from my children. I do have = the X86 option as well Just have to reload the OS and start from scratch on another system.=20 =20 Thanks=20 Shawn=20 From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 21:10: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 A843A16A506 for ; Mon, 19 Jun 2006 21:10:53 +0000 (UTC) (envelope-from bds@waywood.co.uk) Received: from lon-mail-4.gradwell.net (lon-mail-4.gradwell.net [193.111.201.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9957043D48 for ; Mon, 19 Jun 2006 21:10:50 +0000 (GMT) (envelope-from bds@waywood.co.uk) Received: from crimson.gradwell.net ([193.111.200.19] helo=www.gradwell.com country=GB) by lon-mail-4.gradwell.net with esmtp (Gradwell gwh-smtpd 1.222) id 449712d6.7b83.73e for freebsd-questions@freebsd.org; Mon, 19 Jun 2006 22:10:46 +0100 (envelope-sender ) Received: from 195.112.6.84 (SquirrelMail authenticated user bds@pop3.waywood.co.uk) by www.gradwell.com with HTTP; Mon, 19 Jun 2006 22:10:54 +0100 (BST) Message-ID: <61652.195.112.6.84.1150751454.squirrel@www.gradwell.com> In-Reply-To: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> References: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> Date: Mon, 19 Jun 2006 22:10:54 +0100 (BST) From: "Barnaby Scott" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.5.1 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 21:10:53 -0000 On Mon, June 19, 2006 9:17 pm, DSA - JCR wrote: > Hi all > > > I am mounting a NFS server (FreeBSD 6.1 "amd64") for a MS Windows Network > for a customer and I see that I can not see the NFS server from windows > boxes. > > Must I install Samba for that? or anything in the MS Windows boxes? > I thougth that Windows understand NFS but seems to be not. > > > > best regards and thanks in advance > > Juan Coruña > Desarrollo de Software Atlantico I've never actually done this, but I read about it because it is something I want to do, at least temporarily, as I migrate from Windows to FreeBSD. (Ironically all the Microsft documentation on the subject assumes you are migrating the other way!) However, I think you need to search Microsoft's site, and look up how to install their 'Client for NFS' (or 'Gateway for NFS' depending on your network) From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 21:15: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 3086216A47A for ; Mon, 19 Jun 2006 21:15:19 +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 C4DD943D55 for ; Mon, 19 Jun 2006 21:15:18 +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 1FsR5Z-000OcF-UE; Mon, 19 Jun 2006 15:15:18 -0600 In-Reply-To: <20060619181125.D416B43D58@mx1.FreeBSD.org> References: <20060619181125.D416B43D58@mx1.FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Mon, 19 Jun 2006 15:15:17 -0600 To: Tamouh H. X-Mailer: Apple Mail (2.750) 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 Cc: 'FreeBSD-Questions Questions' Subject: Re: monitoring raid arrays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 21:15:19 -0000 On Jun 19, 2006, at 12:11 PM, Tamouh H. wrote: > >> >> >> On Jun 19, 2006, at 10:12 AM, Elliot Finley wrote: >> >>>> Port: aaccli-1.0 >>>> Path: /usr/ports/sysutils/aaccli >>>> Info: Adaptec SCSI RAID administration tool >>>> Maint: bms@FreeBSD.org >>>> B-deps: >>>> R-deps: >>>> WWW: http://support.dell.com/ >>>> >>>> Never tried it but it looks like your best bet. >>> >>> Yes, I saw this too. Doesn't work on 6.x though because of the >>> MAKEDEV requirement. >> >> I am not running the Dell version but the "actual" generic >> adaptec Linux version with the Linux compat stuff installed >> and it works fine with 6.0. You should be able to Google and >> see what people did to make it work. And the same thing >> probably? should work with the Dell version? >> >> Chad >> > > The aaccli works only with certain Adaptec firmware. If the adaptec > card has the newest firmwares (I believe the ones in April + ), the > aaccli will not work. > > Official Adaptec stand as it appears that they don't have storage > management on FreeBSD. I use the Linux aaccli in Linux compat mode. Are Adaptec saying that they also don't support Linux? I am not running any FreeBSD native aaccli as it was recommended to me long ago to run the Linux one as it had more capability than the FreeBSD one, which was abandoned it seems. Btw, I updated my 2200S to the latest in May but the latest for this card is from 2005 so maybe it is not late enough. Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 21:36: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 B554F16A47B for ; Mon, 19 Jun 2006 21:36:25 +0000 (UTC) (envelope-from jaj13@web.de) Received: from fmmailgate01.web.de (fmmailgate01.web.de [217.72.192.221]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50CA543D45 for ; Mon, 19 Jun 2006 21:36:25 +0000 (GMT) (envelope-from jaj13@web.de) Received: from smtp08.web.de (fmsmtp08.dlan.cinetic.de [172.20.5.216]) by fmmailgate01.web.de (Postfix) with ESMTP id 826C92D2ED1 for ; Mon, 19 Jun 2006 23:36:24 +0200 (CEST) Received: from [83.99.30.37] (helo=[10.0.0.11]) by smtp08.web.de with esmtp (WEB.DE 4.107 #114) id 1FsRQ0-0003eT-00 for freebsd-questions@freebsd.org; Mon, 19 Jun 2006 23:36:24 +0200 Message-ID: <449718D8.1000704@web.de> Date: Mon, 19 Jun 2006 23:36:24 +0200 From: Jona Joachim User-Agent: Thunderbird 1.5.0.4 (X11/20060607) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> In-Reply-To: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: jaj13@web.de X-Sender: jaj13@web.de Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 21:36:25 -0000 DSA - JCR wrote: > Hi all > > I am mounting a NFS server (FreeBSD 6.1 "amd64") for a MS Windows Network > for a customer and I see that I can not see the NFS server from windows > boxes. > > Must I install Samba for that? or anything in the MS Windows boxes? > I thougth that Windows understand NFS but seems to be not. There is a commercial solution called "Reflection" by WRQ. Reflection is a suite of tools to access Unix services from Windows boxes. http://www.wrq.com/products/reflection/nfs_client/ Best regards Jona From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 22:05: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 F27E616A479 for ; Mon, 19 Jun 2006 22:05:17 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D5E543D45 for ; Mon, 19 Jun 2006 22:05:17 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [192.168.2.2] ([69.27.149.254]) by ezekiel.daleco.biz (8.13.4/8.13.1) with ESMTP id k5JM49ud002046; Mon, 19 Jun 2006 17:04:31 -0500 (CDT) (envelope-from kdk@daleco.biz) Message-ID: <44971F4C.1090606@daleco.biz> Date: Mon, 19 Jun 2006 17:03:56 -0500 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.0.2) Gecko/20060509 SeaMonkey/1.0.1 MIME-Version: 1.0 To: Shawn Guillemette References: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> In-Reply-To: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Content filtering X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 22:05:18 -0000 Shawn Guillemette wrote: > Hello, > I have recently been thinking about adding content filtering to > my FreeBSD fire wall at home as the kids are starting to use the internet > more and they are getting older too ;-) > > > I'm running FreeBSD 4.11 RELEASE using IPFW as my firewall. The system its > running on is an old alpha machine. I was wondering if anyone knew of a port > that I could use to filter some web content from my children. I do have the > X86 option as well Just have to reload the OS and start from scratch on > another system. > The canonical answer is the Squid proxy server (/usr/ports/www/squid). Kevin Kinsey From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 22:06: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 B4B6316A479 for ; Mon, 19 Jun 2006 22:06:48 +0000 (UTC) (envelope-from bill@celestial.com) Received: from mail.mi.celestial.com (hayek.celestial.com [192.136.111.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id D956643D6E for ; Mon, 19 Jun 2006 22:06:41 +0000 (GMT) (envelope-from bill@celestial.com) Received: from localhost (localhost [127.0.0.1]) by mail.mi.celestial.com (Postfix) with ESMTP id D7A60761C6; Mon, 19 Jun 2006 15:06:40 -0700 (PDT) Received: from mail.mi.celestial.com ([127.0.0.1]) by localhost (alexis.mi.celestial.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 01234-02-3; Mon, 19 Jun 2006 15:06:39 -0700 (PDT) Received: by mail.mi.celestial.com (Postfix, from userid 203) id C34CF761BC; Mon, 19 Jun 2006 15:06:39 -0700 (PDT) Date: Mon, 19 Jun 2006 15:06:39 -0700 From: Bill Campbell To: freebsd-questions@freebsd.org Message-ID: <20060619220639.GA4063@alexis.mi.celestial.com> Mail-Followup-To: freebsd-questions@freebsd.org References: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> User-Agent: Mutt/1.4.2.1i X-Virus-Scanned: amavisd-new at mi.celestial.com Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@celestial.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 22:06:48 -0000 On Mon, Jun 19, 2006, DSA - JCR wrote: >Hi all > >I am mounting a NFS server (FreeBSD 6.1 "amd64") for a MS Windows Network >for a customer and I see that I can not see the NFS server from windows >boxes. > >Must I install Samba for that? or anything in the MS Windows boxes? >I thougth that Windows understand NFS but seems to be not. AFAIK Windows requires additional software to access NFS file systems. Samba makes directories available to Windows' native networking so requires no additional software on Windows. Bill -- INTERNET: bill@Celestial.COM Bill Campbell; Celestial Software LLC URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way FAX: (206) 232-9186 Mercer Island, WA 98040-0820; (206) 236-1676 ``People from East Germany have found the West so confusing. It's so much easier when you have only one party.'' -- Linus Torvalde, Linux Expo Canada when asked about confusion over many Linux distributions. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 22:09: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 4046E16A479 for ; Mon, 19 Jun 2006 22:09:15 +0000 (UTC) (envelope-from adam@thegeeklord.com) Received: from spunkymail-a6.dreamhost.com (mailbigip2.dreamhost.com [208.97.132.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id E880D43D48 for ; Mon, 19 Jun 2006 22:09:14 +0000 (GMT) (envelope-from adam@thegeeklord.com) Received: from [10.41.52.57] (fw-ext.alphatech.com [198.112.236.6]) by spunkymail-a6.dreamhost.com (Postfix) with ESMTP id 4994E109F2E for ; Mon, 19 Jun 2006 15:09:12 -0700 (PDT) Message-ID: <44972083.7030009@thegeeklord.com> Date: Mon, 19 Jun 2006 18:09:07 -0400 From: Adam Stroud User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: pkgdb 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: Mon, 19 Jun 2006 22:09:15 -0000 I am having a problem with pkgdb and I am wondering if someone can point me in the right direction. I was trying to update some of my out of date ports with portupgrade and when I get a pkgdb error. Now whenever I try to run any portupgrade command, or even and pkgdb command (like pkgdb -Fu) I get the following error message: [Rebuilding the pkgdb in /var/db/pkg ... can't convert String into Integer: Cannot update the pkgdb!] Anyone have any ideas or links to some information on how to solve this? Thanks A From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 22:21: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 F0A4116A707 for ; Mon, 19 Jun 2006 22:21:31 +0000 (UTC) (envelope-from js.lists@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 649CA43D48 for ; Mon, 19 Jun 2006 22:21:31 +0000 (GMT) (envelope-from js.lists@gmail.com) Received: by wr-out-0506.google.com with SMTP id i28so933989wra for ; Mon, 19 Jun 2006 15:21:30 -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:subject:content-type:content-transfer-encoding; b=KKbJWN+MuQrtL6CiNBBTqqpcZrZqjsicbcDcPOZOA/LSVXjm3w+qGPrkk5ByO0t9lxbl/NNBj7L8T8Kzrm24rr0eUdhB2itvjzu4W/amkg3jT/3byZFp1+6hhSImIobkYh7QhHjAd7NIZJ8hWcUeCho53pzJtLLDf6sRW4hQMdE= Received: by 10.65.216.20 with SMTP id t20mr5280410qbq; Mon, 19 Jun 2006 15:21:30 -0700 (PDT) Received: from ?10.100.59.27? ( [204.176.49.45]) by mx.gmail.com with ESMTP id e18sm2580174qba.2006.06.19.15.21.29; Mon, 19 Jun 2006 15:21:30 -0700 (PDT) Message-ID: <4497235E.9000408@gmail.com> Date: Mon, 19 Jun 2006 15:21:18 -0700 From: Joe User-Agent: Thunderbird 1.5.0.4 (Macintosh/20060530) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Need to mount FFS disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 22:21:32 -0000 How can I mount a filesystem that was originally formated in OpenBSD 3.9? I am running FreeBSD 6.1-Release. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 22: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 0127516A47B for ; Mon, 19 Jun 2006 22:25:37 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B75343D46 for ; Mon, 19 Jun 2006 22:25:36 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from 209-6-203-75.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.203.75]) by smtp01.lnh.mail.rcn.net with ESMTP; 19 Jun 2006 18:27:17 -0400 X-IronPort-AV: i="4.06,153,1149480000"; d="scan'208,217"; a="225083669:sNHT22642146" From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17559.9137.66434.282634@jerusalem.litteratus.org> Date: Mon, 19 Jun 2006 18:22:41 -0400 To: freebsd-questions@freebsd.org In-Reply-To: <44972083.7030009@thegeeklord.com> References: <44972083.7030009@thegeeklord.com> X-Mailer: VM 7.17 under 21.5 (beta27) "fiddleheads" XEmacs Lucid Subject: pkgdb 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: Mon, 19 Jun 2006 22:25:37 -0000 Adam Stroud writes: > [Rebuilding the pkgdb in /var/db/pkg ... can't convert > String into Integer: Cannot update the pkgdb!] > > Anyone have any ideas or links to some information on how to > solve this? Check the last 36 hours traffic on freebsd-ports. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 22:38: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 2AAB316A479 for ; Mon, 19 Jun 2006 22:38:12 +0000 (UTC) (envelope-from freebsd@amadeus.demon.nl) Received: from post-22.mail.nl.demon.net (post-22.mail.nl.demon.net [194.159.73.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD35B43D45 for ; Mon, 19 Jun 2006 22:38:11 +0000 (GMT) (envelope-from freebsd@amadeus.demon.nl) Received: from amadeus.demon.nl ([82.161.18.200]:56155 helo=[10.0.1.2]) by post-22.mail.nl.demon.net with esmtp (Exim 4.51) id 1FsSNl-000BEQ-MK; Mon, 19 Jun 2006 22:38:09 +0000 In-Reply-To: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> References: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> Mime-Version: 1.0 (Apple Message framework v750) X-Priority: 3 Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable From: FBSD_UG Date: Tue, 20 Jun 2006 00:38:20 +0200 To: DSA - JCR X-Mailer: Apple Mail (2.750) Cc: freebsd-questions@freebsd.org Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 19 Jun 2006 22:38:12 -0000 On 19 jun 2006, at 22:17, DSA - JCR wrote: > Hi all > > I am mounting a NFS server (FreeBSD 6.1 "amd64") for a MS Windows =20 > Network > for a customer and I see that I can not see the NFS server from =20 > windows > boxes. > > Must I install Samba for that? or anything in the MS Windows boxes? > I thougth that Windows understand NFS but seems to be not. > > > best regards and thanks in advance > > Juan Coru=F1a > Desarrollo de Software Atlantico > This might come in handy too: http://www.microsoft.com/technet/interopmigration/unix/sfu/opssfu.mspx Arno= From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 23:06: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 9216616A479 for ; Mon, 19 Jun 2006 23:06:18 +0000 (UTC) (envelope-from anrays@gmail.com) Received: from tor.farlep.net (tor.farlep.net [213.130.1.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 330A843D45 for ; Mon, 19 Jun 2006 23:06:16 +0000 (GMT) (envelope-from anrays@gmail.com) Received: from santinel.home.ua (max5-28.dialup.farlep.net [213.130.5.157]) by tor.farlep.net with ESMTP id k5JN5x9J006064; Tue, 20 Jun 2006 02:06:09 +0300 Received: from anray by santinel.home.ua with local (Exim 4.62; FreeBSD) id 1FsSNB-000E8s-St; Tue, 20 Jun 2006 01:37:33 +0300 To: Adam Stroud References: <44972083.7030009@thegeeklord.com> From: Andrey Slusar Mail-Followup-To: Adam Stroud , freebsd-questions@freebsd.org Date: Tue, 20 Jun 2006 01:37:33 +0300 In-Reply-To: <44972083.7030009@thegeeklord.com> (Adam Stroud's message of "Mon, 19 Jun 2006 18:09:07 -0400") Message-ID: <868xns7owi.fsf@santinel.home.ua> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.5-b27 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-SMTP-Vilter-Version: 1.1.8 X-SMTP-Vilter-Virus-Backend: clamd X-SMTP-Vilter-Status: clean X-SMTP-Vilter-clamd-Virus-Status: clean Cc: freebsd-questions@freebsd.org Subject: Re: pkgdb 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: Mon, 19 Jun 2006 23:06:18 -0000 Mon, 19 Jun 2006 18:09:07 -0400, Adam Stroud wrote: > I am having a problem with pkgdb and I am wondering if someone can > point me in the right direction. I was trying to update some of my > out of date ports with portupgrade and when I get a pkgdb error. Now > whenever I try to run any portupgrade command, or even and pkgdb > command (like pkgdb -Fu) I get the following error message: > [Rebuilding the pkgdb in /var/db/pkg ... can't > convert String into Integer: Cannot update the pkgdb!] > Anyone have any ideas or links to some information on how to solve this? I am answered to similar question in this list. Update you ports tree and reinstall portupgrade. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 19 23: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 C856E16A47A for ; Mon, 19 Jun 2006 23:16:12 +0000 (UTC) (envelope-from gurdiga@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 3147A43D48 for ; Mon, 19 Jun 2006 23:16:11 +0000 (GMT) (envelope-from gurdiga@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1063459uge for ; Mon, 19 Jun 2006 16:16:10 -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=NDYyL/nLvAgwffFZJ7aKMFJguC9K85MdObmCXfNq+FgiKSTQG/23guDq0w/nImp7Nlho2EgaesACOktzNsngZjsYEwPnTupVVHsekzLXcjtysiZhyNMQqYQPMX9MSkgql5dS1US/j5yYma7oiig36wHELrj/L9S/YEJWsXB7htE= Received: by 10.78.67.20 with SMTP id p20mr2434656hua; Mon, 19 Jun 2006 16:16:10 -0700 (PDT) Received: by 10.78.12.10 with HTTP; Mon, 19 Jun 2006 16:16:10 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 02:16:10 +0300 From: "Vlad GURDIGA" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: nat 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: Mon, 19 Jun 2006 23:16:12 -0000 Hello, I could not figureout the answer to a question. Here is the situation: PC A: Windows XP Pro. PC B: FreeBSD 6.1, connected to internet, acting as a gateway for PC A, with NAT (built by hanbook instructions http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-natd.html), open firewall, no restrictions. For long time I have used the PC A with PC B as gateway and everything worked just fine, but now PC A can only ping any host (by IP) in Internet. No other traffic (DNS queries, FTP or HTTP) does not reach the Internet comming back with TTL exceeded response apparently from de destination host (I've seen this on PC B with Ethereal). Question: Is there any way my ISP can 'see' and cut out NATted traffic from PC A letting only the traffic from PC B pass?! How?! From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 00:08: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 60C4916A47A for ; Tue, 20 Jun 2006 00:08:41 +0000 (UTC) (envelope-from tfcheng@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 B3D5A43D46 for ; Tue, 20 Jun 2006 00:08:40 +0000 (GMT) (envelope-from tfcheng@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1076162uge for ; Mon, 19 Jun 2006 17:08: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:mime-version:content-type; b=JRXBaDiMYgapa1QCatIqfZNN/eg05yHY/2SlQsc+2u9eM0lMK/GV73n5wvhjhQLQYHhYHTRwliT5qCJ1+seuEqs8o/3k/41URTFImgD3Tg+8rZoxJdPVfrA4nEvyyCfuxEGqNEpnS2hWOWZKBuzdQB28haAoUn9hrGNl7KdQByI= Received: by 10.67.101.10 with SMTP id d10mr2345378ugm; Mon, 19 Jun 2006 17:02:23 -0700 (PDT) Received: by 10.67.32.2 with HTTP; Mon, 19 Jun 2006 17:02:23 -0700 (PDT) Message-ID: Date: Mon, 19 Jun 2006 20:02:23 -0400 From: "Tsu-Fan Cheng" To: FreeBSD 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: azureus on freebsd and windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 00:08:41 -0000 Hi folks, happy fathers day! I have Azureus running both on windows and on freebsd/amd64. and I found it was very different, on windows azureus is very quick in downloading files, but not on freebsd, it is very slow and usually no download. I forward the port through the router and it's still the same. any idea of how i can tune this? thanks a bunch!! TFC From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 00:11: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 E17D316A47A for ; Tue, 20 Jun 2006 00:11:09 +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 9DFDF43D58 for ; Tue, 20 Jun 2006 00:11:07 +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 <20060620001106.WSRH17849.mta11.adelphia.net@barbish>; Mon, 19 Jun 2006 20:11:06 -0400 From: "fbsd" To: "Vlad GURDIGA" , Date: Mon, 19 Jun 2006 20:10:59 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1478 Importance: Normal Cc: Subject: RE: nat question 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: Tue, 20 Jun 2006 00:11:10 -0000 There is no way your ISP can cut out NATted traffic. You would be better off following the handbook firewall section. -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Vlad GURDIGA Sent: Monday, June 19, 2006 7:16 PM To: freebsd-questions@freebsd.org Subject: nat question Hello, I could not figureout the answer to a question. Here is the situation: PC A: Windows XP Pro. PC B: FreeBSD 6.1, connected to internet, acting as a gateway for PC A, with NAT (built by hanbook instructions http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-natd.ht= ml), open firewall, no restrictions. For long time I have used the PC A with PC B as gateway and everything worked just fine, but now PC A can only ping any host (by IP) in Internet. No other traffic (DNS queries, FTP or HTTP) does not reach the Internet comming back with TTL exceeded response apparently from de destination host (I've seen this on PC B with Ethereal). Question: Is there any way my ISP can 'see' and cut out NATted traffic from PC A letting only the traffic from PC B pass?! How?! _______________________________________________ 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 Jun 20 00:22: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 AF04116A474 for ; Tue, 20 Jun 2006 00:22:58 +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 4E67343D48 for ; Tue, 20 Jun 2006 00:22:58 +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.6+UW06.06/8.13.6+UW06.03) with ESMTP id k5K0MvNT025507 for ; Mon, 19 Jun 2006 17:22:57 -0700 X-Auth-Received: from [128.208.7.203] (pinocchio.dyn.cs.washington.edu [128.208.7.203]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.6+UW06.06/8.13.6+UW06.03) with ESMTP id k5K0MvOS015114 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Mon, 19 Jun 2006 17:22:57 -0700 In-Reply-To: References: <3610.84.18.2.11.1150748233.squirrel@llca513-a.servidoresdns.net> Mime-Version: 1.0 (Apple Message framework v750) X-Priority: 3 Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <18518C2D-75B2-4A7A-91AC-B4E15B639BFC@u.washington.edu> Content-Transfer-Encoding: 7bit From: Garrett Cooper Date: Mon, 19 Jun 2006 17:26:19 -0700 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.750) X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __HAS_X_PRIORITY 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0' Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 00:22:58 -0000 On Jun 19, 2006, at 3:38 PM, FBSD_UG wrote: > > On 19 jun 2006, at 22:17, DSA - JCR wrote: > >> Must I install Samba for that? or anything in the MS Windows boxes? >> I thougth that Windows understand NFS but seems to be not. Windows doesn't understand NFS; this is almost purely a Unix creation. I suggest installing Samba if you have a large number of machines (mostly that you do not control), which need access to the fileserver or for clients that aren't incredibly computer-savvy since you won't need to provide many more instructions than what's already available for installing the software and configuring/mounting shares. Plus, there are many tie-ins for kerberos, etc so you won't have to deal with setting up or working around a kludgy authentication system (sort of an issue with SFU as mentioned below). > This might come in handy too: > > http://www.microsoft.com/technet/interopmigration/unix/sfu/opssfu.mspx That is a good solution, but you don't want to have to require more than 10+ machines to have this installing since users will start griping and this may create more of a headache for you than it's worth. -Garrett From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 00:32: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 024A016A484 for ; Tue, 20 Jun 2006 00:32:59 +0000 (UTC) (envelope-from andras@kende.com) Received: from kende.com (ns1.kende.com [206.123.69.40]) by mx1.FreeBSD.org (Postfix) with SMTP id 3328A43D49 for ; Tue, 20 Jun 2006 00:32:57 +0000 (GMT) (envelope-from andras@kende.com) Received: (qmail 8424 invoked by uid 0); 20 Jun 2006 00:33:07 -0000 Received: from unknown (HELO vprmatrix) (postmaster@kende.com@74.62.58.118) by ns1.kende.com with ESMTPA; 20 Jun 2006 00:33:07 -0000 Message-ID: <003301c69401$13403150$ae01a8c0@vprmatrix> From: "Andras Kende" To: "Shawn Guillemette" , References: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> Date: Mon, 19 Jun 2006 17:32:56 -0700 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.2869 Cc: Subject: Re: Content filtering X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 00:32:59 -0000 Hello, I use Dansguardian ( http://www.dansguardian.org ) with Squid Proxy very easy to setup, and it works great .... Andras Kende http://www.kende.com ----- Original Message ----- From: "Shawn Guillemette" To: Sent: Monday, June 19, 2006 1:56 PM Subject: Content filtering Hello, I have recently been thinking about adding content filtering to my FreeBSD fire wall at home as the kids are starting to use the internet more and they are getting older too ;-) I'm running FreeBSD 4.11 RELEASE using IPFW as my firewall. The system its running on is an old alpha machine. I was wondering if anyone knew of a port that I could use to filter some web content from my children. I do have the X86 option as well Just have to reload the OS and start from scratch on another system. Thanks Shawn _______________________________________________ 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 Jun 20 00:52: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 7990216A474 for ; Tue, 20 Jun 2006 00:52:53 +0000 (UTC) (envelope-from SRS0=pq4RLF3s=AH=asarian-host.net=admin@asarian-host.net) Received: from mail.asarian-host.net (mail.asarian-host.net [194.109.160.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id B085343D48 for ; Tue, 20 Jun 2006 00:52:52 +0000 (GMT) (envelope-from SRS0=pq4RLF3s=AH=asarian-host.net=admin@asarian-host.net) Received: from anonymizer.asarian-host.net (localhost [127.0.0.1]) (authenticated bits=0) by mail.asarian-host.net (8.13.5/8.13.5) with ESMTP id k5K0qoS1017170 for ; Tue, 20 Jun 2006 02:52:50 +0200 (CEST) (envelope-from admin@asarian-host.net) From: Mark Received-SPF: pass (asarian-host.net: 127.0.0.1 is authenticated by a trusted mechanism) receiver=anonymizer.asarian-host.net; client-ip=127.0.0.1; envelope-from=; helo=clientrunner.asarian-host.net; Message-Id: <200606200052.k5K0qnf4017150@asarian-host.net> Date: Tue, 20 Jun 2006 00:52:50 GMT X-Authenticated-Sender: admin@asarian-host.net X-Trace: LcRE/0HNkEUIQzc1pH6oyvDCtxrnwUK1yoiivaXV/QBlPZ7eDsX2Ml+G8uviJeMm X-Complaints-To: abuse@asarian-host.net X-Abuse-Info: Please be sure to forward a copy of ALL headers, otherwise we are unable to process your complaint Organization: Asarian-host To: "'FreeBSD-Questions Questions'" MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable In-Reply-To: AAAAAKQGe+aqp+ZKtXiBFnEv70CkEgIB X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 X-Auth: Asarian-host PGP signature iQEVAwUARJdG4jFqW1BleBN9AQFjyQf+L+YW3qh0toT74PDBz4/Y+2eNekm8DTQS 9OyBWDW/uMjo7v/h21gZWYu1j6DTqgH4fQzzsJycUFICCDQD4wA5cXe/XuGwlstA Qqm+lO/DfIiKcZezODV+RAT0SeqVf0kv3wncu7lWi8CVWvsOMLdMyPqCvmWu7d/f GTmvQHbXXK4Bmdn8GLMgqngT4Fjps7Dap4Ew3KWWaPpW5eMPtI8aTqSOBC3UrYUm L2No7Anyz+Zz+SVO6f9M408gbmT7n54NlGbyOxCAXfO1iyDjpSZ70Wzo5XyHjUpW zKHlTp63G6YAWfqHoFwV+o+SPfBggbxeFp4YluTLb2g4UzTXQmrm8A== =+NLI Subject: RE: Does FreeBSD 4.11-STABLE support the Intel PWLA8391GT NIC? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 00:52:53 -0000 > -----Original Message----- > From: Bj=F6rn K=F6nig [mailto:bkoenig@cs.tu-berlin.de]=20 > Sent: maandag 19 juni 2006 8:11 > To: Mark > Cc: 'FreeBSD-Questions Questions' > Subject: Re: Does FreeBSD 4.11-STABLE support the Intel=20 > PWLA8391GT NIC? >=20 >=20 > > Mark schrieb: > > A similar question as before: does FreeBSD 4.11-STABLE=20 > > support the Intel PWLA8391GT NIC card? >=20 > According to Google this card is also known as Intel=20 > PRO/1000. It should work with the em(4) driver. Thanks. I will try this. :) - Mark From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 01: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 A8AD616A47C for ; Tue, 20 Jun 2006 01:03:54 +0000 (UTC) (envelope-from SRS0=pq4RLF3s=AH=asarian-host.net=admin@asarian-host.net) Received: from mail.asarian-host.net (mail.asarian-host.net [194.109.160.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id E339F43D48 for ; Tue, 20 Jun 2006 01:03:53 +0000 (GMT) (envelope-from SRS0=pq4RLF3s=AH=asarian-host.net=admin@asarian-host.net) Received: from anonymizer.asarian-host.net (localhost [127.0.0.1]) (authenticated bits=0) by mail.asarian-host.net (8.13.5/8.13.5) with ESMTP id k5K13q6b017498 for ; Tue, 20 Jun 2006 03:03:52 +0200 (CEST) (envelope-from admin@asarian-host.net) From: Mark Received-SPF: pass (asarian-host.net: 127.0.0.1 is authenticated by a trusted mechanism) receiver=anonymizer.asarian-host.net; client-ip=127.0.0.1; envelope-from=; helo=clientrunner.asarian-host.net; Message-Id: <200606200103.k5K13pEI017488@asarian-host.net> Date: Tue, 20 Jun 2006 01:03:52 GMT X-Authenticated-Sender: admin@asarian-host.net X-Trace: GnRb5oo+kcmRrRZ+taN1xlXm2PRvksl96V3RZdg8mBRaoQE5/TNtsnTclN48J0ZX X-Complaints-To: abuse@asarian-host.net X-Abuse-Info: Please be sure to forward a copy of ALL headers, otherwise we are unable to process your complaint Organization: Asarian-host To: "'FreeBSD-Questions Questions'" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 X-Auth: Asarian-host PGP signature iQEVAwUARJdJeDFqW1BleBN9AQEa6gf/ZtD7gGnPmkrPKEHmy+sUQBAeC+wu4ZEt Es1kDD7uzvYESfqIYMrkQccmZFiJaHjW4u2vVnm/Dqzhmbd1CQm9xGLlnDmAom5K ypSsxUw0VDbw8qZgRkkp4qw1Jimqhd5KtbNnP8tovGk/PcEv9kl7l47uCpxhkZk4 ElrcRrzS94c4oWnRLAXsvGTkQtIbZidZThINNaHnjN4Oh/XXYz8lJp9LsMKyPthr AITYHbvHjsUgSkr82DAzgFhMzChV/QkMXrULTmg5TFsSgPoN1wlF4jifvlHuW2yg nnEL53dcTk79oP5dYAqNSbUwpMivm6ON4+OUOqxeWRXth2pht7jaog== =dFcB Subject: Suppressing permissions reset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 01:03:54 -0000 When doing a "make buildkernel" and "make installkernel" on FreeBSD 4.11-RELEASE (on a Vmware box), I noticed the Makefile in /usr/src/etc, for one, tries to reset permissions on files taken from a series of *.dist files. I find such initiative a bit too forward for my taste. Is there a way I can suppress said behavior? Like a Makefile parameter or something. And would zero-ing out the *.dist files do the trick? Thanks, - Mark From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 01: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 CD1F416A47B for ; Tue, 20 Jun 2006 01:45:06 +0000 (UTC) (envelope-from paul.singh@weidmuller.com.au) Received: from mailserver2005.server1.weidmuller.com.au (202-154-104-194.people.net.au [202.154.104.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5E4F43D45 for ; Tue, 20 Jun 2006 01:45:00 +0000 (GMT) (envelope-from paul.singh@weidmuller.com.au) Content-class: urn:content-classes:message MIME-Version: 1.0 X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 Date: Tue, 20 Jun 2006 11:47:48 +1000 Message-ID: <8EE7272AF7043C4880B9B4FA0BF48EAB38A3E8@MAILSERVER2005.server1.weidmuller.com.au> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: sugarcrm: XML Parser not available Thread-Index: AcaN0/h3txdatmHrSeWlypWTgRFuaA== From: "Paul Singh" To: X-Mailman-Approved-At: Tue, 20 Jun 2006 02:03:14 +0000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: sugarcrm: XML Parser not available X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 01:45:06 -0000 I am having the exact same problem with Mandriva 2006 PHP5. Did you manage to resolve it ? =20 Paul From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 02:17: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 B310516A474 for ; Tue, 20 Jun 2006 02:17:38 +0000 (UTC) (envelope-from rance@frontiernet.net) Received: from relay03.roc.ny.frontiernet.net (relay03.roc.ny.frontiernet.net [66.133.182.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C8A443D55 for ; Tue, 20 Jun 2006 02:17:28 +0000 (GMT) (envelope-from rance@frontiernet.net) Received: from localhost (webmail06.roc.ny.frontiernet.net [66.133.182.105]) by relay03.roc.ny.frontiernet.net (Postfix) with ESMTP id 2938D3582FE for ; Tue, 20 Jun 2006 02:17:27 +0000 (UTC) X-Received: from 70-96-157-130.bras01.kea.ne.frontiernet.net (70-96-157-130.bras01.kea.ne.frontiernet.net [70.96.157.130]) by webmail.frontiernet.net (Horde MIME library) with HTTP; Tue, 20 Jun 2006 02:17:27 +0000 Message-ID: <20060620021727.h6mlh1tcigg04g40@webmail.frontiernet.net> Date: Tue, 20 Jun 2006 02:17:27 +0000 From: "rance@frontiernet.net" To: freebsd-questions@freebsd.org References: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> In-Reply-To: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> 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.5-cvs) X-Virus-Scanned: by amavisd-new-2.3.2 (20050629) at filter13.roc.ny.frontiernet.net Subject: Re: Content filtering X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 02:17:38 -0000 Quoting Shawn Guillemette : > Hello, > > > > I have recently been thinking about adding content filtering to > my FreeBSD fire wall at home as the kids are starting to use the internet > more and they are getting older too ;-) > > > > > > I'm running FreeBSD 4.11 RELEASE using IPFW as my firewall. The system its > running on is an old alpha machine. I was wondering if anyone knew of a port > that I could use to filter some web content from my children. I do have the > X86 option as well Just have to reload the OS and start from scratch on > another system. > > > > Thanks > > Shawn Shawn: Check out dansguardian and squid working together these to programs can filter your internal web traffic redirecting "inappropriate" requests to another site. Dansguardian works on a blacklist basis that is heavily categorized. you can block by site url, words/phrases in the url, and even by web site content (thats where the squid part comes in, squid is a proxy server and pre-caches the site so the system can read the content of the url if needed.) the base blacklist is downloadable once for free (from another web site) after the once you are encouraged to register with a fee from which you derive the right to download incremental updates so you can keep your blacklists up to date. Both DG and Squid are in ports. Have fun. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 05: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 672DB16A47A for ; Tue, 20 Jun 2006 05:06:44 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF63543D46 for ; Tue, 20 Jun 2006 05:06:43 +0000 (GMT) (envelope-from cpghost@cordula.ws) Received: from epia2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id B934CDE328; Tue, 20 Jun 2006 07:06:30 +0200 (CEST) Date: Mon, 19 Jun 2006 23:06:36 -0600 From: cpghost To: cknipe@savage.za.org Message-ID: <20060620050636.GF57493@epia2.farid-hajji.net> References: <1150723606.4496a616e3352@196.22.132.16> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150723606.4496a616e3352@196.22.132.16> User-Agent: Mutt/1.5.11 Cc: Richard.Mayo@us.army.mil, freebsd-questions@freebsd.org Subject: Re: Getting Source Code after Installing the Software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 05:06:44 -0000 On Mon, Jun 19, 2006 at 03:26:46PM +0200, cknipe@savage.za.org wrote: > Quoting "Mayo, Richard A RDECOM CERDEC STCD SRI" : > > > > > > DID ANYBODY LOOK ON THE SENDER ADDRESS OF THIS ORIGINAL POSTING!? > > > --> Richard.Mayo@us.army.mil <-- > > > > > > I BET THERE ARE SEVERAL GUYS WHO KNOW HOW TO > > > INSTALL THE SOURCE OF FREEBSD AT THE US ARMY! > > > > I'm sure you're right, but we're kind of spread out and we don't talk all > > that much... > > ROTFLOL! :) Richard *probably* meant to say: ... and we don't talk(1) all that much... ;-) -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 05: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 714CC16A474 for ; Tue, 20 Jun 2006 05:07:18 +0000 (UTC) (envelope-from lmclouth@mn.rr.com) Received: from ms-smtp-02.rdc-kc.rr.com (ms-smtp-02.rdc-kc.rr.com [24.94.166.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9275343D5A for ; Tue, 20 Jun 2006 05:07:14 +0000 (GMT) (envelope-from lmclouth@mn.rr.com) Received: from [192.168.2.14] (CPE-72-131-76-25.mn.res.rr.com [72.131.76.25]) by ms-smtp-02.rdc-kc.rr.com (8.13.6/8.13.6) with ESMTP id k5K57Cvo016211 for ; Tue, 20 Jun 2006 00:07:13 -0500 (CDT) Message-ID: <44978033.80808@mn.rr.com> Date: Mon, 19 Jun 2006 23:57:23 -0500 From: Lewis McLouth User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <44960EDC.2020906@mn.rr.com> <4496B716.7080505@webanoide.org> <20060619111330.ef3e2224.wmoran@collaborativefusion.com> <20060619112844.b9b3b831.wmoran@collaborativefusion.com> <4336FAF4-0605-47D3-8B50-AB3645A6728D@cteresource.org> In-Reply-To: <4336FAF4-0605-47D3-8B50-AB3645A6728D@cteresource.org> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: Re: pkgdb.db locked X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 05:07:18 -0000 It worked perfectly. Thanks Lewis Lee Capps wrote: > > On Jun 19, 2006, at 11:28 AM, Bill Moran wrote: > >> In response to Bill Moran : >> >>> >>>> Lewis McLouth wrote: >>> >>> [snip] >>> >>>>> Also, if pkgdb.db was deleted, how do I rebuild the pkgdb.db? >>>>> (pkgdb -f >>>>> does not rebuild pkgdb.db, I just checked) >>> >>> portupgrade -an >>> >>> In order for portupgrade to analyze your packages, it needs to >>> update the >>> pkgdb. It will create it if it doesn't exist. >> >> Nevermind. That's not working. >> >> pkgdb -fu is failing as well. Shouldn't it generate the pkgdb if it >> doesn't >> exist? > > I had the same trouble this morning. Apparently the 'portupgrade' port > was broken this morning. a cvsup and desintall and reinstall of > portupgrade worked for me. This will downgrade the port to the last > stable version. > > Lee > > --- > Lee Capps > Technology Specialist > lcapps@cteresource.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 Tue Jun 20 05:17: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 40D9C16A479 for ; Tue, 20 Jun 2006 05:17:55 +0000 (UTC) (envelope-from lorenl@alzatex.com) Received: from hosea.tallye.com (hosea.tallye.com [216.99.199.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7C5243D45 for ; Tue, 20 Jun 2006 05:17:54 +0000 (GMT) (envelope-from lorenl@alzatex.com) Received: from [192.168.1.241] (solomon.ddns.alzatex.cc [192.168.1.241]) by hosea.tallye.com (8.13.6/8.13.6) with ESMTP id k5K5Ftp8017495 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jun 2006 22:15:56 -0700 X-Virus-Status: Clean X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on hosea.tallye.com Message-ID: <44978487.3010205@alzatex.com> Date: Mon, 19 Jun 2006 22:15:51 -0700 From: "Loren M. Lang" Organization: Alzatex, Inc. User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: fbsd@a1poweruser.com References: In-Reply-To: X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig62BC1E197761C795D607CAF0" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (hosea.tallye.com [192.168.1.7]); Mon, 19 Jun 2006 22:15:59 -0700 (PDT) Received-SPF: none (hosea.tallye.com: domain of lorenl@alzatex.com does not designate permitted sender hosts) Cc: Steve Bertrand , 'John Andrewartha' , "'freebsd-questions@FreeBSD.ORG'" Subject: Re: USB-Serial ?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 05:17:55 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig62BC1E197761C795D607CAF0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable fbsd wrote: > Sorry dud but what you have is a winmodem. No, it's a USB modem, winmodems are a type of PCI modem. > XP has special driver for that external modem to work. > It is not supported in FreeBSD as far as I have seen. > There is no such thing as USB-serial modem. There is, I've used one. While I can't gaurntee it will work, check out the umodem driver. Just load the driver with 'kldload umodem' and see if it detects anything. dmesg is a handy command for such things. There are also some other possibilities, check out http://www.freebsd.org/releases/6.1R/hardware-i386.html under USB. The device probably will be something like /dev/ucom0, but check the output of dmesg. > External modem is connected to motherboard by serial cable or USB > cable. > Serial external modem works right out of the box and USB external > modem are all winmodems. Any serial modem should work fine for FreeBSD using either the hardware serial ports on your motherboard with the sio driver or possibly some USB serial adapters that are supported. USB modems are not winmodems, but they still sometimes require a special driver that FreeBSD does not have. > There is a port ltmdm which works for a limited number of PCI > winmodems but nothing for USB-winmodems. >=20 > You are SOL. >=20 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Warren > Block > Sent: Thursday, June 08, 2006 9:29 AM > To: Steve Bertrand > Cc: 'John Andrewartha'; 'freebsd-questions@FreeBSD.ORG' > Subject: RE: USB-Serial ?? >=20 >=20 > On Wed, 7 Jun 2006, Steve Bertrand wrote: >=20 >>> The saga of the 3G modem. Labeled in AU as the Maxon MM 5500c. >>> This device is a modem on the usb bus, it looks like and >>> understands the at commands. Under XP. >>> I am using fbsd 6.1. >>> How do I get ppp to talk to it? >>> The man pages keep pointing to /dev/cuaU? A device that does >>> not exist yet. >> Don't know about the rest, but in FBSD 6+, the serial devices are >> /dev/cuad0 for COM1 and /dev/cuad1 for COM2. >> >> Try a: >> >> # cu -l /dev/cuad0 to see if you can connect to the device. >=20 > He said it was USB, which should be /dev/ucom0. >=20 > -Warren Block * Rapid City, South Dakota USA > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd= =2Eorg" >=20 --=20 Loren M. Lang lorenl@alzatex.com http://www.alzatex.com/ Public Key: ftp://ftp.tallye.com/pub/lorenl_pubkey.asc Fingerprint: CEE1 AAE2 F66C 59B5 34CA C415 6D35 E847 0118 A3D2 --------------enig62BC1E197761C795D607CAF0 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 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEl4SLbTXoRwEYo9IRAg7MAKCAbZn5Z1NKqbwscajpTdb7c4PdxwCcDr7p TCPYgiWTD3TUqKA+6GkwedE= =sF18 -----END PGP SIGNATURE----- --------------enig62BC1E197761C795D607CAF0-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 05:34: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 9070216A47D for ; Tue, 20 Jun 2006 05:34:55 +0000 (UTC) (envelope-from Metrol@Metrol.net) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3706443D48 for ; Tue, 20 Jun 2006 05:34:54 +0000 (GMT) (envelope-from Metrol@Metrol.net) Received: from [192.168.1.50] (really [24.75.146.34]) by mta10.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060620053454.HOWB12693.mta10.adelphia.net@[192.168.1.50]> for ; Tue, 20 Jun 2006 01:34:54 -0400 Message-ID: <44978913.3070401@Metrol.net> Date: Mon, 19 Jun 2006 22:35:15 -0700 From: Michael Collette Organization: Metrol Networks User-Agent: Thunderbird 1.5 (X11/20060113) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 05:34:55 -0000 Bit of a dilemma here with my primary desktop machine suddenly up and dieing on me. I'm now in the market to slap together a new PC I've started with looking at picking up an AMD64 based system. After Googling around for a while I still have some concerns I haven't been able to address. Probably just not looking the right places. Mostly I'm worried about some of the proprietary stuff like Flash, Acrobat, nVidia Drivers, Java, and the like not working. Is anyone out there actively using the AMD64 processor as a desktop machine? Are any of these 32-bit apps going to prove to be a show stopper for me? The alternative appears to be the P4 with all the motherboards I've seen using audio devices that aren't supported. Still, I'd rather buy an old sound card and have all the software at least functional. Any advice out there? Thanks, -- "In theory, there is no difference between theory and practice. In practice, there is." - Yogi Berra From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 05: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 221C016A479 for ; Tue, 20 Jun 2006 05:39:30 +0000 (UTC) (envelope-from lorenl@alzatex.com) Received: from hosea.tallye.com (hosea.tallye.com [216.99.199.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AC8343D46 for ; Tue, 20 Jun 2006 05:39:29 +0000 (GMT) (envelope-from lorenl@alzatex.com) Received: from [192.168.1.241] (solomon.ddns.alzatex.cc [192.168.1.241]) by hosea.tallye.com (8.13.6/8.13.6) with ESMTP id k5K5dQTt017853 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jun 2006 22:39:26 -0700 X-Virus-Status: Clean X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on hosea.tallye.com Message-ID: <44978A06.9060505@alzatex.com> Date: Mon, 19 Jun 2006 22:39:18 -0700 From: "Loren M. Lang" Organization: Alzatex, Inc. User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: "Mayo, Richard A RDECOM CERDEC STCD SRI" References: In-Reply-To: X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig0602B41C1A71A8C2E224ABA4" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (hosea.tallye.com [192.168.1.7]); Mon, 19 Jun 2006 22:39:26 -0700 (PDT) Received-SPF: none (hosea.tallye.com: domain of lorenl@alzatex.com does not designate permitted sender hosts) Cc: "'freebsd-questions@freebsd.org'" Subject: Re: Multicast/IGMP Join 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: Tue, 20 Jun 2006 05:39:30 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig0602B41C1A71A8C2E224ABA4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Mayo, Richard A RDECOM CERDEC STCD SRI wrote: > Can anybody tell me how to configure the multicast groups my computer w= ill attempt to join? I when my computers boot, I can see a IGMP join req= uest for 224.0.0.9, but I would like to add more. When a program opens a socket for listening, it requests which groups it will listen on using an option in setsockopt(), and bind(). When the program closes the socket or exits, the group is left. The IGMP Join/Leave messages are only needed if you have multicast capable routers and are running a multicast routing protocol like PIM and want messages from other subnets. Any group can be joined that is broadcasted locally without those messages. If you put your network card in promiscuous mode, as is done by most packet sniffers, you should be receiving all locally transmitted packets, including multicast. >=20 >=20 > Any suggestions? >=20 > Rich Mayo > SRI International > x76435 >=20 >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd= =2Eorg" >=20 --=20 Loren M. Lang lorenl@alzatex.com http://www.alzatex.com/ Public Key: ftp://ftp.tallye.com/pub/lorenl_pubkey.asc Fingerprint: CEE1 AAE2 F66C 59B5 34CA C415 6D35 E847 0118 A3D2 --------------enig0602B41C1A71A8C2E224ABA4 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 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEl4oObTXoRwEYo9IRAmUIAKCA3OP/qd/cVihHubyt2jiWJbwn/QCeNe2u He0LVNt2UPxRlj0YDnk8opM= =MQAD -----END PGP SIGNATURE----- --------------enig0602B41C1A71A8C2E224ABA4-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 05:54: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 5084116A474 for ; Tue, 20 Jun 2006 05:54:27 +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 124CE43D45 for ; Tue, 20 Jun 2006 05:54:26 +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 1FsZBy-000FC3-F4; Mon, 19 Jun 2006 23:54:26 -0600 In-Reply-To: <44978913.3070401@Metrol.net> References: <44978913.3070401@Metrol.net> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Mon, 19 Jun 2006 23:54:25 -0600 To: Michael Collette X-Mailer: Apple Mail (2.750) 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 Cc: freebsd-questions@freebsd.org Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 05:54:27 -0000 On Jun 19, 2006, at 11:35 PM, Michael Collette wrote: > Bit of a dilemma here with my primary desktop machine suddenly up > and dieing on me. I'm now in the market to slap together a new PC > > I've started with looking at picking up an AMD64 based system. > After Googling around for a while I still have some concerns I > haven't been able to address. Probably just not looking the right > places. > > Mostly I'm worried about some of the proprietary stuff like Flash, > Acrobat, nVidia Drivers, Java, and the like not working. > > Is anyone out there actively using the AMD64 processor as a desktop > machine? Are any of these 32-bit apps going to prove to be a show > stopper for me? > > The alternative appears to be the P4 with all the motherboards I've > seen using audio devices that aren't supported. Still, I'd rather > buy an old sound card and have all the software at least > functional. Any advice out there? > You can always run the 32bit i386 version on the AMD motherboard if you find out that the above stuff doesn't work so well. I don't use FreeBSD as a desktop so I cannot comment on that part but amd64 issues with flash etc does not mean you have to buy a P4 or other Intel chip based system. Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 06:09: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 8E8E516A47C for ; Tue, 20 Jun 2006 06:09:31 +0000 (UTC) (envelope-from lorenl@alzatex.com) Received: from hosea.tallye.com (hosea.tallye.com [216.99.199.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16C0F43D4C for ; Tue, 20 Jun 2006 06:09:31 +0000 (GMT) (envelope-from lorenl@alzatex.com) Received: from [192.168.1.241] (solomon.ddns.alzatex.cc [192.168.1.241]) by hosea.tallye.com (8.13.6/8.13.6) with ESMTP id k5K69Q63018564 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Jun 2006 23:09:28 -0700 X-Virus-Status: Clean X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on hosea.tallye.com Message-ID: <4497910F.1020404@alzatex.com> Date: Mon, 19 Jun 2006 23:09:19 -0700 From: "Loren M. Lang" Organization: Alzatex, Inc. User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Shawn Guillemette References: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> In-Reply-To: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig06C61DC57A406BE62F1939B2" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (hosea.tallye.com [192.168.1.7]); Mon, 19 Jun 2006 23:09:28 -0700 (PDT) Received-SPF: none (hosea.tallye.com: domain of lorenl@alzatex.com does not designate permitted sender hosts) Cc: freebsd-questions@freebsd.org Subject: Re: Content filtering X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 06:09:31 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig06C61DC57A406BE62F1939B2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Shawn Guillemette wrote: > Hello,=20 >=20 > =20 >=20 > I have recently been thinking about adding content filterin= g to > my FreeBSD fire wall at home as the kids are starting to use the intern= et > more and they are getting older too ;-)=20 >=20 > =20 >=20 > =20 >=20 > I'm running FreeBSD 4.11 RELEASE using IPFW as my firewall. The system = its > running on is an old alpha machine. I was wondering if anyone knew of a= port > that I could use to filter some web content from my children. I do have= the > X86 option as well Just have to reload the OS and start from scratch on= > another system.=20 >=20 > =20 >=20 > Thanks=20 >=20 > Shawn=20 >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd= =2Eorg" >=20 I'd look at squid+squidguard. Both are opensource and available in ports= =2E --=20 Loren M. Lang lorenl@alzatex.com http://www.alzatex.com/ Public Key: ftp://ftp.tallye.com/pub/lorenl_pubkey.asc Fingerprint: CEE1 AAE2 F66C 59B5 34CA C415 6D35 E847 0118 A3D2 --------------enig06C61DC57A406BE62F1939B2 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 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEl5EWbTXoRwEYo9IRAugIAJ4vSe7f3SP0z2TgFF7mxfCRI9dM5QCbBmZo Wq9HsmaCz2cZ/4BpMxEJm4E= =4L4x -----END PGP SIGNATURE----- --------------enig06C61DC57A406BE62F1939B2-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 06:10: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 4D28D16A482 for ; Tue, 20 Jun 2006 06:10:12 +0000 (UTC) (envelope-from Metrol@Metrol.net) Received: from mta9.adelphia.net (mta9.adelphia.net [68.168.78.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E86743D5D for ; Tue, 20 Jun 2006 06:10:11 +0000 (GMT) (envelope-from Metrol@Metrol.net) Received: from [192.168.1.50] (really [24.75.146.34]) by mta9.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060620061010.GUBY17359.mta9.adelphia.net@[192.168.1.50]>; Tue, 20 Jun 2006 02:10:10 -0400 Message-ID: <4497915C.1040108@Metrol.net> Date: Mon, 19 Jun 2006 23:10:36 -0700 From: Michael Collette Organization: Metrol Networks User-Agent: Thunderbird 1.5 (X11/20060113) MIME-Version: 1.0 To: "Chad Leigh -- Shire.Net LLC" References: <44978913.3070401@Metrol.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 06:10:12 -0000 Chad Leigh -- Shire.Net LLC wrote: > You can always run the 32bit i386 version on the AMD motherboard if you > find out that the above stuff doesn't work so well. I don't use FreeBSD > as a desktop so I cannot comment on that part but amd64 issues with > flash etc does not mean you have to buy a P4 or other Intel chip based > system. Not really anything against Intel here, just thought that the AMD might be worth looking at. Just so much of what is available for purchase for either platform seems to have issues with hardware support. Thanks for the feedback just the same. -- "In theory, there is no difference between theory and practice. In practice, there is." - Yogi Berra From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 06:29: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 0DDE616A474 for ; Tue, 20 Jun 2006 06:29:46 +0000 (UTC) (envelope-from subhro.kar@gmail.com) Received: from mail.dslr.net (mail.dslreports.com [209.123.192.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CB0B43D48 for ; Tue, 20 Jun 2006 06:29:45 +0000 (GMT) (envelope-from subhro.kar@gmail.com) Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.dslr.net (Postfix) with ESMTP id D85144362A for ; Tue, 20 Jun 2006 02:29:43 -0400 (EDT) Received: from mail.dslr.net ([127.0.0.1]) by localhost (coral.dslreports.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29540-10 for ; Tue, 20 Jun 2006 02:29:43 -0400 (EDT) Received: by mail.dslr.net (Postfix, from userid 997) id 91D5D43A37; Tue, 20 Jun 2006 02:29:43 -0400 (EDT) Received: from [127.0.0.1] (unknown [221.135.212.24]) by mail.dslr.net (Postfix) with ESMTP id 8EF144362A; Tue, 20 Jun 2006 02:29:41 -0400 (EDT) Message-ID: <449795CA.3050707@gmail.com> Date: Tue, 20 Jun 2006 11:59:30 +0530 From: Subhro Kar User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: "Loren M. Lang" References: <000f01c693e2$dcd6bb70$3103a8c0@frikenfrak> <4497910F.1020404@alzatex.com> In-Reply-To: <4497910F.1020404@alzatex.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at dslr.net Cc: Shawn Guillemette , freebsd-questions@freebsd.org Subject: Re: Content filtering X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 06:29:46 -0000 Loren M. Lang wrote: > Shawn Guillemette wrote: > >> Hello, >> >> >> >> I have recently been thinking about adding content filtering to >> my FreeBSD fire wall at home as the kids are starting to use the internet >> more and they are getting older too ;-) >> >> >> >> >> >> I'm running FreeBSD 4.11 RELEASE using IPFW as my firewall. The system its >> running on is an old alpha machine. I was wondering if anyone knew of a port >> that I could use to filter some web content from my children. I do have the >> X86 option as well Just have to reload the OS and start from scratch on >> another system. >> >> >> >> Thanks >> >> Shawn >> >> _______________________________________________ >> 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'd look at squid+squidguard. Both are opensource and available in ports. > > How about dansguardian. Also set up a transparent proxy set up so that the kids cant get past the proxy settings :-D Thanks and Best Regards Subhro From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 06:30: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 8209516A474 for ; Tue, 20 Jun 2006 06:30:53 +0000 (UTC) (envelope-from fquest@ccstores.com) Received: from mail.qcislands.net (mail.qcislands.net [209.53.238.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3701A43D4C for ; Tue, 20 Jun 2006 06:30:53 +0000 (GMT) (envelope-from fquest@ccstores.com) Received: from [64.114.58.100] (helo=[192.168.1.51]) by mail.qcislands.net with esmtp (Exim 4.62) (envelope-from ) id 1FsZlE-000FoR-8Y; Mon, 19 Jun 2006 23:30:52 -0700 Message-ID: <4497961C.3030207@ccstores.com> Date: Mon, 19 Jun 2006 23:30:52 -0700 From: Jim Pazarena Organization: City Centre Stores Ltd User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-local_scan: locally submitted (00) Subject: openwebmail X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 06:30:53 -0000 does anyone have any recent how-to pages on setting up openwebmail on FreeBSD? a google shows lots of Linux stuff, most referring back to Openwebmail website, but FreeBSD setup is virtually non-existent. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 06:56: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 5F43016A474 for ; Tue, 20 Jun 2006 06:56:47 +0000 (UTC) (envelope-from mark@mkproductions.org) Received: from pimout2-ext.prodigy.net (pimout2-ext.prodigy.net [207.115.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C21F43D48 for ; Tue, 20 Jun 2006 06:56:46 +0000 (GMT) (envelope-from mark@mkproductions.org) X-ORBL: [67.66.237.138] Received: from localhost (adsl-67-66-237-138.dsl.stlsmo.swbell.net [67.66.237.138]) by pimout2-ext.prodigy.net (8.13.6 out.dk/8.13.6) with ESMTP id k5K6ujkJ114798; Tue, 20 Jun 2006 02:56:45 -0400 Date: Tue, 20 Jun 2006 01:56:44 -0500 From: Mark Kane To: Michael Collette Message-ID: <20060620015644.629b47a2@localhost> In-Reply-To: <44978913.3070401@Metrol.net> References: <44978913.3070401@Metrol.net> X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.18; x86_64-unknown-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 06:56:47 -0000 On Mon, Jun 19, 2006, at 22:35:15 -0700, Michael Collette wrote: > Bit of a dilemma here with my primary desktop machine suddenly up and > dieing on me. I'm now in the market to slap together a new PC > > I've started with looking at picking up an AMD64 based system. After > Googling around for a while I still have some concerns I haven't been > able to address. Probably just not looking the right places. > > Mostly I'm worried about some of the proprietary stuff like Flash, > Acrobat, nVidia Drivers, Java, and the like not working. > > Is anyone out there actively using the AMD64 processor as a desktop > machine? Are any of these 32-bit apps going to prove to be a show > stopper for me? > > The alternative appears to be the P4 with all the motherboards I've > seen using audio devices that aren't supported. Still, I'd rather > buy an old sound card and have all the software at least functional. > Any advice out there? > > Thanks, Hi. I'm using an Athlon64 3000+ (and the amd64 version of FreeBSD) as my main workstation. I also have another workstation with the same CPU running the i386 version. Here's my opinions: Flash - The 32 bit Linux binary of Flash 7 works in linux-firefox or linux-opera fine in i386 or amd64. The 32 bit Linux version of Flash 6 works somewhat with linuxpluginwrapper and the native Firefox on the i386 version of FreeBSD, although I've found it to be somewhat unstable and crashed quite a bit. There's also a project Gnash that is an open source Flash player, but I have not tried that one yet. Acrobat - The Linux binary of Acrobat 7 works for sure in the i386 version of FreeBSD. I have not tested it on my amd64 one (I just use xpdf), but the port's Makefile says it works and I don't see why it would have a problem. nVidia Drivers - Work great in the i386 version of FreeBSD. Does not work on the amd64 version yet ( http://www.nvnews.net/vbulletin/showthread.php?t=41545 ). Java - Got it to work on i386 version of FreeBSD (interfacing with browser not attempted, just for OpenOffice), but have not needed to or attempted on my amd64 box. I'm not sure if it's even possible for amd64 or not (as the Makefile I looked at shows only for i386), but someone else will know. For my purposes, there really isn't much that the amd64 version cannot do that the i386 version can. I would like the nVidia driver to work since I have a decent video card, but the Flash and Java I don't really care about much anymore. I use the native Firefox compiled from ports for my browsing and just fire up linux-opera whenever I need to see a Flash site. Me personally, I prefer AMD hardware over Intel and would get the Athlon64 regardless of if I run in i386 or amd64 mode FreeBSD. However, be sure to check your AMD64 hardware against the compatibility list before buying. I had to buy a replacement motherboard real quickly one day after one failed and I didn't fully check out the list before buying. When I got it, it turns out the onboard NIC and sound didn't work with FreeBSD in i386 or amd64 mode. I already had a NIC and sound card ready to go from the previous machine, but now both PCI slots on the Micro-ATX motherboard are taken and unfortunately I can't put in a SCSI card. The amd64 motherboard list is here. Note that "amd64" in this case means the hardware itself and not the OS version, so if it's not listed here then the i386 version probably will not work either with that hardware (I found that out the hard way): http://www.freebsd.org/platforms/amd64/motherboards.html For sound cards, I have found the Sound Blaster stuff to work well with FreeBSD so far. I'm running an Augidy 2 Platinum in my main machine and it works better than on Windows (had tons of skipping problems that never could be solved -- thought it was a bad card but moving to FreeBSD eliminated them). The cheaper SB LIVE cards work too, and some of my machines have onboard which work great also. Hope that helps. :) -Mark -- Internet Radio: Party107 (Trance/Electronic) - http://www.party107.com Rock 101.9 The Edge (Rock) - http://www.rock1019.net IRC: MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941) GnuPG Public Key: http://www.mkproductions.org/mk_pubkey.asc From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 07:23: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 263CB16A481 for ; Tue, 20 Jun 2006 07:23:13 +0000 (UTC) (envelope-from zionicman@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DA0443D55 for ; Tue, 20 Jun 2006 07:23:10 +0000 (GMT) (envelope-from zionicman@gmail.com) Received: by wx-out-0102.google.com with SMTP id i31so936447wxd for ; Tue, 20 Jun 2006 00:23:09 -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=RR0YdTEB/QxhbDqZLWh4WrKYd1wUDbnbc0oZqrbz2h+t7Q32Ha6VSnpuBgYD833Ze2fbia3MgbIw8n9mKdncf6LhsYlg1Aq02b6fmg5oy1kCDssySiWcGwCnS5s98CTdIEp/zvjsjhH9IVMhqjzsy71jf9Z3Bk3lBoo92p1cbvw= Received: by 10.70.83.20 with SMTP id g20mr9865069wxb; Tue, 20 Jun 2006 00:23:08 -0700 (PDT) Received: by 10.70.111.17 with HTTP; Tue, 20 Jun 2006 00:23:08 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 03:23:08 -0400 From: "David Hoffman" To: "John Baldwin" In-Reply-To: <200606190852.09200.jhb@freebsd.org> MIME-Version: 1.0 References: <200606190852.09200.jhb@freebsd.org> 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-standards@freebsd.org, freebsd-chat@freebsd.org, freebsd-user-groups@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 07:23:13 -0000 On 6/19/06, John Baldwin wrote: > > On Sunday 18 June 2006 19:49, David Hoffman wrote: > > * *It appears the page at > > http://www.houfug.org/help/install_freebsd.htmconstitutes a serious > > breach of copyright. The article, which was > > originally written and posted to the Internet by the owner of the > account > > soup@arbornet.org, is falsely attributed to the Houston FUG, whose > members > > maliciously removed all reference to its original creator. On a related > > note, the FUG seems to be part of an organized group to convince all > States > > to adopt English as an official language, a bigoted and misguided > policy. > > > > Plagiarism should not be tolerated. > > > > Thanks. > > 1) Please go outdoors and ride a bike or something. You are apparently > way, way overstressed. > > 2) Using terms like "malicious" without proof (and it appears the claim > was completely false based on follow-ups since the user group in > question > added an attribute once they were notified) reduces your credibility > immensely. If anything, if the HouFUG were anywhere as litiguous as > you > they could probably bring a civil suit of libel against you. :) In > general it works better if one calmly works to resolve disputes instead > of yelling and screaming and whipping out DMCA notices as the first > action. > > 3) FreeBSD is not a political association and has no political ties. This > should be rather obvious. On a general note, if you want to discuss > issues, it is generally far more credible and useful to include some > content in your argument besides elementary-school style name-calling. > You seem to have done this twice in this e-mail for both issues. > > 4) You also violated FreeBSD mailing list etiquette by cross-posting to > four mailing lists. FreeBSD-standards@' charter has to do with > conformance to computer standards such as POSIX, etc. Please have the > courtesy to make sure the lists you are mailing actually discuss what > you think they discuss before posting in the future as most list > readers > have enough relevant e-mail to wade through as it is. > > -- > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > "Power Users Use the Power to Serve" = http://www.FreeBSD.org > 2) What do you call removing all reference to the author of a copyrighted work, and then republishing it claiming it as your own? If not malicious, that's certainly an act of bad faith. Moreover, the fact that they added the notice only AFTER being caught red handed does not suggest they weren't being malicious when they stole the article in question. Also, why are you suggesting I'm litigious? I didn't once make reference to any lawsuit. 3) While you might want to refer to me as a name-caller, litigious, and puerile, it's far from clear that FreeBSD doesn't have political ties when the leaders of FreeBSD groups actively campaign for partially restricting people's ability to communicate in any language but English. Even if you ignored these extracuricular activities, though, you'd still be faced with the fact that FreeBSD is de jure politicized in favor of many things, including free software. 4) Discussions of copyright seem appropriate for freebsd-standard, since any reputable organization that publishes material with computers today makes a good faith effort to ensure they do not violate any copyright. It is therefore a de facto standard. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 07:50: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 9272616A47C for ; Tue, 20 Jun 2006 07:50:35 +0000 (UTC) (envelope-from archwndas@yahoo.com) Received: from web55203.mail.re4.yahoo.com (web55203.mail.re4.yahoo.com [206.190.58.167]) by mx1.FreeBSD.org (Postfix) with SMTP id 0354043D45 for ; Tue, 20 Jun 2006 07:50:34 +0000 (GMT) (envelope-from archwndas@yahoo.com) Received: (qmail 19200 invoked by uid 60001); 20 Jun 2006 07:50:34 -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=mjoNEZVFjhLPIV3d/2zUDRW5CCuoZIsNpXTMlFOhG584w0DEvyRYV3QAUwlCTP4GdX+Bld66fhVmNcdFV9nMuABJJhLkd/7EEb/LOsVDbgYiNn3uMypIkxfwLOgJl2/Ys0EDt7r70zIaUEATZsAaIUdP/wadOpb5S2xlKJWKfAk= ; Message-ID: <20060620075034.19198.qmail@web55203.mail.re4.yahoo.com> Received: from [83.235.247.28] by web55203.mail.re4.yahoo.com via HTTP; Tue, 20 Jun 2006 00:50:34 PDT Date: Tue, 20 Jun 2006 00:50:34 -0700 (PDT) From: Simeon Nifos 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: conver Linux shared libraries foo.so to FreeBSD shared libraries X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 07:50:35 -0000 Does anybody know how to convert a shared object compiled in Linux foo-linux.so to a shared object compiled for FreeBSD freebsd-foo.so? I mean a freebsd-foo.so to which I can link with objects compiled by a native FreeBSD compiler. Or equivalently how to create a FreeBSD foo.so from a linux foo.so which would be identical to that which would be compiled from source in FreeBSD? Thanks in advance! Simeon. --------------------------------- Want to be your own boss? Learn how on Yahoo! Small Business. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 08:44: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 BEFAB16A47A for ; Tue, 20 Jun 2006 08:44:18 +0000 (UTC) (envelope-from juancr@dsa.es) Received: from llca513-a.servidoresdns.net (llca513-a.servidoresdns.net [217.76.128.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1403643D58 for ; Tue, 20 Jun 2006 08:44:16 +0000 (GMT) (envelope-from juancr@dsa.es) Received: from mail.dsa.es (localhost.localdomain [127.0.0.1]) by llca513-a.servidoresdns.net (Postfix) with SMTP id 1C03B9D5AB5 for ; Tue, 20 Jun 2006 10:44:15 +0200 (CEST) Received: from 217.114.136.133 (SquirrelMail authenticated user faf352c) by llca513-a.servidoresdns.net with HTTP; Tue, 20 Jun 2006 08:44:15 -0000 (GMT) Message-ID: <3044.217.114.136.133.1150793055.squirrel@llca513-a.servidoresdns.net> Date: Tue, 20 Jun 2006 08:44:15 -0000 (GMT) From: "DSA - JCR" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.2-0.1.7.x MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 08:44:18 -0000 >> >> I am mounting a NFS server (FreeBSD 6.1 "amd64") for a MS Windows Network >> for a customer and I see that I can not see the NFS server from windows >> boxes. >> >> Must I install Samba for that? or anything in the MS Windows boxes? >> I thougth that Windows understand NFS but seems to be not. >> > >I've never actually done this, but I read about it because it is something >I want to do, at least temporarily, as I migrate from Windows to FreeBSD. >(Ironically all the Microsft documentation on the subject assumes you are >migrating the other way!) However, I think you need to search Microsoft's >site, and look up how to install their 'Client for NFS' (or 'Gateway for >NFS' depending on your network) > I have read it and downloaded, but it seems to be something obsolete (v. 3.5 is from 2004) and I suspect they hasn't made nothing new. BTW, Not only assumes you are migrating to MS, but also says it is cheaper MS world than UNIX world !!! ;D incredible !!! best regards Juan Coruña Desarrollo de Software Atlantico From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 08:53: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 4E15816A474 for ; Tue, 20 Jun 2006 08:53:06 +0000 (UTC) (envelope-from nklein@seibert-media.net) Received: from seibert-media.de (mail.seibert-media.de [81.3.45.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 061EE43D49 for ; Tue, 20 Jun 2006 08:53:04 +0000 (GMT) (envelope-from nklein@seibert-media.net) Received: (qmail 74336 invoked by uid 71); 20 Jun 2006 08:53:21 -0000 Received: by simscan 1.1.0 ppid: 74288, pid: 74292, t: 4.5201s scanners:none X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on mail.seibert-media.de X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.0 Received: from mail.seibert-media.net (HELO SMALLTALK.rp.seibert-media.net) (62.138.167.85) by mail.seibert-media.de with SMTP; 20 Jun 2006 08:53:17 -0000 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Tue, 20 Jun 2006 10:52:57 +0200 Message-ID: <431F8CCD3606384FACC2D8A9F171162001D793A0@smalltalk.rp.seibert-media.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Server crash by disconnecting nfs? Thread-Index: AcaURvBFLoIWQNxLSCWCiOljox12oQ== From: "Norbert Klein" To: Subject: Server crash by disconnecting nfs? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 08:53:06 -0000 Some days ago we had a strange reboot of one of our production servers. After closing the nfs-connection to our FreeBSD machine the FreeBSD machine produced a core dump and booted. Though we are not quite sure if the disconnection was the actual cause of the core dump we know at least that both things happened within the same time frame of about 15 minutes. Now we would like to know the reason why the machine crashed (it was running without problems since months) We looked into the dump file, but we can't really understand the information displayed there. Can someone give us some hints how to find out what happened. Thanks Norbert machine architecture -------------------- 5.4-RELEASE-p8=20 i386 Intel(R) Xeon(TM) CPU 3.00GHz hw.physmem: 3480444928 Dump info file -------------- Dump header from device /dev/amrd0s1b Architecture: i386 Architecture Version: 16777216 Dump Length: 3489398784B (3327 MB) Blocksize: 512 Dumptime: Fri Apr 28 15:52:21 2006 Hostname: host.testserver.de Magic: FreeBSD Kernel Dump Version String: FreeBSD 5.4-RELEASE-p8 #2: Tue Nov 15 17:35:15 CET 2005 root@host.testserver.de:/mnt/data/obj/mnt/data/src/sys/GT Panic String: page fault Dump Parity: 590850776 Bounds: 58 Dump Status: good kgbd stack backtrace -------------------- #0 doadump () at pcpu.h:159 #1 0x9c530806 in boot (howto=3D260) at /mnt/data/src/sys/kern/kern_shutdown.c:410 #2 0x9c530bf4 in panic (fmt=3D0x9c6e2059 "%s") at /mnt/data/src/sys/kern/kern_shutdown.c:566 #3 0x9c6bd85c in trap_fatal (frame=3D0xda4748f4, eva=3D0) at /mnt/data/src/sys/i386/i386/trap.c:817 #4 0x9c6bd512 in trap_pfault (frame=3D0xda4748f4, usermode=3D0, = eva=3D28) at /mnt/data/src/sys/i386/i386/trap.c:735 #5 0x9c6bd0bf in trap (frame=3D {tf_fs =3D -1588199400, tf_es =3D -1670184944, tf_ds =3D = -1594753008, tf_edi =3D -1595176448, tf_esi =3D -1597679616, tf_ebp =3D -632862380, = tf_isp =3D -632862432, tf_ebx =3D -1595176448, tf_edx =3D 0, tf_ecx =3D = -1588166656, tf_eax =3D 4, tf_trapno =3D 12, tf_err =3D 2, tf_eip =3D -1672419718, = tf_cs =3D 8, tf_eflags =3D 66118, tf_esp =3D -632862364, tf_ss =3D -1672340506}) at /mnt/data/src/sys/i386/i386/trap.c:425 #6 0x9c6a7f3a in calltrap () at /mnt/data/src/sys/i386/i386/exception.s:140 #7 0xa1560018 in ?? () #8 0x9c730010 in swap_pager_almost_full () #9 0xa0f20010 in ?? () #10 0xa0eb8a00 in ?? () #11 0xa0c55800 in ?? () #12 0xda474954 in ?? () #13 0xda474920 in ?? () #14 0xa0eb8a00 in ?? () #15 0x00000000 in ?? () #16 0xa1568000 in ?? () #17 0x00000004 in ?? () #18 0x0000000c in ?? () #19 0x00000002 in ?? () #20 0x9c50e67a in knote (list=3D0xa0eb8a98, hint=3D0, islocked=3D0) at atomic.h:365 #21 0x9c56afbe in ttwwakeup (tp=3D0xa0eb8a00) at /mnt/data/src/sys/kern/tty.c:2394 #22 0x9c69367e in comstart (tp=3D0xa0eb8a00) at /mnt/data/src/sys/dev/sio/sio.c:2514 #23 0x9c692ffb in comparam (tp=3D0xa0eb8a00, t=3D0xa0eb8aa4) at /mnt/data/src/sys/dev/sio/sio.c:2350 #24 0x9c691756 in sioopen (dev=3D0x9c742ad0, flag=3D3, mode=3D8192, td=3D0xa1568000) at /mnt/data/src/sys/dev/sio/sio.c:1292 #25 0x9c4e3e4a in spec_open (ap=3D0xda474a6c) at /mnt/data/src/sys/fs/specfs/spec_vnops.c:207 #26 0x9c4e3af8 in spec_vnoperate (ap=3D0x0) at /mnt/data/src/sys/fs/specfs/spec_vnops.c:118 #27 0x9c5a7eee in vn_open_cred (ndp=3D0xda474bd8, flagp=3D0xda474cd8, cmode=3D3112, cred=3D0xa0b17780, fdidx=3D0) at vnode_if.h:228 #28 0x9c5a7a83 in vn_open (ndp=3D0x0, flagp=3D0x0, cmode=3D0, fdidx=3D0) = at /mnt/data/src/sys/kern/vfs_vnops.c:91 #29 0x9c5a03d3 in kern_open (td=3D0xa1568000, path=3D0x0, pathseg=3DUIO_USERSPACE, flags=3D3, mode=3D-1681920472) at /mnt/data/src/sys/kern/vfs_syscalls.c:957 #30 0x9c5a02b0 in open (td=3D0x0, uap=3D0x0) at /mnt/data/src/sys/kern/vfs_syscalls.c:926 #31 0x9c6bdc70 in syscall (frame=3D {tf_fs =3D 47, tf_es =3D 47, tf_ds =3D 47, tf_edi =3D 134545056, = tf_esi =3D 0, tf_ebp =3D -1681920472, tf_isp =3D -632861324, tf_ebx =3D = -1681920304, tf_edx =3D 134536656, tf_ecx =3D 0, tf_eax =3D 5, tf_trapno =3D 12, = tf_err =3D 2, tf_eip =3D 671983903, tf_cs =3D 31, tf_eflags =3D 642, tf_esp =3D = -1681920500, tf_ss =3D 47}) at /mnt/data/src/sys/i386/i386/trap.c:1009 #32 0x9c6a7f8f in Xint0x80_syscall () at /mnt/data/src/sys/i386/i386/exception.s:201 #33 0x0000002f in ?? () #34 0x0000002f in ?? () #35 0x0000002f in ?? () #36 0x0804fea0 in ?? () #37 0x00000000 in ?? () #38 0x9bbfee28 in ?? () #39 0xda474d74 in ?? () #40 0x9bbfeed0 in ?? () #41 0x0804ddd0 in ?? () #42 0x00000000 in ?? () #43 0x00000005 in ?? () #44 0x0000000c in ?? () #45 0x00000002 in ?? () #46 0x280da91f in ?? () #47 0x0000001f in ?? () #48 0x00000282 in ?? () #49 0x9bbfee0c in ?? () #50 0x0000002f in ?? () #51 0x00000000 in ?? () #52 0x00000000 in ?? () #53 0x00000000 in ?? () #54 0x00000000 in ?? () #55 0x1711e000 in ?? () #56 0xa1b8d388 in ?? () #57 0xa1568000 in ?? () #58 0xda47474c in ?? () #59 0xda474730 in ?? () #60 0xa0b9b180 in ?? () #61 0x9c545040 in sched_switch (td=3D0x0, newtd=3D0x9bbfeed0, = flags=3DCannot access memory at address 0x9bbfee38 ) at /mnt/data/src/sys/kern/sched_4bsd.c:881 Previous frame inner to this frame (corrupt stack?) From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 08:56: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 E3A0C16A47B for ; Tue, 20 Jun 2006 08:56:11 +0000 (UTC) (envelope-from juancr@dsa.es) Received: from llca513-a.servidoresdns.net (llca513-a.servidoresdns.net [217.76.128.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CCE743D76 for ; Tue, 20 Jun 2006 08:56:09 +0000 (GMT) (envelope-from juancr@dsa.es) Received: from mail.dsa.es (localhost.localdomain [127.0.0.1]) by llca513-a.servidoresdns.net (Postfix) with SMTP id 42F609AD128 for ; Tue, 20 Jun 2006 10:56:08 +0200 (CEST) Received: from 217.114.136.133 (SquirrelMail authenticated user faf352c) by llca513-a.servidoresdns.net with HTTP; Tue, 20 Jun 2006 08:56:08 -0000 (GMT) Message-ID: <3352.217.114.136.133.1150793768.squirrel@llca513-a.servidoresdns.net> Date: Tue, 20 Jun 2006 08:56:08 -0000 (GMT) From: "DSA - JCR" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.2-0.1.7.x MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 08:56:12 -0000 HI all and thanks for your answers My main goal is to have a system in which the local network can get access to the file repository, and also thay can get access from their homes to them (only get a file from server, work on it, and post it to the server). For this reason I thougth in NFS only and FTP for remote access. As the pc clients runs on Windows XP, they are ingeniers and have programs for MS, I think I must install Samba, but NFS is (I think) stronger than Samba in protecting files. Can I have the two? NFS and Samba? BTW, the last version of UFS (NFS of MS) is 3.5 of 2004. I don't know if will fit correctly. best regards Juan Coruña Desarrollo de Software Atlantico From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 09:05: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 CD9F316A474 for ; Tue, 20 Jun 2006 09:05:08 +0000 (UTC) (envelope-from on@cs.ait.ac.th) Received: from mail.cs.ait.ac.th (mail.cs.ait.ac.th [192.41.170.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08DAD43D45 for ; Tue, 20 Jun 2006 09:05:07 +0000 (GMT) (envelope-from on@cs.ait.ac.th) Received: from banyan.cs.ait.ac.th (banyan.cs.ait.ac.th [192.41.170.5]) by mail.cs.ait.ac.th (8.13.1/8.12.11) with ESMTP id k5K94kWe055890 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 20 Jun 2006 16:04:46 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id k5K94k95096827; Tue, 20 Jun 2006 16:04:46 +0700 (ICT) Date: Tue, 20 Jun 2006 16:04:46 +0700 (ICT) Message-Id: <200606200904.k5K94k95096827@banyan.cs.ait.ac.th> From: Olivier Nicole To: juancr@dsa.es In-reply-to: <3352.217.114.136.133.1150793768.squirrel@llca513-a.servidoresdns.net> (juancr@dsa.es) References: <3352.217.114.136.133.1150793768.squirrel@llca513-a.servidoresdns.net> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions@freebsd.org Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 09:05:08 -0000 > Can I have the two? NFS and Samba? There is no reason you can't. I run NFS between Unix machines and Samba with MS world. But there could be strange results if on Xp machines connects to the same file using both NFS and Samba at same time. Olivier From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 09:12: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 D620E16A479 for ; Tue, 20 Jun 2006 09:12: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 CADF343D5C for ; Tue, 20 Jun 2006 09:12:44 +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.6+UW06.06/8.13.6+UW06.03) with ESMTP id k5K9Cidb010965 for ; Tue, 20 Jun 2006 02:12:44 -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.6+UW06.06/8.13.6+UW06.03) with ESMTP id k5K9Cc3k013634 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Tue, 20 Jun 2006 02:12:42 -0700 Mime-Version: 1.0 (Apple Message framework v750) In-Reply-To: <200606200904.k5K94k95096827@banyan.cs.ait.ac.th> References: <3352.217.114.136.133.1150793768.squirrel@llca513-a.servidoresdns.net> <200606200904.k5K94k95096827@banyan.cs.ait.ac.th> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Garrett Cooper Date: Tue, 20 Jun 2006 02:16:00 -0700 To: FreeBSD Questions X-Mailer: Apple Mail (2.750) 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: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 09:12:45 -0000 On Jun 20, 2006, at 2:04 AM, Olivier Nicole wrote: >> Can I have the two? NFS and Samba? > > There is no reason you can't. > > I run NFS between Unix machines and Samba with MS world. > > But there could be strange results if on Xp machines connects to the > same file using both NFS and Samba at same time. > > Olivier I would think that the hosting OS would know how to deal with both, since NFS mounts are treated no differently from Samba mounts superficially (each has their own separate drive letter, etc). Cygwin also offers an NFS client if you want to look into that as well. SFU offers mount_nfs/nfsd for windows, which is basically unheard of using anything else. -Garrett From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 09:23: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 8DC3116A506; Tue, 20 Jun 2006 09:23:29 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B4B943D72; Tue, 20 Jun 2006 09:23:21 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id D77FB1765D; Tue, 20 Jun 2006 12:23:19 +0300 (EEST) Date: Tue, 20 Jun 2006 12:23:19 +0300 From: Ion-Mihai "IOnut" Tetcu To: Boris Samorodov Message-ID: <20060620122319.4095c40b@it.buh.tecnik93.com> In-Reply-To: <61855713@srv.sem.ipt.ru> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Sig_DxTtMDSUv7Sg.4kirLFDiCI; protocol="application/pgp-signature"; micalg=PGP-SHA1 Cc: Jeff Molofee , Adi Pircalabu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 09:23:29 -0000 --Sig_DxTtMDSUv7Sg.4kirLFDiCI Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Mon, 19 Jun 2006 20:42:54 +0400 Boris Samorodov wrote: > On Mon, 19 Jun 2006 19:15:42 +0300 Adi Pircalabu wrote: > > (Really cc-ed to freebsd-ports@freebsd.org and Boris Samodorov a.k.a > > bsam@ipt.ru) > > On Mon, 19 Jun 2006 18:41:10 +0300 Adi Pircalabu wrote: > > > On Sun, 18 Jun 2006 19:43:16 -0600 Jeff Molofee wrote: > > >=20 > > > > After upgrading to linux_base-fc4, I've noticed a lot of > > > > applications and games that will no longer run. One of the games is > > > > HoH. I receive the following error when trying to run it... does > > > > anyone know how to fix this? > > > >=20 > > > > ./HoH: error while loading shared libraries: > > > > libstdc++-libc6.2-2.so.3: cannot open shared object file: No such > > > > file or directory > > >=20 > > > Apparently that application needs (yet another?) compatibility Linux > > > libraries, because it was built with g++-2.96 and linked against > > > libstdc++-libc6.2-2.so.3. > > > Feel free to send a problem report for this so it won't get lost, > > > linux_base-fc4 maintainers should take a look at it and update the > > > port. >=20 > > Jeff, I've attached a patch for linux_base-fc4, can you please test it > > and see if it fixes the dependency problem? >=20 > Adi, you did the right thing -- that library is missing at the port. > There are two hints. >=20 > 1. The plist file is not full (one llibrary missing). I'd recommend > you to test the patches (on probably fresh machine). Then on > deinstalling you'll notice those files that remain undeletted. > You may consider reading > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/ > and http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/= porting-testing.html > to create a good (i.e. ready-to-commit) patches. /me whispers 'cvs diff -uN' and misc/tinderbox :) Or send it over andI'll run a test on one of my tindyes. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #141: disks spinning backwards - toggle the hemisphere jumper --Sig_DxTtMDSUv7Sg.4kirLFDiCI Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEl76HBX6fi0k6KXsRAjzTAJsEd/Ih3sEP/2APkJRKYCquAQyMBQCgm2+T InOE061GdX4aSmURSHBm9ng= =OezS -----END PGP SIGNATURE----- --Sig_DxTtMDSUv7Sg.4kirLFDiCI-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 09:24: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 EBB8D16A479 for ; Tue, 20 Jun 2006 09:24:11 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CF0943D69 for ; Tue, 20 Jun 2006 09:24:08 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id A5B3A290C6C for ; Tue, 20 Jun 2006 06:24:04 -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 90710-08 for ; Tue, 20 Jun 2006 06:24:07 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id E55F4290C6B for ; Tue, 20 Jun 2006 06:24:03 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id B4E6D49F66; Tue, 20 Jun 2006 06:24:09 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id B0B083BEF2 for ; Tue, 20 Jun 2006 06:24:09 -0300 (ADT) Date: Tue, 20 Jun 2006 06:24:09 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-questions@freebsd.org Message-ID: <20060620060845.U1114@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Are hardware vendors starting to bail 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: Tue, 20 Jun 2006 09:24:12 -0000 ... and is there anything we can do as a community to prevent it? I've been a FreeBSD users since '94, and proud of it ... and have vehemently defended, all the way, my decision to use it vs 'the dark side' ... Although my above subject is a more "general call", my big beef right now is with RAID controller vendors, but I don't believe that the problem is specific to them, so hopefully others will ring in ... I've used several different controllers over the years ... Adaptec was my first love, but I've used Intel, 3Ware, and, more recently, HPs ... out of the lot, I'd have to say the least supported (HP) has turned out to be the more pleasurable one to use, since checking the status of the RAID array is the easiest: # camcontrol devlist at scbus0 target 0 lun 0 (da0,pass0) but, as an example, Intel used to be really nice, in that I could run the storcon utility (under FreeBSD 4.x) that Intel provided on their web site to actually see the whole BIOS and view drives, etc ... it was a dream ... but it looks like they stop'd support for FreeBSD at 5.x :( I just read a recent thread about monitoring RAID controllers on one of hte lists (this one?) where someone mentioned that Adaptec's Official stand is that they don't support storage management under FreeBSD ... but, in ports, we have the older aaccli interface, which I understand doesn't work with newer controllers ... So, my question above, and a public call to -core, or anyone else: What can we, as a community, due to improve this situation? Its not enough anymore to know a piece of hardware *works* with FreeBSD, but more that the vendor is willing to acknowledge us as a market ... petitions don't do anything, IMHO ... it all falls to 'money talks' for most vendors (not all of them, but alot of them) ... Is there anything we can do? ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 09:29: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 90C8C16A474 for ; Tue, 20 Jun 2006 09:29:49 +0000 (UTC) (envelope-from mulgajohn@bigpond.com) Received: from omta05ps.mx.bigpond.com (omta05ps.mx.bigpond.com [144.140.83.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4FCD43D46 for ; Tue, 20 Jun 2006 09:29:48 +0000 (GMT) (envelope-from mulgajohn@bigpond.com) Received: from mathew ([58.165.24.174]) by omta05ps.mx.bigpond.com with SMTP id <20060620092945.YVQH16234.omta05ps.mx.bigpond.com@mathew>; Tue, 20 Jun 2006 09:29:45 +0000 Message-ID: <000901c6944c$14075cd0$ae18a53a@mathew> From: "John Andrewartha" To: "Loren M. Lang" , References: <44978487.3010205@alzatex.com> Date: Tue, 20 Jun 2006 19:29:37 +1000 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Cc: Steve Bertrand , "'freebsd-questions@FreeBSD.ORG'" Subject: Re: USB-Serial ?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 09:29:49 -0000 Hi Guy's and Girls, Thanks for the advice. I tried umodem, bur the driver could not put the device into asinc and failed. Exit 6. As I had little time left I had to reload that other OS. It appears the device make in the USA is one of those that you can set the power level softly, not allowed by FCC, ACA... The windriver would I presume know how to switch the device. Of surprise is the device and simular are fairly commen in North America. The particular laptop is used for the childrens schooling. We are doing a sailing cruse of the East Coast of AU,havent spotted Nemo yet, but the local whale population has kept us ammused. Thanks for your support John ----- Original Message ----- From: "Loren M. Lang" To: Cc: "Warren Block" ; "Steve Bertrand" ; "'John Andrewartha'" ; "'freebsd-questions@FreeBSD.ORG'" Sent: Tuesday, June 20, 2006 3:15 PM Subject: Re: USB-Serial ?? From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 10:08: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 70E0916A505; Tue, 20 Jun 2006 10:08:17 +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 DC41643D46; Tue, 20 Jun 2006 10:08:16 +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.54 (FreeBSD)) id 1Fsd9Z-000MFq-74; Tue, 20 Jun 2006 14:08:13 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1FsdAq-000OhH-0g; Tue, 20 Jun 2006 14:09:32 +0400 To: Ion-Mihai "IOnut" Tetcu References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> From: Boris Samorodov Date: Tue, 20 Jun 2006 14:09:31 +0400 In-Reply-To: <20060620122319.4095c40b@it.buh.tecnik93.com> (Ion-Mihai Tetcu's message of "Tue, 20 Jun 2006 12:23:19 +0300") Message-ID: <51127380@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: Jeff Molofee , Adi Pircalabu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 10:08:17 -0000 --=-=-= On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: > /me whispers 'cvs diff -uN' and misc/tinderbox :) > Or send it over andI'll run a test on one of my tindyes. Here it is. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=linux_base-fc4.patch Content-Description: linux_base-fc4 patch Index: Makefile =================================================================== RCS file: /home/ncvs/ports/emulators/linux_base-fc4/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- Makefile 10 Jun 2006 13:35:52 -0000 1.7 +++ Makefile 19 Jun 2006 10:39:12 -0000 @@ -8,7 +8,7 @@ PORTNAME= fc PORTVERSION= 4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators linux MASTER_SITES= ${MASTER_SITE_FEDORA_LINUX} MASTER_SITE_SUBDIR= ${PORTVERSION}/${LINUX_RPM_ARCH}/os/Fedora/RPMS \ @@ -28,6 +28,7 @@ bzip2-1.0.2-16.${LINUX_RPM_ARCH}.rpm \ bzip2-libs-1.0.2-16.${LINUX_RPM_ARCH}.rpm \ compat-db-4.2.52-2.FC4.${LINUX_RPM_ARCH}.rpm \ + compat-libstdc++-296-2.96-132.fc4.${LINUX_RPM_ARCH}.rpm \ compat-libstdc++-33-3.2.3-47.fc4.${LINUX_RPM_ARCH}.rpm \ coreutils-5.2.1-48.1.${LINUX_RPM_ARCH}.rpm \ db4-4.3.27-5.fc4.${LINUX_RPM_ARCH}.rpm \ Index: distinfo.i386 =================================================================== RCS file: /home/ncvs/ports/emulators/linux_base-fc4/distinfo.i386,v retrieving revision 1.6 diff -u -r1.6 distinfo.i386 --- distinfo.i386 2 Jun 2006 20:50:32 -0000 1.6 +++ distinfo.i386 19 Jun 2006 10:39:12 -0000 @@ -13,6 +13,9 @@ MD5 (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.i386.rpm) = 4351cbd58365904bc2a21c946b624837 SHA256 (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.i386.rpm) = c1ec3e21db3d4ef616ce78dcf2913508fdea6b70b674267af0f0d180428fda8b SIZE (rpm/i386/fedora/4/compat-db-4.2.52-2.FC4.i386.rpm) = 859566 +MD5 (rpm/i386/fedora/4/compat-libstdc++-296-2.96-132.fc4.i386.rpm) = 3f002b614c92079a32a30eaa721aba58 +SHA256 (rpm/i386/fedora/4/compat-libstdc++-296-2.96-132.fc4.i386.rpm) = 0f4d0394c4f746bfc6418e8fd6b46a496f742a16d4bb96589cbe56b4975f94fd +SIZE (rpm/i386/fedora/4/compat-libstdc++-296-2.96-132.fc4.i386.rpm) = 178657 MD5 (rpm/i386/fedora/4/compat-libstdc++-33-3.2.3-47.fc4.i386.rpm) = dab411528a710a5f61e1981f173beddc SHA256 (rpm/i386/fedora/4/compat-libstdc++-33-3.2.3-47.fc4.i386.rpm) = 1b07f3d0c61b5a4737ac7d007485d04b7d51a00476924d5dc399a1fa347376ac SIZE (rpm/i386/fedora/4/compat-libstdc++-33-3.2.3-47.fc4.i386.rpm) = 233643 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/emulators/linux_base-fc4/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- pkg-plist 2 Jun 2006 20:50:32 -0000 1.4 +++ pkg-plist 19 Jun 2006 10:39:14 -0000 @@ -598,6 +598,10 @@ usr/lib/libstdc++.so.5.0.7 usr/lib/libstdc++.so.6 usr/lib/libstdc++.so.6.0.7 +usr/lib/libstdc++-2-libc6.1-1-2.9.0.so +usr/lib/libstdc++-3-libc6.2-2-2.10.0.so +usr/lib/libstdc++-libc6.1-1.so.2 +usr/lib/libstdc++-libc6.2-2.so.3 usr/lib/libttf.so.2 usr/lib/libttf.so.2.3.0 usr/lib/libz.so.1 --=-=-=-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 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 6820416A51B for ; Tue, 20 Jun 2006 10:14:48 +0000 (UTC) (envelope-from apircalabu@bitdefender.com) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D07F743D45 for ; Tue, 20 Jun 2006 10:14:46 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 29741 invoked by uid 1010); 20 Jun 2006 13:14:43 +0300 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.bitdefender.com with SMTP; 20 Jun 2006 13:14:43 +0300 Date: Tue, 20 Jun 2006 13:14:43 +0300 From: Adi Pircalabu To: Boris Samorodov Message-ID: <20060620131443.0c7b65f8@apircalabu.dsd.ro> In-Reply-To: <51127380@srv.sem.ipt.ru> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> Organization: BitDefender X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.4 049000040111AAAAAAE X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.2 on mail.bitdefender.com X-BitDefender-Spam: No (0) Cc: Jeff Molofee , Ion-Mihai IOnut Tetcu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 10:14:48 -0000 On Tue, 20 Jun 2006 14:09:31 +0400 Boris Samorodov wrote: > diff -u -r1.4 pkg-plist > --- pkg-plist 2 Jun 2006 20:50:32 -0000 1.4 > +++ pkg-plist 19 Jun 2006 10:39:14 -0000 > @@ -598,6 +598,10 @@ > usr/lib/libstdc++.so.5.0.7 > usr/lib/libstdc++.so.6 > usr/lib/libstdc++.so.6.0.7 > +usr/lib/libstdc++-2-libc6.1-1-2.9.0.so > +usr/lib/libstdc++-3-libc6.2-2-2.10.0.so > +usr/lib/libstdc++-libc6.1-1.so.2 Ah, this was missing from my pkg-plist. I did not test the port's uninstall. Thanks Boris! > +usr/lib/libstdc++-libc6.2-2.so.3 > usr/lib/libttf.so.2 > usr/lib/libttf.so.2.3.0 > usr/lib/libz.so.1 -- Adi Pircalabu (PGP Key ID 0x04329F5E) -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 10:32: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 DFAC816A47A; Tue, 20 Jun 2006 10:32: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 6358843D45; Tue, 20 Jun 2006 10:32:00 +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.54 (FreeBSD)) id 1FsdWZ-000MKc-0N; Tue, 20 Jun 2006 14:31:59 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1FsdXp-000OiY-QG; Tue, 20 Jun 2006 14:33:17 +0400 To: Adi Pircalabu References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620131443.0c7b65f8@apircalabu.dsd.ro> From: Boris Samorodov Date: Tue, 20 Jun 2006 14:33:17 +0400 In-Reply-To: <20060620131443.0c7b65f8@apircalabu.dsd.ro> (Adi Pircalabu's message of "Tue, 20 Jun 2006 13:14:43 +0300") Message-ID: <70800418@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: Jeff Molofee , Ion-Mihai IOnut Tetcu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 10:32:01 -0000 On Tue, 20 Jun 2006 13:14:43 +0300 Adi Pircalabu wrote: > On Tue, 20 Jun 2006 14:09:31 +0400 Boris Samorodov wrote: > > diff -u -r1.4 pkg-plist > > --- pkg-plist 2 Jun 2006 20:50:32 -0000 1.4 > > +++ pkg-plist 19 Jun 2006 10:39:14 -0000 > > @@ -598,6 +598,10 @@ > > usr/lib/libstdc++.so.5.0.7 > > usr/lib/libstdc++.so.6 > > usr/lib/libstdc++.so.6.0.7 > > +usr/lib/libstdc++-2-libc6.1-1-2.9.0.so > > +usr/lib/libstdc++-3-libc6.2-2-2.10.0.so > > +usr/lib/libstdc++-libc6.1-1.so.2 > Ah, this was missing from my pkg-plist. I did not test the port's > uninstall. Yep, this file is not located at rpm-file. Maybe it is created as a link, say, when running linux ldconfig. > > +usr/lib/libstdc++-libc6.2-2.so.3 > > usr/lib/libttf.so.2 > > usr/lib/libttf.so.2.3.0 > > usr/lib/libz.so.1 WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 10:33: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 23AC416A474; Tue, 20 Jun 2006 10:33:10 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9188A43D66; Tue, 20 Jun 2006 10:33:07 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 8877D1765D; Tue, 20 Jun 2006 13:33:06 +0300 (EEST) Date: Tue, 20 Jun 2006 13:33:06 +0300 From: Ion-Mihai "IOnut" Tetcu To: Boris Samorodov Message-ID: <20060620133306.5559f889@it.buh.tecnik93.com> In-Reply-To: <51127380@srv.sem.ipt.ru> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_8iQGg=jpqVEJkEvDyEWaFoC"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Cc: Jeff Molofee , Adi Pircalabu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 10:33:10 -0000 --Sig_8iQGg=jpqVEJkEvDyEWaFoC Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Tue, 20 Jun 2006 14:09:31 +0400 Boris Samorodov wrote: > On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: >=20 > > /me whispers 'cvs diff -uN' and misc/tinderbox :) >=20 > > Or send it over andI'll run a test on one of my tindyes. >=20 > Here it is. Looks OK: http://sce-tindy.tecnik93.com/tb-exp/index.php?action=3Ddescribe_port&id=3D= 781 --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #28: CPU radiator broken --Sig_8iQGg=jpqVEJkEvDyEWaFoC Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEl87iBX6fi0k6KXsRAsPAAKDPhNsf53/7Ltsss1WzTAhkWr6N5wCgrvwM WVRuvq3crVcj9cuTlGd3LBU= =+3eJ -----END PGP SIGNATURE----- --Sig_8iQGg=jpqVEJkEvDyEWaFoC-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 10:50: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 0103216A474 for ; Tue, 20 Jun 2006 10:50:54 +0000 (UTC) (envelope-from m.apitz@oclcpica.org) Received: from hunter.Sisis.de (hunter.sisis.de [193.31.11.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFF1943D45 for ; Tue, 20 Jun 2006 10:50:52 +0000 (GMT) (envelope-from m.apitz@oclcpica.org) Received: (from mail@localhost) by hunter.Sisis.de (8.8.8/8.8.8) id MAA15535; Tue, 20 Jun 2006 12:47:49 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) From: m.apitz@oclcpica.org Received: from hermes.sisis.de(193.31.10.38) by hunter.Sisis.de via smap (V2.1) id xma015531; Tue, 20 Jun 06 12:47:34 +0200 Received: from rebelion.Sisis.de (rebelion.Sisis.de [193.31.10.34]) by hermes.sisis.de (8.8.8/8.8.8) with ESMTP id MAA25278; Tue, 20 Jun 2006 12:50:15 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) Received: (from guru@localhost) by rebelion.Sisis.de (8.13.4/8.13.4/Submit) id k5KAoF7N016241; Tue, 20 Jun 2006 12:50:15 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) X-Authentication-Warning: rebelion.Sisis.de: guru set sender to m.apitz@oclcpica.org using -f Date: Tue, 20 Jun 2006 12:50:15 +0200 To: freebsd-questions@freebsd.org, jbq@caraldi.com Message-ID: <20060620105015.GA16051@rebelion.Sisis.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 6.0-RELEASE (i386) Cc: Subject: Ekiga && FreeBSD 6.0-REL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 10:50:54 -0000 Hello, I've successful ported Ekiga to my FreeBSD notebook from the sources (version ekiga-2.0.2); maybe it is interesting for the port-maintainer as well, because the port is marked as broken: rebelion# make ===> ekiga-2.0.1_2 is marked as broken: Unknown component gnomedocutils. rebelion# there have been only a small external refs clashes in a header file which I solved by un-defining some external symbols (of course this is not the right way to solve this): $ diff /usr/local/include/libintl.h /usr/local/include/libintl.h.orig 118d117 < #undef gettext 135d133 < #undef dgettext 154d151 < #undef dcgettext 236d232 < #undef textdomain 255d250 < #undef bindtextdomain 274d268 < #undef bind_textdomain_codeset and a tweaking of the ./configure script because FreeBSD 6.0-REL comes with an older version as port of the gnome-doc-utils: $ diff configure configure.orig 2316c2316 < GDU_REQUIRED_VERSION=0.2.1 --- > GDU_REQUIRED_VERSION=0.3.2 but the 0.2.1 seems to work as well. Ekiga installs fine for the rest and local audio-loop-back is working. My main question is, what could I do for the video grabbing in my notebook? Are there some external LAN based cams working with Ekiga and plug-in's for them? Thx matthias -- Matthias Apitz Manager Technical Support - OCLC PICA GmbH Gruenwalder Weg 28g - 82041 Oberhaching - Germany t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.oclcpica.org/ http://guru.UnixLand.de/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 10:54: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 78F3316A474 for ; Tue, 20 Jun 2006 10:54:00 +0000 (UTC) (envelope-from voodoo@yukon.com.ua) Received: from core.yukon.com.ua (core.yukon.com.ua [213.133.161.126]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BAAA43D45 for ; Tue, 20 Jun 2006 10:53:59 +0000 (GMT) (envelope-from voodoo@yukon.com.ua) Received: from localhost (localhost [127.0.0.1]) by core.yukon.com.ua (Postfix) with ESMTP id 8366840B0D6 for ; Tue, 20 Jun 2006 13:53:57 +0300 (EEST) Received: from core.yukon.com.ua ([127.0.0.1]) by localhost (core.yukon.com.ua [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 93965-01-4 for ; Tue, 20 Jun 2006 13:53:57 +0300 (EEST) Received: from voodoo.yukon (ucon.kiev.farlep.net [62.221.47.154]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by core.yukon.com.ua (Postfix) with ESMTP id 4DFBF40B0D5 for ; Tue, 20 Jun 2006 13:53:57 +0300 (EEST) Date: Tue, 20 Jun 2006 13:54:02 +0300 From: Skoryk Peter X-Mailer: The Bat! (v3.64.01 Christmas Edition) Professional Organization: Yukon X-Priority: 3 (Normal) Message-ID: <1054371622.20060620135402@yukon.com.ua> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at core.yukon.com.ua Subject: Dell PowerEdge 2850 hardware monitoring X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Skoryk Peter List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 10:54:00 -0000 Is there any way to monitor hardware on Dell PowerEdge 2850. Hot-Swap PowerSupply(most critical), CPU Temperature, RAID status and other? From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 11:01: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 6673916A47B for ; Tue, 20 Jun 2006 11:01:49 +0000 (UTC) (envelope-from georg@dts.su) Received: from mail.dts.su (mail.dts.su [80.84.115.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id D228B43D46 for ; Tue, 20 Jun 2006 11:01:45 +0000 (GMT) (envelope-from georg@dts.su) Received: (qmail 415 invoked by uid 1009); 20 Jun 2006 11:01:42 -0000 Received: from unknown (HELO localhost) (192.168.18.98) by mail.dts.su with SMTP; 20 Jun 2006 11:01:42 -0000 Date: Tue, 20 Jun 2006 15:01:34 +0400 From: georg@dts.su X-Mailer: The Bat! (v3.0.1.33) Professional Organization: dts.su X-Priority: 3 (Normal) Message-ID: <475461367.20060620150134@dts.su> To: freebsd-questions@freebsd.org Resent-from: georg@dts.su MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Resent-Message-Id: <20060620110145.D228B43D46@mx1.FreeBSD.org> Resent-Date: Tue, 20 Jun 2006 11:01:45 +0000 (GMT) Subject: Re[2]: Please help - adaptec 2820sa not allowing installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: georg@dts.su List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 11:01:49 -0000 Hello. > Ensel Sharon wrote: >> I did all my due diligence, I contacted freebsd-fs and _made sure_ that >> even though the 2820sa is not listed by name in the HCL, that I could take >> a 6.1-RELEASE cd and install freebsd on a 2820sa. >> >> I was _assured_ that these cards are supported in 6.1-RELEASE, that all is >> well, and I could install and that was that. >> > No, you were not assured, at least not by when we discussed this last > week. I told you that I personally did not guarantee that it worked, > only that I had heard reports that it did. > You have two variables here. One is that it's an array that is larger > than what the aac driver has supported in the past. Second is that it's > RAID-6. Both of these variables should be handled by the aac driver > update that happened last year, but again, I couldn't validate it, so I > can only go with the reports of others. > As others suggested, you need to experiment with simplier > configurations. This will help us identify the cause and hopefully > implement a fix. No one is asking you to throw away money or resources. > Since you've already done the simple test with a single drive, could you > do the following two tests: > 1. RAID-5, full size (whatever >2TB value you were talking about). > 2. RAID-6, <2TB. > From there, I'll figure out what needs to be done to get it fully > working for you. I have Adaptec 2820SA on my FreeBSD 6.1-STABLE. But it work in RAID-10 mode. I was build RAID-5, RAID-6, but FreeBSD (5.3, 5.4, 6.0, 6.1 don't see this raid drive.) On my system also work Adaptec freebsd_cli for 2820SA. -- Network Engineer, SYMBIOS LTD georg [GM5350-RIPE] mailto:georg@dts.su From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 11: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 0AAD316A474; Tue, 20 Jun 2006 11:07:55 +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 8106943D45; Tue, 20 Jun 2006 11:07:54 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from stat.sem.ipt.ru ([192.168.12.1] helo=srv.sem.ipt.ru) by mail.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1Fse5J-000MSS-G4; Tue, 20 Jun 2006 15:07:53 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1Fse6a-000Ok7-77; Tue, 20 Jun 2006 15:09:12 +0400 To: Ion-Mihai "IOnut" Tetcu References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> From: Boris Samorodov Date: Tue, 20 Jun 2006 15:09:12 +0400 In-Reply-To: <20060620133306.5559f889@it.buh.tecnik93.com> (Ion-Mihai Tetcu's message of "Tue, 20 Jun 2006 13:33:06 +0300") Message-ID: <72568263@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: Jeff Molofee , Adi Pircalabu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 11:07:55 -0000 On Tue, 20 Jun 2006 13:33:06 +0300 Ion-Mihai "IOnut" Tetcu wrote: > On Tue, 20 Jun 2006 14:09:31 +0400 > Boris Samorodov wrote: > > On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: > > > > > /me whispers 'cvs diff -uN' and misc/tinderbox :) > > > > > Or send it over andI'll run a test on one of my tindyes. > > > > Here it is. > Looks OK: > http://sce-tindy.tecnik93.com/tb-exp/index.php?action=describe_port&id=781 Great, thanks! WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 10:33: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 C8AA016A479; Tue, 20 Jun 2006 10:33:50 +0000 (UTC) (envelope-from itetcu@people.tecnik93.com) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5447F43D49; Tue, 20 Jun 2006 10:33:50 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 118AD17663; Tue, 20 Jun 2006 13:33:49 +0300 (EEST) Date: Tue, 20 Jun 2006 13:33:48 +0300 From: Ion-Mihai Tetcu To: Ion-Mihai "IOnut" Tetcu Message-ID: <20060620133348.16acac6b@it.buh.tecnik93.com> In-Reply-To: <20060620133306.5559f889@it.buh.tecnik93.com> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:54 +0000 Cc: Boris Samorodov , freebsd-ports@freebsd.org, Adi Pircalabu , freebsd-questions@freebsd.org, Jeff Molofee Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 10:33:50 -0000 On Tue, 20 Jun 2006 13:33:06 +0300 Ion-Mihai "IOnut" Tetcu wrote: > On Tue, 20 Jun 2006 14:09:31 +0400 > Boris Samorodov wrote: > > > On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: > > > > > /me whispers 'cvs diff -uN' and misc/tinderbox :) > > > > > Or send it over andI'll run a test on one of my tindyes. > > > > Here it is. > > Looks OK: > http://sce-tindy.tecnik93.com/tb-exp/index.php?action=describe_port&id=781 Should I commit ? -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #253: We've run out of licenses From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 11: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 AADA616A47C; Tue, 20 Jun 2006 11:06:33 +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 2847743D48; Tue, 20 Jun 2006 11:06:33 +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.54 (FreeBSD)) id 1Fse3x-000MS1-E2; Tue, 20 Jun 2006 15:06:29 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1Fse5E-000Ok4-4z; Tue, 20 Jun 2006 15:07:48 +0400 To: Ion-Mihai Tetcu , Alexander Leidinger References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <20060620133348.16acac6b@it.buh.tecnik93.com> From: Boris Samorodov Date: Tue, 20 Jun 2006 15:07:48 +0400 In-Reply-To: <20060620133348.16acac6b@it.buh.tecnik93.com> (Ion-Mihai Tetcu's message of "Tue, 20 Jun 2006 13:33:48 +0300") Message-ID: <38648347@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 X-Mailman-Approved-At: Tue, 20 Jun 2006 11:56:12 +0000 Cc: Jeff Molofee , Adi Pircalabu , Ion-Mihai IOnut Tetcu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 11:06:33 -0000 On Tue, 20 Jun 2006 13:33:48 +0300 Ion-Mihai Tetcu wrote: > On Tue, 20 Jun 2006 13:33:06 +0300 > Ion-Mihai "IOnut" Tetcu wrote: > > On Tue, 20 Jun 2006 14:09:31 +0400 > > Boris Samorodov wrote: > > > > > On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: > > > > > > > /me whispers 'cvs diff -uN' and misc/tinderbox :) > > > > > > > Or send it over andI'll run a test on one of my tindyes. > > > > > > Here it is. > > > > Looks OK: > > http://sce-tindy.tecnik93.com/tb-exp/index.php?action=describe_port&id=781 > Should I commit ? Alexander, would you mind? WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 12:59: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 9E18B16A47C for ; Tue, 20 Jun 2006 12:59:06 +0000 (UTC) (envelope-from jbq@anyware-tech.com) Received: from caraldi.com (195-13-58-165.oxyd.net [195.13.58.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13F4E43D53 for ; Tue, 20 Jun 2006 12:59:05 +0000 (GMT) (envelope-from jbq@anyware-tech.com) Received: from vision.anyware (10.21.96-84.rev.gaoland.net [84.96.21.10]) by caraldi.com (Postfix) with ESMTP id 9878F6132; Tue, 20 Jun 2006 14:59:04 +0200 (CEST) Received: by vision.anyware (Postfix, from userid 1021) id 895BD632D; Tue, 20 Jun 2006 14:59:04 +0200 (CEST) Date: Tue, 20 Jun 2006 14:59:04 +0200 From: Jean-Baptiste Quenot To: freebsd-questions@freebsd.org, m.apitz@oclcpica.org Message-ID: <20060620125903.GG98387@vision.anyware> Mail-Followup-To: freebsd-questions@freebsd.org, m.apitz@oclcpica.org References: <20060620105015.GA16051@rebelion.Sisis.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060620105015.GA16051@rebelion.Sisis.de> User-Agent: mutt-ng/devel-r581 (FreeBSD) Cc: Subject: Re: Ekiga && FreeBSD 6.0-REL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 12:59:06 -0000 * m.apitz@oclcpica.org: > > I've successful ported Ekiga to my FreeBSD notebook from the > sources (version ekiga-2.0.2); maybe it is interesting for the > port-maintainer as well, because the port is marked as broken: > > rebelion# make > ===> ekiga-2.0.1_2 is marked as broken: Unknown component gnomedocutils. No, ekiga is not currently broken. The last update occured in april, see http://www.freebsd.org/cgi/cvsweb.cgi/ports/net/ekiga/Makefile I will try and update the port to ekiga 2.0.2 as you suggest. Thanks for reporting. Cheers, -- Jean-Baptiste Quenot aka John Banana Qwerty http://caraldi.com/jbq/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 13:37: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 0587016A47F for ; Tue, 20 Jun 2006 13:37:41 +0000 (UTC) (envelope-from pietro.cerutti@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 C0226441DE for ; Tue, 20 Jun 2006 13:37:39 +0000 (GMT) (envelope-from pietro.cerutti@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1307734uge for ; Tue, 20 Jun 2006 06:37: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=T4MfyUmoU8ZS9xWK3hhYCmFvPOS6zbwch0hr10blXvWS4pniEJnq4tfUx/Ryg6MRCWqktCNgnsUvyegOMgFXipt92Sdh1cYYYozEZuGtR2OTDA4r0pcaPWMZqC6Gw0E7sRkbErhnSgv3PguHk+lcSGjYJ+E4FJaThp/9JBR8cgE= Received: by 10.67.97.7 with SMTP id z7mr6611077ugl; Tue, 20 Jun 2006 06:37:37 -0700 (PDT) Received: by 10.67.23.8 with HTTP; Tue, 20 Jun 2006 06:37:37 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 15:37:37 +0200 From: "Pietro Cerutti" To: "freebsd questions" In-Reply-To: <38648347@srv.sem.ipt.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <20060620133348.16acac6b@it.buh.tecnik93.com> <38648347@srv.sem.ipt.ru> Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 13:37:41 -0000 Hi Guys, sorry for top-posting, but I don't really know where to add this: I still have problems with acroread7, even after the update to linux_base-fc-4_2 and linux-xorg-libs-6.8.2_4: /usr/X11R6/Adobe/Acrobat7.0/ENU/Reader/intellinux/bin/acroread: error while loading shared libraries: /usr/lib/libm.so.6: ELF file OS ABI invalid Any ideas? Thank you! On 6/20/06, Boris Samorodov wrote: > On Tue, 20 Jun 2006 13:33:48 +0300 Ion-Mihai Tetcu wrote: > > > On Tue, 20 Jun 2006 13:33:06 +0300 > > Ion-Mihai "IOnut" Tetcu wrote: > > > > On Tue, 20 Jun 2006 14:09:31 +0400 > > > Boris Samorodov wrote: > > > > > > > On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: > > > > > > > > > /me whispers 'cvs diff -uN' and misc/tinderbox :) > > > > > > > > > Or send it over andI'll run a test on one of my tindyes. > > > > > > > > Here it is. > > > > > > Looks OK: > > > http://sce-tindy.tecnik93.com/tb-exp/index.php?action=describe_port&id=781 > > > Should I commit ? > > Alexander, would you mind? > > > WBR > -- > Boris B. Samorodov, Research Engineer > InPharmTech Co, http://www.ipt.ru > Telephone & Internet Service Provider > _______________________________________________ > 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" > -- Pietro Cerutti ICQ: 117293691 PGP: 0x9571F78E - ASCII Ribbon Campaign - against HTML e-mail and proprietary attachments www.asciiribbon.org From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 13:38: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 7B9B316A479 for ; Tue, 20 Jun 2006 13:38:56 +0000 (UTC) (envelope-from jhorne@dfwlp.com) Received: from zeus.int.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9514844063 for ; Tue, 20 Jun 2006 13:19:17 +0000 (GMT) (envelope-from jhorne@dfwlp.com) Received: from athena.int.dfwlp.com (athena.int.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.int.dfwlp.com (8.13.6/8.13.6) with ESMTP id k5KDJFEO065240 for ; Tue, 20 Jun 2006 08:19:15 -0500 (CDT) (envelope-from jhorne@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Tue, 20 Jun 2006 08:19:12 -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: <200606200819.12454.jhorne@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on zeus.int.dfwlp.com Subject: sendmail in ports vs. cvs-sources X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 13:38:56 -0000 ive noticed that sendmail in the ports collection will download and build a 8.13.7, but after a cvsup-buildworld, sendmail is still (albiet now patched) at 8.13.6. any ideas as to when the 8.13.7 will be included into the STABLE/RELENG trees? just curious, jonathan From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 13:39: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 958F516A4A7 for ; Tue, 20 Jun 2006 13:39:00 +0000 (UTC) (envelope-from jbq@anyware-tech.com) Received: from caraldi.com (195-13-58-165.oxyd.net [195.13.58.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29B7843FC1 for ; Tue, 20 Jun 2006 13:17:13 +0000 (GMT) (envelope-from jbq@anyware-tech.com) Received: from vision.anyware (10.21.96-84.rev.gaoland.net [84.96.21.10]) by caraldi.com (Postfix) with ESMTP id 0B1916132 for ; Tue, 20 Jun 2006 15:17:08 +0200 (CEST) Received: by vision.anyware (Postfix, from userid 1021) id 4156A62BE; Tue, 20 Jun 2006 15:17:08 +0200 (CEST) Date: Tue, 20 Jun 2006 15:17:08 +0200 From: Jean-Baptiste Quenot To: freebsd-questions@freebsd.org Message-ID: <20060620131706.GJ98387@vision.anyware> Mail-Followup-To: freebsd-questions@freebsd.org References: <20060620105015.GA16051@rebelion.Sisis.de> <20060620125903.GG98387@vision.anyware> <20060620131120.GA19191@rebelion.Sisis.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20060620131120.GA19191@rebelion.Sisis.de> User-Agent: mutt-ng/devel-r581 (FreeBSD) Subject: Re: Ekiga && FreeBSD 6.0-REL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 13:39:00 -0000 * m.apitz@oclcpica.org: > El día Tuesday, June 20, 2006 a las 02:59:04PM +0200, Jean-Baptiste Quenot escribió: > > > * m.apitz@oclcpica.org: > > > > > > rebelion# make > > > ===> ekiga-2.0.1_2 is marked as broken: Unknown component gnomedocutils. > > > > No, ekiga is not currently broken. The last update occured in > > april, see http://www.freebsd.org/cgi/cvsweb.cgi/ports/net/ekiga/Makefile > > I have exactly this port version because I fetched it as tar from > the FreeBSD server: > > $ fgrep Makefile,v Makefile > # $FreeBSD: ports/net/ekiga/Makefile,v 1.60 2006/04/23 10:34:03 erwin Exp $ > $ make > ===> ekiga-2.0.1_2 is marked as broken: Unknown component gnomedocutils. Please check that you have this as well in /usr/ports/Mk/bsd.gnome.mk: $FreeBSD: ports/Mk/bsd.gnome.mk,v 1.129 2006/06/14 02:51:02 marcus Exp $ -- Jean-Baptiste Quenot aka John Banana Qwerty http://caraldi.com/jbq/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 13:39: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 07BB616A54E for ; Tue, 20 Jun 2006 13:39:17 +0000 (UTC) (envelope-from m.apitz@oclcpica.org) Received: from hunter.Sisis.de (hunter.sisis.de [193.31.11.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id C789843D7D for ; Tue, 20 Jun 2006 13:11:27 +0000 (GMT) (envelope-from m.apitz@oclcpica.org) Received: (from mail@localhost) by hunter.Sisis.de (8.8.8/8.8.8) id PAA20144; Tue, 20 Jun 2006 15:08:35 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) From: m.apitz@oclcpica.org Received: from hermes.sisis.de(193.31.10.38) by hunter.Sisis.de via smap (V2.1) id xma020131; Tue, 20 Jun 06 15:08:31 +0200 Received: from rebelion.Sisis.de (rebelion.Sisis.de [193.31.10.34]) by hermes.sisis.de (8.8.8/8.8.8) with ESMTP id PAA27465; Tue, 20 Jun 2006 15:11:22 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) Received: (from guru@localhost) by rebelion.Sisis.de (8.13.4/8.13.4/Submit) id k5KDBKTX068208; Tue, 20 Jun 2006 15:11:20 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) X-Authentication-Warning: rebelion.Sisis.de: guru set sender to m.apitz@oclcpica.org using -f Date: Tue, 20 Jun 2006 15:11:20 +0200 To: Jean-Baptiste Quenot , freebsd-questions@freebsd.org Message-ID: <20060620131120.GA19191@rebelion.Sisis.de> References: <20060620105015.GA16051@rebelion.Sisis.de> <20060620125903.GG98387@vision.anyware> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20060620125903.GG98387@vision.anyware> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 6.0-RELEASE (i386) Cc: Subject: Re: Ekiga && FreeBSD 6.0-REL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 13:39:17 -0000 El día Tuesday, June 20, 2006 a las 02:59:04PM +0200, Jean-Baptiste Quenot escribió: > * m.apitz@oclcpica.org: > > > > I've successful ported Ekiga to my FreeBSD notebook from the > > sources (version ekiga-2.0.2); maybe it is interesting for the > > port-maintainer as well, because the port is marked as broken: > > > > rebelion# make > > ===> ekiga-2.0.1_2 is marked as broken: Unknown component gnomedocutils. > > No, ekiga is not currently broken. The last update occured in > april, see http://www.freebsd.org/cgi/cvsweb.cgi/ports/net/ekiga/Makefile I have exactly this port version because I fetched it as tar from the FreeBSD server: $ fgrep Makefile,v Makefile # $FreeBSD: ports/net/ekiga/Makefile,v 1.60 2006/04/23 10:34:03 erwin Exp $ $ make ===> ekiga-2.0.1_2 is marked as broken: Unknown component gnomedocutils. > I will try and update the port to ekiga 2.0.2 as you suggest. > Thanks for reporting. It turned out that there is as well the need for a tool called 'gnome-help-browser'; without this the online help does not work; just running 'make install' in /usr/ports/x11/gnome2 to see if I can get this to work. Thx for the feedbck matthias -- Matthias Apitz Manager Technical Support - OCLC PICA GmbH Gruenwalder Weg 28g - 82041 Oberhaching - Germany t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.oclcpica.org/ http://guru.UnixLand.de/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 13:47: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 C076D16A481 for ; Tue, 20 Jun 2006 13:47:02 +0000 (UTC) (envelope-from m.apitz@oclcpica.org) Received: from hunter.Sisis.de (hunter.sisis.de [193.31.11.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id C956943D45 for ; Tue, 20 Jun 2006 13:47:01 +0000 (GMT) (envelope-from m.apitz@oclcpica.org) Received: (from mail@localhost) by hunter.Sisis.de (8.8.8/8.8.8) id PAA21144; Tue, 20 Jun 2006 15:44:09 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) From: m.apitz@oclcpica.org Received: from hermes.sisis.de(193.31.10.38) by hunter.Sisis.de via smap (V2.1) id xma021135; Tue, 20 Jun 06 15:43:55 +0200 Received: from rebelion.Sisis.de (rebelion.Sisis.de [193.31.10.34]) by hermes.sisis.de (8.8.8/8.8.8) with ESMTP id PAA27931; Tue, 20 Jun 2006 15:46:46 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) Received: (from guru@localhost) by rebelion.Sisis.de (8.13.4/8.13.4/Submit) id k5KDki4H024257; Tue, 20 Jun 2006 15:46:44 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) X-Authentication-Warning: rebelion.Sisis.de: guru set sender to m.apitz@oclcpica.org using -f Date: Tue, 20 Jun 2006 15:46:43 +0200 To: Jean-Baptiste Quenot , freebsd-questions@freebsd.org Message-ID: <20060620134643.GA71631@rebelion.Sisis.de> References: <20060620105015.GA16051@rebelion.Sisis.de> <20060620125903.GG98387@vision.anyware> <20060620131120.GA19191@rebelion.Sisis.de> <20060620131706.GJ98387@vision.anyware> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20060620131706.GJ98387@vision.anyware> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 6.0-RELEASE (i386) Cc: Subject: Re: Ekiga && FreeBSD 6.0-REL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 13:47:02 -0000 El día Tuesday, June 20, 2006 a las 03:17:08PM +0200, Jean-Baptiste Quenot escribió: > > I have exactly this port version because I fetched it as tar from > > the FreeBSD server: > > > > $ fgrep Makefile,v Makefile > > # $FreeBSD: ports/net/ekiga/Makefile,v 1.60 2006/04/23 10:34:03 erwin Exp $ > > $ make > > ===> ekiga-2.0.1_2 is marked as broken: Unknown component gnomedocutils. > > Please check that you have this as well in /usr/ports/Mk/bsd.gnome.mk: > > $FreeBSD: ports/Mk/bsd.gnome.mk,v 1.129 2006/06/14 02:51:02 marcus Exp $ ok, there I have what was installed with 6.0-REL: $FreeBSD: ports/Mk/bsd.gnome.mk,v 1.96 2005/05/21 19:51:41 kwm Exp $ matthias -- Matthias Apitz Manager Technical Support - OCLC PICA GmbH Gruenwalder Weg 28g - 82041 Oberhaching - Germany t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.oclcpica.org/ http://guru.UnixLand.de/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 13:55: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 C907A16A49A for ; Tue, 20 Jun 2006 13:55:22 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pfepc.post.tele.dk (pfepc.post.tele.dk [195.41.46.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DC914417F for ; Tue, 20 Jun 2006 13:24:19 +0000 (GMT) (envelope-from alive@dienub.org) Received: from m00h.dienub.org (dienub.org [87.49.144.133]) by pfepc.post.tele.dk (Postfix) with ESMTP id DE7248A007A; Tue, 20 Jun 2006 15:24:13 +0200 (CEST) Received: from [192.168.0.2] (unknown [192.168.0.2]) by m00h.dienub.org (Postfix) with ESMTP id 6D3F01CC0A; Tue, 20 Jun 2006 15:24:13 +0200 (CEST) Message-ID: <4498131A.2020407@dienub.org> Date: Tue, 20 Jun 2006 15:24:10 +0000 From: "Daniel A. A." User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 To: Jim Pazarena References: <4497961C.3030207@ccstores.com> In-Reply-To: <4497961C.3030207@ccstores.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: openwebmail X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 13:55:22 -0000 Jim Pazarena wrote: > does anyone have any recent how-to pages on setting > up openwebmail on FreeBSD? > > a google shows lots of Linux stuff, most referring back to > Openwebmail website, but FreeBSD setup is virtually non-existent. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" Why not just setup the mail/openwebmail port in a test-environment and go from there? I would, personally, not call myself anything near "knowledgeable" in FreeBSD, but I have _never_ stumbled upon a piece of software which I had to spend more than a few hours to setup and get working properly with sane configuration, even if I had to read the documentation. So, don't worry, OpenWebmail should be working fine in FreeBSD. Seing as this is an application which interacts with Apache, and not the OS itself, everything should be nearly the same as on a Linux system. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 14: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 EBFE716A533 for ; Tue, 20 Jun 2006 14:13:50 +0000 (UTC) (envelope-from SRS0=pq4RLF3s=AH=asarian-host.net=admin@asarian-host.net) Received: from mail.asarian-host.net (mail.asarian-host.net [194.109.160.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3290A43D45 for ; Tue, 20 Jun 2006 14:13:49 +0000 (GMT) (envelope-from SRS0=pq4RLF3s=AH=asarian-host.net=admin@asarian-host.net) Received: from anonymizer.asarian-host.net (localhost [127.0.0.1]) (authenticated bits=0) by mail.asarian-host.net (8.13.5/8.13.5) with ESMTP id k5KEDm3t038686 for ; Tue, 20 Jun 2006 16:13:48 +0200 (CEST) (envelope-from admin@asarian-host.net) From: Mark Received-SPF: pass (asarian-host.net: 127.0.0.1 is authenticated by a trusted mechanism) receiver=anonymizer.asarian-host.net; client-ip=127.0.0.1; envelope-from=; helo=clientrunner.asarian-host.net; Message-Id: <200606201413.k5KEDlNB038676@asarian-host.net> Date: Tue, 20 Jun 2006 14:13:48 GMT X-Authenticated-Sender: admin@asarian-host.net X-Trace: 4WfLA54OF38QoP2Eq+gz82R2d2mB+6cbdwTyMgdoSjtVgBGajbNXg/kZ9AVYX81V X-Complaints-To: abuse@asarian-host.net X-Abuse-Info: Please be sure to forward a copy of ALL headers, otherwise we are unable to process your complaint Organization: Asarian-host To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit In-Reply-To: AAAAAKQGe+aqp+ZKtXiBFnEv70CkPAIB X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 X-Auth: Asarian-host PGP signature iQEVAwUARJgCnDFqW1BleBN9AQG8EwgAjjLeKnIfJ16MztPVaVhewFh9mnU/2eJN 4KADNtV0zjT0e+jgdRZPrVxeWmOxN1qJgc92Ise6Vy+LgnWwB6/0wpsEhOa3k0vS iSH4iW1OFuMUk+nHJi4CAWJ85Ga1fni0Gpm1FwqKTK3HZi+1m6vt+qaQaEXwoW0S TctVxsd+hv63lY7bIYZf4xe+cW/mRmKa/ABoEabRAqelkjfje939GlZkHVkDyoru Nnf4PzFtxnmO5xe4JpjP2nCub6xGnDsr0RLWxlFyRUa88kTj9Pdg5frJ0WBpg1XB uV5qyDpOicu96n3epShhM2Be0KkVLO/WOYB+OCcYH4Vxa+XX2fpUPA== =HIbL Subject: RE: openwebmail X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 14:13:51 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Jim Pazarena > Sent: Tuesday, June 20, 2006 8:33 AM > To: freebsd-questions@freebsd.org > Subject: openwebmail > > > > does anyone have any recent how-to pages on setting > up openwebmail on FreeBSD? The Openwebmail documentation is pretty self-explanatory. It's all Perl, very easy to set up, and I have it running for a couple of years now, even in a chrooted environment. - Mark From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 14:15: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 2D38616A518 for ; Tue, 20 Jun 2006 14:15:41 +0000 (UTC) (envelope-from bcook@poklib.org) Received: from c.mx.poklib.org (c.mx.poklib.org [64.72.87.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97A5843D72 for ; Tue, 20 Jun 2006 14:15:37 +0000 (GMT) (envelope-from bcook@poklib.org) Received: from [192.168.1.249] (helo=mail.poklib.org) by c.mx.poklib.org with esmtps (TLSv1:AES256-SHA:256) (Exim 4.60; FreeBSD) (envelope-from ) id 1Fsh0w-000ODK-IR for freebsd-questions@freebsd.org ; Tue, 20 Jun 2006 10:15:34 -0400 Received: from [192.168.1.218] by mail.poklib.org with esmtp (Exim 4.60; FreeBSD) (envelope-from ) id 1Fsh0w-0001wi-3K for freebsd-questions@freebsd.org ; Tue, 20 Jun 2006 10:15:34 -0400 Message-ID: <44980305.7010806@poklib.org> Date: Tue, 20 Jun 2006 10:15:33 -0400 From: "B. Cook" Organization: Network Administrator - Adriance Memorial Library User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-RcvHost: [192.168.1.218] X-RcvFor: X-Auth-Id: X-AntiVirus: No Virus Found X-MIME-Character-set: ISO-8859-1 Subject: rcorder example? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 14:15:41 -0000 Hello all, I'm looking at what I think is the right answer.. but can't make sense of it.. basically I have a couple of mailservers that run exim and dnscache, all being called out of daemontools. but I can't seem to figure out how to make svscan start first.. # PROVIDE: svscan # REQUIRE: LOGIN this is what is in the svscan.sh file .. so um.. how does it work? I understand what it is supposed to do from the man page.. but I can't figure out how to actually tweak/tune it.. I also have another box with dansguardian and squid.. and dansguardian depends on squid but because d comes before s, dansguardian starts first, fails then squid starts.. and I've tried to use rcorder to fix that problem and can't seem to make that happen. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 14:35: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 C89DC16A484 for ; Tue, 20 Jun 2006 14:35:33 +0000 (UTC) (envelope-from petermatulis@yahoo.ca) Received: from web60025.mail.yahoo.com (web60025.mail.yahoo.com [209.73.178.73]) by mx1.FreeBSD.org (Postfix) with SMTP id 5D22D43D46 for ; Tue, 20 Jun 2006 14:35:33 +0000 (GMT) (envelope-from petermatulis@yahoo.ca) Received: (qmail 77074 invoked by uid 60001); 20 Jun 2006 14:35:32 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.ca; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=KpUoK0tPvW8AkGw3Jeh2p1RAMgIBb35cA3ZiUxleGc1EMj+q0+30rze0lvS4meaWGNnyo7sEg0nAriaZu1se+eOUaI5Bu6gLsFFovfBUqMbY9HDyCtveXqTsi0S095O2iVH7ITgw1mmO1SaJpFg3U1aP7wPE9/uYUYeMIkzb2x4= ; Message-ID: <20060620143532.77072.qmail@web60025.mail.yahoo.com> Received: from [70.81.189.3] by web60025.mail.yahoo.com via HTTP; Tue, 20 Jun 2006 10:35:32 EDT Date: Tue, 20 Jun 2006 10:35:32 -0400 (EDT) From: Peter To: freebsd-questions MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: cannot upgrade linux-xorg-libs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 14:35:33 -0000 I'm having trouble upgrading my 5.4-STABLE box. /usr/ports/UPDATING says: ------------------------------------- 20060616: AFFECTS users of emulation/linux_base-* AUTHOR: netchild@FreeBSD.org We now use Fedora Core 4 as the linux base port, and the corresponding xorg libs for the linux X11 libs port. To upgrade you have to run portupgrade -f -o emulators/linux_base-fc4 linux_base\* portupgrade -f -o x11/linux-xorg-libs linux-XFree86-libs ------------------------------------- The first command works but the second does not: => xorg-x11-deprecated-libs-6.8.2-31.i386.rpm doesn't seem to exist in /usr/ports/distfiles/rpm/i386/fedora/4. => Attempting to fetch from cvsup11.us.freebsd.org. fetch: cvsup11.us.freebsd.orgxorg-x11-deprecated-libs-6.8.2-31.i386.rpm: No such file or directory => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/rpm/i386/fedora/4/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/rpm/i386/fedora/4/xorg-x11-deprecated-libs-6.8.2-31.i386.rpm: File unavailable (e.g., file not found, no access) => Couldn't fetch it - please try to retrieve this => port manually into /usr/ports/distfiles/rpm/i386/fedora/4 and try again. *** Error code 1 Stop in /usr/ports/x11/linux-xorg-libs. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade78929.0 make ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! x11/linux-xorg-libs (linux-XFree86-libs-4.3.99.902_7) (fetch error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed This file (xorg-x11-deprecated-libs-6.8.2-31.i386.rpm) cannot be found manually. Any ideas? $ pkg_info | grep linux_base linux_base-fc-4_1 Base set of packages needed in Linux mode (for i386/amd64) __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 12:54: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 7CA0F16A47A for ; Tue, 20 Jun 2006 12:54:11 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95DC743D49 for ; Tue, 20 Jun 2006 12:54:10 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5CFF4.dip.t-dialin.net [84.165.207.244]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k5KCnBJ1067154; Tue, 20 Jun 2006 14:49:12 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (localhost [127.0.0.1]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k5KCs9sn082797; Tue, 20 Jun 2006 14:54:09 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Tue, 20 Jun 2006 14:54:09 +0200 Message-ID: <20060620145409.sbvu6j5bcoww8cwk@netchild.homeip.net> X-Priority: 3 (Normal) Date: Tue, 20 Jun 2006 14:54:09 +0200 From: Alexander Leidinger To: Boris Samorodov References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <20060620133348.16acac6b@it.buh.tecnik93.com> <38648347@srv.sem.ipt.ru> In-Reply-To: <38648347@srv.sem.ipt.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1) / FreeBSD-4.11 X-Virus-Scanned: by amavisd-new X-Mailman-Approved-At: Tue, 20 Jun 2006 14:38:22 +0000 Cc: Ion-Mihai Tetcu , Adi Pircalabu , Jeff, Molofee , freebsd-ports@FreeBSD.org, Ion-Mihai IOnut Tetcu , freebsd-questions@FreeBSD.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 12:54:11 -0000 Quoting Boris Samorodov (from Tue, 20 Jun 2006 15:07:48 +0400)= : > On Tue, 20 Jun 2006 13:33:48 +0300 Ion-Mihai Tetcu wrote: > >> On Tue, 20 Jun 2006 13:33:06 +0300 >> Ion-Mihai "IOnut" Tetcu wrote: > >> > On Tue, 20 Jun 2006 14:09:31 +0400 >> > Boris Samorodov wrote: >> > >> > > On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: >> > > >> > > > /me whispers 'cvs diff -uN' and misc/tinderbox :) >> > > >> > > > Or send it over andI'll run a test on one of my tindyes. >> > > >> > > Here it is. >> > >> > Looks OK: >> > http://sce-tindy.tecnik93.com/tb-exp/index.php?action=3Ddescribe_port&i= d=3D781 > >> Should I commit ? > > Alexander, would you mind? No, feel free to give approval to itetcu to commit it. ;-) Bye, Alexander. P.S.: I see Boris as one of currently two people which can be =20 described as maintainers of the emulation@ owned ports. And I'm =20 nagging portmgr to get a commit bit for him. Additionally there's no =20 lock on emulation@ owned ports (except the usual "hands of if you do =20 not really know what you are doing", and the linux infrastructure has =20 a lot of pitfalls...). --=20 Selling GoodYear Eagle F1 235/40ZR18, 2x 4mm + 2x 5mm, ~130 EUR you have to pick it up between Germany/Saarland and Luxembourg/Capellen http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 13:35: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 7A83D16A474; Tue, 20 Jun 2006 13:35:42 +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 AFA5C441F3; Tue, 20 Jun 2006 13:35:41 +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.54 (FreeBSD)) id 1Fsfzi-000MnU-QR; Tue, 20 Jun 2006 17:10:14 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1Fsg0z-000OvS-8D; Tue, 20 Jun 2006 17:11:33 +0400 To: Alexander Leidinger References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <20060620133348.16acac6b@it.buh.tecnik93.com> <38648347@srv.sem.ipt.ru> <20060620145409.sbvu6j5bcoww8cwk@netchild.homeip.net> From: Boris Samorodov Date: Tue, 20 Jun 2006 17:11:33 +0400 In-Reply-To: <20060620145409.sbvu6j5bcoww8cwk@netchild.homeip.net> (Alexander Leidinger's message of "Tue, 20 Jun 2006 14:54:09 +0200") Message-ID: <27926810@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 X-Mailman-Approved-At: Tue, 20 Jun 2006 14:39:50 +0000 Cc: Ion-Mihai Tetcu , Adi Pircalabu , Jeff Molofee , freebsd-ports@FreeBSD.org, Ion-Mihai IOnut Tetcu , freebsd-questions@FreeBSD.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 13:35:42 -0000 On Tue, 20 Jun 2006 14:54:09 +0200 Alexander Leidinger wrote: > Quoting Boris Samorodov (from Tue, 20 Jun 2006 15:07:48 +0400): > > On Tue, 20 Jun 2006 13:33:48 +0300 Ion-Mihai Tetcu wrote: > > > >> On Tue, 20 Jun 2006 13:33:06 +0300 > >> Ion-Mihai "IOnut" Tetcu wrote: > > > >> > On Tue, 20 Jun 2006 14:09:31 +0400 > >> > Boris Samorodov wrote: > >> > > >> > > On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: > >> > > > >> > > > /me whispers 'cvs diff -uN' and misc/tinderbox :) > >> > > > >> > > > Or send it over andI'll run a test on one of my tindyes. > >> > > > >> > > Here it is. > >> > > >> > Looks OK: > >> > http://sce-tindy.tecnik93.com/tb-exp/index.php?action=describe_port&id=781 > > > >> Should I commit ? > > > > Alexander, would you mind? > No, feel free to give approval to itetcu to commit it. ;-) OK. Ion-Mihai, will you please be so kind to commit the patch? Thanks. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 13:47: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 BABB216A529; Tue, 20 Jun 2006 13:47:18 +0000 (UTC) (envelope-from itetcu@people.tecnik93.com) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 113CF43D5D; Tue, 20 Jun 2006 13:47:15 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 6E0FD1765D; Tue, 20 Jun 2006 16:47:14 +0300 (EEST) Date: Tue, 20 Jun 2006 16:47:14 +0300 From: Ion-Mihai Tetcu To: Boris Samorodov Message-ID: <20060620164714.2f1e5863@it.buh.tecnik93.com> In-Reply-To: <27926810@srv.sem.ipt.ru> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <20060620133348.16acac6b@it.buh.tecnik93.com> <38648347@srv.sem.ipt.ru> <20060620145409.sbvu6j5bcoww8cwk@netchild.homeip.net> <27926810@srv.sem.ipt.ru> X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Tue, 20 Jun 2006 14:40:34 +0000 Cc: Adi Pircalabu , Jeff, Molofee , freebsd-ports@FreeBSD.org, Alexander Leidinger , Ion-Mihai IOnut Tetcu , freebsd-questions@FreeBSD.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 13:47:18 -0000 On Tue, 20 Jun 2006 17:11:33 +0400 Boris Samorodov wrote: > On Tue, 20 Jun 2006 14:54:09 +0200 Alexander Leidinger wrote: > > Quoting Boris Samorodov (from Tue, 20 Jun 2006 15:07:48 +0400): > > > On Tue, 20 Jun 2006 13:33:48 +0300 Ion-Mihai Tetcu wrote: > > > > > >> On Tue, 20 Jun 2006 13:33:06 +0300 > > >> Ion-Mihai "IOnut" Tetcu wrote: > > > > > >> > On Tue, 20 Jun 2006 14:09:31 +0400 > > >> > Boris Samorodov wrote: > > >> > > > >> > > On Tue, 20 Jun 2006 12:23:19 +0300 Ion-Mihai "IOnut" Tetcu wrote: > > >> > > > > >> > > > /me whispers 'cvs diff -uN' and misc/tinderbox :) > > >> > > > > >> > > > Or send it over andI'll run a test on one of my tindyes. > > >> > > > > >> > > Here it is. > > >> > > > >> > Looks OK: > > >> > http://sce-tindy.tecnik93.com/tb-exp/index.php?action=describe_port&id=781 > > > > > >> Should I commit ? > > > > > > Alexander, would you mind? > > > No, feel free to give approval to itetcu to commit it. ;-) > > OK. Ion-Mihai, will you please be so kind to commit the patch? > Thanks. Commited. -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #60: system has been recalled From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 14:56: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 1AC5816A481 for ; Tue, 20 Jun 2006 14:56:28 +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 B859843D6A for ; Tue, 20 Jun 2006 14:56:27 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 16523 invoked from network); 20 Jun 2006 14:56:27 -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 ; 20 Jun 2006 14:56:26 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 72CAC28449; Tue, 20 Jun 2006 10:56:26 -0400 (EDT) To: Michael Pope To: "Luchezar Petkov" References: <4496B0C8.2030401@optusnet.com.au> From: Lowell Gilbert Date: Tue, 20 Jun 2006 10:56:26 -0400 In-Reply-To: <4496B0C8.2030401@optusnet.com.au> (Michael Pope's message of "Tue, 20 Jun 2006 00:12:24 +1000") Message-ID: <441wtjx4dh.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: configgen.sh automake problem 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, 20 Jun 2006 14:56:28 -0000 Michael Pope writes: > I'm having a problem with aclocal and Automake when I'm running > configgen.sh for inkscape on FreeBSD 5.4. > > Here is the error: > > ===> Running aclocal... > aclocal: couldn't open directory > /usr/local/gnu-autotools/share/aclocal': No such file or directory > ===> Running autoheader... > ===> Running libtoolize... > ===> Running automake... > configure.ac:12: version mismatch. This is Automake 1.9.6, > configure.ac:12: but the definition used by this AM_INIT_AUTOMAKE > configure.ac:12: comes from Automake 1.8.5. You should recreate > configure.ac:12: aclocal.m4 with aclocal and run automake again. > ===> Running autoconf... > ===> Configure script created successfully > > What is aclocal? There isn't any man page on it. How do I recreate > my aclocal.m4 using the 1.9.6 version (which is installed)? There was some thrashing over the autotools in recent days, but I don't recall the details; please check the mailing list archives (might be the ports list; I'm not sure) for opinions by people who (unlike myself) know what they're talking about. Definitely make sure that you only have the latest versions of the autotools involved, and if you haven't updated libtool so that you only have the 1.5 release, do that. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 14:58: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 8C62E16A47E for ; Tue, 20 Jun 2006 14:58:06 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail1.sea5.speakeasy.net (mail1.sea5.speakeasy.net [69.17.117.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BBDD43D49 for ; Tue, 20 Jun 2006 14:58:06 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 18147 invoked from network); 20 Jun 2006 14:58:05 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 20 Jun 2006 14:58:05 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 2641328449; Tue, 20 Jun 2006 10:58:05 -0400 (EDT) To: Forrest Aldrich References: <4496DAAE.8@forrie.com> From: Lowell Gilbert Date: Tue, 20 Jun 2006 10:58:05 -0400 In-Reply-To: <4496DAAE.8@forrie.com> (Forrest Aldrich's message of "Mon, 19 Jun 2006 13:11:10 -0400") Message-ID: <44wtbbvpqa.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: Bootup/netconfig oddity 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, 20 Jun 2006 14:58:06 -0000 Forrest Aldrich writes: > I have a freshly-built (cvsup'd today) FreeBSD_6.1 system which fails > to set the default router upon boot. > > I have tried two routers, both on the same /24 segment... "network > unreachable". These were set using the "defaultrouter=xxx.xx.xxx.xx" > in /etc/rc.conf. > > However... if I manually use "dhclient em0", it works. > > I wonder if I'm hitting a bug, or ... It sounds like you're trying to set a default router that isn't on a local network. When you *don't* use dhclient on em0, how do you configure it? It needs to have an address and netmask that correspond to the router in order to set a default route through the router. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 14:59: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 8373C16A47C for ; Tue, 20 Jun 2006 14:59:06 +0000 (UTC) (envelope-from forrie@forrie.com) Received: from forrie.com (c-24-62-224-60.hsd1.nh.comcast.net [24.62.224.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88A4043D6E for ; Tue, 20 Jun 2006 14:58:58 +0000 (GMT) (envelope-from forrie@forrie.com) Received: from [192.168.230.27] (spk-gw.online-buddies.com [66.92.69.182]) (authenticated bits=0) by forrie.com (8.13.6/8.13.6) with ESMTP id k5KEwp0D077237 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 20 Jun 2006 10:58:57 -0400 (EDT) (envelope-from forrie@forrie.com) Message-ID: <44980D49.3090000@forrie.com> Date: Tue, 20 Jun 2006 10:59:21 -0400 From: Forrest Aldrich User-Agent: Thunderbird 1.5.0.5 (Windows/20060619) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4496DAAE.8@forrie.com> <44wtbbvpqa.fsf@be-well.ilk.org> In-Reply-To: <44wtbbvpqa.fsf@be-well.ilk.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.88.2/1550/Mon Jun 19 13:01:35 2006 on mail.forrie.com X-Virus-Status: Clean Subject: Re: Bootup/netconfig oddity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 14:59:06 -0000 The problem ended up being I had the incorrect netmask. They are using here 255.255.0.0 instead of 255.255.255.0 Lowell Gilbert wrote: > Forrest Aldrich writes: > > >> I have a freshly-built (cvsup'd today) FreeBSD_6.1 system which fails >> to set the default router upon boot. >> >> I have tried two routers, both on the same /24 segment... "network >> unreachable". These were set using the "defaultrouter=xxx.xx.xxx.xx" >> in /etc/rc.conf. >> >> However... if I manually use "dhclient em0", it works. >> >> I wonder if I'm hitting a bug, or ... >> > > It sounds like you're trying to set a default router that isn't on a > local network. When you *don't* use dhclient on em0, how do you > configure it? It needs to have an address and netmask that correspond > to the router in order to set a default route through the router. > From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 15:00: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 CDCF516A47D for ; Tue, 20 Jun 2006 15:00:49 +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 78DCA43D69 for ; Tue, 20 Jun 2006 15:00:49 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 6424 invoked from network); 20 Jun 2006 15:00:49 -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 ; 20 Jun 2006 15:00:49 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id A4CF828449; Tue, 20 Jun 2006 11:00:48 -0400 (EDT) To: "Tsu-Fan Cheng" References: From: Lowell Gilbert Date: Tue, 20 Jun 2006 11:00:48 -0400 In-Reply-To: (Tsu-Fan Cheng's message of "Mon, 19 Jun 2006 20:02:23 -0400") Message-ID: <44sllzvplr.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: azureus on freebsd and windows 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, 20 Jun 2006 15:00:49 -0000 "Tsu-Fan Cheng" writes: > happy fathers day! I have Azureus running both on windows and on > freebsd/amd64. and I found it was very different, on windows azureus is very > quick in downloading files, but not on freebsd, it is very slow and usually > no download. I forward the port through the router and it's still the same. > any idea of how i can tune this? thanks a bunch!! Probably a firewall issue blocking the incoming connections from other peers. Look at the incoming connections (I think port 6881 incoming is the relevant one) to see what is being blocked. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 16:02: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 BD8D416A47B for ; Tue, 20 Jun 2006 16:02:33 +0000 (UTC) (envelope-from "cyb."@gmx.net) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by mx1.FreeBSD.org (Postfix) with SMTP id BE52043D4C for ; Tue, 20 Jun 2006 16:02:32 +0000 (GMT) (envelope-from "cyb."@gmx.net) Received: (qmail invoked by alias); 20 Jun 2006 16:02:30 -0000 Received: from pD952F1BB.dip0.t-ipconnect.de (EHLO p4-3200) [217.82.241.187] by mail.gmx.net (mp037) with SMTP; 20 Jun 2006 18:02:30 +0200 X-Authenticated: #4870692 Date: Tue, 20 Jun 2006 18:02:24 +0200 To: freebsd-questions@freebsd.org From: "Andreas Rudisch" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-15 MIME-Version: 1.0 References: <44sllzvplr.fsf@be-well.ilk.org> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <44sllzvplr.fsf@be-well.ilk.org> User-Agent: Opera Mail/9.00 (Win32) X-Y-GMX-Trusted: 0 Subject: Re: azureus on freebsd and windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 16:02:33 -0000 On Tue, 20 Jun 2006 17:00:48 +0200, Lowell Gilbert wrote: > "Tsu-Fan Cheng" writes: > >> happy fathers day! I have Azureus running both on windows and on >> freebsd/amd64. and I found it was very different, on windows azureus is >> very >> quick in downloading files, but not on freebsd, it is very slow and >> usually >> no download. I forward the port through the router and it's still the >> same. >> any idea of how i can tune this? thanks a bunch!! > > Probably a firewall issue blocking the incoming connections from other > peers. Look at the incoming connections (I think port 6881 incoming > is the relevant one) to see what is being blocked. Make sure to read this as well if you use Java 1.5 http://lists.freebsd.org/pipermail/freebsd-java/2006-June/005409.html From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 16:38: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 B2CC616A481 for ; Tue, 20 Jun 2006 16:38:48 +0000 (UTC) (envelope-from jjf@mind.net) Received: from anima.mind.net (anima.mind.net [69.9.129.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D4B243D60 for ; Tue, 20 Jun 2006 16:38:43 +0000 (GMT) (envelope-from jjf@mind.net) Received: (qmail 25645 invoked by uid 89); 20 Jun 2006 16:38:43 -0000 Received: by simscan 1.0.7 ppid: 25573, pid: 25642, t: 0.0506s scanners: attach: 1.0.7 clamav: 0.87/m:39/d:1548 Received: from office-gw.mind.net (HELO 192.168.9.28) (69.9.130.28) by anima.mind.net with SMTP; 20 Jun 2006 16:38:43 -0000 Received: (qmail 55737 invoked by uid 501); 20 Jun 2006 16:38:28 -0000 Date: Tue, 20 Jun 2006 09:38:28 -0700 From: John Fox To: freebsd-questions@freebsd.org Message-ID: <20060620163828.GA23425@mind.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Vocabulary-Word: ethical X-Quip: Fly the white flag of war! User-Agent: Mutt/1.5.11 Subject: GEOM issue -- making changes to slices/partitions on used disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 16:38:48 -0000 This happened on a FreeBSD 6.0 machine. Installed a SCSI drive on the machine -- drive had been used for testing previously and had an ext2 FS on it. I was able to use the sysinstall fdisk utility to remove the ext2fs partition and create a FreeBSD slice that utilized the entire disk. Then I loaded up the sysinstall disklabel utility, setup my partitions and when I went to write my changes, recieved an error about being unable to mount these new partitions -- said mount point did not exist. I decided I'd just try it again, so I exited sysinstall and restarted it. In the disklabel tool, I added only a swap partition. Swap partition was created without a problem. Exited sysinstall, restarted it to add the other new partitions. I could not write anything, however, as whenever I attempted to do so, I got the error message "ERROR: Unable to write data to disk da1". I decided I'd remove the slice and start fresh, however when I attempted to write this change, I again got an error message stating that data could not be written. At this point I did some research, and it seems that the issue is related to GEOM not allowing alteration of MBR/slices/partitions on used devices, and that the solution is to set sysctl knob kern.geom.debugflags=16 (Found it on this thread: http://groups.google.com/group/mailing.freebsd.current/browse_thread/thread/e7db21985d1b1cc3/3113b6502c5450ef?lnk=st&q=freebsd+sysinstall+fdisk+ERROR%3A+Unable+to+write+data+to+disk&rnum=4&hl=en#3113b6502c5450ef) Also on this thread is a word of caution, stating that use of this sysctl knob has been known to result in dev entries getting confused and blowing away the wrong partition -- which would obviously be quite undesirable. This seems like a rather clunky solution, and the posts in the cited thread are two years old, so I am wondering if there's another way to go now, or if the bugs are now worked out and it's safe to use this sysctl knob. One more thing to note: the posts in the thread mention 5.x specifically, but the behavior certainly seems to match that encountered on my 6.0 box. Any thoughts or input are quite appreciated! Thank you, John -- jjf@mind.net John Fox, Systems Administrator InfoStructure - http://www.mind.net Vox: (541)773-5000 / Fax: (541)488-7599 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 16:39: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 4873816A47D for ; Tue, 20 Jun 2006 16:39:47 +0000 (UTC) (envelope-from philippe.lang@attiksystem.ch) Received: from mail.attiksystem.ch (f29.attiksystem.ch [212.147.59.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5CAF43DA2 for ; Tue, 20 Jun 2006 16:39:19 +0000 (GMT) (envelope-from philippe.lang@attiksystem.ch) Received: from poweredge.attiksystem.ch (poweredge.attiksystem.ch [10.0.0.29]) by mail.attiksystem.ch (8.12.11/8.12.11) with ESMTP id k5KGdDxD093993; Tue, 20 Jun 2006 18:39:14 +0200 (CEST) (envelope-from philippe.lang@attiksystem.ch) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Tue, 20 Jun 2006 18:39:13 +0200 Message-ID: <6C0CF58A187DA5479245E0830AF84F4218CCFC@poweredge.attiksystem.ch> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ICH5R, ICH7R or Promise PDC20378 RAID? Thread-Index: AcaTml0aO6mRpUdjTomBSIsQLMEZOQA61I9A From: "Philippe Lang" To: "Doug Poland" X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.49 on 10.0.0.111 Cc: freebsd-questions Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 16:39:47 -0000 owner-freebsd-questions@freebsd.org wrote: > On Mon, Jun 19, 2006 at 10:18:05AM +0200, Philippe Lang wrote: >> Hi, >>=20 >> I've got two boxes that would be perfect for a small server. The >> motherboards are:=20 >>=20 >> - ASUS P4C800-E Deluxe, with ICH5R and Promise PDC20378 >> - ASUS P5WD2, with ICH7R >>=20 >> I intend to install FreeBSD 6.1, and I wonder which chipset you would >> recommend me for RAID 1? I need something rock-solid, of course... >>=20 > I'm running -STABLE on a P4C800-E. I've never had a problem > with the PDC20378. Recently, I added two drives on the ICH5R > with no issues. A little benchmarking shows the ICH5R to be a little > faster.=20 Hi, I wasn't as lucky as Doug with my ASUS P4C800-E Deluxe board, both with the ICH5R and Promise RAID controller. 1) With the Promise controller, after simulating a disk problem (shutdown - disk disconnection - reboot - shutdown - disk reconnection - reboot), I wasn't able to rebuild the array at all, either with "atacontrol rebuild ar0" or from the bios. I suspect a spare disk is necessary for a complete rebuild. 2) With the ICH5R controller, installation went fine too. If I disconnect a disk, the system still boots, but when I plug the disk back (computer shut down), no boot is possible anymore. At boot, a kernel panic says: "softdep_setup_inomapdep". No array rebuild is possible from the bios, so I'm stuck. I use freebsd 6.1 RELEASE, with the latest BIOS for the motherboard, and 2 SATA 1.0 Western Digital 160GB disks. I'm trying to configure RAID 1. I'm surprised I have so many problems. Am I doing anything wrong? With INTEL hardware controllers for SCSI disks, I never had any problems until now. Does anyone successfully use another ASUS board, and is able to rebuild the array, without rebooting? Thanks for your time, Regards, ---------------------------------- Philippe Lang, Ing. Dipl. EPFL Attik System rte de la Fonderie 2 1700 Fribourg Switzerland http://www.attiksystem.ch Tel: +41 (26) 422 13 75 Fax: +41 (26) 422 13 76 =20 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 17:54: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 2C25716A474 for ; Tue, 20 Jun 2006 17:54:20 +0000 (UTC) (envelope-from nikolas.britton@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 B15CA43D4C for ; Tue, 20 Jun 2006 17:54:19 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id m7so883101nzf for ; Tue, 20 Jun 2006 10:54: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:mime-version:content-type:content-transfer-encoding:content-disposition; b=eTdV3n/4RdekauGertcNxbwu3yK23La1GNOQop7meMoTpC7Dc6PiEvnuV7Q+sDLSuxqYBaV3kYwD04uFUC1xskrjNgTzeWw6hGEO9JGIMt1Dy2o2QyHgFfa9rJ4MxG1/QGRtPRfyfD8ky64ecNb2TcWSfHZT5vm3nOLD2ANju2A= Received: by 10.36.221.9 with SMTP id t9mr5947990nzg; Tue, 20 Jun 2006 10:54:19 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Tue, 20 Jun 2006 10:54:19 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 10:54:19 -0700 From: "Nikolas Britton" 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: make fetchindex 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: Tue, 20 Jun 2006 17:54:20 -0000 Can make fetchindex fetch old (say 06/12/2006 00:00:00UTC) index files? or will I need to run make index? -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 18: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 35C6816A47D for ; Tue, 20 Jun 2006 18:27:02 +0000 (UTC) (envelope-from hakmi@rogers.com) Received: from smtp102.rog.mail.re2.yahoo.com (smtp102.rog.mail.re2.yahoo.com [206.190.36.80]) by mx1.FreeBSD.org (Postfix) with SMTP id 2293343D55 for ; Tue, 20 Jun 2006 18:26:59 +0000 (GMT) (envelope-from hakmi@rogers.com) Received: (qmail 38890 invoked from network); 20 Jun 2006 18:26:58 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:From:To:Subject:Date:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Mailer:In-Reply-To:X-MimeOLE:Thread-Index; b=BwkZpCS9zbJVkg+9sfgc/faKIB2MbJ/Pq218r69gSI3GAt4B7eImAATM7nik9cAz+9nWiH8b3MuolLwzTSHE46sBZ/70ZKvGhlREmMF1Wv9O2GoEbbmTcgn5ZUXp/qoRKmkhV5s8LvEZ//FEwvJO7/CZBKDv4riLvvxrXlXWAFI= ; Received: from unknown (HELO tamouh) (hakmi@rogers.com@70.27.160.99 with login) by smtp102.rog.mail.re2.yahoo.com with SMTP; 20 Jun 2006 18:26:58 -0000 From: "Tamouh H." To: Date: Tue, 20 Jun 2006 14:26:57 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook, Build 11.0.6353 In-Reply-To: <6C0CF58A187DA5479245E0830AF84F4218CCFC@poweredge.attiksystem.ch> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Thread-Index: AcaTml0aO6mRpUdjTomBSIsQLMEZOQA61I9AAAQ3NSA= Message-Id: <20060620182659.2293343D55@mx1.FreeBSD.org> Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 18:27:02 -0000 =20 > 1) With the Promise controller, after simulating a disk=20 > problem (shutdown - disk disconnection - reboot - shutdown -=20 > disk reconnection - reboot), I wasn't able to rebuild the=20 > array at all, either with "atacontrol rebuild ar0" or from=20 > the bios. I suspect a spare disk is necessary for a complete rebuild. >=20 > 2) With the ICH5R controller, installation went fine too. If=20 > I disconnect a disk, the system still boots, but when I plug=20 > the disk back (computer shut down), no boot is possible=20 > anymore. At boot, a kernel panic says:=20 > "softdep_setup_inomapdep". No array rebuild is possible from=20 > the bios, so I'm stuck. >=20 >=20 > I use freebsd 6.1 RELEASE, with the latest BIOS for the=20 > motherboard, and > 2 SATA 1.0 Western Digital 160GB disks. I'm trying to=20 > configure RAID 1. >=20 > I'm surprised I have so many problems. Am I doing anything=20 > wrong? With INTEL hardware controllers for SCSI disks, I=20 > never had any problems until now. Does anyone successfully=20 > use another ASUS board, and is able to rebuild the array,=20 > without rebooting? >=20 Few things I noticed about the on-board Promise chipset on ASUS that it = is very poorly designed. If you do the unplug/replug test, it most = likely won't work, you need to use a spare drive or re-format the drive = and then replug it. It also goes out of sync very often, so you want to make sure you're = running consistency checks at least once a month. Sometimes when one of the RAID-1 drives develops bad sectors, the whole = array won't boot until you unplug one of the drives, and plug a spare = one. My conclusion, if you need something stable, don't use the onboard raid, = get a RAID card even the cheap ones will do better job!! Tamouh From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 18:36: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 DF03616A47A for ; Tue, 20 Jun 2006 18:36:28 +0000 (UTC) (envelope-from gandalf@messias.qhigh.com) Received: from smtp.enternet.hu (smtp.enternet.hu [62.112.192.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 884B843D48 for ; Tue, 20 Jun 2006 18:36:28 +0000 (GMT) (envelope-from gandalf@messias.qhigh.com) Received: from [62.68.174.167] (helo=[172.16.0.43]) by smtp.enternet.hu with esmtpa (Exim 4) id 1Fsl5K-000G4k-JI for freebsd-questions@freebsd.org; Tue, 20 Jun 2006 20:36:22 +0200 Message-ID: <4498404D.9050404@messias.qhigh.com> Date: Tue, 20 Jun 2006 20:37:01 +0200 From: User Gandalf User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Subject: postfix-script: fatal: Postfix integrity check 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: Tue, 20 Jun 2006 18:36:29 -0000 Hello, I recompiled my kernel today (to 6.1 p2) and today postfix exited with this error message in the log: Jun 20 08:56:54 designaproduct postfix/postfix-script: fatal: Postfix integrity check failed! Otherwise it is working fine (there are no problems with postfix, except that it exited once). How can I find the root of the problem? :-) Thanks, Laszlo From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 20:44: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 9326E16A47E for ; Tue, 20 Jun 2006 20:44:29 +0000 (UTC) (envelope-from shawn@guillemette.org) Received: from proofpoint3.metrocast.net (proofpoint3.metrocast.net [65.175.128.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10FEC43D77 for ; Tue, 20 Jun 2006 20:44:26 +0000 (GMT) (envelope-from shawn@guillemette.org) Received: from frikenfrak (mc1.metrocast.net [65.175.128.10]) by proofpoint3.metrocast.net (8.13.6/8.13.6) with ESMTP id k5KKi68Z008854; Tue, 20 Jun 2006 16:44:06 -0400 From: "Shawn Guillemette" To: "'Loren M. Lang'" Date: Tue, 20 Jun 2006 16:44:07 -0400 Message-ID: <000901c694aa$46e2aed0$3103a8c0@frikenfrak> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Importance: Normal In-Reply-To: <4497910F.1020404@alzatex.com> X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 mlx=0 adultscore=0 adjust=-20 reason=mlx engine=3.1.0-0606200000 definitions=3.0.0-0606200009 Cc: freebsd-questions@freebsd.org Subject: RE: Content filtering X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 20:44:29 -0000 I got Squid installed with squidGaurd. It appears to be working as I = have denied port 80 from the internal interface using IPFW and if the proxy = is not used internet no worky.. ;-) I'm having troubles now figuring out how to get a good list of site to = block and where to put them. I have read something about a db being used and = also found a script that I can add to cron that will update the db list.=20 I think a great deal of my confusion is related to my lack of = understanding how this squidGaurd works. I'm heading to the site yet again.. Thanks in advance for any assistance.=20 Thanks=20 Shawn=20 -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Loren M. Lang Sent: Tuesday, June 20, 2006 2:09 AM To: Shawn Guillemette Cc: freebsd-questions@freebsd.org Subject: Re: Content filtering Shawn Guillemette wrote: > Hello,=20 >=20 > =20 >=20 > I have recently been thinking about adding content = filtering to > my FreeBSD fire wall at home as the kids are starting to use the = internet > more and they are getting older too ;-)=20 >=20 > =20 >=20 > =20 >=20 > I'm running FreeBSD 4.11 RELEASE using IPFW as my firewall. The system = its > running on is an old alpha machine. I was wondering if anyone knew of = a port > that I could use to filter some web content from my children. I do = have the > X86 option as well Just have to reload the OS and start from scratch = on > another system.=20 >=20 > =20 >=20 > Thanks=20 >=20 > Shawn=20 >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" >=20 I'd look at squid+squidguard. Both are opensource and available in = ports. --=20 Loren M. Lang lorenl@alzatex.com http://www.alzatex.com/ Public Key: ftp://ftp.tallye.com/pub/lorenl_pubkey.asc Fingerprint: CEE1 AAE2 F66C 59B5 34CA C415 6D35 E847 0118 A3D2 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 20:50: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 9F98816A484 for ; Tue, 20 Jun 2006 20:50:33 +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 2C54843D7D for ; Tue, 20 Jun 2006 20:50:31 +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 606E0D7FAC8 for ; Tue, 20 Jun 2006 16:50:29 -0400 (EDT) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by frontend3.internal (MEProxy); Tue, 20 Jun 2006 16:50:33 -0400 X-Sasl-enc: T66HWMrqHVr07tJ791E0u2chTQrDbOGS7hzwPO5kOK0B 1150836632 Received: from bb-87-81-140-128.ukonline.co.uk (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id EE4D27C6B for ; Tue, 20 Jun 2006 16:50:31 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Tue, 20 Jun 2006 21:50:21 +0100 User-Agent: KMail/1.9.3 References: <44980305.7010806@poklib.org> In-Reply-To: <44980305.7010806@poklib.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606202150.22728.list-freebsd-2004@morbius.sent.com> Subject: Re: rcorder example? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 20:50:33 -0000 On Tuesday 20 June 2006 15:15, B. Cook wrote: > Hello all, > > I'm looking at what I think is the right answer.. but can't make sense > of it.. > > basically I have a couple of mailservers that run exim and dnscache, all > being called out of daemontools. > > but I can't seem to figure out how to make svscan start first.. I don't see what you are getting at here, if exim and dnscache are started by svscan, then by defininition svscan *is* starting first. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 21:07: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 03A1116A479 for ; Tue, 20 Jun 2006 21:07:26 +0000 (UTC) (envelope-from nikolas.britton@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 58B6443D46 for ; Tue, 20 Jun 2006 21:07:25 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id r28so4706nza for ; Tue, 20 Jun 2006 14:07: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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=TvJWqQHxuZ3cPnVe96szwRAHpxD1hceLVFFaI7cFAHvsT2C+bquEu36fsXUnz5QqHHv42S+HH2CzgOJbuacgUatAvevZQ+DMs1It8qRcS9OcRKX9WlGVvRC0z5UxoHf2phRA60w52kxOXs7XoleL7tyGaqO8uEKq4uaHHM5zX/4= Received: by 10.36.42.5 with SMTP id p5mr3853410nzp; Tue, 20 Jun 2006 14:07:24 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Tue, 20 Jun 2006 14:07:24 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 16:07:24 -0500 From: "Nikolas Britton" To: freebsd-questions@freebsd.org 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: Subject: Re: make fetchindex 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: Tue, 20 Jun 2006 21:07:26 -0000 On 6/20/06, Nikolas Britton wrote: > Can make fetchindex fetch old (say 06/12/2006 00:00:00UTC) index > files? or will I need to run make index? > > Never mind, it was faster to make index then wait for a reply. -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 21:27: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 C8EB916A479 for ; Tue, 20 Jun 2006 21:27:38 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail1.sea5.speakeasy.net (mail1.sea5.speakeasy.net [69.17.117.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 763D143D53 for ; Tue, 20 Jun 2006 21:27:38 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 22688 invoked from network); 20 Jun 2006 21:27:37 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 20 Jun 2006 21:27:37 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id F132128449; Tue, 20 Jun 2006 17:27:36 -0400 (EDT) To: Mark References: <200606200103.k5K13pEI017488@asarian-host.net> From: Lowell Gilbert Date: Tue, 20 Jun 2006 17:27:36 -0400 In-Reply-To: <200606200103.k5K13pEI017488@asarian-host.net> (Mark's message of "Tue, 20 Jun 2006 01:03:52 GMT") Message-ID: <4464ivo6uv.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 Questions' Subject: Re: Suppressing permissions reset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 21:27:38 -0000 Mark writes: > When doing a "make buildkernel" and "make installkernel" on FreeBSD > 4.11-RELEASE (on a Vmware box), I noticed the Makefile in /usr/src/etc, > for one, tries to reset permissions on files taken from a series of *.dist > files. I find such initiative a bit too forward for my taste. Is there a > way I can suppress said behavior? Like a Makefile parameter or something. Not really. > And would zero-ing out the *.dist files do the trick? Yes. I would recommend against doing that, though; it's a great protection against shooting your security in the foot. Just decide what you want the permissions to be, and adjust the mtree(8) specifications (those .dist files) accordingly. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 21:42: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 8BB3516A479 for ; Tue, 20 Jun 2006 21:42:11 +0000 (UTC) (envelope-from dennyboy@cableone.net) Received: from S1.cableone.net (s1.cableone.net [24.116.0.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C03B43D6B for ; Tue, 20 Jun 2006 21:42:10 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from badboybox.cableone.net (unverified [69.92.6.58]) by S1.cableone.net (CableOne SMTP Service S1) with ESMTP id 63575930 for ; Tue, 20 Jun 2006 14:42:38 -0700 Date: Tue, 20 Jun 2006 16:41:58 -0500 (CDT) From: Denny White To: FreeBSD Questions Message-ID: X-GPG-PUBLIC_KEY: http//wwwkeys.nl.pgp.net X-GPG-FINGERPRINT: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-NotAscii: charset=us-ascii; X-IP-stats: Incoming Last 2, First 42, in=36, out=0, spam=0 X-External-IP: 69.92.6.58 X-Abuse-Info: Send abuse complaints to abuse@cableone.net Subject: scsi cdrom mounting 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: Tue, 20 Jun 2006 21:42:11 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I was having the problem before upgrading from 5.4 to 5.5, and now, after the upgrade, the problem persists. Now and then, I can find a cd that'll mount, but most won't. Have tried the ones that won't mount on this obsd box with atapi instead of scsi & no problems. Googled around and searched the archives for the error messages, but didn't find anything to help so far. Read the man page on camcontrol and the warning about using it, so checking with the list before I do anything else. I did find one thing through google about the scsi delay sometimes needing to be increased, and I made that change in my kernconf before recompiling, but it didn't help. Tried booting with kernel.debug just to see what would happen, and it went smoothly, but this time there was no error message in dmesg, except that it said there was no medium present, which wasn't true. There was disk 1 of fbsd 5.5 install in the drive. When I try to mount a cd, I get `cd9660: /dev/cd: Input/output error' or sometimes, `device not configured'. Another thing that confuses me is, I thought in /dev, besides cd0, that there would be devices like on my obsd box, i.e., cd0a, cd0c, rcd0a, rcd0c, and so forth. The only cd entry in my fbsd /dev is cd0. I read some on MAKEDEV and saw that in fbsd 5, it's deprecated, replaced by devfs. I thought maybe somehow, from some of my earlier upgrades, that I had screwed up something with devices being created. Below is some info I've gotten that I hoped would help. (camcontrol's output) scbus0 on amr0 bus 0: scbus1 on amr0 bus 1: scbus2 on amr0 bus 2: scbus3 on ahc0 bus 0: at scbus3 target 0 lun 0 (da0,pass0) at scbus3 target 5 lun 0 (cd0,pass1) < > at scbus3 target -1 lun -1 () scbus-1 on xpt0 bus 0: < > at scbus-1 target -1 lun -1 (xpt0) (from dmesg.yesterday) cd0 at ahc0 bus 0 target 5 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 8) cd0: Attempt to query device size failed: NOT READY, Medium not present (from today's dmesg) cd0 at ahc0 bus 0 target 5 lun 0 cd0: Removable CD-ROM SCSI-2 device cd0: 10.000MB/s transfers (10.000MHz, offset 8) cd0: cd present [296521 x 2048 byte records] (cd0:ahc0:0:5:0): READ(10). CDB: 28 0 0 0 0 0 0 0 1 0 (cd0:ahc0:0:5:0): CAM Status: SCSI Status Error (cd0:ahc0:0:5:0): SCSI Status: Check Condition (cd0:ahc0:0:5:0): MEDIUM ERROR asc:15,0 (cd0:ahc0:0:5:0): Random positioning error (cd0:ahc0:0:5:0): Retrying Command (per Sense Data) (had decreased this a long while back to 10000 to speedup boot, and increased it today after reading aforementioned in google) options SCSI_DELAY=20000 # Delay (in ms) before probing SCSI kern.cam.cd.changer.min_busy_seconds: 5 kern.cam.cd.changer.max_busy_seconds: 15 kern.cam.cd.0.minimum_cmd_size: 6 kern.disks: da0 cd0 amrd0 cdev 44 11K 11K 44 256 allocdirect 0 0K 3K 70 128 debug.sizeof.cdev: 232 I'm currently running FreeBSD 5.4 p2. Anyone replying please let me know if there's any other info I can provide that'll help. Thanks. Denny White GnuPG key : 0x1644E79A | http://wwwkeys.nl.pgp.net Fingerprint: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (OpenBSD) iD8DBQFEmGuwy0Ty5RZE55oRApPNAJ45HYEEPuPAGs824YWybPlJcOOi+wCdHAbr H8MD7BYSEQxwgWbn7b1LVVw= =YlLB -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 21:50: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 11FD016A479 for ; Tue, 20 Jun 2006 21:50:47 +0000 (UTC) (envelope-from dennyboy@cableone.net) Received: from S3.cableone.net (s3.cableone.net [24.116.0.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC85943D46 for ; Tue, 20 Jun 2006 21:50:46 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from badboybox.cableone.net (unverified [69.92.6.58]) by S3.cableone.net (CableOne SMTP Service S3) with ESMTP id 63482641 for ; Tue, 20 Jun 2006 14:50:45 -0700 Date: Tue, 20 Jun 2006 16:50:39 -0500 (CDT) From: Denny White To: FreeBSD Questions In-Reply-To: Message-ID: References: X-GPG-PUBLIC_KEY: http//wwwkeys.nl.pgp.net X-GPG-FINGERPRINT: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-NotAscii: charset=us-ascii; X-IP-stats: Incoming Last 0, First 32, in=23, out=0, spam=0 X-External-IP: 69.92.6.58 X-Abuse-Info: Send abuse complaints to abuse@cableone.net Subject: Re: scsi cdrom mounting 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: Tue, 20 Jun 2006 21:50:47 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 > > I was having the problem before upgrading from 5.4 to 5.5, > and now, after the upgrade, the problem persists. Now and > then, I can find a cd that'll mount, but most won't. Have > tried the ones that won't mount on this obsd box with atapi > instead of scsi & no problems. Googled around and searched > the archives for the error messages, but didn't find anything > to help so far. Read the man page on camcontrol and the warning > about using it, so checking with the list before I do anything > else. I did find one thing through google about the scsi delay > sometimes needing to be increased, and I made that change in > my kernconf before recompiling, but it didn't help. Tried > booting with kernel.debug just to see what would happen, and > it went smoothly, but this time there was no error message in > dmesg, except that it said there was no medium present, which > wasn't true. There was disk 1 of fbsd 5.5 install in the drive. > When I try to mount a cd, I get `cd9660: /dev/cd: Input/output > error' or sometimes, `device not configured'. Another thing that > confuses me is, I thought in /dev, besides cd0, that there would > be devices like on my obsd box, i.e., cd0a, cd0c, rcd0a, rcd0c, > and so forth. The only cd entry in my fbsd /dev is cd0. I read > some on MAKEDEV and saw that in fbsd 5, it's deprecated, replaced > by devfs. I thought maybe somehow, from some of my earlier upgrades, > that I had screwed up something with devices being created. Below > is some info I've gotten that I hoped would help. > > (camcontrol's output) > scbus0 on amr0 bus 0: > scbus1 on amr0 bus 1: > scbus2 on amr0 bus 2: > scbus3 on ahc0 bus 0: > at scbus3 target 0 lun 0 (da0,pass0) > at scbus3 target 5 lun 0 (cd0,pass1) > < > at scbus3 target -1 lun -1 () > scbus-1 on xpt0 bus 0: > < > at scbus-1 target -1 lun -1 (xpt0) > > > (from dmesg.yesterday) > cd0 at ahc0 bus 0 target 5 lun 0 > cd0: Removable CD-ROM SCSI-2 device cd0: > 10.000MB/s transfers (10.000MHz, offset 8) > cd0: Attempt to query device size failed: NOT READY, Medium not present > > (from today's dmesg) > cd0 at ahc0 bus 0 target 5 lun 0 > cd0: Removable CD-ROM SCSI-2 device cd0: > 10.000MB/s transfers (10.000MHz, offset 8) > cd0: cd present [296521 x 2048 byte records] > (cd0:ahc0:0:5:0): READ(10). CDB: 28 0 0 0 0 0 0 0 1 0 (cd0:ahc0:0:5:0): CAM > Status: SCSI Status Error > (cd0:ahc0:0:5:0): SCSI Status: Check Condition > (cd0:ahc0:0:5:0): MEDIUM ERROR asc:15,0 > (cd0:ahc0:0:5:0): Random positioning error > (cd0:ahc0:0:5:0): Retrying Command (per Sense Data) > > (had decreased this a long while back to 10000 to speedup boot, and > increased it today after reading aforementioned in google) > options SCSI_DELAY=20000 # Delay (in ms) before probing SCSI > > kern.cam.cd.changer.min_busy_seconds: 5 > kern.cam.cd.changer.max_busy_seconds: 15 > kern.cam.cd.0.minimum_cmd_size: 6 > kern.disks: da0 cd0 amrd0 > cdev 44 11K 11K 44 256 > allocdirect 0 0K 3K 70 128 > debug.sizeof.cdev: 232 > > I'm currently running FreeBSD 5.4 p2. Anyone replying please let > me know if there's any other info I can provide that'll help. Okay, my fat fingers have struck again. Sorry to all. Running FreeBSD 5.5 p2. GnuPG key : 0x1644E79A | http://wwwkeys.nl.pgp.net Fingerprint: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (OpenBSD) iD8DBQFEmG21y0Ty5RZE55oRAhMcAJ9w3d/MjxUp4UZZeYFqAkCLNa1/GQCgxSvy U8PgqR+btG02rmS9Zq36DMM= =hniE -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 22:45: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 0325C16A47A for ; Tue, 20 Jun 2006 22:45:24 +0000 (UTC) (envelope-from duane@dwpc.dwlabs.ca) Received: from smtpout.eastlink.ca (smtpout.eastlink.ca [24.222.0.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F8A643D5D for ; Tue, 20 Jun 2006 22:45:18 +0000 (GMT) (envelope-from duane@dwpc.dwlabs.ca) Received: from ip02.eastlink.ca ([24.222.10.10]) by mta01.eastlink.ca (Sun Java System Messaging Server 6.2-4.03 (built Sep 22 2005)) with ESMTP id <0J160042GKK7PFB1@mta01.eastlink.ca> for freebsd-questions@freebsd.org; Tue, 20 Jun 2006 19:45:43 -0300 (ADT) Received: from blk-224-199-230.eastlink.ca (HELO dwpc.dwlabs.ca) ([24.224.199.230]) by ip02.eastlink.ca with ESMTP; Tue, 20 Jun 2006 19:45:13 -0300 Received: from dwpc.dwlabs.ca (localhost [127.0.0.1]) by dwpc.dwlabs.ca (8.13.6/8.13.6) with ESMTP id k5KMiW66095279 for ; Tue, 20 Jun 2006 19:44:32 -0300 (ADT envelope-from duane@dwpc.dwlabs.ca) Received: (from duane@localhost) by dwpc.dwlabs.ca (8.13.6/8.13.6/Submit) id k5KMiW8T095278 for freebsd-questions@freebsd.org; Tue, 20 Jun 2006 19:44:32 -0300 (ADT envelope-from duane) Date: Tue, 20 Jun 2006 19:44:32 -0300 From: Duane Whitty To: freebsd-questions@freebsd.org Message-id: <20060620224432.GA2787@dwpc.dwlabs.ca> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Content-disposition: inline X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAQAAA+k= User-Agent: Mutt/1.4.2.1i Subject: Unable to build Sendmail with LDAP X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 22:45:24 -0000 Hi, I am currently unable to rebuild Sendmail with LDAP support. Unfortunately I am not sure what broke it; it could be my upgrade from OpenLDAP 2.2.30 to 2.3.24 or my upgrade from OpenSSL 0.9.8a to 0.9.8b. Foolishly, I did both at the same time without testing after each one. I do know it is not because of the recent Sendmail patch nor because of a change in 6-STABLE. As well, I am able to build Sendmail if I eliminate LDAP support. Here is what I am currently running. dwpc@ /home/build/src# uname -a FreeBSD dwpc.dwlabs.ca 6.1-STABLE FreeBSD 6.1-STABLE #1: Mon Jun 19 13:44:08 ADT 2006 duane@dwpc.dwlabs.ca:/usr/obj/usr/src/sys/DWPC-KERNEL i386 dwpc@ /home/build/src# sendmail -d0.1 -bt
dwpc@ /home/build/src# pkg_info | grep open openldap-sasl-client-2.3.24 Open source LDAP client implementation with SASL2 support openldap-server-2.3.24 Open source LDAP server implementation openssl-0.9.8b_1 SSL and crypto library /etc/make.conf KERNCONF=DWPC-KERNEL NO_PROFILE=1 # added by use.perl 2006-04-01 17:11:27 PERL_VER=5.8.8 PERL_VERSION=5.8.8 # Tried first with the following two lines uncommented # and then retried compiling with them commented out # WANT_LDAP_VER=23 # WITH_LDAP_PORT=yes SENDMAIL_CFLAGS=-I/usr/local/include -DSASL2=2 -DLDAPMAP SENDMAIL_LDFLAGS=-L/usr/local/lib SENDMAIL_LDADD=-lsasl2 -lldap -llber I first went through the compilation routine using my usual /usr/src build tree after upgrading OpenSSL and OpenLDAP. After a reboot I noticed that everything which used OpenSSL or OpenLDAP had failed so I upgraded all my ports applications. All's well, except for Sendmail. So here is the output [snipped to relevant section] of my make buildworld. The full make buildworld output is available at http://www.dwlabs.ca/freebsd/build/buildworld-1 ===> libexec/mail.local (all) cc -O2 -fno-strict-aliasing -pipe -I/home/build/src/libexec/mail.local/../../contrib/sendmail/include -I. -I/usr/local/include -DSASL2=2 -DLDAPMAP -c /home/build/src/libexec/mail.local/../../contrib/sendmail/mail.local/mail.local.c cc -O2 -fno-strict-aliasing -pipe -I/home/build/src/libexec/mail.local/../../contrib/sendmail/include -I. -I/usr/local/include -DSASL2=2 -DLDAPMAP -L/usr/local/lib -o mail.local mail.local.o /usr/obj/home/build/src/libexec/mail.local/../../lib/libsm/libsm.a -lsasl2 -lldap -llber /usr/obj/home/build/src/tmp/usr/bin/ld: warning: libssl.so.5, needed by /usr/local/lib/libldap.so, not found (try using -rpath or -rpath-link) /usr/obj/home/build/src/tmp/usr/bin/ld: warning: libcrypto.so.5, needed by /usr/local/lib/libldap.so, not found (try using -rpath or -rpath-link) /usr/local/lib/libldap.so: undefined reference to `SSL_CTX_set_tmp_rsa_callback' [snip -- more "undefined reference to ..." messages] *** Error code 1 Stop in /home/build/src/libexec/mail.local. *** Error code 1 Stop in /home/build/src/libexec. *** Error code 1 Stop in /home/build/src. *** Error code 1 Stop in /home/build/src. *** Error code 1 Stop in /home/build/src. What has me puzzled is that the shared libraries ld says it can't find are present and where they should be: dwpc@ /usr/local/lib# ll libssl* -rw-r--r-- 1 root wheel 353678 Jun 19 02:31 libssl.a lrwxr-xr-x 1 root wheel 11 Jun 19 02:31 libssl.so -> libssl.so.5 -r--r--r-- 1 root wheel 259018 Jun 19 02:31 libssl.so.5 lrwxr-xr-x 1 root wheel 12 Jun 17 07:54 libssl3.so -> libssl3.so.1 -r-xr-xr-x 1 root wheel 141960 Jun 17 07:56 libssl3.so.1 dwpc@ /usr/local/lib# ll libldap* lrwxr-xr-x 1 root wheel 16 Jun 19 03:31 libldap-2.3.so -> libldap-2.3.so.2 -rw-r--r-- 1 root wheel 229979 Jun 19 03:31 libldap-2.3.so.2 -rw-r--r-- 1 root wheel 280354 Jun 19 03:31 libldap.a -rw-r--r-- 1 root wheel 865 Jun 19 03:31 libldap.la lrwxr-xr-x 1 root wheel 16 Jun 19 03:31 libldap.so -> libldap-2.3.so.2 lrwxr-xr-x 1 root wheel 18 Jun 19 03:31 libldap_r-2.3.so -> libldap_r-2.3.so.2 -rw-r--r-- 1 root wheel 251450 Jun 19 03:31 libldap_r-2.3.so.2 -rw-r--r-- 1 root wheel 313272 Jun 19 03:31 libldap_r.a -rw-r--r-- 1 root wheel 879 Jun 19 03:31 libldap_r.la lrwxr-xr-x 1 root wheel 18 Jun 19 03:31 libldap_r.so -> libldap_r-2.3.so.2 dwpc@ /usr/local/lib# ldd /usr/local/lib/libldap.so /usr/local/lib/libldap.so: liblber-2.3.so.2 => /usr/local/lib/liblber-2.3.so.2 (0x28189000) libsasl2.so.2 => /usr/local/lib/libsasl2.so.2 (0x28194000) libssl.so.5 => /usr/local/lib/libssl.so.5 (0x281a9000) libcrypto.so.5 => /usr/local/lib/libcrypto.so.5 (0x281e1000) libc.so.6 => /lib/libc.so.6 (0x28080000) If needed I can backout the necessary ports to previous versions. However, I'd rather help anyway I can if it turns out there is a problem with OpenSSL or OpenLDAP as opposed to it just being something I did wrong. --Duane Whitty From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 23:13: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 ACB9716A479 for ; Tue, 20 Jun 2006 23:13:05 +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 5576143D45 for ; Tue, 20 Jun 2006 23:13:05 +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 B1AECD80311 for ; Tue, 20 Jun 2006 19:13:03 -0400 (EDT) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by frontend3.internal (MEProxy); Tue, 20 Jun 2006 19:13:07 -0400 X-Sasl-enc: zF66Z2sF5lt7Ape2U+w5jIl+CzRGTse+KL2zpdDL6ckl 1150845187 Received: from bb-87-81-140-128.ukonline.co.uk (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 729A18175 for ; Tue, 20 Jun 2006 19:13:07 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 00:13:00 +0100 User-Agent: KMail/1.9.3 References: <44980305.7010806@poklib.org> In-Reply-To: <44980305.7010806@poklib.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606210013.01463.list-freebsd-2004@morbius.sent.com> Subject: Re: rcorder example? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 23:13:05 -0000 On Tuesday 20 June 2006 15:15, B. Cook wrote: > I also have another box with dansguardian and squid.. and dansguardian > depends on squid but because d comes before s, dansguardian starts > first, fails then squid starts.. and I've tried to use rcorder to fix > that problem and can't seem to make that happen. Pre 6.1 the scripts in the local rc.d directory are all sourced from the same rcng script in dictionary order. You can change the ordering either by moving them to /etc/rc.d (if they comply with the rcng conventions), or by renaming. In 6.1 (onwards) local rcng scripts are integrated into rcorder. Those that aren't rcng are sourced in the traditional manner. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 23: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 8E1DF16A47A for ; Tue, 20 Jun 2006 23:32:41 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id F136443D45 for ; Tue, 20 Jun 2006 23:32:40 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5KNWdSC019246 for ; Tue, 20 Jun 2006 19:32:39 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id 0A798240A4; Tue, 20 Jun 2006 19:32:33 -0400 (EDT) Date: Tue, 20 Jun 2006 19:32:33 -0400 From: "Michael P. Soulier" To: freebsd-questions@freebsd.org Message-ID: <20060620233233.GF11625@tigger.digitaltorque.ca> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="V4N4TvXMNzuFMHdo" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: ppp not starting 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: Tue, 20 Jun 2006 23:32:41 -0000 --V4N4TvXMNzuFMHdo Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hey people, I had a power failure today (there goes my uptime) that lasted longer than = my UPS, and when the box came back up, my PPPoE connection did not. # Enable PPPoE ppp_enable=3D"YES" ppp_mode=3D"ddial" ppp_nat=3D"YES" ppp_profile=3D"storm" Is this not correct? Should this not cause ppp to be started, using the "storm" profile, at boot? I had to do it manually via ppp -ddial storm Thanks, Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --V4N4TvXMNzuFMHdo Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEmIWRKGqCc1vIvggRArMrAJ9RdikFyLuy/KP2qc2Zsw27u2YywQCePAqE w/QWh/Es4/8hE24YQ/Qx8Pk= =5Djp -----END PGP SIGNATURE----- --V4N4TvXMNzuFMHdo-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 23:36: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 3300816A481 for ; Tue, 20 Jun 2006 23:36:05 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7484D43D6B for ; Tue, 20 Jun 2006 23:35:57 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5KNZvlV019382 for ; Tue, 20 Jun 2006 19:35:57 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id 2657F240A4; Tue, 20 Jun 2006 19:35:52 -0400 (EDT) Date: Tue, 20 Jun 2006 19:35:52 -0400 From: "Michael P. Soulier" To: freebsd-questions@freebsd.org Message-ID: <20060620233551.GG11625@tigger.digitaltorque.ca> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Rm5rkB9L8kG9H2n8" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 23:36:05 -0000 --Rm5rkB9L8kG9H2n8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, I recently got an ia64 box at work, and I threw my i386 freebsd 5.4 on it. Now, is there a way to rebuild world with 64-bit support from there? Thanks, Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --Rm5rkB9L8kG9H2n8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEmIZXKGqCc1vIvggRArV7AJ9pTcDeujOa+uSxb1t6bLWEWWEeBwCfVFzx UlYhDSVIsLSimsO7UQVwdBs= =3zUi -----END PGP SIGNATURE----- --Rm5rkB9L8kG9H2n8-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 23:37: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 D5E6E16A474 for ; Tue, 20 Jun 2006 23:37:41 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB34043D5E for ; Tue, 20 Jun 2006 23:37:40 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5KNbeth019467 for ; Tue, 20 Jun 2006 19:37:40 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id BD267240A4; Tue, 20 Jun 2006 19:37:34 -0400 (EDT) Date: Tue, 20 Jun 2006 19:37:34 -0400 From: "Michael P. Soulier" To: freebsd-questions@freebsd.org Message-ID: <20060620233734.GH11625@tigger.digitaltorque.ca> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YfqBrEkRVu0wMIYz" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: smp kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 23:37:41 -0000 --YfqBrEkRVu0wMIYz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, Is SMP enabled in the GENERIC kernel? I have a hyperthreading box, and on Linux it shows up with two cpus. When I do a top on the box in FreeBSD I st= ill see only one CPU. Also, sysctl -a | grep cpu only shows a dev.cpu.0.=20 Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --YfqBrEkRVu0wMIYz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEmIa+KGqCc1vIvggRAg8DAKDBnp9iIrYGtZExfHWbulVrbVHEwQCgmqpL nRcyO9q4XmZwWJWEddzRUiE= =eLbB -----END PGP SIGNATURE----- --YfqBrEkRVu0wMIYz-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 23:41: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 1B13316A479 for ; Tue, 20 Jun 2006 23:41:54 +0000 (UTC) (envelope-from rprajapa@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48A6343D6B for ; Tue, 20 Jun 2006 23:41:53 +0000 (GMT) (envelope-from rprajapa@gmail.com) Received: by nz-out-0102.google.com with SMTP id i28so29628nzi for ; Tue, 20 Jun 2006 16:41:49 -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=IUGEdUC3sdaL0UBT/sUoHlmBDt224/YUUtIFV3lqp3Ige44vWsQDaGsKN7liKE7CJN1mV7u3Lh0t5ozvtE1GQu13mfhWJyE2YlvQKIz7jECncw/psZne8EtdUe7qb1RIqKLgEs/XowND9Lyzg9xVIQ1jH4+xCjZn2APAr4/mF9w= Received: by 10.36.91.5 with SMTP id o5mr7754420nzb; Tue, 20 Jun 2006 16:41:49 -0700 (PDT) Received: by 10.36.2.13 with HTTP; Tue, 20 Jun 2006 16:41:49 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 16:41:49 -0700 From: "Rakesh Prajapati" 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: Help/Info on howto install CVS 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: Tue, 20 Jun 2006 23:41:54 -0000 I would like to install CVS server on my FreeBSD 6.1 x386 machine. Which ports should I install? I installed "cvsd" and "cvsdadm". Is that all I need to install and configure? I read at (http://ch.tudelft.nl/~arthur/cvsd/) that cvsd is a wrapper program for cvs in pserver mode. So does that mean I need to install cvs seperately? Is there a how-to anywhere that I can refer? Thanks, Rakesh From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 23:45: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 7DB0516A479 for ; Tue, 20 Jun 2006 23:45:58 +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 EC0EC43D45 for ; Tue, 20 Jun 2006 23:45:57 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (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 k5KNjnx75088; Tue, 20 Jun 2006 16:45:50 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "David Hoffman" , Date: Tue, 20 Jun 2006 16:45:49 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal Cc: thisdayislong@gmail.com Subject: RE: Fwd: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 23:45:58 -0000 David, I am a published author many times over with more commercial copyrights on material than I believe you will ever have, and I know much of copyright law, as any author does. I am requesting that you kindly blow this out your ass. In any infringement case it is the responsibility of the copyright holder to take infringement action against the infringer. It is not your responsibility as wannabe gadfly to attempt to insert yourself into this. This is between the author - which you have identified as Brett - and the infringer - which you have identified as houfug.org. Not yourself - unless you are indentifying yourself as copyright holder or infringer. As the other poster said this has nothing to do with the list and you need to drop it. I am sure Brett is thankful that you have identified an infringement against his copyright. Once you have done so it is time for you to step aside and let Brett decide what he wants to do about it. If Brett does not take the kind of action against the infringer that you wish, and the infringer does not respond in a fashion you wish, then that is too bad and you may kindly butt out. Ted >-----Original Message----- >From: owner-freebsd-questions@freebsd.org >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of David Hoffman >Sent: Sunday, June 18, 2006 6:21 PM >To: freebsd-questions@freebsd.org >Subject: Fwd: Fwd: Serious breach of copyright -- First post > > >---------- Forwarded message ---------- >From: David Hoffman >Date: Jun 18, 2006 9:19 PM >Subject: Re: Fwd: Serious breach of copyright -- First post >To: Dennis Olvany >Cc: freebsd-chat@freebsd.org, freebsd-questions@freebsd.org, >freebsd-user-groups@freebsd.org, thisdayislong >, >ingrid@cityscope.net > >On 6/18/06, Dennis Olvany wrote: >> >> I had a look at >http://www.houfug.org/help/install_freebsd.htm and I am >> afraid that you will find this article is not eligible for >copyright. It >> constitutes neither an artistic nor literary work. The article conveys >> only facts and facts are not eligible for copyright. >> > > >I'm afraid you're incorrect. The work in question is indeed >copyrightable >under the Berne Convention, which many countries have ratified, >including >the United States, where the content is hosted. The United >States, as well >as many other countries, also have national laws which allow >this work to be >copyrighted. > >It's also important to note that HouFUG clearly believes the work can be >copyrighted, since they have included a copyright notice on the >page. This >implies tremendous bad faith: regardless of whether or not the >article is >copyrightable (it is), they have removed any reference to the >true owner and >have claimed it as their own. > >This is not acceptable behaviour. >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"freebsd-questions-unsubscribe@freebsd.org" > >-- >No virus found in this incoming message. >Checked by AVG Free Edition. >Version: 7.1.394 / Virus Database: 268.9.1/369 - Release Date: 6/19/2006 > From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 23: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 4D96116A47D for ; Tue, 20 Jun 2006 23:50:37 +0000 (UTC) (envelope-from ijp@aanet.com.au) Received: from mail.aanet.com.au (mail.aanet.com.au [202.63.43.131]) by mx1.FreeBSD.org (Postfix) with SMTP id 786FD43D5C for ; Tue, 20 Jun 2006 23:50:35 +0000 (GMT) (envelope-from ijp@aanet.com.au) Received: (qmail 32283 invoked by uid 89); 20 Jun 2006 23:50:33 -0000 Received: by simscan 1.2.0 ppid: 32004, pid: 32183, t: 0.5740s scanners: attach: 1.2.0 clamav: 0.88.1/m:37/d:1390 Received: from cust2534.qld01.dataco.com.au (HELO ?192.168.1.13?) (202.63.53.230) by mail.aanet.com.au with SMTP; 20 Jun 2006 23:50:33 -0000 Message-ID: <44988A12.1050102@aanet.com.au> Date: Wed, 21 Jun 2006 09:51:46 +1000 From: Ian Pulsford User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: "'freebsd-questions@freebsd.org'" References: <44mzccygvl.fsf@be-well.ilk.org> In-Reply-To: <44mzccygvl.fsf@be-well.ilk.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Getting Source Code after Installing the Software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 20 Jun 2006 23:50:37 -0000 Lowell Gilbert wrote: > "Mayo, Richard A RDECOM CERDEC STCD SRI" > writes: > >> I installed FreeBSD on a couple of computers without installing any source code. Now (naturally), I want to get a hold of the kernel source so I can re-compile and enable support for PIM and Multicast Routing. >> >> However, I can't figure how to get the source off my CDs. I downloaded the ISO's for Disk 1 and Disk 2 of FreeBSD 6.1--RELEASE. >> Can anybody tell me where I can find the source code on these disks so I don't have to run a re-installation just to get it?? > > You can run sysinstall without doing an install. > If you really want to extract the source directly with tar, it's been > explained on this list a number of times over the years. > > Or get more up-to-date sources by cvsup, as someone else suggested. Or even better install the source from the CD then cvsup, save a lot of time and bandwidth :D From owner-freebsd-questions@FreeBSD.ORG Tue Jun 20 23:58: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 6E9D516A479; Tue, 20 Jun 2006 23:58: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 1692443D48; Tue, 20 Jun 2006 23:58: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 61A20D80484; Tue, 20 Jun 2006 19:58:56 -0400 (EDT) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by frontend3.internal (MEProxy); Tue, 20 Jun 2006 19:59:00 -0400 X-Sasl-enc: BB8cbnOIng4MdBnXoDFW7nbERHM+lHrSgdDztYelcEf6 1150847940 Received: from bb-87-81-140-128.ukonline.co.uk (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 17F8781E4; Tue, 20 Jun 2006 19:59:00 -0400 (EDT) From: RW To: freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 00:58:53 +0100 User-Agent: KMail/1.9.3 References: <200606191251.k5JCpo7Y054704@app.auscert.org.au> <4496A85E.6040800@FreeBSD.org> In-Reply-To: <4496A85E.6040800@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606210058.54615.list-freebsd-2004@morbius.sent.com> Cc: Subject: Re: portupgrade confusing '-P' and '-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, 20 Jun 2006 23:58:58 -0000 On Monday 19 June 2006 14:36, Sergey Matveychuk wrote: > freebsd-questions@auscert.org.au wrote: > > Hi, > > > > I'm in the middle of configuring a repeatable jail installation with some > > ports - in a nutshell, I want to install from locally built packages, but > > if not available locally I want to build the port myself _and_ create a > > package for future repetition. To prevent remote fetching, I set the > > PKG_FETCH variable to /bin/false as recommended. Here's the part I found > > curious: > > I don't understand how you plan to build a port without of fetching of a > distfile? PKG_FETCH is for packages, not distfiles. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:00: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 86CB516A49E for ; Wed, 21 Jun 2006 00:00:42 +0000 (UTC) (envelope-from reitz@eecs.cwru.edu) Received: from beta.eecs.cwru.edu (beta.EECS.CWRU.Edu [129.22.150.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F1C843D53 for ; Wed, 21 Jun 2006 00:00:16 +0000 (GMT) (envelope-from reitz@eecs.cwru.edu) Received: from brak ([::ffff:129.22.151.63]) (TLS: TLSv1/SSLv3,168bits,DES-CBC3-SHA) by beta.eecs.cwru.edu with esmtp; Tue, 20 Jun 2006 20:00:15 -0400 id 000AC170.44988C0F.00005570 Date: Tue, 20 Jun 2006 20:00:10 -0400 (EDT) From: Andy Reitz X-X-Sender: reitz@brak To: "Michael P. Soulier" In-Reply-To: <20060620233551.GG11625@tigger.digitaltorque.ca> Message-ID: References: <20060620233551.GG11625@tigger.digitaltorque.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:00:42 -0000 On Tue, 20 Jun 2006, Michael P. Soulier wrote: > Hello, > > I recently got an ia64 box at work, and I threw my i386 freebsd 5.4 on it. > Now, is there a way to rebuild world with 64-bit support from there? Hi Mike, I believe that ia64 refers to the Itanium port of FreeBSD, and I'm not sure of the i386 version will install on Itanium. Are you referring to the AMD64/EMT-64 port of FreeBSD? -Andy. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00: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 2D9FF16A479 for ; Wed, 21 Jun 2006 00:01:24 +0000 (UTC) (envelope-from reitz@eecs.cwru.edu) Received: from beta.eecs.cwru.edu (beta.EECS.CWRU.Edu [129.22.150.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEE8E43D4C for ; Wed, 21 Jun 2006 00:01:23 +0000 (GMT) (envelope-from reitz@eecs.cwru.edu) Received: from brak ([::ffff:129.22.151.63]) (TLS: TLSv1/SSLv3,168bits,DES-CBC3-SHA) by beta.eecs.cwru.edu with esmtp; Tue, 20 Jun 2006 20:01:23 -0400 id 000AC170.44988C53.00005B5B Date: Tue, 20 Jun 2006 20:01:17 -0400 (EDT) From: Andy Reitz X-X-Sender: reitz@brak To: "Michael P. Soulier" In-Reply-To: <20060620233734.GH11625@tigger.digitaltorque.ca> Message-ID: References: <20060620233734.GH11625@tigger.digitaltorque.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: smp kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:01:24 -0000 On Tue, 20 Jun 2006, Michael P. Soulier wrote: > Hello, > > Is SMP enabled in the GENERIC kernel? I have a hyperthreading box, and on > Linux it shows up with two cpus. When I do a top on the box in FreeBSD I still > see only one CPU. Also, sysctl -a | grep cpu only shows a dev.cpu.0. Hi Mike, If you have the kernel source code installed, you can read /usr/src/sys//conf/GENERIC, to see what options are in the GENERIC kernel. I'm pretty sure that most FreeBSD releases don't have the SMP option in the generic kernel, but I haven't used them all, so I can't be sure. :) HTH, -Andy. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:14: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 7184016A479 for ; Wed, 21 Jun 2006 00:14:04 +0000 (UTC) (envelope-from danial_thom@yahoo.com) Received: from web33307.mail.mud.yahoo.com (web33307.mail.mud.yahoo.com [68.142.206.122]) by mx1.FreeBSD.org (Postfix) with SMTP id CB3CE43D48 for ; Wed, 21 Jun 2006 00:14:02 +0000 (GMT) (envelope-from danial_thom@yahoo.com) Received: (qmail 18891 invoked by uid 60001); 21 Jun 2006 00:14:02 -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=DmhKOokyRH9eHHzdi7WwK5+dputkIFEUQ4KOgtyukmmE5RF2xVbR5/qigzg4bY/TIR9DwL/Hdfzcf4jApYZqoHbOOZ2/Z9lXhS+RsB8FDAdh2zMh5nrPlGr2F5NM7y9jWc8XR73ySy499mg5bkTuYow04gfYRgHfIGz1kNGYqg8= ; Message-ID: <20060621001402.18889.qmail@web33307.mail.mud.yahoo.com> Received: from [65.34.182.15] by web33307.mail.mud.yahoo.com via HTTP; Tue, 20 Jun 2006 17:14:02 PDT Date: Tue, 20 Jun 2006 17:14:02 -0700 (PDT) From: Danial Thom To: "Michael P. Soulier" , freebsd-questions@freebsd.org In-Reply-To: <20060620233551.GG11625@tigger.digitaltorque.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: danial_thom@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 00:14:04 -0000 --- "Michael P. Soulier" wrote: > Hello, > > I recently got an ia64 box at work, and I threw > my i386 freebsd 5.4 on it. > Now, is there a way to rebuild world with > 64-bit support from there? > > Thanks, > Mike Everything I've tested runs slower in 64-bit mode (mainly because of kernel clunkiness), so if you don't need the long pointers you might want to re-think your proposed adventure. I believe that since everything is bigger in 64-bit mode, things fall out of the cpu cache a lot faster, and there is a significant different in performance in and out of the cache. DT __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:16: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 D349116A474 for ; Wed, 21 Jun 2006 00:16:52 +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 D73AC43D5D for ; Wed, 21 Jun 2006 00:16:51 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (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 k5L0Ggx75260; Tue, 20 Jun 2006 17:16:45 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Philippe Lang" , "freebsd-questions" Date: Tue, 20 Jun 2006 17:16:42 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" 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: <6C0CF58A187DA5479245E0830AF84F4218CCF9@poweredge.attiksystem.ch> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal Cc: Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:16:52 -0000 Not the promise. Ted >-----Original Message----- >From: owner-freebsd-questions@freebsd.org >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Philippe Lang >Sent: Monday, June 19, 2006 1:18 AM >To: freebsd-questions >Subject: ICH5R, ICH7R or Promise PDC20378 RAID? > > >Hi, > >I've got two boxes that would be perfect for a small server. The >motherboards are: > >- ASUS P4C800-E Deluxe, with ICH5R and Promise PDC20378 >- ASUS P5WD2, with ICH7R > >I intend to install FreeBSD 6.1, and I wonder which chipset you would >recommend me for RAID 1? I need something rock-solid, of course... > >Thanks! > >-------------- >Philippe Lang >Attik System >Switzerland >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"freebsd-questions-unsubscribe@freebsd.org" > >-- >No virus found in this incoming message. >Checked by AVG Free Edition. >Version: 7.1.394 / Virus Database: 268.9.1/369 - Release Date: 6/19/2006 > From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:24: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 3E7BC16A481 for ; Wed, 21 Jun 2006 00:24:32 +0000 (UTC) (envelope-from Metrol@Metrol.net) Received: from smtp.testequity.com (gateway.testequity.com [205.147.14.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8997743D46 for ; Wed, 21 Jun 2006 00:24:31 +0000 (GMT) (envelope-from Metrol@Metrol.net) Received: from smtp.priv.testequity.com (unknown [192.168.3.27]) by smtp.testequity.com (Postfix) with ESMTP id 008B513C447; Tue, 20 Jun 2006 17:24:31 -0700 (PDT) Received: from [192.168.3.172] (mach172.priv.testequity.com [192.168.3.172]) by smtp.priv.testequity.com (Postfix) with ESMTP id D1AE5C74C; Tue, 20 Jun 2006 17:24:30 -0700 (PDT) Message-ID: <449891DA.70507@Metrol.net> Date: Tue, 20 Jun 2006 17:24:58 -0700 From: Michael Collette Organization: Metrol.net User-Agent: Thunderbird 1.5.0.4 (X11/20060607) MIME-Version: 1.0 To: Mark Kane References: <44978913.3070401@Metrol.net> <20060620015644.629b47a2@localhost> In-Reply-To: <20060620015644.629b47a2@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:24:32 -0000 Mark Kane wrote: > Hi. I'm using an Athlon64 3000+ (and the amd64 version of FreeBSD) as my > main workstation. I also have another workstation with the same CPU > running the i386 version. Here's my opinions: > > Flash - The 32 bit Linux binary of Flash 7 works in linux-firefox or > linux-opera fine in i386 or amd64. The 32 bit Linux version of Flash > 6 works somewhat with linuxpluginwrapper and the native Firefox on > the i386 version of FreeBSD, although I've found it to be somewhat > unstable and crashed quite a bit. There's also a project Gnash that is > an open source Flash player, but I have not tried that one yet. > > Acrobat - The Linux binary of Acrobat 7 works for sure in the i386 > version of FreeBSD. I have not tested it on my amd64 one (I just use > xpdf), but the port's Makefile says it works and I don't see why it > would have a problem. > > nVidia Drivers - Work great in the i386 version of FreeBSD. Does not > work on the amd64 version yet > ( http://www.nvnews.net/vbulletin/showthread.php?t=41545 ). > > Java - Got it to work on i386 version of FreeBSD (interfacing with > browser not attempted, just for OpenOffice), but have not needed to or > attempted on my amd64 box. I'm not sure if it's even possible for amd64 > or not (as the Makefile I looked at shows only for i386), but someone > else will know. > > For my purposes, there really isn't much that the amd64 version cannot > do that the i386 version can. I would like the nVidia driver to work > since I have a decent video card, but the Flash and Java I don't really > care about much anymore. I use the native Firefox compiled from ports > for my browsing and just fire up linux-opera whenever I need to see a > Flash site. Unfortunately, those items are pretty important to me. Kind of the point of the mail. I appreciate the feedback, and I am aware of some of the work arounds you mentioned. I use JEdit daily, as well as a couple of other Java apps. The nVidia driver thing stinks too. I had that running on my PC before the crash, and really liked it. > Me personally, I prefer AMD hardware over Intel and would get the > Athlon64 regardless of if I run in i386 or amd64 mode FreeBSD. I don't have any bias towards either company. My focus is spending my money on what will actually work. Starting to feel like I'll be looking at the Pentium-D processors. I've got a laptop with a dual core Pentium and it works pretty sweet. > However, > be sure to check your AMD64 hardware against the compatibility list > before buying. I had to buy a replacement motherboard real quickly one > day after one failed and I didn't fully check out the list before > buying. When I got it, it turns out the onboard NIC and sound didn't > work with FreeBSD in i386 or amd64 mode. I already had a NIC and sound > card ready to go from the previous machine, but now both PCI slots on > the Micro-ATX motherboard are taken and unfortunately I can't put in a > SCSI card. I've been looking over spec pages like crazy for various motherboards, with particular attention on network and audio. > The amd64 motherboard list is here. Note that "amd64" in this case > means the hardware itself and not the OS version, so if it's not > listed here then the i386 version probably will not work either with > that hardware (I found that out the hard way): > > http://www.freebsd.org/platforms/amd64/motherboards.html > > For sound cards, I have found the Sound Blaster stuff to work well with > FreeBSD so far. I'm running an Augidy 2 Platinum in my main machine and > it works better than on Windows (had tons of skipping problems that > never could be solved -- thought it was a bad card but moving to > FreeBSD eliminated them). The cheaper SB LIVE cards work too, and some > of my machines have onboard which work great also. > > Hope that helps. :) Any and all feedback is appreciated. For as nice as the AMD64 processor may be, sounds like things are a ways off before the software has fully caught up. Thanks, -- "In theory, there is no difference between theory and practice. In practice, there is." - Yogi Berra From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:27: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 39B7A16A482 for ; Wed, 21 Jun 2006 00:27:00 +0000 (UTC) (envelope-from stapleton.41@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 7C13F43D49 for ; Wed, 21 Jun 2006 00:26:59 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1584354uge for ; Tue, 20 Jun 2006 17:26: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=DEjrQZqXE6XJOSnUoWy0zSOpFkOV4Sh+GAzEnEjzk3Boi1Yq8OAL/IHALFVdxskpQEZkgCSJLEEl9HaFK/Kw713HLAhZLECnNLmxAeqJ7+L8RvW4ITIxdzJbjdIDpe3SBTGq2y3zdCmlM/fbEKyErggzywWoY7/weFMhIpFzcvk= Received: by 10.67.101.8 with SMTP id d8mr6740960ugm; Tue, 20 Jun 2006 17:26:58 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Tue, 20 Jun 2006 17:26:58 -0700 (PDT) Message-ID: <80f4f2b20606201726u23f50417qa7e0f9a23b919daa@mail.gmail.com> Date: Tue, 20 Jun 2006 20:26:58 -0400 From: "Jim Stapleton" To: "David Hoffman" 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: <200606190852.09200.jhb@freebsd.org> Cc: freebsd-questions@freebsd.org Subject: Re: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:27:00 -0000 Mr. Hoffman, I'm surprised this hasn't been said, and I'm probably overstepping my bounds by saying this, but I've been following this topic, and I have trouble seeing it as anything but trolling. The freeBSD groups have always been excessively helpful and friendly, and you've done alot to insult and antagonize them due to the actions of *ONE* local group, that is not even related to the general groups you posted this too. These people on the general freebsd have a nice group without the trolling and antagonizing seen all over other similar groups. Please be more considerate and respectful with your claims and requests so that their forums can stay that way. > 3) While you might want to refer to me as a name-caller, litigious, and > puerile, it's far from clear that FreeBSD doesn't have political ties when > the leaders of FreeBSD groups actively campaign for partially restricting > people's ability to communicate in any language but English. Even if you > ignored these extracuricular activities, though, you'd still be faced with > the fact that FreeBSD is de jure politicized in favor of many things, > including free software. Interesting you put this here, from a previous post: > I'm not directly attacking your group. If you're not political, and I'm > arguing against something political, how could I possibly be 'attacking' > your group? These two in conjunction, both from you, technically count as libel I believe, you are making comments towards a group, such as calling them biggots, and then saying you know it's not true. Also, calling someone something, when they are not is still offensive: If I called you a "rabid dog", obviously a false statement, I am sure you would be offended. Also, as to the prohibiting people from communicating in languages other than english, partially or otherwise, I'm sorry, but... A 3/4ths blind guy who is impatient and doesn't like spending time searching for things can find mailing lists for DOZENS of of languages... Look harder. Now each of these /IS/ language specific - but that makes sense, the idea here is COMMUNICATION. Ich kann auf Deutch sprechen, aber hier Ich kann nicht auf Deutch Verbindung stehen. In english, I can speak in German, but I cannot communicate in German here - most here (not all) don't speak it. I wouldn't go to a German, French, Spanish, Japanese, Portugese, etc. etc. etc. mailing list and expect them to respond to me in English, or be anything but offended at my arrogance of posting there in English. > 4) Discussions of copyright seem appropriate for freebsd-standard, since any > reputable organization that publishes material with computers today makes a > good faith effort to ensure they do not violate any copyright. It is > therefore a de facto standard. But all groups at once? Just because they all fit the topic, doesn't change the fact that you are willingly and wontonly breaking the rule. Interestingly enough, I do agree with your first point that the copyright needed to be taken care of, but you could have handled this infinetly more effectively. Thank you, -Jim Stapleton From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:29: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 79F8E16A4D1 for ; Wed, 21 Jun 2006 00:29:59 +0000 (UTC) (envelope-from danial_thom@yahoo.com) Received: from web33303.mail.mud.yahoo.com (web33303.mail.mud.yahoo.com [68.142.206.118]) by mx1.FreeBSD.org (Postfix) with SMTP id 88CDB43DA4 for ; Wed, 21 Jun 2006 00:29:28 +0000 (GMT) (envelope-from danial_thom@yahoo.com) Received: (qmail 55058 invoked by uid 60001); 21 Jun 2006 00:29: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:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=QSkqg2vGAvo4snglj0mvHUbg3p3jtqAYfwmwYNxca4HD9nzrDuI3c0NUeSx2v+81q1wHG9w4wGrbdTOlJCwUv2uZBCFJ71M1+ucttUP+uI8uvapPUjRKzRng/w+nM2EL07in7UZ9e/2JDPsylTQIL2xZDmnZz+G5kY7kpCiaH94= ; Message-ID: <20060621002928.55056.qmail@web33303.mail.mud.yahoo.com> Received: from [65.34.182.15] by web33303.mail.mud.yahoo.com via HTTP; Tue, 20 Jun 2006 17:29:28 PDT Date: Tue, 20 Jun 2006 17:29:28 -0700 (PDT) From: Danial Thom To: Brett , freebsd-questions@freebsd.org, Ingrid Kast Fuller In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: Subject: Re: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: danial_thom@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 00:29:59 -0000 --- Brett wrote: > On 6/19/06, Christopher Weldon > wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > Brett wrote: > > > Obviously, you have never spent days trying > out a relatively > > > undocumented procedure, finally getting it > right, and then decided to > > > help others out by writing a howto > document. I am perfectly happy > > > that Ingrid decided to host this document > on her site, but credit was > > > due. Some people do care about the stuff > they create. > > > > > > Try writing something of value, and maybe > then you'll be qualified to > > > talk about copyright. > > > > > > > > > > True to the fact that credit was due, I think > most everyone on this list > > has written at least 1 report (or many more) > or created some form of > > work sometime in their lives incumbent of > deserving copyright > > recognition. So, flaunting that someone is > not qualified to talk about > > copyright is most certainly inadequate. > > Danial's comment, which was nothing short of, > "who cares who wrote > that stupid article", was insulting and still > more inadequate. User manuals and how-tos don't generally get copyright notices, because there is nothing creative about it. Someone could write exactly the same thing (just about), and you'd have little claim to it because its just a procedural description. What, is the formatting of your index unique or something? But that aside, I was more amused by the subject "serious breach of copyright", as if someone had taken your claim for writing War and Peace or something. They didn't even explicitly put a byline on it. Its just a how-to on a web page. And where are the credits for all of the how-tos you read to gain this knowledge? Why doesn't their work count? You should have a full bibliography. After all, credit is important! Like I said, who cares. DT __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00: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 BC68F16A47D for ; Wed, 21 Jun 2006 00:31:05 +0000 (UTC) (envelope-from reitz@eecs.cwru.edu) Received: from beta.eecs.cwru.edu (beta.EECS.CWRU.Edu [129.22.150.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76F2243D73 for ; Wed, 21 Jun 2006 00:30:57 +0000 (GMT) (envelope-from reitz@eecs.cwru.edu) Received: from brak ([::ffff:129.22.151.63]) (TLS: TLSv1/SSLv3,168bits,DES-CBC3-SHA) by beta.eecs.cwru.edu with esmtp; Tue, 20 Jun 2006 20:30:56 -0400 id 000ABF47.44989340.000004BA Date: Tue, 20 Jun 2006 20:30:51 -0400 (EDT) From: Andy Reitz X-X-Sender: reitz@brak To: Michael Collette In-Reply-To: <449891DA.70507@Metrol.net> Message-ID: References: <44978913.3070401@Metrol.net> <20060620015644.629b47a2@localhost> <449891DA.70507@Metrol.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Mark Kane , freebsd-questions@freebsd.org Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:31:05 -0000 On Tue, 20 Jun 2006, Michael Collette wrote: > Any and all feedback is appreciated. For as nice as the AMD64 processor > may be, sounds like things are a ways off before the software has fully > caught up. In 64-bit mode, that does appear to be the case. However, it sounds like you could purchase an AMD64-based processor, and have everythign work fine in 32-bit mode. Then later down the road, as the software evolves, you could upgrade FreeBSD to be 64-bit and be set. Just a thought, -Andy. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00: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 96C2716A47B for ; Wed, 21 Jun 2006 00:40:01 +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 C084A43D48 for ; Wed, 21 Jun 2006 00:40:00 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (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 k5L0dkx75551; Tue, 20 Jun 2006 17:39:47 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Elliot Finley" , "Alex Zbyslaw" Date: Tue, 20 Jun 2006 17:39:46 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <0cab01c693bb$22d8d180$37cba1cd@emerytelcom.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal Cc: freebsd-questions@freebsd.org Subject: RE: monitoring raid arrays X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:40:01 -0000 >-----Original Message----- >From: owner-freebsd-questions@freebsd.org >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Elliot Finley >Sent: Monday, June 19, 2006 9:12 AM >To: Alex Zbyslaw >Cc: freebsd-questions@freebsd.org >Subject: Re: monitoring raid arrays > > > >----- Original Message ----- >From: "Alex Zbyslaw" >> Elliot Finley wrote: >> >> >How about monitoring the array on a Dell PowerEdge 2650? >> >relevant dmesg output: >> > >> >FreeBSD 6.0-RELEASE-p2 #0: Mon Jan 16 12:27:14 MST 2006 >> >aacch0: port 0xcc00-0xccff mem >0xfccff000-0xfccfffff >irq >> >30 at device 6.0 on pci5 >> >aacch1: port 0xc800-0xc8ff mem >0xfccfe000-0xfccfefff >irq >> >31 at device 6.1 on pci5 >> >aac0: mem 0xf0000000-0xf7ffffff irq 30 at >device 8.1 on >> >pci4 >> >aac0: [FAST] >> >aac0: Adaptec Raid Controller 2.0.0-1 >> > >> > >> Port: aaccli-1.0 >> Path: /usr/ports/sysutils/aaccli >> Info: Adaptec SCSI RAID administration tool >> Maint: bms@FreeBSD.org >> B-deps: >> R-deps: >> WWW: http://support.dell.com/ >> >> Never tried it but it looks like your best bet. > >Yes, I saw this too. Doesn't work on 6.x though because of the MAKEDEV >requirement. Elliot, did you file a PR when you ran across this problem? Ted From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:40: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 9341C16A47C for ; Wed, 21 Jun 2006 00:40:03 +0000 (UTC) (envelope-from jhorne@dfwlp.com) Received: from zeus.int.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 044EC43D49 for ; Wed, 21 Jun 2006 00:40:02 +0000 (GMT) (envelope-from jhorne@dfwlp.com) Received: from athena.int.dfwlp.com (athena.int.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.int.dfwlp.com (8.13.6/8.13.6) with ESMTP id k5L0dwtf071760 for ; Tue, 20 Jun 2006 19:39:59 -0500 (CDT) (envelope-from jhorne@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Tue, 20 Jun 2006 19:39:56 -0500 User-Agent: KMail/1.9.3 References: <20060620233734.GH11625@tigger.digitaltorque.ca> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606201939.56661.jhorne@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on zeus.int.dfwlp.com Subject: Re: smp kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:40:03 -0000 On Tuesday 20 June 2006 19:01, Andy Reitz wrote: > On Tue, 20 Jun 2006, Michael P. Soulier wrote: > > Hello, > > > > Is SMP enabled in the GENERIC kernel? I have a hyperthreading box, and on > > Linux it shows up with two cpus. When I do a top on the box in FreeBSD I > > still see only one CPU. Also, sysctl -a | grep cpu only shows a > > dev.cpu.0. > > Hi Mike, > > If you have the kernel source code installed, you can read > /usr/src/sys//conf/GENERIC, to see what options are in the GENERIC > kernel. I'm pretty sure that most FreeBSD releases don't have the SMP > option in the generic kernel, but I haven't used them all, so I can't be > sure. :) > > HTH, > -Andy. > > _______________________________________________ all you need to do is edit your kernel configuration file and add this: options SMP and btw, top in freebsd does not seem to have the '1' toggle that linux has, so after you compile your new kernel, your just going to have to have faith in sysctl -a|grep cpu :) cheers, jonathan From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:42: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 8A7BB16A47E for ; Wed, 21 Jun 2006 00:42:12 +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 8539F43D7D for ; Wed, 21 Jun 2006 00:41:50 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (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 k5L0fkx75567; Tue, 20 Jun 2006 17:41:48 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Bill Schoolcraft" , Date: Tue, 20 Jun 2006 17:41:46 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal Cc: Subject: RE: "linksysmon" Linksys Router logging util? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:42:12 -0000 It's easy to build that program by hand on FreeBSD. TEd >-----Original Message----- >From: owner-freebsd-questions@freebsd.org >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Bill >Schoolcraft >Sent: Monday, June 19, 2006 11:18 AM >To: freebsd-questions@freebsd.org >Subject: "linksysmon" Linksys Router logging util? > > >Hello Family, > >I spotted a program called "linksysmon" and was wondering if there >is anything in "ports" that is similar? > >It's for accessing the logs of a Linksys router. > >Thanks > >-- > Bill Schoolcraft || http://wiliweld.com > <> >" Life is not measured by the number of breaths you > take, but by the moments that take your breath away!" > > > >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"freebsd-questions-unsubscribe@freebsd.org" > >-- >No virus found in this incoming message. >Checked by AVG Free Edition. >Version: 7.1.394 / Virus Database: 268.9.1/369 - Release Date: 6/19/2006 > From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:42: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 5FC2716A47B for ; Wed, 21 Jun 2006 00:42:21 +0000 (UTC) (envelope-from Metrol@Metrol.net) Received: from smtp.testequity.com (gateway.testequity.com [205.147.14.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF4AA43D6B for ; Wed, 21 Jun 2006 00:41:55 +0000 (GMT) (envelope-from Metrol@Metrol.net) Received: from smtp.priv.testequity.com (unknown [192.168.3.27]) by smtp.testequity.com (Postfix) with ESMTP id 9A45713C41A; Tue, 20 Jun 2006 17:41:55 -0700 (PDT) Received: from [192.168.3.172] (mach172.priv.testequity.com [192.168.3.172]) by smtp.priv.testequity.com (Postfix) with ESMTP id 92DC6C29F; Tue, 20 Jun 2006 17:41:55 -0700 (PDT) Message-ID: <449895EF.5090407@Metrol.net> Date: Tue, 20 Jun 2006 17:42:23 -0700 From: Michael Collette Organization: Metrol.net User-Agent: Thunderbird 1.5.0.4 (X11/20060607) MIME-Version: 1.0 To: Andy Reitz References: <44978913.3070401@Metrol.net> <20060620015644.629b47a2@localhost> <449891DA.70507@Metrol.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:42:21 -0000 Andy Reitz wrote: > In 64-bit mode, that does appear to be the case. However, it sounds like > you could purchase an AMD64-based processor, and have everythign work fine > in 32-bit mode. Then later down the road, as the software evolves, you > could upgrade FreeBSD to be 64-bit and be set. > > Just a thought, I was thinking along those lines as well, but then the money starts to kick in. The dual core Pentium is a much lower price than the dual AMD64. By the time the software is truly ready to go 64-bit, I think I'd be better off buying a system at that point. Maybe they'll be selling quads by then :) Later on, -- "In theory, there is no difference between theory and practice. In practice, there is." - Yogi Berra From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:48: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 05DDA16A47B for ; Wed, 21 Jun 2006 00:48:41 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9219143D6B for ; Wed, 21 Jun 2006 00:48:40 +0000 (GMT) (envelope-from ryallsd@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so38892nzi for ; Tue, 20 Jun 2006 17:48: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:mime-version:content-type:content-transfer-encoding:content-disposition; b=nRg+toor7yH2GMubHEI01kCwNvInM+AsH1euDmJI3RqYVGwCZZbmWy4m22cQ9cCvTaW0OjxFHJRJW34KbEmdcXtQLHWfvOtWBJd7Zebi57MDUohfrK1i6p//JD311Ch3RRkv6q2G6LyahGp/HY/PGrKhHGWmVVYsFQeigVQkv48= Received: by 10.36.135.5 with SMTP id i5mr54233nzd; Tue, 20 Jun 2006 17:48:39 -0700 (PDT) Received: by 10.36.49.20 with HTTP; Tue, 20 Jun 2006 17:48:39 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 17:48:39 -0700 From: "Derrick Ryalls" To: "FreeBSD Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Creating DVD Movies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 00:48:41 -0000 Greetings, i was wondering if anyone had a good tool recommendation for creating DVD movies with FreeBSD. Since I have a child growing up, it is appealing to me to make a copy of their favorite DVD and burn it so they can handle the copy, not the original (legal to make backup copies). I also was thinking it could be handy to author my own dvds, but that might not be for a while. So far, I can use mplayer to get the DVD to an avi file, but I can't find anything to get it back onto a dvd. I have tried dvdauthor, but the app kept crashing. Does anyone have any suggestions for this? From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 00:55: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 CFEE416A47B for ; Wed, 21 Jun 2006 00:55:32 +0000 (UTC) (envelope-from danial_thom@yahoo.com) Received: from web33301.mail.mud.yahoo.com (web33301.mail.mud.yahoo.com [68.142.206.116]) by mx1.FreeBSD.org (Postfix) with SMTP id 70AD543D45 for ; Wed, 21 Jun 2006 00:55:32 +0000 (GMT) (envelope-from danial_thom@yahoo.com) Received: (qmail 5966 invoked by uid 60001); 21 Jun 2006 00:55:32 -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=ZkpNGTyNWnUg0IxmBGJIVpAkD8bzj+CtDNVkBBI5JsxEAi2ZC8xLfqO1P65zV3y2CPKIC7grveewG1oyv1w4DKN5/9XtLAzAmX6HpdhwSmhvfcl8EWftW/AD5zVReoGFdAnNtKqIjc+H53M06BHSF6e1EZNEvGR2iLGNWfpF2rs= ; Message-ID: <20060621005532.5964.qmail@web33301.mail.mud.yahoo.com> Received: from [65.34.182.15] by web33301.mail.mud.yahoo.com via HTTP; Tue, 20 Jun 2006 17:55:32 PDT Date: Tue, 20 Jun 2006 17:55:32 -0700 (PDT) From: Danial Thom To: Jim Stapleton , David Hoffman In-Reply-To: <80f4f2b20606201726u23f50417qa7e0f9a23b919daa@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: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: danial_thom@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 00:55:33 -0000 --- Jim Stapleton wrote: > Mr. Hoffman, I'm surprised this hasn't been > said, and I'm probably > overstepping my bounds by saying this, but I've > been following this > topic, and I have trouble seeing it as anything > but trolling. The > freeBSD groups have always been excessively > helpful and friendly, and > you've done alot to insult and antagonize them > due to the actions of > *ONE* local group, that is not even related to > the general groups you > posted this too. These people on the general > freebsd have a nice group > without the trolling and antagonizing seen all > over other similar > groups. Please be more considerate and > respectful with your claims and > requests so that their forums can stay that > way. > > > > > 3) While you might want to refer to me as a > name-caller, litigious, and > > puerile, it's far from clear that FreeBSD > doesn't have political ties when > > the leaders of FreeBSD groups actively > campaign for partially restricting > > people's ability to communicate in any > language but English. Even if you > > ignored these extracuricular activities, > though, you'd still be faced with > > the fact that FreeBSD is de jure politicized > in favor of many things, > > including free software. > > Interesting you put this here, from a previous > post: > > > I'm not directly attacking your group. If > you're not political, and I'm > > arguing against something political, how > could I possibly be 'attacking' > > your group? > > These two in conjunction, both from you, > technically count as libel I > believe, you are making comments towards a > group, such as calling them > biggots, and then saying you know it's not > true. Also, calling someone > something, when they are not is still > offensive: If I called you a > "rabid dog", obviously a false statement, I am > sure you would be > offended. > > > Also, as to the prohibiting people from > communicating in languages > other than english, partially or otherwise, I'm > sorry, but... A 3/4ths > blind guy who is impatient and doesn't like > spending time searching > for things can find mailing lists for DOZENS of > of languages... Look > harder. Now each of these /IS/ language > specific - but that makes > sense, the idea here is COMMUNICATION. Ich kann > auf Deutch sprechen, > aber hier Ich kann nicht auf Deutch Verbindung > stehen. In english, I > can speak in German, but I cannot communicate > in German here - most > here (not all) don't speak it. I wouldn't go to > a German, French, > Spanish, Japanese, Portugese, etc. etc. etc. > mailing list and expect > them to respond to me in English, or be > anything but offended at my > arrogance of posting there in English. Its not illegal or libelous to dictate an official language, nor is it to call someone a bigot or rascist, since its a subjective opinion that can't be proven one way or another. You can also freely call someone an idiot or a fool, which I do quite often. Most people are bigots, in that they prefer their own language, their favorite OS, their own race, etc. The world cup is prima-fascie evidence of bigotry in the world. Game on! DT __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 01:08: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 797F116A474 for ; Wed, 21 Jun 2006 01:08:37 +0000 (UTC) (envelope-from wanderingidea@casema.nl) Received: from mta-fe.casema.nl (cas-mta4-fe.casema.nl [83.80.1.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF00943D55 for ; Wed, 21 Jun 2006 01:08:36 +0000 (GMT) (envelope-from wanderingidea@casema.nl) Received: from bsdbox.cable.casema.nl (53563FBD.cable.casema.nl [83.86.63.189]) by mta-fe.casema.nl (Postfix) with ESMTP id 486E41927E5 for ; Wed, 21 Jun 2006 02:47:23 +0200 (CEST) Date: Wed, 21 Jun 2006 02:47:23 +0200 From: Cor van Wandelen To: freebsd-questions@freebsd.org Message-ID: <20060621024723.282db558@bsdbox.cable.casema.nl> In-Reply-To: <44978913.3070401@Metrol.net> References: <44978913.3070401@Metrol.net> X-Mailer: Sylpheed-Claws 2.3.0 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 01:08:37 -0000 On Mon, 19 Jun 2006 22:35:15 -0700 Michael Collette wrote: > Bit of a dilemma here with my primary desktop machine suddenly up and > dieing on me. I'm now in the market to slap together a new PC > > I've started with looking at picking up an AMD64 based system. After > Googling around for a while I still have some concerns I haven't been > able to address. Probably just not looking the right places. > > Mostly I'm worried about some of the proprietary stuff like Flash, > Acrobat, nVidia Drivers, Java, and the like not working. > > Is anyone out there actively using the AMD64 processor as a desktop > machine? Are any of these 32-bit apps going to prove to be a show > stopper for me? > > The alternative appears to be the P4 with all the motherboards I've > seen using audio devices that aren't supported. Still, I'd rather > buy an old sound card and have all the software at least functional. > Any advice out there? > > Thanks, I tried the AMD64 version some time ago. Unfortunately I have to use Win'XP sometimes and an ext2 filesystem with the right Windows driver enables me to share files between XP and FreeBSD. For me 'Problem Report amd64/69704 : ext2/ext3 unstable in amd64' was the reason to switch back to the 32 bits version of FreeBSD again as it locked up every time I wrote or read a ext2 filesystem. Cor From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 01:09: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 864CD16A479 for ; Wed, 21 Jun 2006 01:09:48 +0000 (UTC) (envelope-from solinym@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id A747643D7F for ; Wed, 21 Jun 2006 01:09:33 +0000 (GMT) (envelope-from solinym@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1594908uge for ; Tue, 20 Jun 2006 18:09:32 -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=t1ctp9H57HGaZ1XlaMHG0QZIF4gChbPGQbnURZNVxiu+ekwFHcblfpTg+iM96lw2nUKRljwYRbTkVxptOHtp/1j8O5YjRzyEJzvMoPXrq3QEgpblQBhv06QmhHO+qKDZ206de861I/4wuFrFCNx9rh878t+IG7wDpeYzFJ49huU= Received: by 10.78.51.9 with SMTP id y9mr3109907huy; Tue, 20 Jun 2006 18:02:55 -0700 (PDT) Received: by 10.78.35.18 with HTTP; Tue, 20 Jun 2006 18:02:55 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 20:02:55 -0500 From: "Travis H." To: "Peter A. Giessel" In-Reply-To: <448F32A0.3040709@mac.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <448F1225.4080308@mac.com> <448F32A0.3040709@mac.com> Cc: freebsd-questions@freebsd.org Subject: Re: rc.d script for gvinum? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 01:09:48 -0000 > Prepare the disks: Done: # disklabel /dev/ad4s1 # /dev/ad4s1: 8 partitions: # size offset fstype [fsize bsize bps/cpg] a: 398283401 16 unused 0 0 c: 398283417 0 unused 0 0 # "raw" part, don't edit # disklabel /dev/ad4s1 # /dev/ad4s1: 8 partitions: # size offset fstype [fsize bsize bps/cpg] a: 398283401 16 unused 0 0 c: 398283417 0 unused 0 0 # "raw" part, don't edit > make a configfile: Done # cat /etc/gvinum.conf drive a device /dev/ad4s1a state up drive b device /dev/ad2s1a state up volume www plex org concat sd length 12G drive a volume ports plex org concat sd length 10G drive a volume video plex org concat sd length 180G drive b volume home plex org concat sd length 40M drive a > use gvinum to make the array: > # gvinum create configfile Did that before the latest reboot. > now when you load gvinum it should work. How exactly do I "load gvinum"? If I go into gvinum and "create", it gives me a config file thing - but slightly different -- and when I exit it prints: 2 drives: D b State: up /dev/ad2s1a A: 194480/194480 MB (100%) D a State: up /dev/ad4s1a A: 194474/194474 MB (100%) 5 volumes: V ports State: up Plexes: 0 Size: 0 B V www State: up Plexes: 0 Size: 0 B V video State: up Plexes: 0 Size: 0 B V subversion State: up Plexes: 0 Size: 0 B V home State: up Plexes: 0 Size: 0 B 5 plexes: P ports.p0 C State: up Subdisks: 0 Size: 0 B P www.p0 C State: up Subdisks: 0 Size: 0 B P video.p0 C State: up Subdisks: 0 Size: 0 B P subversion.p0 C State: up Subdisks: 0 Size: 0 B P home.p0 C State: up Subdisks: 0 Size: 0 B 5 subdisks: S ports.p0.s0 State: up D: a Size: 10 GB S www.p0.s0 State: up D: a Size: 12 GB S video.p0.s0 State: up D: b Size: 189 GB S subversion.p0.s0 State: up D: a Size: 1024 MB S home.p0.s0 State: up D: a Size: 40 MB See how all the plexes and volumes are size 0? > you can now treat /dev/gvinum/array # ls -la /dev/gvinum ls: /dev/gvinum: No such file or directory It was there last time... what happened? -- Every once in a while you run out of ideas; just keep going. Security "guru" for rent or hire - http://www.lightconsulting.com/~travis/ -><- GPG fingerprint: 9D3F 395A DAC5 5CCC 9066 151D 0A6B 4098 0C55 1484 From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 01:13: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 B4A6F16A474 for ; Wed, 21 Jun 2006 01:13:48 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F3A243D45 for ; Wed, 21 Jun 2006 01:13:48 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5L1DkJs023605; Tue, 20 Jun 2006 21:13:46 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id B5D86240A4; Tue, 20 Jun 2006 21:13:40 -0400 (EDT) Date: Tue, 20 Jun 2006 21:13:40 -0400 From: "Michael P. Soulier" To: Andy Reitz Message-ID: <20060621011340.GI11625@tigger.digitaltorque.ca> Mail-Followup-To: Andy Reitz , freebsd-questions@freebsd.org References: <20060620233551.GG11625@tigger.digitaltorque.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QHrz2k/ePFTn56xd" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 01:13:48 -0000 --QHrz2k/ePFTn56xd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 20/06/06 Andy Reitz said: > I believe that ia64 refers to the Itanium port of FreeBSD, and I'm not > sure of the i386 version will install on Itanium. Are you referring to the > AMD64/EMT-64 port of FreeBSD? It's a 64-bit P4. My i386 5.4 install works fine.=20 Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --QHrz2k/ePFTn56xd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEmJ1EKGqCc1vIvggRAs3AAKCeq+SPA/9GJBXt1T9PwcAAYxfa/ACdFc17 hmk5WlPWTaDnhAhGLyyLeEI= =BsBz -----END PGP SIGNATURE----- --QHrz2k/ePFTn56xd-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 01:15: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 823C016A47B for ; Wed, 21 Jun 2006 01:15:29 +0000 (UTC) (envelope-from mark@mkproductions.org) Received: from ylpvm43.prodigy.net (ylpvm43-ext.prodigy.net [207.115.57.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8556143D48 for ; Wed, 21 Jun 2006 01:15:27 +0000 (GMT) (envelope-from mark@mkproductions.org) Received: from pimout1-ext.prodigy.net (pimout1-int.prodigy.net [207.115.5.65]) by ylpvm43.prodigy.net (8.12.10 outbound/8.12.10) with ESMTP id k5L1FT4O028025 for ; Tue, 20 Jun 2006 21:15:30 -0400 X-ORBL: [67.66.237.138] Received: from localhost (adsl-67-66-237-138.dsl.stlsmo.swbell.net [67.66.237.138]) by pimout1-ext.prodigy.net (8.13.6 out.dk/8.13.6) with ESMTP id k5L1FPId130374; Tue, 20 Jun 2006 21:15:25 -0400 Date: Tue, 20 Jun 2006 20:15:24 -0500 From: Mark Kane To: "Derrick Ryalls" Message-ID: <20060620201524.4981169f@localhost> In-Reply-To: References: X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.8.18; x86_64-unknown-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Creating DVD Movies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 01:15:29 -0000 On Tue, Jun 20, 2006, at 17:48:39 -0700, Derrick Ryalls wrote: > Greetings, > > i was wondering if anyone had a good tool recommendation for creating > DVD movies with FreeBSD. Since I have a child growing up, it is > appealing to me to make a copy of their favorite DVD and burn it so > they can handle the copy, not the original (legal to make backup > copies). I also was thinking it could be handy to author my own dvds, > but that might not be for a while. > > So far, I can use mplayer to get the DVD to an avi file, but I can't > find anything to get it back onto a dvd. I have tried dvdauthor, but > the app kept crashing. Does anyone have any suggestions for this? Hi. I don't normally back up DVDs so I'm not sure the best software to do that. I did a quick ports search and "multimedia/lxdvdrip" looks nice, and may do exactly what you want all in one program. As for dvdauthor crashing, I would guess it's because you're not giving it the right format for a DVD. AVI files can't go to DVD, you need to convert it to MPEG-2 PS and the proper specifications. For this, I use a GTK+ program called Avidemux2 (it's in multimedia/avidemux2), although ffmpeg or mencoder should work also. Here are my steps for an AVI file to DVD: 1) Avidemux to video "DVD". Set aspect ratios in "Configure" and set "DVD Res" in the "Filters" area. If the audio is not already AC3 (check from the A/V information button on the toolbar), set audio to "FFM AC3". Set output format at bottom to "MPEG PS A+V". Save the video "filename.mpg". This one is the longest step, the other two are quite a bit shorter. 2) Take outputted mpeg file and run it through dvdauthor: dvdauthor --video=ntsc+16:9+720xfull -t -f filename.mpg -o output 3) Burn the authored DVD with dvd+rw tools: growisofs -dvd-video -Z /dev/cd0 output For a simple backup though I'd check out lxdvdrip or search through ports to see if there is a faster solution. I don't see much sense in going from DVD to AVI then back to DVD when you can just rip directly from the DVD and burn it back. I provided that info for when you want to author your own videos though. :) Hope that helps. -Mark -- Internet Radio: Party107 (Trance/Electronic) - http://www.party107.com Rock 101.9 The Edge (Rock) - http://www.rock1019.net IRC: MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941) GnuPG Public Key: http://www.mkproductions.org/mk_pubkey.asc From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 01:24: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 3107616A47A for ; Wed, 21 Jun 2006 01:24:26 +0000 (UTC) (envelope-from lenzi@k1.com.br) Received: from smtp.k1.com.br (customer-200195196249.onda.com.br [200.195.196.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7875843D45 for ; Wed, 21 Jun 2006 01:24:24 +0000 (GMT) (envelope-from lenzi@k1.com.br) Received: from infopar.com.br (localhost [127.0.0.1]) by smtp.k1.com.br (8.13.5/8.13.5) with ESMTP id k5K3Ccn4020530 for ; Tue, 20 Jun 2006 22:24:22 -0300 (BRT) X-MessageWall-Score: 0 (infopar.com.br) Received: from [201.21.131.24] (authenticated as lenzi) by infopar.com.br (MessageWall 1.0.8) with SMTP; 21 Jun 2006 01:24:22 -0000 From: Sergio Lenzi To: freebsd-questions@freebsd.org Date: Tue, 20 Jun 2006 22:23:52 -0300 Message-Id: <1150853032.16507.1.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 FreeBSD GNOME Team Port Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: FreeBSD 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: Wed, 21 Jun 2006 01:24:26 -0000 Hello, Is SMP enabled in the GENERIC kernel? I have a hyperthreading box, and on Linux it shows up with two cpus. When I do a top on the box in FreeBSD I still see only one CPU. Also, sysctl -a | grep cpu only shows a dev.cpu.0. You must set : machdep.hyperthreading_allowed=1 in /boot/loader.conf. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 01:29: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 D1C3616A4A5 for ; Wed, 21 Jun 2006 01:29:03 +0000 (UTC) (envelope-from solinym@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 23DFE43D45 for ; Wed, 21 Jun 2006 01:29:02 +0000 (GMT) (envelope-from solinym@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1599897uge for ; Tue, 20 Jun 2006 18:29:02 -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=MesCTQFdw84YkQhHYVfUwluPSs4wJ6nVcpmKZt4mI4Sr/e9GHMq7lmh1gxYghk+0OZrhY1GjOedligqrPv1OpDLOUrTtFVKuD5UNoTJdxt8+7TfP1DrkuFErCbL5c6Xl8I+iRcebts1UvHWZ+2g8YXXxnpCdQdtOL228FyPLdE8= Received: by 10.78.18.1 with SMTP id 1mr3112204hur; Tue, 20 Jun 2006 18:29:02 -0700 (PDT) Received: by 10.78.35.18 with HTTP; Tue, 20 Jun 2006 18:29:02 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 20:29:02 -0500 From: "Travis H." To: "Peter A. Giessel" 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: <448F1225.4080308@mac.com> <448F32A0.3040709@mac.com> Cc: freebsd-questions@freebsd.org Subject: Re: rc.d script for gvinum? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 01:29:03 -0000 On 6/20/06, Travis H. wrote: > It was there last time... what happened? My mistake. In fooling around with it I had set the state to something invalid, and I thought that loader.conf went in /etc, not /boot. I used "rm" on everything, saved, created via a config file, and now everything is happy. Thanks much! -- Every once in a while you run out of ideas; just keep going. Security "guru" for rent or hire - http://www.lightconsulting.com/~travis/ -><- GPG fingerprint: 9D3F 395A DAC5 5CCC 9066 151D 0A6B 4098 0C55 1484 From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 01:39: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 AC33016A479 for ; Wed, 21 Jun 2006 01:39:06 +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 5FFCA43D45 for ; Wed, 21 Jun 2006 01:39:06 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from [192.168.2.101] (adsl-68-93-62-112.dsl.rcsntx.swbell.net [68.93.62.112]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.stovebolt.com (Postfix) with ESMTP id D5BBB114307 for ; Tue, 20 Jun 2006 20:36:46 -0500 (CDT) Date: Tue, 20 Jun 2006 20:39:03 -0500 From: Paul Schmehl To: freebsd-questions@freebsd.org Message-ID: <0578D634449883E0B7478DE4@Paul-Schmehls-Computer.local> In-Reply-To: <1150853032.16507.1.camel@localhost> References: <1150853032.16507.1.camel@localhost> X-Mailer: Mulberry/4.0.0 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========7F7F8132FA9358EFE2EA==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: FreeBSD 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: Wed, 21 Jun 2006 01:39:06 -0000 --==========7F7F8132FA9358EFE2EA========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On June 20, 2006 10:23:52 PM -0300 Sergio Lenzi wrote: > Hello, > > Is SMP enabled in the GENERIC kernel? I have a hyperthreading box, and > on > Linux it shows up with two cpus. When I do a top on the box in FreeBSD I > still > see only one CPU. Also, sysctl -a | grep cpu only shows a dev.cpu.0. > No, SMP is not enabled in the GENERIC kernel. You must add: options SMP to the GENERIC kernel. Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========7F7F8132FA9358EFE2EA==========-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 01: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 4A7B416A479 for ; Wed, 21 Jun 2006 01:40:39 +0000 (UTC) (envelope-from ryallsd@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 1898B43D6D for ; Wed, 21 Jun 2006 01:40:30 +0000 (GMT) (envelope-from ryallsd@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so45876nzi for ; Tue, 20 Jun 2006 18:40:30 -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=pz7TM102S2wpOXqejmvHEOoi8X0/7z3OtB5h1wTnRKvMYHJmZb8ck5c3VAaWAqKOMJg0bCSP6s1j2EqgxtAq4MYDuczsFRaxurYr3dzHRLImnVF7iJH5btnjNmGwJdHuP/Fh4PcRepZrmVIiXzlD9sbafmIhrMuuhNvuRSsJRLU= Received: by 10.36.18.16 with SMTP id 16mr7857164nzr; Tue, 20 Jun 2006 18:40:30 -0700 (PDT) Received: by 10.36.49.20 with HTTP; Tue, 20 Jun 2006 18:40:30 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 18:40:30 -0700 From: "Derrick Ryalls" To: "Mark Kane" In-Reply-To: <20060620201524.4981169f@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620201524.4981169f@localhost> Cc: FreeBSD Questions Subject: Re: Creating DVD Movies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 01:40:39 -0000 On 6/20/06, Mark Kane wrote: > On Tue, Jun 20, 2006, at 17:48:39 -0700, Derrick Ryalls wrote: > > Greetings, > > > > i was wondering if anyone had a good tool recommendation for creating > > DVD movies with FreeBSD. Since I have a child growing up, it is > > appealing to me to make a copy of their favorite DVD and burn it so > > they can handle the copy, not the original (legal to make backup > > copies). I also was thinking it could be handy to author my own dvds, > > but that might not be for a while. > > > > So far, I can use mplayer to get the DVD to an avi file, but I can't > > find anything to get it back onto a dvd. I have tried dvdauthor, but > > the app kept crashing. Does anyone have any suggestions for this? > > Hi. > > I don't normally back up DVDs so I'm not sure the best software to do > that. I did a quick ports search and "multimedia/lxdvdrip" looks nice, > and may do exactly what you want all in one program. > > As for dvdauthor crashing, I would guess it's because you're not giving > it the right format for a DVD. AVI files can't go to DVD, you need to > convert it to MPEG-2 PS and the proper specifications. For this, I use > a GTK+ program called Avidemux2 (it's in multimedia/avidemux2), although > ffmpeg or mencoder should work also. Here are my steps for an AVI file > to DVD: > > 1) Avidemux to video "DVD". Set aspect ratios in "Configure" and set > "DVD Res" in the "Filters" area. If the audio is not already AC3 (check > from the A/V information button on the toolbar), set audio to "FFM > AC3". Set output format at bottom to "MPEG PS A+V". Save the video > "filename.mpg". This one is the longest step, the other two are quite a > bit shorter. > > 2) Take outputted mpeg file and run it through dvdauthor: > > dvdauthor --video=ntsc+16:9+720xfull -t -f filename.mpg -o output > > 3) Burn the authored DVD with dvd+rw tools: > > growisofs -dvd-video -Z /dev/cd0 output > > For a simple backup though I'd check out lxdvdrip or search through > ports to see if there is a faster solution. I don't see much sense in > going from DVD to AVI then back to DVD when you can just rip directly > from the DVD and burn it back. I provided that info for when you > want to author your own videos though. :) > > Hope that helps. > > -Mark > You know, I did try dvdrip (forgot to mention it) but I found it to be geared toward VCD and burning to a CD-R instead of DVDs. I didn't even see lxdvdrip. The pkg-descr does look like it could be the exact thing I am looking for and will try it out. If I were to follow your steps about for a DVD copy, I assume VOB copy or something similar to produce the mpeg would be substituted in step 1, correct? Though this would not handle DVD9 to single DVD5 (compressed video), I might need to rethink that scenario... Thanks for the pointers though. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 02:06: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 397AF16A4E6 for ; Wed, 21 Jun 2006 02:06:57 +0000 (UTC) (envelope-from tfcheng@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 1E2BF43E2E for ; Wed, 21 Jun 2006 02:05:32 +0000 (GMT) (envelope-from tfcheng@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1608948uge for ; Tue, 20 Jun 2006 19:04: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:in-reply-to:mime-version:content-type:references; b=F3P3+dfyiWS0nmW6uJZ4UThSgOlZeNaZCKxJtZ3fFCMAwo1ND7kHrBM+j3kkpurPy6KemuwlwFym4w9r73Mo7b6pKPDW/bUXlK3UBiBGybTtcfErnRjd9RHq7P2bHjvmQOEr+s6h/PsNmkR+lZrJrtxAzZkuAdx5V70GvmZFxoU= Received: by 10.67.89.5 with SMTP id r5mr2997873ugl; Tue, 20 Jun 2006 18:58:47 -0700 (PDT) Received: by 10.67.32.2 with HTTP; Tue, 20 Jun 2006 18:58:47 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 21:58:47 -0400 From: "Tsu-Fan Cheng" To: freebsd-questions@freebsd.org In-Reply-To: <44sllzvplr.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_21580_22162566.1150855127432" References: <44sllzvplr.fsf@be-well.ilk.org> X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: azureus on freebsd and windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 02:06:57 -0000 ------=_Part_21580_22162566.1150855127432 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I edited the libmap.conf but now it coredumps when I ran azureus i am running jdk1.5.0-p3 on freebsd 6.1/amd64 I attach the error log (don't know if mailing list accept attachment) ------=_Part_21580_22162566.1150855127432-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 02:13: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 6678716A47A for ; Wed, 21 Jun 2006 02:13:11 +0000 (UTC) (envelope-from josh@endries.org) Received: from www.endries.org (www.endries.org [216.230.164.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D43E643D6E for ; Wed, 21 Jun 2006 02:13:10 +0000 (GMT) (envelope-from josh@endries.org) Received: from localhost (localhost [127.0.0.1]) by www.endries.org (Postfix) with ESMTP id 12300F745A for ; Tue, 20 Jun 2006 22:13:10 -0400 (EDT) Received: from www.endries.org ([127.0.0.1]) by localhost (www.endries.org [127.0.0.1]) (amavisd-new, port 10025) with LMTP id 08236-03 for ; Tue, 20 Jun 2006 22:13:03 -0400 (EDT) Received: from [172.20.61.106] (pool-129-44-84-183.bing.east.verizon.net [129.44.84.183]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by www.endries.org (Postfix) with ESMTP id 076C7F7425 for ; Tue, 20 Jun 2006 22:13:02 -0400 (EDT) Message-ID: <4498AB21.4060405@endries.org> Date: Tue, 20 Jun 2006 22:12:49 -0400 From: Josh Endries User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) 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: amavisd-new at endries.org Subject: RAID online capacity expansion X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 02:13:11 -0000 Hello, Has anyone out there successfully done an online expansion of a RAID array in FreeBSD? How is it done and with what hardware did it work? From what I can gather, it's not possible. Aside from the fact that fdisk(8) says "Editing an existing slice will most likely result in the loss of all data in that slice", growfs(8) says it cannot enlarge a mounted filesystem. disklabel seems to be okay with making live changes, but I haven't tested it. Is there any way to do this in FreeBSD or is Linux+LVM the way to go? Thanks, Josh From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 03:20: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 59E9C16A474; Wed, 21 Jun 2006 03:20:32 +0000 (UTC) (envelope-from anderson@centtech.com) Received: from mh1.centtech.com (moat3.centtech.com [207.200.51.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A072943D46; Wed, 21 Jun 2006 03:20:31 +0000 (GMT) (envelope-from anderson@centtech.com) Received: from [192.168.42.22] (andersonbox2.centtech.com [192.168.42.22]) by mh1.centtech.com (8.13.1/8.13.1) with ESMTP id k5L3KRp3013262; Tue, 20 Jun 2006 22:20:29 -0500 (CDT) (envelope-from anderson@centtech.com) Message-ID: <4498BB05.9020006@centtech.com> Date: Tue, 20 Jun 2006 22:20:37 -0500 From: Eric Anderson User-Agent: Thunderbird 1.5.0.4 (X11/20060612) MIME-Version: 1.0 To: Scott Long References: <449606B8.5080106@centtech.com> <4496CEBB.4020200@samsco.org> In-Reply-To: <4496CEBB.4020200@samsco.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.87.1/1555/Tue Jun 20 17:21:12 2006 on mh1.centtech.com X-Virus-Status: Clean Cc: freebsd-fs@freebsd.org, Ensel Sharon , freebsd-questions@freebsd.org Subject: Re: Please help - adaptec 2820sa not ... RESOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 03:20:32 -0000 Scott Long wrote: > Eric Anderson wrote: >> Ensel Sharon wrote: >> >>> >>> On Mon, 19 Jun 2006, Jahilliya wrote: >>> >>>>> Ok, aac is in the dmesg. >>>>> >>>>> I can see both 2820sa cards in the dmesg, and I see no errors, etc. - >>>>> there are just no drives listed in dmesg. >>>>> >>>>> My setup is 8 500 Gb drives in a single raid-6 array, size ~2.8TB. >>>>> Any >>>>> problems with that ? Perhaps sysinstall cannot deal with a >2TB drive >>>>> ? There are no other drives in the system besides the single 2.8TB >>>>> raid 6 >>>>> array ... >>>>> >>>> Have you got any other drives you can attach to the raid? >>>> >>>> If so, disconnect the 8 drives connected, connect up a couple that are >>>> not part of the raid and configure them as a simple raid 1 and see if >>>> the installers sees that raid. Or try any combination in drives to >>>> bring the raid size down below 2TB (I'm sure this limitation has been >>>> fixed.) >>> >>> >>> >>> Ok, the answer is that it has not been fixed. >>> >>> 6.1 sysinstall does in fact see both 2820sa controllers, and when I >>> put in >>> a single 160GB sata drive, it does see that single drive and I can >>> install >>> onto it, etc. >>> >>> Sysinstall does _not_ see my 2.7TB raid6 array. I suspect that if it >>> were >>> smaller than 2TB, it would see it correctly. >>> >>> I have a number of options with which to deal with this, all of which >>> involve either wasting money or wasting disk space. Fantastic. >> >> >> Right - FreeBSD doesn't recognize >2TB LUNs. > > Wrong on several counts. First, the AAC driver does not present arrays > to the system as SCSI LUNs. The traditional 2TB limit with 12 byte CDB > issue simply doesn't exist with this driver. Second, the FreeBSD SCSI > layer knows how to issue 16 byte CDBs to access >2TB, assuming that the > target understands the 16-byte protocol. So no, there is no 2TB limit > inherent to FreeBSD. The only limit is with individual drivers and with > hardware. > > Scott Scott, thanks for correcting me on this. I was under the (false) impression that this was a FreeBSD SCSI issue, not a driver issue. I had tried this with QLogic fiber (fabric) storage in the past, and had issues, so I incorrectly thought that the information I had was true. Is it difficult to make drivers (such as the qlogic isp driver) handle >2TB devices? Eric -- ------------------------------------------------------------------------ Eric Anderson Sr. Systems Administrator Centaur Technology Anything that works is better than anything that doesn't. ------------------------------------------------------------------------ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 03:27: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 B938516A481 for ; Wed, 21 Jun 2006 03:27:01 +0000 (UTC) (envelope-from thisdayislong@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 B77AD43D46 for ; Wed, 21 Jun 2006 03:27:00 +0000 (GMT) (envelope-from thisdayislong@gmail.com) Received: by nf-out-0910.google.com with SMTP id x30so28275nfb for ; Tue, 20 Jun 2006 20:26: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=Fl7ZBKWIPjoQCsxNaC8dJ0AFQfYBSvbIRTU21Djbyrhq/Y7CsDoNp7gHGmsk1R3u79/k1L62iMZSqelb9mOJrU4zCw3UAAuwfDR9cJyC+GBrY4BSSC7PcZdIlOnB26jmERoJI1+0qBfKBQZBWSq23MBM+aLOUdIXJQlIFtNbwoY= Received: by 10.48.221.6 with SMTP id t6mr112507nfg; Tue, 20 Jun 2006 20:26:59 -0700 (PDT) Received: by 10.49.3.19 with HTTP; Tue, 20 Jun 2006 20:26:58 -0700 (PDT) Message-ID: Date: Tue, 20 Jun 2006 23:26:58 -0400 From: Brett To: danial_thom@yahoo.com In-Reply-To: <20060621002928.55056.qmail@web33303.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: <20060621002928.55056.qmail@web33303.mail.mud.yahoo.com> Cc: zionicman@gmail.com, Ingrid Kast Fuller , freebsd-questions@freebsd.org, freebsd-chat@freebsd.org Subject: Re: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 03:27:01 -0000 On 6/20/06, Danial Thom wrote: > > > User manuals and how-tos don't generally get > copyright notices, because there is nothing > creative about it. Someone could write exactly > the same thing (just about), and you'd have > little claim to it because its just a procedural > description. What, is the formatting of your > index unique or something? Not at all. The entire procedure is unique. That's why it's helpful to others, hopefully. Check out the FreeBSD handbook. It's full of copyright notices. I don't think someone's going to come out with a FreeBSD handbook without images and claim that they wrote it, and then get away with it. And even then, the copyright notice is just a formality. > > But that aside, I was more amused by the subject > "serious breach of copyright", as if someone had > taken your claim for writing War and Peace or > something. They didn't even explicitly put a > byline on it. Its just a how-to on a web page. > > And where are the credits for all of the how-tos > you read to gain this knowledge? Why doesn't > their work count? You should have a full > bibliography. After all, credit is important! > > Like I said, who cares. > > DT > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 03: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 ED12A16A479 for ; Wed, 21 Jun 2006 03:51:53 +0000 (UTC) (envelope-from dennyboy@cableone.net) Received: from S1.cableone.net (s1.cableone.net [24.116.0.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B20443D48 for ; Wed, 21 Jun 2006 03:51:53 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from badboybox.cableone.net (unverified [69.92.6.58]) by S1.cableone.net (CableOne SMTP Service S1) with ESMTP id 63634052 for ; Tue, 20 Jun 2006 20:52:21 -0700 Date: Tue, 20 Jun 2006 22:51:46 -0500 (CDT) From: Denny White To: FreeBSD Questions In-Reply-To: <0578D634449883E0B7478DE4@Paul-Schmehls-Computer.local> Message-ID: References: <1150853032.16507.1.camel@localhost> <0578D634449883E0B7478DE4@Paul-Schmehls-Computer.local> X-GPG-PUBLIC_KEY: http//wwwkeys.nl.pgp.net X-GPG-FINGERPRINT: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-NotAscii: charset=us-ascii; X-IP-stats: Incoming Last 0, First 43, in=37, out=0, spam=0 X-External-IP: 69.92.6.58 X-Abuse-Info: Send abuse complaints to abuse@cableone.net Subject: Re: FreeBSD 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: Wed, 21 Jun 2006 03:51:54 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 > --On June 20, 2006 10:23:52 PM -0300 Sergio Lenzi wrote: > >> Hello, >> >> Is SMP enabled in the GENERIC kernel? I have a hyperthreading box, and >> on >> Linux it shows up with two cpus. When I do a top on the box in FreeBSD I >> still >> see only one CPU. Also, sysctl -a | grep cpu only shows a dev.cpu.0. >> Today Paul Schmehl wrote: > No, SMP is not enabled in the GENERIC kernel. You must add: > options SMP > to the GENERIC kernel. > > Paul Schmehl (pauls@utdallas.edu) > Adjunct Information Security Officer > The University of Texas at Dallas > http://www.utdallas.edu/ir/security/ > Okay, might be off base here, so someone correct me if I'm wrong. Don't you also have to remove the following #ifdef SMP #ifndef COMPILING_LINT #error DEVICE_POLLING is not compatible with SMP #endif #endif from /usr/src/sys/kern/kern_poll.c ? You'll get an error part of the way through building the kernel otherwise, right? Like I said, that's the way I remember it. Just trying to save someone some unnecessary work. GnuPG key : 0x1644E79A | http://wwwkeys.nl.pgp.net Fingerprint: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (OpenBSD) iD8DBQFEmMJYy0Ty5RZE55oRAopwAKCDQTIJ/FtluG1Z8Oyg39aCktGzEACeJAn/ S91I6mzUdiq20//umC0+/xI= =EWQS -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 04:18: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 4735F16A479 for ; Wed, 21 Jun 2006 04:18:29 +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 EB50C43D46 for ; Wed, 21 Jun 2006 04:18:28 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from [192.168.2.101] (adsl-68-93-62-112.dsl.rcsntx.swbell.net [68.93.62.112]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.stovebolt.com (Postfix) with ESMTP id 81BA0114307 for ; Tue, 20 Jun 2006 23:16:09 -0500 (CDT) Date: Tue, 20 Jun 2006 23:18:26 -0500 From: Paul Schmehl To: FreeBSD Questions Message-ID: <8469C0FAABF1551E10969CC2@Paul-Schmehls-Computer.local> In-Reply-To: References: <1150853032.16507.1.camel@localhost> <0578D634449883E0B7478DE4@Paul-Schmehls-Computer.local> X-Mailer: Mulberry/4.0.0 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========04DCF76763B4F139F72B==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: FreeBSD 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: Wed, 21 Jun 2006 04:18:29 -0000 --==========04DCF76763B4F139F72B========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On June 20, 2006 10:51:46 PM -0500 Denny White =20 wrote: > > Okay, might be off base here, so someone correct me if > I'm wrong. Don't you also have to remove the following > ># ifdef SMP ># ifndef COMPILING_LINT ># error DEVICE_POLLING is not compatible with SMP ># endif ># endif > > from /usr/src/sys/kern/kern_poll.c ? > > You'll get an error part of the way through building > the kernel otherwise, right? Like I said, that's the > way I remember it. Just trying to save someone some > unnecessary work. > I've only compiled the SMP kernel on the AMD64 architecture, but I did not=20 have to edit any source files. I added "options SMP" to the GENERIC=20 kernel and compiled with no problems. Paul Schmehl (pauls@utdallas.edu) Adjunct Information Security Officer The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========04DCF76763B4F139F72B==========-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 04:59: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 945F816A474 for ; Wed, 21 Jun 2006 04:59:48 +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 5115D43D45 for ; Wed, 21 Jun 2006 04:59:48 +0000 (GMT) (envelope-from bill@wiliweld.com) Received: from liam.billschoolcraft.com ([71.141.255.238]) by typhoon.he.net for ; Tue, 20 Jun 2006 21:59:47 -0700 Date: Tue, 20 Jun 2006 21:59:47 -0700 (PDT) From: Bill Schoolcraft X-X-Sender: bill@liam.billschoolcraft.com To: Ted Mittelstaedt In-Reply-To: Message-ID: References: System-ID: [en] (SuSE-9.3 64-bit) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org Subject: RE: "linksysmon" Linksys Router logging util? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 04:59:48 -0000 At Tue, 20 Jun 2006 it looks like Ted Mittelstaedt composed: > > It's easy to build that program by hand on FreeBSD. > > TEd Thanks Ted. -- Bill Schoolcraft || http://wiliweld.com <> "To be unhappy over what one lacks is to waste what one already possesses." From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 05:23: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 E249F16A47A for ; Wed, 21 Jun 2006 05:23:13 +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 7F85D43D45 for ; Wed, 21 Jun 2006 05:23:12 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-242.dynamic.qsc.de [212.202.39.242]) by efacilitas.de (Postfix) with ESMTP id 1EFE44C750; Wed, 21 Jun 2006 07:23:45 +0200 (CEST) Received: from [192.168.1.2] (muhkuh.local [192.168.1.2]) by eurystheus.local (Postfix) with ESMTP id 5B41F5285E; Wed, 21 Jun 2006 07:22:24 +0200 (CEST) Message-ID: <4498D7C3.4050109@cs.tu-berlin.de> Date: Wed, 21 Jun 2006 07:23:15 +0200 From: =?ISO-8859-15?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: "Michael P. Soulier" References: <20060620233734.GH11625@tigger.digitaltorque.ca> In-Reply-To: <20060620233734.GH11625@tigger.digitaltorque.ca> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: smp kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 05:23:14 -0000 Michael P. Soulier schrieb: > Hello, > > Is SMP enabled in the GENERIC kernel? I have a hyperthreading box, and on > Linux it shows up with two cpus. When I do a top on the box in FreeBSD I still > see only one CPU. Also, sysctl -a | grep cpu only shows a dev.cpu.0. If you install FreeBSD 6.1 then you can choose between a generic kernel without SMP support and an SMP enabled kernel. These kernels are named "GENERIC" and "SMP". If you missed that point you can install it subsequently: # mount /cdrom # cd /cdrom/6.1-RELEASE/kernels # ./install SMP # echo 'kernel="SMP"' >> /boot/loader.conf # shutdown -r now Regards Björn From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 05: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 9649016A47A for ; Wed, 21 Jun 2006 05:40:39 +0000 (UTC) (envelope-from philippe.lang@attiksystem.ch) Received: from mail.attiksystem.ch (f29.attiksystem.ch [212.147.59.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AFD243D45 for ; Wed, 21 Jun 2006 05:40:37 +0000 (GMT) (envelope-from philippe.lang@attiksystem.ch) Received: from poweredge.attiksystem.ch (poweredge.attiksystem.ch [10.0.0.29]) by mail.attiksystem.ch (8.12.11/8.12.11) with ESMTP id k5L5eals099981 for ; Wed, 21 Jun 2006 07:40:36 +0200 (CEST) (envelope-from philippe.lang@attiksystem.ch) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Wed, 21 Jun 2006 07:40:36 +0200 Message-ID: <6C0CF58A187DA5479245E0830AF84F421D0E39@poweredge.attiksystem.ch> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ICH5R, ICH7R or Promise PDC20378 RAID? Thread-Index: AcaTml0aO6mRpUdjTomBSIsQLMEZOQA61I9AAAQ3NSAAF5h5wA== From: "Philippe Lang" To: X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.49 on 10.0.0.111 Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 05:40:39 -0000 owner-freebsd-questions@freebsd.org wrote: >> 1) With the Promise controller, after simulating a disk problem >> (shutdown - disk disconnection - reboot - shutdown - disk >> reconnection - reboot), I wasn't able to rebuild the array at all, >> either with "atacontrol rebuild ar0" or from the bios. I suspect a >> spare disk is necessary for a complete rebuild. >>=20 >> 2) With the ICH5R controller, installation went fine too. If I >> disconnect a disk, the system still boots, but when I plug the disk >> back (computer shut down), no boot is possible anymore. At boot, a >> kernel panic says: "softdep_setup_inomapdep". No array rebuild is >> possible from the bios, so I'm stuck.=20 >>=20 >>=20 >> I use freebsd 6.1 RELEASE, with the latest BIOS for the motherboard, >> and 2 SATA 1.0 Western Digital 160GB disks. I'm trying to configure >> RAID 1.=20 >>=20 >> I'm surprised I have so many problems. Am I doing anything wrong? >> With INTEL hardware controllers for SCSI disks, I never had any >> problems until now. Does anyone successfully use another ASUS board, >> and is able to rebuild the array, without rebooting? >>=20 >=20 > Few things I noticed about the on-board Promise chipset on > ASUS that it is very poorly designed. If you do the > unplug/replug test, it most likely won't work, you need to > use a spare drive or re-format the drive and then replug it. >=20 > It also goes out of sync very often, so you want to make sure > you're running consistency checks at least once a month. >=20 > Sometimes when one of the RAID-1 drives develops bad sectors, > the whole array won't boot until you unplug one of the > drives, and plug a spare one. >=20 > My conclusion, if you need something stable, don't use the > onboard raid, get a RAID card even the cheap ones will do better job!! Hi, Thanks for the confirmation the onboard controller is not the way to go... What reliable and good raid controller would you recommend for a simple RAID 1 in SATA? --------------- Philippe Lang Attik System From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 05:47: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 1B63516A47D for ; Wed, 21 Jun 2006 05:47:23 +0000 (UTC) (envelope-from daeg@houston.rr.com) Received: from ms-smtp-01.texas.rr.com (ms-smtp-01.texas.rr.com [24.93.47.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C08243D49 for ; Wed, 21 Jun 2006 05:47:21 +0000 (GMT) (envelope-from daeg@houston.rr.com) Received: from cpe-24-167-71-114.houston.res.rr.com (cpe-24-167-71-114.houston.res.rr.com [24.167.71.114]) by ms-smtp-01.texas.rr.com (8.13.6/8.13.6) with ESMTP id k5L5lJuP024235; Wed, 21 Jun 2006 00:47:20 -0500 (CDT) From: David J Brooks Organization: KC5WNK To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 00:47:19 -0500 User-Agent: KMail/1.9.3 References: In-Reply-To: X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(=?utf-8?q?gxJxxc=0A=09R=09nSNPNr*/=5E=7EStawWU9KDJ-CT0k=24f=23?=@t2^K&BS_f|?ZV/.7Q MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606210047.19621.daeg@houston.rr.com> X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: Derrick Ryalls Subject: Re: Creating DVD Movies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 05:47:23 -0000 On Tuesday 20 June 2006 19:48, Derrick Ryalls wrote: > Greetings, > > i was wondering if anyone had a good tool recommendation for creating > DVD movies with FreeBSD. Since I have a child growing up, it is > appealing to me to make a copy of their favorite DVD and burn it so > they can handle the copy, not the original (legal to make backup > copies). I also was thinking it could be handy to author my own dvds, > but that might not be for a while. > > So far, I can use mplayer to get the DVD to an avi file, but I can't > find anything to get it back onto a dvd. I have tried dvdauthor, but > the app kept crashing. Does anyone have any suggestions for this? What you need is tovid. (/usr/ports/multimedia/tovid). This link... http://forums.whirlpool.net.au/forum-replies-archive.cfm/511457.html ...gives some very basic instructions, but read the manpages for all the nifty options. It's three steps from avi to dvd. 1) tovid converts the avi to mpeg, 2) makexml produces an xml script to feed into makedvd and 3) makedvd splits the mpeg into all the TS_VIDEO/VOBs and whatnots and can leave with with either a raw directory structure, an ISO file, or burn it straight to dvd for you. David -- Sure God created the world in only six days, but He didn't have an established user-base. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 06:00: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 0B93216A47C for ; Wed, 21 Jun 2006 06:00:09 +0000 (UTC) (envelope-from amistry@am-productions.biz) Received: from mail.united-ware.com (am-productions.biz [69.61.164.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 644BB43D48 for ; Wed, 21 Jun 2006 06:00:09 +0000 (GMT) (envelope-from amistry@am-productions.biz) Received: from [192.168.1.100] (am-productions.biz [69.61.164.22]) (authenticated bits=0) by mail.united-ware.com (8.13.6/8.13.6) with ESMTP id k5L64YU4001053 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 21 Jun 2006 02:04:40 -0400 (EDT) (envelope-from amistry@am-productions.biz) From: Anish Mistry Organization: AM Productions To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 02:00:28 -0400 User-Agent: KMail/1.9.1 References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart11793472.9l7nR2ZsvU"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200606210200.38151.amistry@am-productions.biz> X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,BAYES_99, MYFREEBSD2 autolearn=no version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on mail.united-ware.com X-Virus-Scanned: ClamAV 0.88.2/1553/Tue Jun 20 17:25:32 2006 on mail.united-ware.com X-Virus-Status: Clean Cc: Derrick Ryalls Subject: Re: Creating DVD Movies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 06:00:10 -0000 --nextPart11793472.9l7nR2ZsvU Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 20 June 2006 20:48, Derrick Ryalls wrote: > Greetings, > > i was wondering if anyone had a good tool recommendation for > creating DVD movies with FreeBSD. Since I have a child growing up, > it is appealing to me to make a copy of their favorite DVD and burn > it so they can handle the copy, not the original (legal to make > backup copies). I also was thinking it could be handy to author my > own dvds, but that might not be for a while. > > So far, I can use mplayer to get the DVD to an avi file, but I > can't find anything to get it back onto a dvd. I have tried > dvdauthor, but the app kept crashing. Does anyone have any > suggestions for this? vobcopy + avidemux2 + dvdstyler =2D-=20 Anish Mistry amistry@am-productions.biz AM Productions http://am-productions.biz/ --nextPart11793472.9l7nR2ZsvU Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBEmOCGxqA5ziudZT0RAhBAAJ4m95Q2noMUEJjHaspFdStmgWs+uQCg028Q 7YGa7Hu0+3TMD3FhEZihuYw= =CDYl -----END PGP SIGNATURE----- --nextPart11793472.9l7nR2ZsvU-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 06:22: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 35C4916A474 for ; Wed, 21 Jun 2006 06:22:44 +0000 (UTC) (envelope-from philippe.lang@attiksystem.ch) Received: from mail.attiksystem.ch (f29.attiksystem.ch [212.147.59.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9215E43D45 for ; Wed, 21 Jun 2006 06:22:43 +0000 (GMT) (envelope-from philippe.lang@attiksystem.ch) Received: from poweredge.attiksystem.ch (poweredge.attiksystem.ch [10.0.0.29]) by mail.attiksystem.ch (8.12.11/8.12.11) with ESMTP id k5L6MfVO000451 for ; Wed, 21 Jun 2006 08:22:42 +0200 (CEST) (envelope-from philippe.lang@attiksystem.ch) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Wed, 21 Jun 2006 08:22:41 +0200 Message-ID: <6C0CF58A187DA5479245E0830AF84F421D0E3A@poweredge.attiksystem.ch> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ICH5R, ICH7R or Promise PDC20378 RAID? Thread-Index: AcaTml0aO6mRpUdjTomBSIsQLMEZOQA61I9AAAQ3NSAAF5h5wAABgk8A From: "Philippe Lang" To: X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.49 on 10.0.0.111 Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 06:22:44 -0000 owner-freebsd-questions@freebsd.org wrote: >> My conclusion, if you need something stable, don't use the onboard >> raid, get a RAID card even the cheap ones will do better job!! >=20 > Hi, >=20 > Thanks for the confirmation the onboard controller is not the > way to go... What reliable and good raid controller would you > recommend for a simple RAID 1 in SATA? I have just ordered a AMCC 3ware 8006-2LP, it seems to be the cheap controller I needed, with great support for FreeBSD. Cheers, --------------- Philippe Lang Attik System From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 06:25: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 D93D316A479 for ; Wed, 21 Jun 2006 06:25:46 +0000 (UTC) (envelope-from freebsd-01@jeremykister.com) Received: from qmail-01.nntx.net (qmail-01.nntx.net [204.9.96.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 4F20D43D45 for ; Wed, 21 Jun 2006 06:25:46 +0000 (GMT) (envelope-from freebsd-01@jeremykister.com) Received: (qmail 15841 invoked by uid 1010); 21 Jun 2006 02:25:45 -0400 Received: by simscan 1.2.0 ppid: 15837, pid: 15840, t: 0.0518s scanners:none Received: from unknown (HELO ?64.115.0.169?) (smtpauth-01@jeremykister.com@64.115.0.169) by qmail-01.nntx.net with SMTP; 21 Jun 2006 02:25:45 -0400 Message-ID: <4498E663.8010509@jeremykister.com> Date: Wed, 21 Jun 2006 02:25:39 -0400 From: Jeremy Kister User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Crashing with HP/Compaq DL360 G3 [paging kernel developer] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 06:25:46 -0000 I've got four identical HP/Compaq DL360 G3 1u servers. Each has the latest available firmware: Proliant P31 (03/03/2005) BIOS HP SmartArray 5i RAID onboard controller (v2.62) (2) HPNC7781 (Broadcom BCM5703) (ASIC rev. 0x1002) 10/100/1000 onboard network card iLO v1.80 (Jul/12/2005) and each has: two Intel Xeon 2.8Ghz w/ Hyperthreading four sticks of 512MB ECC RAM two 36GB SCA disks in RAID1 via SmartArray 5i I have sudden [seemingly random] reboots with all four (see http://unix.derkeiler.com/Mailing-Lists/FreeBSD/questions/2006-02/msg01605.html) while running FreeBSD 6.0-RELEASE through the PreReleases and now with 6.1-STABLE. In an effort to make FreeBSD stable with DL360's, I'm wondering if there's a driver/kernel developer interested in having full remote access to this machine for a week or two (or three) via iLO and root/ssh. Anyone qualified and interested, please let me know. -- Jeremy Kister http://jeremy.kister.net./ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 07:18: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 C75AE16A479 for ; Wed, 21 Jun 2006 07:18:49 +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 3A55743D4C for ; Wed, 21 Jun 2006 07:18:49 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (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 k5L7Ikx77437; Wed, 21 Jun 2006 00:18:46 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Marc G. Fournier" , Date: Wed, 21 Jun 2006 00:18:45 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" 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: <20060620060845.U1114@ganymede.hub.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal Cc: Subject: RE: Are hardware vendors starting to bail 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, 21 Jun 2006 07:18:50 -0000 >-----Original Message----- >From: owner-freebsd-questions@freebsd.org >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marc >G. Fournier >Sent: Tuesday, June 20, 2006 2:24 AM >To: freebsd-questions@freebsd.org >Subject: Are hardware vendors starting to bail on FreeBSD ... ? > > > >... and is there anything we can do as a community to prevent it? > >I've been a FreeBSD users since '94, and proud of it ... and have >vehemently defended, all the way, my decision to use it vs 'the >dark side' >... > >Although my above subject is a more "general call", my big beef >right now >is with RAID controller vendors, but I don't believe that the >problem is >specific to them, so hopefully others will ring in ... > It IS specific to them for a couple reasons, let me outline: 1) RAID is being taken over by SATA raid chipsets. Everyone knows it, and no RAID chip makers are putting money into development and support of anything other than SATA chip raid controllers. That is, their SCSI and UDMA products they are just milking right now. 2) The motherboard chipset manufacturers - like Intel - are integrating SATA RAID functionality into their motherboard sets. So companies like Promise see all their low-end business going into the toilet and they are once again, just milking it. 3) Price of disks is making everyone chuck out RAID-5 The thing to do today is get cheapo 500GB SATA drives and mirror them if you want redundancy. Instead of striping together 3 or 4 250GB or 200GB disks, just get one or two big ones if you don't care about redundancy. 4) FreeBSD needs to quit changing around the disk driver architecture. It's completely fucking rediculous. We lost a lot of good drivers due to the shift to CAM and then as soon as we got some of the popular ones back, they broke everything from the 4 to 5 transistion. Now they are doing it again from 5 to 6. Manufacturers like Intel put in their time, they wrote stuff like your storcon, and saw the FreeBSD community say "thanks, but we are going to make you rewrite it again since one of our developers got a hair up his ass to change everything around again" The vendors are getting sick of it. 5) The low-end RAID chipsets are getting absorbed into the ata driver as fast as Soren can write support for them. There's no incentive for the manufacturer to write a FreeBSD driver once we reverse engineer what they are doing and stick support in for it. > >I just read a recent thread about monitoring RAID controllers on one of >hte lists (this one?) where someone mentioned that Adaptec's Official >stand is that they don't support storage management under >FreeBSD ... but, >in ports, we have the older aaccli interface, which I >understand doesn't >work with newer controllers ... > >So, my question above, and a public call to -core, or anyone else: > > What can we, as a community, due to improve this situation? > Simple. If you want to run RAID-5 then purchase the HiPoint card or the 3ware card, both of them come with manufacturer-written drivers. 3ware is really great, they have a developer with committ rights and they just stick their driver right into the FreeBSD source repository. If you want to run RAID 0 or 1, then buy a motherboard with a SATA raid chipset that is supported in FreeBSD's driver. >Its not enough anymore to know a piece of hardware *works* with >FreeBSD, >but more that the vendor is willing to acknowledge us as a market ... >petitions don't do anything, IMHO ... it all falls to 'money talks' for >most vendors (not all of them, but alot of them) ... > >Is there anything we can do? > Yes, reward the vendors like HiPoint and 3ware by purchasing their product, punish the vendors like Promise that force us to reverse engineer their product to write a driver for it by not buying their product. Red From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 07:37: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 556A416A474 for ; Wed, 21 Jun 2006 07:37:11 +0000 (UTC) (envelope-from travis@fitch.id.au) Received: from kaur.zehym.com (fitch.id.au [203.89.243.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id C75C843D46 for ; Wed, 21 Jun 2006 07:37:10 +0000 (GMT) (envelope-from travis@fitch.id.au) Received: from [203.89.220.206] ([203.89.220.206]) (authenticated bits=0) by kaur.zehym.com (8.13.1/8.13.1) with ESMTP id k5L7Sfra051837; Wed, 21 Jun 2006 17:28:48 +1000 (EST) (envelope-from travis@fitch.id.au) Message-ID: <4498F719.8090802@fitch.id.au> Date: Wed, 21 Jun 2006 17:36:57 +1000 From: Travis Fitch User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <200606190148.k5J1mfxY037157@kaur.zehym.com> In-Reply-To: <200606190148.k5J1mfxY037157@kaur.zehym.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Sendmail and high kernel CPU utilisation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 07:37:11 -0000 Travis Fitch wrote: > Hello, > > I was hoping someone might be able to shed some light on an issue I am > having with sendmail on FreeBSD 5.2.1 running on a Sun V120. > > If you look at the snippet from top you can see that several sendmail > process are casing the kernel to use ~ 65% of the CPU. I am having some > issues profiling what is causing this issue. You can also see the load is > quite high. > > last pid: 72705; load averages: 12.22, 12.29, 12.00 > up 1+06:09:44 11:42:28 > 86 processes: 14 running, 72 sleeping > CPU states: 35.5% user, 0.0% nice, 64.5% system, 0.0% interrupt, 0.0% > idle > Mem: 148M Active, 104M Inact, 73M Wired, 520K Cache, 60M Buf, 131M Free > Swap: 2057M Total, 102M Used, 1954M Free, 4% Inuse > > PID USERNAME PRI NICE SIZE RES STATE TIME WCPU CPU COMMAND > 20958 root 122 0 23368K 5472K RUN 44:32 8.64% 8.64% sendmail > 62864 root 122 0 23432K 5528K RUN 10:45 8.54% 8.54% sendmail > 70522 root 122 0 23448K 5544K RUN 2:43 8.35% 8.35% sendmail > 91279 smmsp 122 0 12224K 3832K RUN 60:17 8.25% 8.25% sendmail > 66302 root 122 0 23392K 5472K RUN 8:36 8.25% 8.25% sendmail > 16850 root 122 0 23432K 5528K RUN 51:31 8.20% 8.20% sendmail > 66306 root 121 0 23448K 5528K RUN 8:34 8.11% 8.11% sendmail > 68330 root 121 0 23432K 5528K RUN 5:37 8.11% 8.11% sendmail > 51654 root 121 0 23392K 5472K RUN 16:40 8.06% 8.06% sendmail > 66377 root 121 0 23392K 5472K RUN 8:22 8.01% 8.01% sendmail > 69364 root 121 0 23432K 5504K RUN 3:50 8.01% 8.01% sendmail > > > The other interesting thing is that a lot of the SMTP connections hang > around for quite some time. These connection just keep building up and > slowly bring the system to a crawl. > > correo:root# ps aux| grep -v grep | grep sendmail > root 62864 8.0 1.1 23432 5528 ?? R 10:06AM 10:49.58 sendmail: > k5J06CMN062864 mx02.globalcenter.net.au [203.89.192.35]: DATA (sendmail) > root 66306 8.0 1.1 23448 5528 ?? R 10:18AM 8:38.72 sendmail: > k5J0IoxC066306 omta02ps.mx.bigpond.com [144.140.83.154]: DATA (sendmail) > root 66377 7.9 1.1 23392 5472 ?? R 10:20AM 8:26.25 sendmail: > k5J0KHGa066377 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) > root 20958 8.0 1.1 23368 5472 ?? R 5:14AM 44:36.44 sendmail: > k5IJF2bd020958 [83.173.162.41]: DATA (sendmail) > root 68330 8.0 1.1 23432 5528 ?? R 10:43AM 5:41.33 sendmail: > k5J0hOAk068330 mx01.globalcenter.net.au [203.89.192.34]: DATA (sendmail) > root 69364 8.0 1.1 23432 5504 ?? R 10:59AM 3:54.45 sendmail: > k5J0xmg6069364 omta05ps.mx.bigpond.com [144.140.83.195]: DATA (sendmail) > root 70522 8.0 1.1 23448 5544 ?? R 11:11AM 2:47.79 sendmail: > k5J1BY7Y070522 mx01.globalcenter.net.au [203.89.192.34]: DATA (sendmail) > root 66302 8.0 1.1 23392 5472 ?? R 10:18AM 8:40.20 sendmail: > k5J0If8t066302 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) > smmsp 91279 8.0 0.7 12224 3832 ?? Rs 4:01AM 60:20.92 sendmail: > Queue runner@00:10:00 for /var/spool/clientmqueue (sendmail) > root 16850 8.0 1.1 23432 5528 ?? R 4:30AM 51:34.91 sendmail: > k5IIUaWm016850 [201.150.67.51]: DATA (sendmail) > root 51654 8.0 1.1 23392 5472 ?? R 9:37AM 16:44.52 sendmail: > k5INbbYo051654 vpn02.commandhub.net [203.89.202.122]: DATA (sendmail) > root 91276 0.0 1.0 22928 5032 ?? Ss 4:01AM 0:03.05 sendmail: > rejecting connections on daemon MSA: load average: 12 (sendmail) > > I have rebuilt the world and kernel to see if the resolves my issue, but > alas no luck. > > Hopefully someone will be able to point be in the right direction. > > Regards, > > Travis > > _______________________________________________ > 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" > Further to this, when I put truss or ktrace into action on one of the sendmail process that is using a lot of kernel time, I see the following gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) poll(0x30e000,0x1,0xffffffffffffffff) = 1 (0x1) gettimeofday(0x40dfc210,0x0) = 0 (0x0) I am not running ntpd atm, however ntpdate to pool.ntp.org syncs ok. Does, this help shed some light? Regards, Travis From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 08: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 EEC0516A47A for ; Wed, 21 Jun 2006 08:42:06 +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 8428543D46 for ; Wed, 21 Jun 2006 08:42:06 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from [192.168.7.193] (68.Red-80-34-55.staticIP.rima-tde.net [80.34.55.68]) by strange.daemonsecurity.com (Postfix) with ESMTP id 4C7322E029 for ; Wed, 21 Jun 2006 10:42:04 +0200 (CEST) Message-ID: <44990657.6040609@locolomo.org> Date: Wed, 21 Jun 2006 10:41:59 +0200 From: Erik Norgaard User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060620233734.GH11625@tigger.digitaltorque.ca> In-Reply-To: <20060620233734.GH11625@tigger.digitaltorque.ca> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: smp kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 08:42:07 -0000 Michael P. Soulier wrote: > Hello, > > Is SMP enabled in the GENERIC kernel? I have a hyperthreading box, and on > Linux it shows up with two cpus. When I do a top on the box in FreeBSD I still > see only one CPU. Also, sysctl -a | grep cpu only shows a dev.cpu.0. The GENERIC does not support SMP. If you look into the config files you will see two kernel configuration files: SMP and GENERIC, SMP simply changes the IDENT, sets option SMP and includes GENERIC. Simply build and install your kernel, # make KERNCONF=SMP buildkernel # make KERNCONF=SMP installkernel to get an SMP enabled GENERIC kernel. Cheers, Erik (I assume you're on v. 6.x). From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 08:42: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 D5B8B16A474 for ; Wed, 21 Jun 2006 08:42:48 +0000 (UTC) (envelope-from philippe.lang@attiksystem.ch) Received: from mail.attiksystem.ch (f29.attiksystem.ch [212.147.59.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6093243D5A for ; Wed, 21 Jun 2006 08:42:46 +0000 (GMT) (envelope-from philippe.lang@attiksystem.ch) Received: from poweredge.attiksystem.ch (poweredge.attiksystem.ch [10.0.0.29]) by mail.attiksystem.ch (8.12.11/8.12.11) with ESMTP id k5L8gidF001672 for ; Wed, 21 Jun 2006 10:42:45 +0200 (CEST) (envelope-from philippe.lang@attiksystem.ch) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Wed, 21 Jun 2006 10:42:44 +0200 Message-ID: <6C0CF58A187DA5479245E0830AF84F421D0E3F@poweredge.attiksystem.ch> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ICH5R, ICH7R or Promise PDC20378 RAID? Thread-Index: AcaTml0aO6mRpUdjTomBSIsQLMEZOQA61I9AACH/U4A= From: "Philippe Lang" To: "freebsd-questions" X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.49 on 10.0.0.111 Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 08:42:48 -0000 owner-freebsd-questions@freebsd.org wrote: > Hi, >=20 > I wasn't as lucky as Doug with my ASUS P4C800-E Deluxe board, > both with the ICH5R and Promise RAID controller. >=20 > 1) With the Promise controller, after simulating a disk > problem (shutdown - disk disconnection - reboot - shutdown - > disk reconnection - reboot), I wasn't able to rebuild the > array at all, either with "atacontrol rebuild ar0" or from > the bios. I suspect a spare disk is necessary for a complete rebuild. >=20 > 2) With the ICH5R controller, installation went fine too. If > I disconnect a disk, the system still boots, but when I plug > the disk back (computer shut down), no boot is possible > anymore. At boot, a kernel panic says: > "softdep_setup_inomapdep". No array rebuild is possible from > the bios, so I'm stuck. >=20 >=20 > I use freebsd 6.1 RELEASE, with the latest BIOS for the > motherboard, and > 2 SATA 1.0 Western Digital 160GB disks. I'm trying to > configure RAID 1. >=20 > I'm surprised I have so many problems. Am I doing anything > wrong? With INTEL hardware controllers for SCSI disks, I > never had any problems until now. Does anyone successfully > use another ASUS board, and is able to rebuild the array, > without rebooting? >=20 > Thanks for your time, I have made some further tests with another ASUS board, with an INTEL ICH7R chipset. Installation of FreeBSD 6.1 went fine. I shut down the computer, disconnect a disk, reboot, and... And no reboot at all. Kernel panic. The ar raid driver seems to be very buggy... I'm looking forward to receiving my 3WARE RAID controllers... --------------- Philippe Lang Attik System From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 09:11: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 5B9D116A474 for ; Wed, 21 Jun 2006 09:11:09 +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 35FCF43D48 for ; Wed, 21 Jun 2006 09:11:07 +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 k5L9B5EY013192; Wed, 21 Jun 2006 12:11:05 +0300 From: Nikos Vassiliadis To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 12:07:17 +0300 User-Agent: KMail/1.9.1 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: <200606211207.17590.nvass@teledomenet.gr> Cc: Rakesh Prajapati Subject: Re: Help/Info on howto install CVS 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: Wed, 21 Jun 2006 09:11:09 -0000 On Wednesday 21 June 2006 02:41, Rakesh Prajapati wrote: > I would like to install CVS server on my FreeBSD 6.1 x386 machine. > > Which ports should I install? > > I installed "cvsd" and "cvsdadm". Is that all I need to install and > configure? > > I read at (http://ch.tudelft.nl/~arthur/cvsd/) that cvsd is a wrapper > program for cvs in pserver mode. So does that > mean I need to install cvs seperately? cvs is in the base system. You don't have to install anything. > > Is there a how-to anywhere that I can refer? Try this: "Setting up a CVS repository - the FreeBSD way" by Stijn Hoop http://www.freebsd.org/doc/en_US.ISO8859-1/articles/cvs-freebsd/article.html I think what you looking for is "cvs -d path-to-repository init" From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 09:11: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 52F7516A479 for ; Wed, 21 Jun 2006 09:11:44 +0000 (UTC) (envelope-from willay@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 73F8243D5A for ; Wed, 21 Jun 2006 09:11:41 +0000 (GMT) (envelope-from willay@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1734626uge for ; Wed, 21 Jun 2006 02:11: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=r6IL+B8b/vl4auz7WkPOs4abGfrNYU00JYDEnonryjFGBJCoeTGSLPrGAAZPfVgoVFaMlvC2UdYtXDczQR85ddXlrn9A7wtwCt2EMyJZcL5b3rRjaj6A+Gc7LPyOdDCxSfDd40tF+ZLVA0gyROZIOghXbhy1Qeyw06YaXQZ8F4I= Received: by 10.67.89.6 with SMTP id r6mr7460762ugl; Wed, 21 Jun 2006 01:16:46 -0700 (PDT) Received: by 10.67.29.5 with HTTP; Wed, 21 Jun 2006 01:16:46 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 09:16:46 +0100 From: William To: "Ted Mittelstaedt" 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: Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 6.0 compat with DL320 G4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 09:11:44 -0000 Hello again, Sorry to dig this up again. I'm in the position to order the server now and the DL320 is within our price range. Is everyone still having an enjoyable experience running FreeBSD on the DL3XX G4 range? Regards, William On 05/05/06, Ted Mittelstaedt wrote: > > Yes, for some reason the first nic locks the system up when you try to > bring it up. > > Ted > > >-----Original Message----- > >From: William [mailto:willay@gmail.com] > >Sent: Friday, May 05, 2006 2:39 AM > >To: Ted Mittelstaedt > >Cc: freebsd-questions@freebsd.org > >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > > > >Hi Ted, > > > >Great news! but as per your patch you can only use the second nic? > > > >Cheers, > > > >Will > > > >On 05/05/06, Ted Mittelstaedt wrote: > >> Hi William, > >> > >> I was able to create a patch that fixed the problem, see > >> here: > >> > >> http://www.freebsd.org/cgi/query-pr.cgi?pr=96806 > >> > >> Ted > >> > >> >-----Original Message----- > >> >From: owner-freebsd-questions@freebsd.org > >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of William > >> >Sent: Wednesday, May 03, 2006 1:41 AM > >> >To: Ted Mittelstaedt > >> >Cc: freebsd-questions@freebsd.org > >> >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > >> > > >> > > >> >The chances of getting it returned because fbsd doesnt work are > >> >very small! :( > >> > > >> >On 03/05/06, Ted Mittelstaedt wrote: > >> >> > >> >> I have a DL320 G4 in the rack and the thing panics under 6.1-RC1 > >> >> when more than a few K of data is sent over the bge interface. I > >> >> haven't tried 6.0-RELEASE on it. Just make sure you can return it > >> >> if it doesen't work. > >> >> > >> >> Ted > >> >> > >> >> > >> >> >-----Original Message----- > >> >> >From: owner-freebsd-questions@freebsd.org > >> >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of William > >> >> >Sent: Tuesday, May 02, 2006 3:10 AM > >> >> >To: freebsd-questions@freebsd.org > >> >> >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > >> >> > > >> >> > > >> >> >What was your experience like with 6.0-RELEASE and the > >dl320 g4? I've > >> >> >had a quote back on that model so could be near to > >actually getting > >> >> >some hardware for once :) > >> >> > > >> >> >On 30/04/06, No@SPAM@mgEDV.net wrote: > >> >> >> > >> >> >> just for info: our dl320 g4 also has bge interfaces, and > >> >> >> they work very well under 6.1-RC1 (even BETA4 was ok). > >> >> >> but our server has been bought 2 months ago, maybe there's > >> >> >> a newer/different chipset in it. > >> >> >> we also have a dl320 g2 being heavily used as lan switches > >> >> >> monitor, this server also has bge interfaces and had no > >> >> >> problem since 1 year capturing and analyzing more than > >> >> >> 26GB/day (avg) of nw-data on the 2nd interface and serving > >> >> >> more than 4GB/day (avg) on the primary one (both IPv4 only). > >> >> >> > >> >> >> c ya ;-) > >> >> >> > >> >> >> > >> >> >_______________________________________________ > >> >> >freebsd-questions@freebsd.org mailing list > >> >> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions > >> >> >To unsubscribe, send any mail to > >> >> >"freebsd-questions-unsubscribe@freebsd.org" > >> >> > > >> >> >-- > >> >> >No virus found in this incoming message. > >> >> >Checked by AVG Free Edition. > >> >> >Version: 7.1.385 / Virus Database: 268.5.1/328 - Release > >> >Date: 5/1/2006 > >> >> > > >> >> > >> >_______________________________________________ > >> >freebsd-questions@freebsd.org mailing list > >> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions > >> >To unsubscribe, send any mail to > >> >"freebsd-questions-unsubscribe@freebsd.org" > >> > > >> >-- > >> >No virus found in this incoming message. > >> >Checked by AVG Free Edition. > >> >Version: 7.1.385 / Virus Database: 268.5.1/328 - Release > >Date: 5/1/2006 > >> > > >> > >> > > > >-- > >No virus found in this incoming message. > >Checked by AVG Free Edition. > >Version: 7.1.392 / Virus Database: 268.5.3/331 - Release Date: 5/3/2006 > > > From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 09:25: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 79AB916A47F for ; Wed, 21 Jun 2006 09:25:14 +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 9FCFB43D45 for ; Wed, 21 Jun 2006 09:25:13 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (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 k5L9P4x78562; Wed, 21 Jun 2006 02:25:04 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Philippe Lang" , "Doug Poland" Date: Wed, 21 Jun 2006 02:25:04 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" 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: <6C0CF58A187DA5479245E0830AF84F4218CCFC@poweredge.attiksystem.ch> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal Cc: freebsd-questions Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 09:25:14 -0000 >-----Original Message----- >From: owner-freebsd-questions@freebsd.org >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Philippe Lang >Sent: Tuesday, June 20, 2006 9:39 AM >To: Doug Poland >Cc: freebsd-questions >Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? > > >owner-freebsd-questions@freebsd.org wrote: > >> On Mon, Jun 19, 2006 at 10:18:05AM +0200, Philippe Lang wrote: >>> Hi, >>> >>> I've got two boxes that would be perfect for a small server. The >>> motherboards are: >>> >>> - ASUS P4C800-E Deluxe, with ICH5R and Promise PDC20378 >>> - ASUS P5WD2, with ICH7R >>> >>> I intend to install FreeBSD 6.1, and I wonder which chipset you would >>> recommend me for RAID 1? I need something rock-solid, of course... >>> >> I'm running -STABLE on a P4C800-E. I've never had a problem >> with the PDC20378. Recently, I added two drives on the ICH5R >> with no issues. A little benchmarking shows the ICH5R to be a little >> faster. > >Hi, > >I wasn't as lucky as Doug with my ASUS P4C800-E Deluxe board, both with >the ICH5R and Promise RAID controller. > >1) With the Promise controller, after simulating a disk problem >(shutdown - disk disconnection - reboot - shutdown - disk reconnection - >reboot), I wasn't able to rebuild the array at all, either with >"atacontrol rebuild ar0" or from the bios. I suspect a spare disk is >necessary for a complete rebuild. > >2) With the ICH5R controller, installation went fine too. If I >disconnect a disk, the system still boots, but when I plug the disk back >(computer shut down), no boot is possible anymore. At boot, a kernel >panic says: "softdep_setup_inomapdep". No array rebuild is possible from >the bios, so I'm stuck. > You need to take the disk you unplugged to some other machine and wipe it, then make sure the one disk with the system left on it is in the 0 position, put the wiped disk in the 1 position, then you should be able to boot. Your simulating a failure when you pull the one disk, but your not simulating a recovery when you insert that disk back in. Ted From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 09:32: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 5FA0E16A474 for ; Wed, 21 Jun 2006 09:32:50 +0000 (UTC) (envelope-from philippe.lang@attiksystem.ch) Received: from mail.attiksystem.ch (f29.attiksystem.ch [212.147.59.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D76D43D5C for ; Wed, 21 Jun 2006 09:32:48 +0000 (GMT) (envelope-from philippe.lang@attiksystem.ch) Received: from poweredge.attiksystem.ch (poweredge.attiksystem.ch [10.0.0.29]) by mail.attiksystem.ch (8.12.11/8.12.11) with ESMTP id k5L9WlG7002090; Wed, 21 Jun 2006 11:32:47 +0200 (CEST) (envelope-from philippe.lang@attiksystem.ch) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Wed, 21 Jun 2006 11:32:47 +0200 Message-ID: <6C0CF58A187DA5479245E0830AF84F421D0E40@poweredge.attiksystem.ch> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ICH5R, ICH7R or Promise PDC20378 RAID? Thread-Index: AcaVFJsrssf1c//IQkOBpKxZRxyr7wAAECCw From: "Philippe Lang" To: "Ted Mittelstaedt" , "Doug Poland" X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.49 on 10.0.0.111 Cc: freebsd-questions Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 09:32:50 -0000 Ted Mittelstaedt wrote: >>> On Mon, Jun 19, 2006 at 10:18:05AM +0200, Philippe Lang wrote: >>>> Hi, >>>>=20 >>>> I've got two boxes that would be perfect for a small server. The >>>> motherboards are:=20 >>>>=20 >>>> - ASUS P4C800-E Deluxe, with ICH5R and Promise PDC20378 >>>> - ASUS P5WD2, with ICH7R >>>>=20 >>>> I intend to install FreeBSD 6.1, and I wonder which chipset you >>>> would recommend me for RAID 1? I need something rock-solid, of >>>> course...=20 >>>>=20 >>> I'm running -STABLE on a P4C800-E. I've never had a problem with >>> the PDC20378. Recently, I added two drives on the ICH5R with no >>> issues. A little benchmarking shows the ICH5R to be a little faster. >>=20 >> Hi, >>=20 >> I wasn't as lucky as Doug with my ASUS P4C800-E Deluxe board, both >> with the ICH5R and Promise RAID controller. >>=20 >> 1) With the Promise controller, after simulating a disk problem >> (shutdown - disk disconnection - reboot - shutdown - disk >> reconnection - reboot), I wasn't able to rebuild the array at all, >> either with "atacontrol rebuild ar0" or from the bios. I suspect a >> spare disk is necessary for a complete rebuild. >>=20 >> 2) With the ICH5R controller, installation went fine too. If I >> disconnect a disk, the system still boots, but when I plug the disk >> back (computer shut down), no boot is possible anymore. At boot, a >> kernel panic says: "softdep_setup_inomapdep". No array rebuild is >> possible from the bios, so I'm stuck. >>=20 >=20 > You need to take the disk you unplugged to some other machine > and wipe it, then make sure the one disk with the system left > on it is in the 0 position, put the wiped disk in the 1 > position, then you should be able to boot. >=20 > Your simulating a failure when you pull the one disk, but > your not simulating a recovery when you insert that disk back in. >=20 > Ted Hi, I'm sure there are solutions to make things work, but personnaly, I don't feel confortable with a RAID system that acts that way, and that is supposed to make the whole system more robust and problem-free. I used to play with hardware SCSI RAID controllers, and was never able to trash the system. Arrays are being rebuilt in the background, that's just great. I hope this is the kind of ease and quality I will get with the 3WARE raid controller I have ordered... Apparently, everyone says very good things about 3WARE. --------------- Philippe Lang Attik System From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 10:02: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 3E49516A4A7 for ; Wed, 21 Jun 2006 10:02:01 +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 549E843DCA for ; Wed, 21 Jun 2006 10:01:20 +0000 (GMT) (envelope-from tedm@toybox.placo.com) Received: from tedwin2k (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 k5LA1Ex79148; Wed, 21 Jun 2006 03:01:15 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Jeremy Kister" , Date: Wed, 21 Jun 2006 03:01:14 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <4498E663.8010509@jeremykister.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal Cc: Subject: RE: Crashing with HP/Compaq DL360 G3 [paging kernel developer] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 10:02:01 -0000 Did you install the Broadcom patch? Ted >-----Original Message----- >From: owner-freebsd-questions@freebsd.org >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Jeremy Kister >Sent: Tuesday, June 20, 2006 11:26 PM >To: freebsd-questions@freebsd.org >Subject: Crashing with HP/Compaq DL360 G3 [paging kernel developer] > > >I've got four identical HP/Compaq DL360 G3 1u servers. Each has the >latest available firmware: > >Proliant P31 (03/03/2005) BIOS >HP SmartArray 5i RAID onboard controller (v2.62) >(2) HPNC7781 (Broadcom BCM5703) (ASIC rev. 0x1002) 10/100/1000 onboard >network card >iLO v1.80 (Jul/12/2005) > >and each has: >two Intel Xeon 2.8Ghz w/ Hyperthreading >four sticks of 512MB ECC RAM >two 36GB SCA disks in RAID1 via SmartArray 5i > >I have sudden [seemingly random] reboots with all four (see >http://unix.derkeiler.com/Mailing-Lists/FreeBSD/questions/2006-0 2/msg01605.html) >while running FreeBSD 6.0-RELEASE through the PreReleases and now with >6.1-STABLE. > > >In an effort to make FreeBSD stable with DL360's, I'm wondering if >there's a driver/kernel developer interested in having full remote >access to this machine for a week or two (or three) via iLO and >root/ssh. > >Anyone qualified and interested, please let me know. > >-- > >Jeremy Kister >http://jeremy.kister.net./ > > > > >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"freebsd-questions-unsubscribe@freebsd.org" > >-- >No virus found in this incoming message. >Checked by AVG Free Edition. >Version: 7.1.394 / Virus Database: 268.9.1/369 - Release Date: 6/19/2006 > From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 10:10:27 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 2256B16A47A for ; Wed, 21 Jun 2006 10:10:27 +0000 (UTC) (envelope-from lumi-admin@citinv.it) Received: from obi-wan.kenobi.it (obi-wan.kenobi.it [212.239.25.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id E886E43D6B for ; Wed, 21 Jun 2006 10:10:25 +0000 (GMT) (envelope-from lumi-admin@citinv.it) Received: from obi-wan.kenobi.it (localhost [127.0.0.1]) by obi-wan.kenobi.it (8.11.6/8.11.6) with ESMTP id k5LAAIu21816 for ; Wed, 21 Jun 2006 12:10:18 +0200 Date: Wed, 21 Jun 2006 12:10:06 +0200 Message-ID: <20060621101006.21787.37017.Mailman@obi-wan.kenobi.it> From: lumi-admin@citinv.it To: questions@freebsd.org X-Ack: no Sender: lumi-admin@citinv.it Errors-To: lumi-admin@citinv.it X-BeenThere: lumi@citinv.it X-Mailman-Version: 2.0.13 Precedence: bulk Cc: Subject: Your message to LUMI awaits moderator approval X-BeenThere: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 10:10:27 -0000 Your mail to 'LUMI' with the subject Error Is being held until the list moderator can review it for approval. The reason it is being held: Post by non-member to a members-only list Either the message will get posted to the list, or you will receive notification of the moderator's decision. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 10:34: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 F36BF16A481 for ; Wed, 21 Jun 2006 10:34:32 +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 4865C43D46 for ; Wed, 21 Jun 2006 10:34:32 +0000 (GMT) (envelope-from mikhailg@webanoide.org) Received: from [192.168.0.4] (ppp106-19.lns1.hba1.internode.on.net [150.101.106.19]) (authenticated bits=0) by overlord.navalradio.cl (8.13.4/8.13.4) with ESMTP id k5LAYjrc007536; Wed, 21 Jun 2006 06:34:48 -0400 (CLT) (envelope-from mikhailg@webanoide.org) Message-ID: <449920A2.8010000@webanoide.org> Date: Wed, 21 Jun 2006 20:34:10 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 1.5.0.4 (Macintosh/20060530) MIME-Version: 1.0 To: Andy Reitz , freebsd-questions@freebsd.org References: <20060620233551.GG11625@tigger.digitaltorque.ca> <20060621011340.GI11625@tigger.digitaltorque.ca> In-Reply-To: <20060621011340.GI11625@tigger.digitaltorque.ca> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-99.8 required=5.0 tests=AWL,USER_IN_WHITELIST autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on overlord.navalradio.cl Cc: Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 10:34:33 -0000 Michael P. Soulier wrote: > On 20/06/06 Andy Reitz said: > >> I believe that ia64 refers to the Itanium port of FreeBSD, and I'm not >> sure of the i386 version will install on Itanium. Are you referring to the >> AMD64/EMT-64 port of FreeBSD? > > It's a 64-bit P4. My i386 5.4 install works fine. > > Mike That processor is EM64T. It falls into AMD64/EM64T category instead of IA64. 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 Jun 21 10:42: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 8DA4516A479 for ; Wed, 21 Jun 2006 10:42:54 +0000 (UTC) (envelope-from nikolas.britton@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 19FD543D46 for ; Wed, 21 Jun 2006 10:42:53 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so113469nzi for ; Wed, 21 Jun 2006 03:42: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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=l5+sN3PkHFdo4orllaYzp2bVCmd7btV0mRqPTwNzpr3DFU4WoE8Tv71VbWLJ3ZjlegoGcj/i8lHFNXAeVwsCPf4xSQlV+VUJrwXemqtr59QrMMuaNdpkwkz3JzwujpSUEi3spcYoTmP4eH0xw3hasTnxi32ESpZ5q4XYwEaOTDs= Received: by 10.37.13.61 with SMTP id q61mr380801nzi; Wed, 21 Jun 2006 03:42:53 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Wed, 21 Jun 2006 03:42:53 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 05:42:53 -0500 From: "Nikolas Britton" To: "Andy Reitz" , freebsd-questions@freebsd.org In-Reply-To: <20060621011340.GI11625@tigger.digitaltorque.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620233551.GG11625@tigger.digitaltorque.ca> <20060621011340.GI11625@tigger.digitaltorque.ca> Cc: Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 10:42:54 -0000 On 6/20/06, Michael P. Soulier wrote: > On 20/06/06 Andy Reitz said: > > > I believe that ia64 refers to the Itanium port of FreeBSD, and I'm not > > sure of the i386 version will install on Itanium. Are you referring to the > > AMD64/EMT-64 port of FreeBSD? > > It's a 64-bit P4. My i386 5.4 install works fine. > IA64 = Itanium, Itanium2 = FreeBSD/ia64 EM64T = Intel CPUs with AMD64 (P4, Xeon, etc.) = FreeBSD/amd64 AMD64 = Opteron, Athlon 64, Turion 64, Sempron 64 = FreeBSD/amd64 http://en.wikipedia.org/wiki/EM64T Why do you need to run in 64-bit mode? -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 09: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 B68D116A479; Wed, 21 Jun 2006 09:51:35 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from unixfreunde.net (unixfreunde.de [85.214.35.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A7F543D53; Wed, 21 Jun 2006 09:51:33 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: by unixfreunde.net (Postfix, from userid 65534) id 1D43450763; Wed, 21 Jun 2006 11:51:36 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.1.0-gr0 (2005-09-13) on unixfreunde.de X-Spam-Level: * X-Spam-Status: No, score=1.4 required=5.0 tests=AWL, BAYES_00, FORGED_RCVD_HELO, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.1.0-gr0 Received: from mwilke.ath.cx (p548D37B4.dip0.t-ipconnect.de [84.141.55.180]) by unixfreunde.net (Postfix) with ESMTP id 6AC775066D; Wed, 21 Jun 2006 11:51:33 +0200 (CEST) Date: Wed, 21 Jun 2006 11:51:27 +0200 From: Martin Wilke To: Boris Samorodov Message-ID: <20060621115127.1e0d29e6@mwilke.ath.cx> In-Reply-To: <72568263@srv.sem.ipt.ru> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.9.3; i386-portbld-freebsd7.0) User-Agent: miwi@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 21 Jun 2006 11:26:45 +0000 Cc: Jeff Molofee , Adi Pircalabu , Ion-Mihai IOnut Tetcu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 09:51:35 -0000 Hi forks, someone has the same problems with skype after the update ? miwi@mwilke ~% skype skype_bin: error while loading shared libraries: /usr/lib/libpthread.so.0: ELF file OS ABI invalid miwi@mwilke ~% From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 09:53: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 00E2316A50D; Wed, 21 Jun 2006 09:53:59 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AB0543D4C; Wed, 21 Jun 2006 09:53:58 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 4187F1759A; Wed, 21 Jun 2006 12:53:57 +0300 (EEST) Date: Wed, 21 Jun 2006 12:53:56 +0300 From: Ion-Mihai "IOnut" Tetcu To: Martin Wilke Message-ID: <20060621125356.294c7ddc@it.buh.tecnik93.com> In-Reply-To: <20060621115127.1e0d29e6@mwilke.ath.cx> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> <20060621115127.1e0d29e6@mwilke.ath.cx> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Sig_7FsSE0s3UNQsXy.03+F.Dwj; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-Mailman-Approved-At: Wed, 21 Jun 2006 11:28:07 +0000 Cc: Pircalabu , Boris Samorodov , freebsd-ports@freebsd.org, Jeff Molofee , freebsd-questions@freebsd.org, Adi Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 09:53:59 -0000 --Sig_7FsSE0s3UNQsXy.03+F.Dwj Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Wed, 21 Jun 2006 11:51:27 +0200 Martin Wilke wrote: > Hi forks,=20 >=20 >=20 > someone has the same problems with skype after the update ? >=20 > miwi@mwilke ~% skype > skype_bin: error while loading shared > libraries: /usr/lib/libpthread.so.0: ELF file OS ABI invalid > miwi@mwilke ~%=20 On a quick try, no. I'll look into it thing night. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" Ferengi Rule of Acquisition #85: Never let the competition know what you're thinking. -- ST: Legends of the Ferengi --Sig_7FsSE0s3UNQsXy.03+F.Dwj Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEmRc1BX6fi0k6KXsRAq37AJ4/+v/Cj6mxgTF0blzcvmBkD/nt3gCgh4U2 xWFzfiIl/lC57Ow6vbvWRgY= =UJiV -----END PGP SIGNATURE----- --Sig_7FsSE0s3UNQsXy.03+F.Dwj-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 10:04: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 4803216A47A; Wed, 21 Jun 2006 10:04:40 +0000 (UTC) (envelope-from freebsd@unixfreunde.de) Received: from unixfreunde.net (unixfreunde.de [85.214.35.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 127C543D68; Wed, 21 Jun 2006 10:04:39 +0000 (GMT) (envelope-from freebsd@unixfreunde.de) Received: by unixfreunde.net (Postfix, from userid 65534) id 4FE9250763; Wed, 21 Jun 2006 12:04:38 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.1.0-gr0 (2005-09-13) on unixfreunde.de X-Spam-Level: X-Spam-Status: No, score=-98.6 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO,RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL, USER_IN_WHITELIST autolearn=no version=3.1.0-gr0 Received: from mwilke.ath.cx (p548D37B4.dip0.t-ipconnect.de [84.141.55.180]) by unixfreunde.net (Postfix) with ESMTP id AE73350751; Wed, 21 Jun 2006 12:04:37 +0200 (CEST) Date: Wed, 21 Jun 2006 12:04:33 +0200 From: Martin Wilke To: Boris Samorodov Message-ID: <20060621120434.1f535fae@mwilke.ath.cx> In-Reply-To: <72568263@srv.sem.ipt.ru> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.9.3; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 21 Jun 2006 11:28:22 +0000 Cc: Jeff Molofee , Adi Pircalabu , Ion-Mihai IOnut Tetcu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 10:04:40 -0000 Hi forks, someone has the same problems with skype after the update ? miwi@mwilke ~% skype skype_bin: error while loading shared libraries: /usr/lib/libpthread.so.0: ELF file OS ABI invalid miwi@mwilke ~% From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 10:14: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 DD2A016A49A; Wed, 21 Jun 2006 10:14:13 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from unixfreunde.net (unixfreunde.de [85.214.35.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id E07E143D7C; Wed, 21 Jun 2006 10:13:52 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: by unixfreunde.net (Postfix, from userid 65534) id 4CA4750763; Wed, 21 Jun 2006 12:13:52 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.1.0-gr0 (2005-09-13) on unixfreunde.de X-Spam-Level: * X-Spam-Status: No, score=1.4 required=5.0 tests=AWL, BAYES_00, FORGED_RCVD_HELO, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.1.0-gr0 Received: from mwilke.ath.cx (p548D37B4.dip0.t-ipconnect.de [84.141.55.180]) by unixfreunde.net (Postfix) with ESMTP id 9E28650738; Wed, 21 Jun 2006 12:13:51 +0200 (CEST) Date: Wed, 21 Jun 2006 12:13:50 +0200 From: Martin Wilke To: Ion-Mihai "IOnut" Tetcu Message-ID: <20060621121350.40bd5894@mwilke.ath.cx> In-Reply-To: <20060621125356.294c7ddc@it.buh.tecnik93.com> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> <20060621115127.1e0d29e6@mwilke.ath.cx> <20060621125356.294c7ddc@it.buh.tecnik93.com> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.9.3; i386-portbld-freebsd7.0) User-Agent: miwi@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 21 Jun 2006 11:28:31 +0000 Cc: Pircalabu , Boris Samorodov , freebsd-ports@freebsd.org, Jeff Molofee , freebsd-questions@freebsd.org, Adi Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 10:14:14 -0000 On Wed, 21 Jun 2006 12:53:56 +0300 Ion-Mihai "IOnut" Tetcu wrote: > On Wed, 21 Jun 2006 11:51:27 +0200 > Martin Wilke wrote: > > > Hi forks, > > > > > > someone has the same problems with skype after the update ? > > > > miwi@mwilke ~% skype > > skype_bin: error while loading shared > > libraries: /usr/lib/libpthread.so.0: ELF file OS ABI invalid > > miwi@mwilke ~% > > On a quick try, no. > > I'll look into it thing night. > > Ok thx, it does not work correctly under current. Martin From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 10:17: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 A432016A47C; Wed, 21 Jun 2006 10:17:39 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0827943D64; Wed, 21 Jun 2006 10:17:33 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 93ECA1759A; Wed, 21 Jun 2006 13:17:31 +0300 (EEST) Date: Wed, 21 Jun 2006 13:17:31 +0300 From: Ion-Mihai "IOnut" Tetcu To: Martin Wilke Message-ID: <20060621131731.7ddf2101@it.buh.tecnik93.com> In-Reply-To: <20060621121350.40bd5894@mwilke.ath.cx> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> <20060621115127.1e0d29e6@mwilke.ath.cx> <20060621125356.294c7ddc@it.buh.tecnik93.com> <20060621121350.40bd5894@mwilke.ath.cx> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Sig_ZB5fsw4qUj_VPvwhCVs4WWo; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-Mailman-Approved-At: Wed, 21 Jun 2006 11:29:41 +0000 Cc: Pircalabu , Boris Samorodov , Adi@FreeBSD.ORG, freebsd-ports@freebsd.org, Jeff Molofee , freebsd-questions@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 10:17:39 -0000 --Sig_ZB5fsw4qUj_VPvwhCVs4WWo Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Wed, 21 Jun 2006 12:13:50 +0200 Martin Wilke wrote: > On Wed, 21 Jun 2006 12:53:56 +0300 > Ion-Mihai "IOnut" Tetcu wrote: >=20 > > On Wed, 21 Jun 2006 11:51:27 +0200 > > Martin Wilke wrote: > >=20 > > > Hi forks,=20 > > >=20 > > >=20 > > > someone has the same problems with skype after the update ? > > >=20 > > > miwi@mwilke ~% skype > > > skype_bin: error while loading shared > > > libraries: /usr/lib/libpthread.so.0: ELF file OS ABI invalid > > > miwi@mwilke ~%=20 > >=20 > > On a quick try, no. > >=20 > > I'll look into it thing night. >=20 > Ok thx,=20 >=20 > it does not work correctly under current. Hmm, I have no current to test on. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" You are an excellent tactician, Captain. You let your second in command attack while you sit and watch for weakness. -- Khan Noonian Singh, "Space Seed", stardate 3141.9 --Sig_ZB5fsw4qUj_VPvwhCVs4WWo Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEmRy7BX6fi0k6KXsRAgUtAKDKGYo5NFAR3WYlab6vu3RhxrgVewCeO+cw bw9+Pym0Ws5cdedvZlkn75Y= =A009 -----END PGP SIGNATURE----- --Sig_ZB5fsw4qUj_VPvwhCVs4WWo-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 10:46: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 B03D316A47B; Wed, 21 Jun 2006 10:46:51 +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 D64EC43D68; Wed, 21 Jun 2006 10:46:45 +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.54 (FreeBSD)) id 1Ft0EN-000PqZ-S3; Wed, 21 Jun 2006 14:46:43 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1Ft0Fb-0009ZZ-97; Wed, 21 Jun 2006 14:47:59 +0400 To: Martin Wilke References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> <20060621115127.1e0d29e6@mwilke.ath.cx> From: Boris Samorodov Date: Wed, 21 Jun 2006 14:47:59 +0400 In-Reply-To: <20060621115127.1e0d29e6@mwilke.ath.cx> (Martin Wilke's message of "Wed, 21 Jun 2006 11:51:27 +0200") Message-ID: <04707600@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 X-Mailman-Approved-At: Wed, 21 Jun 2006 11:30:01 +0000 Cc: Jeff Molofee , Adi Pircalabu , Ion-Mihai IOnut Tetcu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 10:46:51 -0000 On Wed, 21 Jun 2006 11:51:27 +0200 Martin Wilke wrote: > someone has the same problems with skype after the update ? > miwi@mwilke ~% skype > skype_bin: error while loading shared > libraries: /usr/lib/libpthread.so.0: ELF file OS ABI invalid > miwi@mwilke ~% Do you have some non-default settings that results in seaching /usr before /compat/linux (ex. LD_LIBRARY_PATH) or so? And, please, show your: $ ldd `which skype_bin` WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 11: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 0B99116A474; Wed, 21 Jun 2006 11:06: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 797B243D48; Wed, 21 Jun 2006 11:05: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.54 (FreeBSD)) id 1Ft0X0-000PvG-Fz; Wed, 21 Jun 2006 15:05:58 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1Ft0YD-0009aO-Rm; Wed, 21 Jun 2006 15:07:13 +0400 To: Martin Wilke References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> <20060621115127.1e0d29e6@mwilke.ath.cx> <20060621125356.294c7ddc@it.buh.tecnik93.com> <20060621121350.40bd5894@mwilke.ath.cx> From: Boris Samorodov Date: Wed, 21 Jun 2006 15:07:13 +0400 In-Reply-To: <20060621121350.40bd5894@mwilke.ath.cx> (Martin Wilke's message of "Wed, 21 Jun 2006 12:13:50 +0200") Message-ID: <95746446@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 X-Mailman-Approved-At: Wed, 21 Jun 2006 11:30:09 +0000 Cc: Pircalabu , Adi@FreeBSD.ORG, Ion-Mihai IOnut Tetcu , freebsd-ports@freebsd.org, Jeff Molofee , freebsd-questions@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 11:06:00 -0000 On Wed, 21 Jun 2006 12:13:50 +0200 Martin Wilke wrote: > On Wed, 21 Jun 2006 12:53:56 +0300 > Ion-Mihai "IOnut" Tetcu wrote: > > On Wed, 21 Jun 2006 11:51:27 +0200 > > Martin Wilke wrote: > > > > > > someone has the same problems with skype after the update ? > > > > > > miwi@mwilke ~% skype > > > skype_bin: error while loading shared > > > libraries: /usr/lib/libpthread.so.0: ELF file OS ABI invalid > > > miwi@mwilke ~% > > > > On a quick try, no. > > > > I'll look into it thing night. > it does not work correctly under current. Just tested on amd64-current (aprox. 10 days ago), works fine. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 11:50:55 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 07A8116A479 for ; Wed, 21 Jun 2006 11:50:55 +0000 (UTC) (envelope-from voodoo@yukon.com.ua) Received: from core.yukon.com.ua (core.yukon.com.ua [213.133.161.126]) by mx1.FreeBSD.org (Postfix) with ESMTP id 758B043D53 for ; Wed, 21 Jun 2006 11:50:54 +0000 (GMT) (envelope-from voodoo@yukon.com.ua) Received: from localhost (localhost [127.0.0.1]) by core.yukon.com.ua (Postfix) with ESMTP id 5527D40B0D5 for ; Wed, 21 Jun 2006 14:50:50 +0300 (EEST) Received: from core.yukon.com.ua ([127.0.0.1]) by localhost (core.yukon.com.ua [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 61890-04-7 for ; Wed, 21 Jun 2006 14:50:50 +0300 (EEST) Received: from voodoo.yukon (ucon.kiev.farlep.net [62.221.47.154]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by core.yukon.com.ua (Postfix) with ESMTP id 21A9E40B0D4 for ; Wed, 21 Jun 2006 14:50:50 +0300 (EEST) Date: Wed, 21 Jun 2006 14:50:55 +0300 From: Skoryk Peter X-Mailer: The Bat! (v3.64.01 Christmas Edition) Professional Organization: Yukon X-Priority: 3 (Normal) Message-ID: <782727007.20060621145055@yukon.com.ua> To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at core.yukon.com.ua Cc: Subject: Dell PowerEdge 2850 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Skoryk Peter List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 11:50:55 -0000 Is there any way to monitor hardware on Dell PowerEdge 2850. Hot-Swap PowerSupply(most critical), CPU Temperature, RAID status and other? From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 11:33: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 B05CD16A4AB; Wed, 21 Jun 2006 11:33:11 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from unixfreunde.net (unixfreunde.de [85.214.35.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B85743D55; Wed, 21 Jun 2006 11:32:09 +0000 (GMT) (envelope-from miwi@FreeBSD.org) Received: by unixfreunde.net (Postfix, from userid 65534) id D1FED50763; Wed, 21 Jun 2006 13:32:08 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.1.0-gr0 (2005-09-13) on unixfreunde.de X-Spam-Level: * X-Spam-Status: No, score=1.4 required=5.0 tests=AWL, BAYES_00, FORGED_RCVD_HELO, RCVD_IN_NJABL_DUL,RCVD_IN_SORBS_DUL autolearn=no version=3.1.0-gr0 Received: from mwilke.ath.cx (p548D37B4.dip0.t-ipconnect.de [84.141.55.180]) by unixfreunde.net (Postfix) with ESMTP id 4ABA65075D; Wed, 21 Jun 2006 13:32:06 +0200 (CEST) Date: Wed, 21 Jun 2006 13:32:04 +0200 From: Martin Wilke To: Boris Samorodov Message-ID: <20060621133204.2c8df0c6@mwilke.ath.cx> In-Reply-To: <04707600@srv.sem.ipt.ru> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> <20060621115127.1e0d29e6@mwilke.ath.cx> <04707600@srv.sem.ipt.ru> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.9.3; i386-portbld-freebsd7.0) User-Agent: miwi@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 21 Jun 2006 11:55:46 +0000 Cc: Jeff Molofee , Adi Pircalabu , Ion-Mihai IOnut Tetcu , freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 11:33:11 -0000 On Wed, 21 Jun 2006 14:47:59 +0400 Boris Samorodov wrote: > Do you have some non-default settings that results in seaching /usr > before /compat/linux (ex. LD_LIBRARY_PATH) or so? > > And, please, show your: > $ ldd `which skype_bin` hi Boris, thx you solved :) Martin From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 12:26: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 6227116A6F2; Wed, 21 Jun 2006 12:26:55 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5F5B4419A; Wed, 21 Jun 2006 12:07:20 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 4752F1759A; Wed, 21 Jun 2006 15:07:19 +0300 (EEST) Date: Wed, 21 Jun 2006 15:07:18 +0300 From: Ion-Mihai "IOnut" Tetcu To: Martin Wilke Message-ID: <20060621150718.73229d94@it.buh.tecnik93.com> In-Reply-To: <20060621133204.2c8df0c6@mwilke.ath.cx> References: <20060617071239.1F08D16A56D@hub.freebsd.org> <44960134.9030502@cruzinternet.com> <20060619184110.321ff967@apircalabu.dsd.ro> <20060619191542.614d03ad@apircalabu.dsd.ro> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> <20060621115127.1e0d29e6@mwilke.ath.cx> <04707600@srv.sem.ipt.ru> <20060621133204.2c8df0c6@mwilke.ath.cx> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_qDiB/wE0nZSs9xEHk2TBoL="; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-Mailman-Approved-At: Wed, 21 Jun 2006 12:36:09 +0000 Cc: Pircalabu , Boris Samorodov , freebsd-ports@freebsd.org, Jeff Molofee , freebsd-questions@freebsd.org, Adi Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 12:26:55 -0000 --Sig_qDiB/wE0nZSs9xEHk2TBoL= Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Wed, 21 Jun 2006 13:32:04 +0200 Martin Wilke wrote: > On Wed, 21 Jun 2006 14:47:59 +0400 > Boris Samorodov wrote: >=20 > > Do you have some non-default settings that results in seaching /usr > > before /compat/linux (ex. LD_LIBRARY_PATH) or so? > >=20 > > And, please, show your: > > $ ldd `which skype_bin` >=20 >=20 > hi Boris, >=20 > thx you solved :) So can I consider that it works OK and skip tonight's testing session ? --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #177: --Sig_qDiB/wE0nZSs9xEHk2TBoL= Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEmTZ3BX6fi0k6KXsRAh+LAJ9soGYdG9zDTpXklBxw3AR4fG4k3gCgnY7t BNKX1yQwp8j+CuGQky0WJVY= =j2vj -----END PGP SIGNATURE----- --Sig_qDiB/wE0nZSs9xEHk2TBoL=-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 12:41:56 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 E148E16A511 for ; Wed, 21 Jun 2006 12:41:55 +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 D09D4445C9 for ; Wed, 21 Jun 2006 12:15:38 +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, 21 Jun 2006 08:15:37 -0400 id 00056413.44993869.00005EAA Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 21 Jun 2006 08:07:08 -0400 Date: Wed, 21 Jun 2006 08:15:36 -0400 From: Bill Moran To: Skoryk Peter Message-Id: <20060621081536.5d08cb15.wmoran@collaborativefusion.com> In-Reply-To: <782727007.20060621145055@yukon.com.ua> References: <782727007.20060621145055@yukon.com.ua> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.6 (GTK+ 2.8.19; 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: Dell PowerEdge 2850 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 12:41:56 -0000 In response to Skoryk Peter : > > Is there any way to monitor hardware on Dell PowerEdge 2850. > Hot-Swap PowerSupply(most critical), CPU Temperature, RAID status and other? ipmitool and megarc in the ports. -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 13:23: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 AD87D16A47C for ; Wed, 21 Jun 2006 13:23:37 +0000 (UTC) (envelope-from jorpavon@hotmail.com) Received: from hotmail.com (bay113-f27.bay113.hotmail.com [65.54.168.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id D98F143D6E for ; Wed, 21 Jun 2006 13:23:26 +0000 (GMT) (envelope-from jorpavon@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 21 Jun 2006 06:23:26 -0700 Message-ID: Received: from 65.54.168.200 by by113fd.bay113.hotmail.msn.com with HTTP; Wed, 21 Jun 2006 13:23:21 GMT X-Originating-IP: [213.96.60.26] X-Originating-Email: [jorpavon@hotmail.com] X-Sender: jorpavon@hotmail.com From: "Jordi Pavon" To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 13:23:21 +0000 X-OriginalArrivalTime: 21 Jun 2006 13:23:26.0430 (UTC) FILETIME=[E0D1F7E0:01C69535] MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format="flowed" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: =?iso-8859-1?q?make_buildkernel_ERROR_=BFWhy=3F?= X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 13:23:37 -0000 Hi, this is my first time I customize my kernel. I'm working with Freebsd 6.0, I made a make buildkernel KERNELCONF=ALBABRAIN, and I get this error: "... cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/dev/ath -I/usr/src/sys/contrib/dev/ath/freebsd -I/usr/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=15000 -fno-strict-aliasing -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror majors.c cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/dev/ath -I/usr/src/sys/contrib/dev/ath/freebsd -I/usr/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=15000 -fno-strict-aliasing -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror vnode_if.c touch hack.c cc -shared -nostdlib hack.c -o hack.So rm -f hack.c sh /usr/src/sys/conf/newvers.sh ALBABRAIN cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/dev/ath -I/usr/src/sys/contrib/dev/ath/freebsd -I/usr/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=15000 -fno-strict-aliasing -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror vers.c linking kernel *** Error code 1 Stop in /usr/obj/usr/src/sys/ALBABRAIN. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. " Any help will be apreciated!! This is my customized Kernel "ALBABRAIN": " machine i386 cpu I686_CPU ident ALBABRAIN options SCHED_4BSD #4BSD scheduler options INET #InterNETworking options FFS #Berkeley Fast Filesystem options SOFTUPDATES #Enable FFS soft updates support options UFS_ACL #Support for access control lists options UFS_DIRHASH #Improve performance on big directories options MD_ROOT #MD is a potential root device options CD9660 #ISO 9660 Filesystem options PROCFS #Process filesystem (requires PSEUDOFS) options PSEUDOFS #Pseudo-filesystem framework options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options COMPAT_FREEBSD4 #Compatible with FreeBSD4 options KTRACE #ktrace(1) support options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~128k to driver. options AHD_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~215k to driver. options PFIL_HOOKS # pfil(9) framework options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS options SMP # Symmetric MultiProcessor Kernel device apic # I/O APIC device isa device pci device fdc device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device vga # VGA video card driver device splash # Splash screen and screen saver support device sc device agp # support several AGP chipsets device npx device pmtimer device cbb # cardbus (yenta) bridge device pccard # PC Card (16-bit) bus device cardbus # CardBus (32-bit) bus device sio # 8250, 16[45]50 based serial ports device ppc device ppbus # Parallel port bus (required) device lpt # Printer device ppi # Parallel port interface device device txp # 3Com 3cR990 (``Typhoon'') device vx # 3Com 3c590, 3c595 (``Vortex'') device miibus # MII bus support device re # RealTek 8139C+/8169/8169S/8110S device rl # RealTek 8129/8139 device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # Pseudo devices - the number indicates how many units to allocate. device random # Entropy device device loop # Network loopback device ether # Ethernet support device sl # Kernel SLIP device ppp # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif # IPv6 and IPv4 tunneling device faith # IPv6-to-IPv4 relaying (translation) device bpf # Berkeley packet filter device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device urio # Diamond Rio 500 MP3 player device uscanner # Scanners " Thanks in advance!! Jordi from Barcelona. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 13:59: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 08AD716A479 for ; Wed, 21 Jun 2006 13:59: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 452BB43D48 for ; Wed, 21 Jun 2006 13:59:20 +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-1) with ESMTP id k5LDx3f8027278 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 21 Jun 2006 16:59:09 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.6/8.13.6) with ESMTP id k5LDwthT021133; Wed, 21 Jun 2006 16:58:55 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.6/8.13.6/Submit) id k5LDwtru021129; Wed, 21 Jun 2006 16:58:55 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Wed, 21 Jun 2006 16:58:55 +0300 From: Giorgos Keramidas To: Jordi Pavon Message-ID: <20060621135855.GB21058@gothmog.pc> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.331, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 1.07, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: make buildkernel ERROR ?Why? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 13:59:22 -0000 On 2006-06-21 13:23, Jordi Pavon wrote: > > Hi, this is my first time I customize my kernel. > > I'm working with Freebsd 6.0, I made a make buildkernel > KERNELCONF=ALBABRAIN, and I get this error: > "... > cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls [...] > -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/dev/ath > -I/usr/src/sys/contrib/dev/ath/freebsd -I/usr/src/sys/contrib/ngatm > -D_KERNEL -include opt_global.h -fno-common -finline-limit=15000 > -fno-strict-aliasing -mno-align-long-strings > -mpreferred-stack-boundary=2 -ffreestanding -Werror vers.c > linking kernel > *** Error code 1 > Stop in /usr/obj/usr/src/sys/ALBABRAIN. > *** Error code 1 > Stop in /usr/src. > *** Error code 1 > Stop in /usr/src. > " > Any help will be apreciated!! This is not the verbatim, unedited log and it is missing the error message. You are not building with -j2 or higher, right? > This is my customized Kernel "ALBABRAIN": > " > machine i386 > cpu I686_CPU > ident ALBABRAIN > options SCHED_4BSD #4BSD scheduler > options INET #InterNETworking [...] Your mailer or something else that handled this message has changed this configuration file too much to make a comparison with GENERIC easy. Can you attach a text/plain MIME version of the configuration file, please? - Giorgos From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 14:11: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 3F9A016A474 for ; Wed, 21 Jun 2006 14:11:05 +0000 (UTC) (envelope-from magikmanv2@cox.net) Received: from eastrmmtao03.cox.net (eastrmmtao03.cox.net [68.230.240.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id A72A643D4C for ; Wed, 21 Jun 2006 14:11:04 +0000 (GMT) (envelope-from magikmanv2@cox.net) Received: from [192.168.1.5] (really [70.161.114.1]) by eastrmmtao03.cox.net (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with ESMTP id <20060621141104.RSVN23863.eastrmmtao03.cox.net@[192.168.1.5]> for ; Wed, 21 Jun 2006 10:11:04 -0400 Message-ID: <449953BB.70500@cox.net> Date: Wed, 21 Jun 2006 10:12:11 -0400 From: Magikman User-Agent: Thunderbird 1.5.0.4 (X11/20060608) 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: (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: Wed, 21 Jun 2006 14:11:05 -0000 From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 14: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 0E80F16A47A for ; Wed, 21 Jun 2006 14:32:07 +0000 (UTC) (envelope-from jorpavon@hotmail.com) Received: from hotmail.com (bay113-f5.bay113.hotmail.com [65.54.168.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id A292A43D53 for ; Wed, 21 Jun 2006 14:32:06 +0000 (GMT) (envelope-from jorpavon@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 21 Jun 2006 07:32:06 -0700 Message-ID: Received: from 65.54.168.200 by by113fd.bay113.hotmail.msn.com with HTTP; Wed, 21 Jun 2006 14:32:01 GMT X-Originating-IP: [213.96.60.26] X-Originating-Email: [jorpavon@hotmail.com] X-Sender: jorpavon@hotmail.com From: "Jordi Pavon" To: keramida@ceid.upatras.gr Date: Wed, 21 Jun 2006 14:32:01 +0000 Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_5bef_76f7_4ebd" X-OriginalArrivalTime: 21 Jun 2006 14:32:06.0223 (UTC) FILETIME=[78687DF0:01C6953F] X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: make buildkernel ERROR ?Why? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 14:32:07 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_5bef_76f7_4ebd MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format="flowed" >On 2006-06-21 13:23, Jordi Pavon wrote: > > > > Hi, this is my first time I customize my kernel. > > > > I'm working with Freebsd 6.0, I made a make buildkernel > > KERNELCONF=ALBABRAIN, and I get this error: > > "... > > cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls [...] > > -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/dev/ath > > -I/usr/src/sys/contrib/dev/ath/freebsd -I/usr/src/sys/contrib/ngatm > > -D_KERNEL -include opt_global.h -fno-common -finline-limit=15000 > > -fno-strict-aliasing -mno-align-long-strings > > -mpreferred-stack-boundary=2 -ffreestanding -Werror vers.c > > linking kernel > > *** Error code 1 > > Stop in /usr/obj/usr/src/sys/ALBABRAIN. > > *** Error code 1 > > Stop in /usr/src. > > *** Error code 1 > > Stop in /usr/src. > > " > > Any help will be apreciated!! > >This is not the verbatim, unedited log and it is missing the error >message. You are not building with -j2 or higher, right? Yes, you're right I'm not building with -j2 or higher, I just write "make buildkernel KERNELCONF=ALBABRAIN" This is the last 3 lines : cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/dev/ath -I/usr/src/sys/contrib/dev/ath/freebsd -I/usr/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=15000 -fno-strict-aliasing -mno-align-long-strings -mpreferred-stack-boundary=2 -ffreestanding -Werror vers.c linking kernel *** Error code 1 Stop in /usr/obj/usr/src/sys/ALBABRAIN. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. > > > This is my customized Kernel "ALBABRAIN": > > " > > machine i386 > > cpu I686_CPU > > ident ALBABRAIN > > options SCHED_4BSD #4BSD scheduler > > options INET #InterNETworking >[...] > >Your mailer or something else that handled this message has changed this >configuration file too much to make a comparison with GENERIC easy. Can >you attach a text/plain MIME version of the configuration file, please? >- Giorgos The configuration File is attached, sorry for the Hotmail editor. ------=_NextPart_000_5bef_76f7_4ebd Content-Type: text/plain; name="ALBABRAIN"; format=flowed Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="ALBABRAIN" # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ../../conf/NOTES and NOTES files. # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.394.2.3 2004/01/26 19:42:11 nectar Exp $ machine i386 cpu I686_CPU ident ALBABRAIN #To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" #Default places to look for devices. #makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options SCHED_4BSD #4BSD scheduler options INET #InterNETworking #options INET6 #IPv6 communications protocols options FFS #Berkeley Fast Filesystem options SOFTUPDATES #Enable FFS soft updates support options UFS_ACL #Support for access control lists options UFS_DIRHASH #Improve performance on big directories options MD_ROOT #MD is a potential root device #options NFSCLIENT #Network Filesystem Client #options NFSSERVER #Network Filesystem Server #options NFS_ROOT #NFS usable as /, requires NFSCLIENT #options MSDOSFS #MSDOS Filesystem options CD9660 #ISO 9660 Filesystem options PROCFS #Process filesystem (requires PSEUDOFS) options PSEUDOFS #Pseudo-filesystem framework options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options COMPAT_FREEBSD4 #Compatible with FreeBSD4 #options SCSI_DELAY=15000 #Delay (in ms) before probing SCSI options KTRACE #ktrace(1) support #options SYSVSHM #SYSV-style shared memory #options SYSVMSG #SYSV-style message queues #options SYSVSEM #SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~128k to driver. options AHD_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~215k to driver. options PFIL_HOOKS # pfil(9) framework # Debugging for use in -current #options DDB #Enable the kernel debugger #options INVARIANTS #Enable calls of extra sanity checking options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS #options WITNESS #Enable checks to detect deadlocks and cycles #options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed # To make an SMP kernel, the next two are needed options SMP # Symmetric MultiProcessor Kernel device apic # I/O APIC device isa #device eisa device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives #device ataraid # ATA RAID drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives #device atapist # ATAPI tape drives #options ATA_STATIC_ID #Static device numbering # SCSI Controllers #device ahb # EISA AHA1742 family #device ahc # AHA2940 and onboard AIC7xxx devices #device ahd # AHA39320/29320 and onboard AIC79xx devices #device amd # AMD 53C974 (Tekram DC-390(T)) #device isp # Qlogic family #device mpt # LSI-Logic MPT-Fusion #device ncr # NCR/Symbios Logic #device sym # NCR/Symbios Logic (newer chipsets + those of `ncr') #device trm # Tekram DC395U/UW/F DC315U adapters #device adv # Advansys SCSI adapters #device adw # Advansys wide SCSI adapters #device aha # Adaptec 154x SCSI adapters #device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60. #device bt # Buslogic/Mylex MultiMaster SCSI adapters #device ncv # NCR 53C500 #device nsp # Workbit Ninja SCSI-3 #device stg # TMC 18C30/18C50 # SCSI peripherals #device scbus # SCSI bus (required for SCSI) #device ch # SCSI media changers #device da # Direct Access (disks) #device sa # Sequential Access (tape etc) #device cd # CD #device pass # Passthrough device (direct SCSI access) #device ses # SCSI Environmental Services (and SAF-TE) # RAID controllers interfaced to the SCSI subsystem #device amr # AMI MegaRAID #device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID #device ciss # Compaq Smart RAID 5* #device dpt # DPT Smartcache III, IV - See NOTES for options #device iir # Intel Integrated RAID #device ips # IBM (Adaptec) ServeRAID #device mly # Mylex AcceleRAID/eXtremeRAID # RAID controllers #device aac # Adaptec FSA RAID #device aacp # SCSI passthrough for aac (requires CAM) #device ida # Compaq Smart RAID #device mlx # Mylex DAC960 family #device pst # Promise Supertrak SX6000 #device twe # 3ware ATA RAID # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc # Enable this for the pcvt (VT220 compatible) console driver #device vt #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor device agp # support several AGP chipsets # Floating point support - do not disable. device npx # Power management support (see NOTES for more options) #device apm # Add suspend/resume support for the i8254. device pmtimer # PCCARD (PCMCIA) support # Pcmcia and cardbus bridge support device cbb # cardbus (yenta) bridge #device pcic # ExCA ISA and PCI bridges device pccard # PC Card (16-bit) bus device cardbus # CardBus (32-bit) bus # Serial (COM) ports device sio # 8250, 16[45]50 based serial ports # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer #device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # If you've got a "dumb" serial or parallel PCI card that is # supported by the puc(4) glue driver, uncomment the following # line to enable it (connects to the sio and/or ppc drivers): #device puc # PCI Ethernet NICs. #device de # DEC/Intel DC21x4x (``Tulip'') #device em # Intel PRO/1000 adapter Gigabit Ethernet Card device txp # 3Com 3cR990 (``Typhoon'') device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support #device bfe # Broadcom BCM440x 10/100 ethernet #device bge # Broadcom BCM570xx Gigabit Ethernet #device dc # DEC/Intel 21143 and various workalikes #device fxp # Intel EtherExpress PRO/100B (82557, 82558) #device pcn # AMD Am79C97x PCI 10/100 (precedence over 'lnc') device re # RealTek 8139C+/8169/8169S/8110S device rl # RealTek 8129/8139 #device sf # Adaptec AIC-6915 (``Starfire'') #device sis # Silicon Integrated Systems SiS 900/SiS 7016 #device sk # SysKonnect SK-984x and SK-982x gigabit ethernet #device ste # Sundance ST201 (D-Link DFE-550TX) #device ti # Alteon Networks Tigon I/II gigabit ethernet #device tl # Texas Instruments ThunderLAN #device tx # SMC EtherPower II (83c170 ``EPIC'') #device vr # VIA Rhine, Rhine II #device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. pccard nics included. #device cs # Crystal Semiconductor CS89x0 NIC # 'device ed' requires 'device miibus' #device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards #device ex # Intel EtherExpress Pro/10 and Pro/10+ #device ep # Etherlink III based cards #device fe # Fujitsu MB8696x based cards #device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc. #device lnc # NE2100, NE32-VL Lance Ethernet cards #device sn # SMC's 9000 series of ethernet chips #device xe # Xircom pccard ethernet # ISA devices that use the old ISA shims #device le # Wireless NIC cards #device wlan # 802.11 support #device an # Aironet 4500/4800 802.11 wireless NICs. #device awi # BayStack 660 and others #device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. #device wl # Older non 802.11 Wavelan wireless NIC. # Pseudo devices - the number indicates how many units to allocate. device random # Entropy device device loop # Network loopback device ether # Ethernet support device sl # Kernel SLIP device ppp # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif # IPv6 and IPv4 tunneling device faith # IPv6-to-IPv4 relaying (translation) # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! device bpf # Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device urio # Diamond Rio 500 MP3 player device uscanner # Scanners # USB Ethernet, requires mii # FireWire support #FIREWALL #options IPFILTER #options IPFILTER_LOG #options IPFILTER_DEFAULT_BLOCK ------=_NextPart_000_5bef_76f7_4ebd-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 15:01: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 E081A16A474 for ; Wed, 21 Jun 2006 15:01:06 +0000 (UTC) (envelope-from fbsdlists@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 75E2143D46 for ; Wed, 21 Jun 2006 15:01:05 +0000 (GMT) (envelope-from fbsdlists@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1891378uge for ; Wed, 21 Jun 2006 08:01: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:content-transfer-encoding:content-disposition:references; b=LWJHpWtgmceLy9bsaCdY1wWMkwZ+KYQYz2uhG904JdXQSfkjbCupu2pW68Gee3FA12ZflI8kgMronP3O46+YLvUfAT3anSVaAuQxKTx/hKzCIRGxLYtCKXlh+JowW4Hba9Epekw1+lkrdeQn/sF/3rP0pz3lFx1vCDbcQv7BEuY= Received: by 10.78.21.7 with SMTP id 7mr3376961huu; Wed, 21 Jun 2006 08:01:04 -0700 (PDT) Received: by 10.78.12.15 with HTTP; Wed, 21 Jun 2006 08:01:04 -0700 (PDT) Message-ID: <54db43990606210801o2c7fc0adh1dabfea3b05e5196@mail.gmail.com> Date: Wed, 21 Jun 2006 11:01:04 -0400 From: "Bob Johnson" To: "=?ISO-8859-1?Q?Pablo_Mar=EDn_Ram=F3n?=" In-Reply-To: <20060618175426.GA513@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <20060616104704.GA11222@localhost> <54db43990606160818u1e3df3b8sfb30066fc005661f@mail.gmail.com> <20060618175426.GA513@localhost> Cc: freebsd-questions@freebsd.org Subject: Re: FFS data integrity X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 15:01:07 -0000 On 6/18/06, Pablo Mar=EDn Ram=F3n wrote: > Bob Johnson wrote: > > The short answer is that fsck can detect the bad inodes and fix or > > delete them. Assuming no programming errors, you don't have to worry > > about a file containing bogus data after fsck has run. Unfortunately, > > if write-caching is enabled on your hard drive (and it probably is, > > for speed), then the drive may internally re-order the writes and the > > carefully crafted sequence of writes disappears, so there are no > > guarantees (or at least, not as many). Whether this is actually a > > problem depends on the brand, model, and firmware version of the > > drive, because some drives claim that data has been written to the > > disk when it is actually only in the drive buffer, while other drives > > are more honest. > [... removed for brevity...] > > The following is extracted from "Soft Updates: A Technique for > Eliminating Most Synchronous Writes in the Fast Filesystem": The first author on that paper, Marshall Kirk McKusick, was the original developer of FreeBSD's filesystem, and of the softupdates system, so I'm reasonably confident that if you trust the paper you can trust the FreeBSD implementation (barring, as I said, programming errors). > [...more deleted for brevity...] > > so I assume FreeBSD is doing the correct thing. > > Is correct this assumption? It is supposed to be, but I've never looked at it in enough detail to answer from my own knowledge. The right people to ask would be Dr. McKusick or a few of the other people who maintain that code. There is a mailing list specific to filesystem development: freebsd-fs@freebsd.org. I think that for the level of detail you are interested in, that would be a better place to ask than on this general-purpose list. There are also other topic-specific lists described at http://www.freebsd.org/handbook/eresources.html#ERESOURCES-MAI= L, you might find some of them of interest. I hope that helps a little, - Bob From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 15:06: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 63DAB16A474 for ; Wed, 21 Jun 2006 15:06:13 +0000 (UTC) (envelope-from pietro.cerutti@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 625BB43D46 for ; Wed, 21 Jun 2006 15:06:12 +0000 (GMT) (envelope-from pietro.cerutti@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1894170uge for ; Wed, 21 Jun 2006 08:06:12 -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=DIK0/SpKXITREwxTRZxmujkSxx92ThoQ2iggcnlLVe4KKY5AGVVnCT9yBZ4LFgpZ4dbY9eULtYVRAjNbYKTTetjTGshqo64+3fjziF1z+OGndJHkdgtJwugnpE0hO3qSFweqCFM0QJz7TPQP/Nn5TDVSrjb1QpVU0wmy54XAniw= Received: by 10.67.89.6 with SMTP id r6mr7820579ugl; Wed, 21 Jun 2006 07:59:51 -0700 (PDT) Received: by 10.67.23.8 with HTTP; Wed, 21 Jun 2006 07:59:50 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 16:59:50 +0200 From: "Pietro Cerutti" To: "Ion-Mihai IOnut Tetcu" , "freebsd questions" In-Reply-To: <20060621150718.73229d94@it.buh.tecnik93.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060617071239.1F08D16A56D@hub.freebsd.org> <61855713@srv.sem.ipt.ru> <20060620122319.4095c40b@it.buh.tecnik93.com> <51127380@srv.sem.ipt.ru> <20060620133306.5559f889@it.buh.tecnik93.com> <72568263@srv.sem.ipt.ru> <20060621115127.1e0d29e6@mwilke.ath.cx> <04707600@srv.sem.ipt.ru> <20060621133204.2c8df0c6@mwilke.ath.cx> <20060621150718.73229d94@it.buh.tecnik93.com> Cc: Subject: Re: linux_base-fc4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 15:06:13 -0000 On 6/21/06, Ion-Mihai IOnut Tetcu wrote: > On Wed, 21 Jun 2006 13:32:04 +0200 > Martin Wilke wrote: > > > On Wed, 21 Jun 2006 14:47:59 +0400 > > Boris Samorodov wrote: > > > > > Do you have some non-default settings that results in seaching /usr > > > before /compat/linux (ex. LD_LIBRARY_PATH) or so? > > > > > > And, please, show your: > > > $ ldd `which skype_bin` > > > > > > hi Boris, > > > > thx you solved :) > > So can I consider that it works OK and skip tonight's testing session ? No please: > ldd `which skype_bin` /usr/X11R6/bin/skype_bin: /usr/X11R6/bin/skype_bin: error while loading shared libraries: /usr/lib/libpthread.so.0: ELF file OS ABI invalid /usr/X11R6/bin/skype_bin: exit status 127 Exit 1 > > > > -- > IOnut - Un^d^dregistered ;) FreeBSD "user" > "Intellectual Property" is nowhere near as valuable as "Intellect" > > BOFH excuse #177: > > > > > -- Pietro Cerutti ICQ: 117293691 PGP: 0x9571F78E - ASCII Ribbon Campaign - against HTML e-mail and proprietary attachments www.asciiribbon.org From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 15:45: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 9CC8216A502 for ; Wed, 21 Jun 2006 15:45:57 +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 A416F43D48 for ; Wed, 21 Jun 2006 15:45:56 +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 k5LFjr7u004026; Wed, 21 Jun 2006 16:45:53 +0100 (BST) (envelope-from sub02@freeode.co.uk) From: John Murphy To: "Jordi Pavon" Date: Wed, 21 Jun 2006 16:45:53 +0100 Message-ID: References: In-Reply-To: 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 Cc: freebsd-questions@freebsd.org Subject: Re: make buildkernel ERROR ?Why? 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, 21 Jun 2006 15:45:57 -0000 "Jordi Pavon" wrote: > The configuration File is attached, sorry for the Hotmail editor. You have the umass device enabled which, as it says, requires scbus and da. Either remark the umass line or unremark the scbus and da lines in the SCSI peripherals section. Also, as you have the INET6 option remarked out, you probably won't need the faith device (in Pseudo devices). -- HTH, John. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 15:56: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 7C96916A4A0 for ; Wed, 21 Jun 2006 15:56:00 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B78D743D49 for ; Wed, 21 Jun 2006 15:55:59 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so174472nzi for ; Wed, 21 Jun 2006 08:55: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=MJCFO6iyjeSdaG+yOTarEVxj6ru2FXlTr0sygU7atqXgpTj0hzNO9yEdKneowH3HPzPWGwJs7LedkUkEhN2ZC6Ir7m4jPjYfk7AuQMZvhvAQy/uN+RZaRVM4ysrduBPCqPdrAK4gVEHLUl2WO98gpYXORPzCbTa1P3bJr/FMid8= Received: by 10.36.135.5 with SMTP id i5mr604290nzd; Wed, 21 Jun 2006 08:55:59 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Wed, 21 Jun 2006 08:55:59 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 08:55:59 -0700 From: "Nikolas Britton" To: "Jordi Pavon" 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: Cc: keramida@ceid.upatras.gr, freebsd-questions@freebsd.org Subject: Re: make buildkernel ERROR ?Why? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 15:56:00 -0000 On 6/21/06, Jordi Pavon wrote: > > >On 2006-06-21 13:23, Jordi Pavon wrote: > > > > > > Hi, this is my first time I customize my kernel. > > > > > > I'm working with Freebsd 6.0, I made a make buildkernel > > > KERNELCONF=ALBABRAIN, and I get this error: > > > "... > > > cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls [...] > > > -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/dev/ath > > > -I/usr/src/sys/contrib/dev/ath/freebsd > -I/usr/src/sys/contrib/ngatm > > > -D_KERNEL -include opt_global.h -fno-common -finline-limit=15000 > > > -fno-strict-aliasing -mno-align-long-strings > > > -mpreferred-stack-boundary=2 -ffreestanding -Werror vers.c > > > linking kernel > > > *** Error code 1 > > > Stop in /usr/obj/usr/src/sys/ALBABRAIN. > > > *** Error code 1 > > > Stop in /usr/src. > > > *** Error code 1 > > > Stop in /usr/src. > > > " > > > Any help will be apreciated!! > > > >This is not the verbatim, unedited log and it is missing the error > >message. You are not building with -j2 or higher, right? > > Yes, you're right I'm not building with -j2 or higher, I just write > "make buildkernel KERNELCONF=ALBABRAIN" > > This is the last 3 lines : > > cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes > -Wpointer-arith -Winline -Wcast-qual -fformat-extensions > -std=c99 -nostdinc -I- -I. -I/usr/src/sys > -I/usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/ipfilter > -I/usr/src/sys/contrib/dev/ath -I/usr/src/sys/contrib/dev/ath/freebsd > -I/usr/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h > -fno-common -finline-limit=15000 > -fno-strict-aliasing -mno-align-long-strings > -mpreferred-stack-boundary=2 -ffreestanding -Werror vers.c > linking kernel > *** Error code 1 > Stop in /usr/obj/usr/src/sys/ALBABRAIN. > *** Error code 1 > Stop in /usr/src. > *** Error code 1 > Stop in /usr/src. > > > > > This is my customized Kernel "ALBABRAIN": > > > " > > > machine i386 > > > cpu I686_CPU > > > ident ALBABRAIN > > > options SCHED_4BSD #4BSD scheduler > > > options INET #InterNETworking > >[...] > > > >Your mailer or something else that handled this message has changed > this > >configuration file too much to make a comparison with GENERIC > easy. Can > >you attach a text/plain MIME version of the configuration file, > please? > > >- Giorgos > > The configuration File is attached, sorry for the Hotmail editor. > > You should be using a kernel override config file thingy (I don't know it's real name). check out the SMP kernel config file for an example. Also post a copy of /etc/make.conf... "cc -c -O -pipe -mcpu=pentiumpro"... it looks like you have some non-standard stuff in make.conf. -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 16:05: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 CDF2016A47E for ; Wed, 21 Jun 2006 16:05:24 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 410F743D48 for ; Wed, 21 Jun 2006 16:05:23 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5LG5Mlb006887 for ; Wed, 21 Jun 2006 12:05:23 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id 44C9F240A4; Wed, 21 Jun 2006 12:05:17 -0400 (EDT) Date: Wed, 21 Jun 2006 12:05:17 -0400 From: "Michael P. Soulier" To: freebsd-questions@freebsd.org Message-ID: <20060621160516.GA7596@tigger.digitaltorque.ca> Mail-Followup-To: freebsd-questions@freebsd.org References: <20060620233233.GF11625@tigger.digitaltorque.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sm4nu43k4a2Rpi4c" Content-Disposition: inline In-Reply-To: <20060620233233.GF11625@tigger.digitaltorque.ca> User-Agent: Mutt/1.4.2.1i Subject: Re: ppp not starting 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, 21 Jun 2006 16:05:24 -0000 --sm4nu43k4a2Rpi4c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 20/06/06 Michael P. Soulier said: > Hey people, >=20 > I had a power failure today (there goes my uptime) that lasted longer tha= n my > UPS, and when the box came back up, my PPPoE connection did not. >=20 > # Enable PPPoE > ppp_enable=3D"YES" > ppp_mode=3D"ddial" > ppp_nat=3D"YES" > ppp_profile=3D"storm" >=20 > Is this not correct? Should this not cause ppp to be started, using the > "storm" profile, at boot? >=20 > I had to do it manually via >=20 > ppp -ddial storm This seems to be started by the ppp-user rc script, but it didn't seem to happen.=20 Any ideas? Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --sm4nu43k4a2Rpi4c Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEmW48KGqCc1vIvggRAr64AKCCCU680VDT5dqSC1WJtrqKrU+2SACfZCJj IO6OSac42ZRpRtSCrIzIGZY= =Moxr -----END PGP SIGNATURE----- --sm4nu43k4a2Rpi4c-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 16:27: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 49F8616A474 for ; Wed, 21 Jun 2006 16:27:47 +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 513DF43D4C for ; Wed, 21 Jun 2006 16:27:42 +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 A987AD80FBF for ; Wed, 21 Jun 2006 12:27:40 -0400 (EDT) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by frontend3.internal (MEProxy); Wed, 21 Jun 2006 12:27:41 -0400 X-Sasl-enc: mGK5HG6C1eUhVneM43gJb74S0DkRe5gWJ4IZkNMqDFRL 1150907260 Received: from bb-87-81-140-128.ukonline.co.uk (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id DFE678437 for ; Wed, 21 Jun 2006 12:27:40 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 17:27:36 +0100 User-Agent: KMail/1.9.3 References: <44978913.3070401@Metrol.net> <449895EF.5090407@Metrol.net> In-Reply-To: <449895EF.5090407@Metrol.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606211727.38250.list-freebsd-2004@morbius.sent.com> Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 16:27:47 -0000 On Wednesday 21 June 2006 01:42, Michael Collette wrote: > Andy Reitz wrote: > > In 64-bit mode, that does appear to be the case. However, it sounds like > > you could purchase an AMD64-based processor, and have everythign work > > fine in 32-bit mode. Then later down the road, as the software evolves, > > you could upgrade FreeBSD to be 64-bit and be set. > > > > Just a thought, > > I was thinking along those lines as well, but then the money starts to > kick in. The dual core Pentium is a much lower price than the dual > AMD64. By the time the software is truly ready to go 64-bit, I think > I'd be better off buying a system at that point. Don't fall into the trap of thinking that 64-bit is going to be superfast, most people report very little difference in speed, except in a limited number of applications, some people say that it's actually slower. The real reason for 64-bit is support for address spaces that span more than 4GB. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 17:00: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 1CB0D16A47D for ; Wed, 21 Jun 2006 17:00:01 +0000 (UTC) (envelope-from SRS0=4pI14ORF=AI=asarian-host.net=admin@asarian-host.net) Received: from mail.asarian-host.net (mail.asarian-host.net [194.109.160.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A3EB43D46 for ; Wed, 21 Jun 2006 17:00:00 +0000 (GMT) (envelope-from SRS0=4pI14ORF=AI=asarian-host.net=admin@asarian-host.net) Received: from anonymizer.asarian-host.net (localhost [127.0.0.1]) (authenticated bits=0) by mail.asarian-host.net (8.13.5/8.13.5) with ESMTP id k5LGxw1t004043 for ; Wed, 21 Jun 2006 18:59:58 +0200 (CEST) (envelope-from admin@asarian-host.net) From: Mark Received-SPF: pass (asarian-host.net: 127.0.0.1 is authenticated by a trusted mechanism) receiver=anonymizer.asarian-host.net; client-ip=127.0.0.1; envelope-from=; helo=clientrunner.asarian-host.net; Message-Id: <200606211659.k5LGxvQV004033@asarian-host.net> Date: Wed, 21 Jun 2006 16:59:58 GMT X-Authenticated-Sender: admin@asarian-host.net X-Trace: u3xQfzeyCXUu1PlU4tKzs2hdqyf3s9YQSOAd6QgP3zCFpgjLmeJb4m137Nntp7wH X-Complaints-To: abuse@asarian-host.net X-Abuse-Info: Please be sure to forward a copy of ALL headers, otherwise we are unable to process your complaint Organization: Asarian-host To: "'FreeBSD-Questions Questions'" MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 X-Auth: Asarian-host PGP signature iQEVAwUARJl7DjFqW1BleBN9AQF/4gf+P6TEIl78CuWYBxa6GJLPPINRQZzyGRtN 7/idTnDF/yWGzV7HApGwNIl2637nlEf+JD+2hhLi1sRuwDxTSfV9XnYmND9EB8BP 4jgTgP9dkhmwP4thIdPnk8DRsxqCS/JmKHCrEO02qU4AhziiXJDkpAzVTn7DBebL rFzhBl3u8UYdU6Ij9DVHG7kyKUYQ2ftf/wCVIPKfqpUCL78tMSjzpGb1Xu+2LxI5 VsjzRGY5CJC1MDQVMgaGH+Qec1UAbSYSLwmlfzxaaMleh2ez9sJO793HRvnAf0V0 C3la9CicF2JShlzGjuqroHnkLRRVU7Tbt5tn7dFgwkAHAYT/SMvpTw== =IR+z Subject: RE: Does FreeBSD 4.11-STABLE support the Intel PWLA8391GT NIC? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 17:00:02 -0000 > -----Original Message----- > From: Mark [mailto:admin@asarian-host.net]=20 > Sent: dinsdag 20 juni 2006 2:53 > To: 'FreeBSD-Questions Questions' > Subject: RE: Does FreeBSD 4.11-STABLE support the Intel=20 > PWLA8391GT NIC? >=20 > > -----Original Message----- > > From: Bj=F6rn K=F6nig [mailto:bkoenig@cs.tu-berlin.de]=20 > > Sent: maandag 19 juni 2006 8:11 > > To: Mark > > Cc: 'FreeBSD-Questions Questions' > > Subject: Re: Does FreeBSD 4.11-STABLE support the Intel=20 > > PWLA8391GT NIC? > >=20 > >=20 > > > Mark schrieb: > > > A similar question as before: does FreeBSD 4.11-STABLE=20 > > > support the Intel PWLA8391GT NIC card? > >=20 > > According to Google this card is also known as Intel=20 > > PRO/1000. It should work with the em(4) driver. Hmm, I tried it, but the card is not recognized. :( The kernel was compiled (and installed) with: device em # Intel PRO/1000 adapter Gigabit Ethernet Card Needless to say, I'm disappointed. :( Any way to solve this? Thanks, - Mark From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 17:00: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 CE40D16A484 for ; Wed, 21 Jun 2006 17:00:39 +0000 (UTC) (envelope-from rapopp@eastcentral.edu) Received: from ecmail.eastcentral.edu (ecmail.eastcentral.edu [198.209.216.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0210D43D5C for ; Wed, 21 Jun 2006 17:00:32 +0000 (GMT) (envelope-from rapopp@eastcentral.edu) Received: from [10.15.0.132] ([10.15.0.132]) by ecmail.eastcentral.edu (8.13.1/8.12.9) with ESMTP id k5LH0V0T010613 for ; Wed, 21 Jun 2006 12:00:32 -0500 From: "Reuben A. Popp" Organization: East Central College To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 12:03:09 -0500 User-Agent: KMail/1.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606211203.10187.rapopp@eastcentral.edu> Subject: Mounting an old drive/filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rapopp@eastcentral.edu List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:00:39 -0000 Hello all, We have an old dusty DECstation (last bootup circa 1993) that is finally being removed from our server room after we do one final dump of the data. If I were to remove its drives to attatch to a modern scsi card, could I still mount them under FreeBSD? I'm pretty sure Ultrix was UFS, but I'm not 100% positive. Anyone have any suggestions or ideas? Thanks in advance Reuben A. Popp Information Technology Department East Central College 1+ 636 583-5195 ext 2480 From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 17:15: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 916DC16A49E for ; Wed, 21 Jun 2006 17:15:59 +0000 (UTC) (envelope-from richard@firebadger.net) Received: from mail.firebadger.net (82-69-4-157.dsl.in-addr.zen.co.uk [82.69.4.157]) by mx1.FreeBSD.org (Postfix) with SMTP id D799843D46 for ; Wed, 21 Jun 2006 17:15:56 +0000 (GMT) (envelope-from richard@firebadger.net) Received: (qmail 34614 invoked by uid 1011); 21 Jun 2006 17:17:31 -0000 Received: from 192.168.1.10 by brian.firebadger.net (envelope-from , uid 1009) with qmail-scanner-1.25-st-qms (clamdscan: 0.88.1/1449. spamassassin: 3.1.1. perlscan: 1.25-st-qms. Clear:RC:0(192.168.1.10):SA:0(-3.7/5.0):. Processed in 0.634415 secs); 21 Jun 2006 17:17:31 -0000 X-Spam-Status: No, hits=-3.7 required=5.0 X-Antivirus-FIREBADGER-Mail-From: richard@firebadger.net via brian.firebadger.net X-Antivirus-FIREBADGER: 1.25-st-qms (Clear:RC:0(192.168.1.10):SA:0(-3.7/5.0):. Processed in 0.634415 secs Process 34606) Received: from unknown (HELO ?192.168.1.10?) (richard@firebadger.net@192.168.1.10) by mail.firebadger.net with SMTP; 21 Jun 2006 17:17:30 -0000 Message-ID: <44997EBD.4030909@firebadger.net> Date: Wed, 21 Jun 2006 18:15:41 +0100 From: Richard Collyer User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Easiest way to remove php5-extensions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 17:15:59 -0000 Hello, I'm moving from mod_php5 to php5 and need to remove php5-extensions in order for pkg remove to work. What is the easiest way to do this...can I just cd /php5-exten.. dir and make deinstall or will i have to go through them all one by one (I have a lot installed). I tried this last time and had to do one at a time which was an ball ache. So does anyone have any better suggestions? Cheers Richard From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 17:20: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 6F03C16A482 for ; Wed, 21 Jun 2006 17:20:21 +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 AE54943D45 for ; Wed, 21 Jun 2006 17:20:20 +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, 21 Jun 2006 13:20:19 -0400 id 00056412.44997FD3.0000762D Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 21 Jun 2006 13:11:48 -0400 Date: Wed, 21 Jun 2006 13:20:18 -0400 From: Bill Moran To: Richard Collyer Message-Id: <20060621132018.e84ea655.wmoran@collaborativefusion.com> In-Reply-To: <44997EBD.4030909@firebadger.net> References: <44997EBD.4030909@firebadger.net> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.6 (GTK+ 2.8.19; 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: Easiest way to remove php5-extensions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 17:20:21 -0000 In response to Richard Collyer : > Hello, > > I'm moving from mod_php5 to php5 and need to remove php5-extensions in > order for pkg remove to work. > > What is the easiest way to do this...can I just cd /php5-exten.. dir and > make deinstall or will i have to go through them all one by one (I have > a lot installed). The pkg_cutleaves port will simplify things for you. -- Bill Moran Collaborative Fusion Inc. **************************************************************** IMPORTANT: This message contains confidential information and is intended only for the individual named. If the reader of this message is not an intended recipient (or the individual responsible for the delivery of this message to an intended recipient), please be advised that any re-use, dissemination, distribution or copying of this message is prohibited. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. **************************************************************** From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 17:20: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 78DEE16A474 for ; Wed, 21 Jun 2006 17:20:59 +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 38FA043D49 for ; Wed, 21 Jun 2006 17:20:59 +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 1Ft6Nu-00071S-EO; Wed, 21 Jun 2006 11:20:58 -0600 In-Reply-To: <200606211659.k5LGxvQV004033@asarian-host.net> References: <200606211659.k5LGxvQV004033@asarian-host.net> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: quoted-printable From: "Chad Leigh -- Shire.Net LLC" Date: Wed, 21 Jun 2006 11:20:57 -0600 To: Mark X-Mailer: Apple Mail (2.750) 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 Cc: 'FreeBSD-Questions Questions' Subject: Re: Does FreeBSD 4.11-STABLE support the Intel PWLA8391GT NIC? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 17:20:59 -0000 On Jun 21, 2006, at 4:59 PM, Mark wrote: > >> -----Original Message----- >> From: Mark [mailto:admin@asarian-host.net] >> Sent: dinsdag 20 juni 2006 2:53 >> To: 'FreeBSD-Questions Questions' >> Subject: RE: Does FreeBSD 4.11-STABLE support the Intel >> PWLA8391GT NIC? >> >>> -----Original Message----- >>> From: Bj=F6rn K=F6nig [mailto:bkoenig@cs.tu-berlin.de] >>> Sent: maandag 19 juni 2006 8:11 >>> To: Mark >>> Cc: 'FreeBSD-Questions Questions' >>> Subject: Re: Does FreeBSD 4.11-STABLE support the Intel >>> PWLA8391GT NIC? >>> >>> >>>> Mark schrieb: >>>> A similar question as before: does FreeBSD 4.11-STABLE >>>> support the Intel PWLA8391GT NIC card? >>> >>> According to Google this card is also known as Intel >>> PRO/1000. It should work with the em(4) driver. > > Hmm, I tried it, but the card is not recognized. :( The kernel was =20 > compiled > (and installed) with: > > device em # Intel PRO/1000 adapter Gigabit Ethernet Card > > Needless to say, I'm disappointed. :( Any way to solve this? > I am not a guru at this, but look at the pci ids etc for this in the =20 boot dmesg and then look at the source for this driver and see if =20 some pci ids or something need to be added. Again, I am not an =20 expert at this but did do something similar once for a raid =20 controller to backport it to an earlier version of FBSD some time ago =20= and did the same sort of thing on Solaris 10 to get the LSI SATA-4 =20 150 raid card to work with the amr driver. Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 17:33: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 0DF1416A479 for ; Wed, 21 Jun 2006 17:33:07 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 326B143D4C for ; Wed, 21 Jun 2006 17:33:06 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5LHWwVV014554; Wed, 21 Jun 2006 13:33:04 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id 86171240A4; Wed, 21 Jun 2006 13:32:53 -0400 (EDT) Date: Wed, 21 Jun 2006 13:32:53 -0400 From: "Michael P. Soulier" To: Nikolas Britton Message-ID: <20060621173253.GD7596@tigger.digitaltorque.ca> Mail-Followup-To: Nikolas Britton , Andy Reitz , freebsd-questions@freebsd.org References: <20060620233551.GG11625@tigger.digitaltorque.ca> <20060621011340.GI11625@tigger.digitaltorque.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="IU5/I01NYhRvwH70" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Cc: Andy Reitz , freebsd-questions@freebsd.org Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 17:33:07 -0000 --IU5/I01NYhRvwH70 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 21/06/06 Nikolas Britton said: > IA64 =3D Itanium, Itanium2 =3D FreeBSD/ia64 > EM64T =3D Intel CPUs with AMD64 (P4, Xeon, etc.) =3D FreeBSD/amd64 > AMD64 =3D Opteron, Athlon 64, Turion 64, Sempron 64 =3D FreeBSD/amd64 >=20 > http://en.wikipedia.org/wiki/EM64T >=20 > Why do you need to run in 64-bit mode? I'm asking that myself. I'd like to do comparisons with and without 64-bit support.=20 Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --IU5/I01NYhRvwH70 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEmYLFKGqCc1vIvggRAss6AJ9CLv8dRu4qZbMAdkY+ODHN1XqD3gCgioE5 wueNHcWh4JFBkuUHum32xxk= =4W5a -----END PGP SIGNATURE----- --IU5/I01NYhRvwH70-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 17:40: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 9AFC816A47C for ; Wed, 21 Jun 2006 17:40:08 +0000 (UTC) (envelope-from bcook@poklib.org) Received: from c.mx.poklib.org (c.mx.poklib.org [64.72.87.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF74643D48 for ; Wed, 21 Jun 2006 17:40:07 +0000 (GMT) (envelope-from bcook@poklib.org) Received: from [192.168.1.249] (helo=mail.poklib.org) by c.mx.poklib.org with esmtps (TLSv1:AES256-SHA:256) (Exim 4.60; FreeBSD) (envelope-from ) id 1Ft6gQ-0003o3-Bf ; Wed, 21 Jun 2006 13:40:06 -0400 Received: from [192.168.1.218] by mail.poklib.org with esmtp (Exim 4.60; FreeBSD) (envelope-from ) id 1Ft6gP-000N6m-OU ; Wed, 21 Jun 2006 13:40:05 -0400 Message-ID: <44998475.8080707@poklib.org> Date: Wed, 21 Jun 2006 13:40:05 -0400 From: "B. Cook" Organization: Network Administrator - Adriance Memorial Library User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: RW References: <44980305.7010806@poklib.org> <200606202150.22728.list-freebsd-2004@morbius.sent.com> In-Reply-To: <200606202150.22728.list-freebsd-2004@morbius.sent.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-RcvHost: [192.168.1.218] X-RcvFor: X-Auth-Id: X-AntiVirus: No Virus Found X-MIME-Character-set: ISO-8859-1 Cc: freebsd-questions@freebsd.org Subject: Re: rcorder example? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 17:40:08 -0000 RW wrote: > On Tuesday 20 June 2006 15:15, B. Cook wrote: >> Hello all, >> >> I'm looking at what I think is the right answer.. but can't make sense >> of it.. >> >> basically I have a couple of mailservers that run exim and dnscache, all >> being called out of daemontools. >> >> but I can't seem to figure out how to make svscan start first.. > > I don't see what you are getting at here, if exim and dnscache are started by > svscan, then by defininition svscan *is* starting first. > _______________________________________________ > 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" Yes svscan starts dnscache and exim, but many services depend on dns (dnscache is setup on loopback) so I have to wait (for up to 3 minutes) for dns timeouts to occour so that they boot can continue, and finally get to starting svscan (quite low in the dictionary order of things) So I'm looking for how I can control the order that things start up in. I've since changed the order by prepending 000, 010, 020, etc.. to startup script, but I just thought there was a way to manipulate it and not disrupt installs and plist related startup script. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 17:58: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 2B61A16A479 for ; Wed, 21 Jun 2006 17:58:25 +0000 (UTC) (envelope-from jhorne@dfwlp.com) Received: from zeus.int.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0DE443D49 for ; Wed, 21 Jun 2006 17:58:24 +0000 (GMT) (envelope-from jhorne@dfwlp.com) Received: from athena.int.dfwlp.com (athena.int.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.int.dfwlp.com (8.13.6/8.13.6) with ESMTP id k5LHwNi3080336 for ; Wed, 21 Jun 2006 12:58:23 -0500 (CDT) (envelope-from jhorne@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 12:58:22 -0500 User-Agent: KMail/1.9.3 References: <44997EBD.4030909@firebadger.net> <20060621132018.e84ea655.wmoran@collaborativefusion.com> In-Reply-To: <20060621132018.e84ea655.wmoran@collaborativefusion.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606211258.23041.jhorne@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on zeus.int.dfwlp.com Subject: Re: Easiest way to remove php5-extensions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 17:58:25 -0000 On Wednesday 21 June 2006 12:20, Bill Moran wrote: > In response to Richard Collyer : > > Hello, > > > > I'm moving from mod_php5 to php5 and need to remove php5-extensions in > > order for pkg remove to work. > > > > What is the easiest way to do this...can I just cd /php5-exten.. dir and > > make deinstall or will i have to go through them all one by one (I have > > a lot installed). > > The pkg_cutleaves port will simplify things for you. i did something similar recently, and 'pkg_delete -r php5-extensions' will make them all go *poof*. cheers, jonathan From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 18: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 BB2A916A479 for ; Wed, 21 Jun 2006 18:18:36 +0000 (UTC) (envelope-from freebsd-01@jeremykister.com) Received: from qmail-01.nntx.net (qmail-01.nntx.net [204.9.96.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 7552A43D73 for ; Wed, 21 Jun 2006 18:18:33 +0000 (GMT) (envelope-from freebsd-01@jeremykister.com) Received: (qmail 15973 invoked by uid 1010); 21 Jun 2006 14:18:32 -0400 Received: by simscan 1.2.0 ppid: 15961, pid: 15972, t: 0.0586s scanners:none Received: from unknown (HELO ?64.115.0.169?) (smtpauth-01@jeremykister.com@64.115.0.169) by qmail-01.nntx.net with SMTP; 21 Jun 2006 14:18:32 -0400 Message-ID: <44998D73.10907@jeremykister.com> Date: Wed, 21 Jun 2006 14:18:27 -0400 From: Jeremy Kister User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Crashing with HP/Compaq DL360 G3 [paging kernel developer] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 18:18:36 -0000 On 6/21/2006 6:01 AM, Ted Mittelstaedt wrote: > Did you install the Broadcom patch? We did apply kern/96806 to one of the four systems, which we found in our massive google search to try to fix the problem. The machine rebooted about 6 hours after having the new code installed, so we undid it. -- Jeremy Kister http://jeremy.kister.net./ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 18:18: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 3B11A16A474 for ; Wed, 21 Jun 2006 18:18:55 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B4943D53 for ; Wed, 21 Jun 2006 18:18:53 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so210945nzi for ; Wed, 21 Jun 2006 11:18: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:content-transfer-encoding:content-disposition:references; b=aFh7neZlWVnfAA9V4dgG6/ga6n319urPMYclT4jKpZQf8xxJxviuvAwpxP9Vu8nwjEQUIBuxdgh0DpDSRNJ9f0uaEGJ3XgxofCuSI37y4jI5Qm+dXWRoOCA6Kn9RE0UHRh9zfezTGbhwG6lbLKwBS1ZHULg//afsvVTWySpoZ7Y= Received: by 10.36.220.10 with SMTP id s10mr785748nzg; Wed, 21 Jun 2006 11:18:52 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Wed, 21 Jun 2006 11:18:52 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 11:18:52 -0700 From: "Nikolas Britton" To: "Ted Mittelstaedt" 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: <20060620060845.U1114@ganymede.hub.org> Cc: "Marc G. Fournier" , freebsd-questions@freebsd.org Subject: Re: Are hardware vendors starting to bail 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, 21 Jun 2006 18:18:55 -0000 On 6/21/06, Ted Mittelstaedt wrote: > > >-----Original Message----- > >From: owner-freebsd-questions@freebsd.org > >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marc > >G. Fournier > >Sent: Tuesday, June 20, 2006 2:24 AM > >To: freebsd-questions@freebsd.org > >Subject: Are hardware vendors starting to bail on FreeBSD ... ? > > [deleted] > > > > What can we, as a community, due to improve this situation? > > > > Simple. If you want to run RAID-5 then purchase the HiPoint card or > the 3ware card, both of them come with manufacturer-written drivers. > 3ware is really great, they have a developer with committ rights and > they just stick their driver right into the FreeBSD source repository. > s/HiPoint/HighPoint/ a.k.a HighPoint Technologies, Inc. or simply HPT. I have two HighPoint controllers and like them both: FreeBSD 6.1/i386 + HPT2220 + 8x250GB. FreeBSD 6.1-STABLE/amd64 + HPT1820A + 8x300GB. Areca also supports FreeBSD: $ man arcmsr (FreeBSD 5.4+) http://www.areca.com.tw My next controller will probably be from Areca because they support RAID level 6 and have multi-lane connectors... maybe ARC-1130ML + 12x500GB. Does anyone know what SAS (Serial Attached SCSI) RAID controllers are supported by FreeBSD?, they can use SATA drives correct? -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 18:38: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 0254B16A479 for ; Wed, 21 Jun 2006 18:38:17 +0000 (UTC) (envelope-from awswartz@acsalaska.net) Received: from mercury.acsalaska.net (mercury.acsalaska.net [209.112.173.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51D8943D49 for ; Wed, 21 Jun 2006 18:38:16 +0000 (GMT) (envelope-from awswartz@acsalaska.net) Received: from [127.0.0.1] (209-193-10-105-cdsl-rb1.nwc.acsalaska.net [209.193.10.105]) by mercury.acsalaska.net (8.13.6/8.13.6) with ESMTP id k5LIc71V066123 for ; Wed, 21 Jun 2006 10:38:14 -0800 (AKDT) (envelope-from awswartz@acsalaska.net) Message-ID: <4499920D.8060802@acsalaska.net> Date: Wed, 21 Jun 2006 10:38:05 -0800 From: Andrew Swartz User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: multipart/mixed; boundary="------------020003030105060108060207" X-ACS-Spam-Status: no X-ACS-Spam-Score: 2 (xx) X-ACS-Spam-Tests: ACS_BOGUS_LOCALHOST X-ACS-Scanned-By: MD 2.56; SA 3.1.3; spamdefang 1.117 Subject: Sendmail + Cyrus + Procmail(?) + SpamAssassin X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: awswartz@acsalaska.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:38:17 -0000 This is a multi-part message in MIME format. --------------020003030105060108060207 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I don't know if anyone is still interested, but I found a solution to this problem. My mail goes Sendmail-->Procmail-->CyrusIMAP. There are numerous discussions of how to configure the Sendmail-->Procmail portion, so I'll skip that. The problem lies in the Procmail-->Cyrus part. Sendmail and/or Procmail insists on adding a "From" line to the top of the message, and this causes an error when trying to pass the message from the procmailrc file to /usr/lib/cyrus-imapd/deliver. So I wrote a little C-program that the email can be piped through (removing the "From" line); the resulting message is passed to /usr/lib/cyrus-imapd/deliver. Here is my ~/.promailrc file. Note that all mail is first delivered to the user's CyrusIMAP box, then it goes through the procmail checks. This is because if I don't do this, then all mail that fails all the conditions (recipes) gets shoved into /usr/local/mail/~, which is basically a black hole if you are using Cyrus. # This file is: ~/.procmailrc # # REQUIREMENTS: # 1) cyrus-imap (specifically, "/usr/lib/cyrus-imapd/deliver"). # 2) the C-program "rmfromln" in a reachable place (like /usr/local/bin). # rmfromln: the email argument is piped in; if the email message # has been appended with starting "From" line, then this line is # removed, otherwise the message remains unchanged. LOGFILE=/home/r2/procmail.log ############################################################################### # This is the default action; it delivers the email to the imap mailbox, # and thus this happens regardless of the success|failure of the recipes. # RATIONAL: every email MUST have a "To" field, otherwise sendmail would # not have passed it to us!? :0 c * ^To:. | rmfromln | /usr/lib/cyrus-imapd/deliver $LOGNAME ############################################################################### :0 * ^Subject:.*(callalert|CALLALERT) * ^Subject:.*(on|ON) | /root/scripts/callalert on :0 * ^Subject:.*(callalert|CALLALERT) * ^Subject:.*(off|OFF) | /root/scripts/callalert off ALSO: I've attached the C-program "rmfromln" (and it's source code) which removes the "From" line (if it is present). -Andy Swartz --------------020003030105060108060207 Content-Type: application/octet-stream; name="rmfromln" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="rmfromln" f0VMRgEBAQAAAAAAAAAAAAIAAwABAAAAsIQECDQAAAAkIQAAAAAAADQAIAAGACgAIgAfAAYA AAA0AAAANIAECDSABAjAAAAAwAAAAAUAAAAEAAAAAwAAAPQAAAD0gAQI9IAECBMAAAATAAAA BAAAAAEAAAABAAAAAAAAAACABAgAgAQI2AcAANgHAAAFAAAAABAAAAEAAADYBwAA2JcECNiX BAgkAQAAMAEAAAYAAAAAEAAAAgAAAOQHAADklwQI5JcECMgAAADIAAAABgAAAAQAAAAEAAAA CAEAAAiBBAgIgQQIIAAAACAAAAAEAAAABAAAAC9saWIvbGQtbGludXguc28uMgAABAAAABAA AAABAAAAR05VAAAAAAACAAAAAgAAAAUAAAADAAAAEAAAAA8AAAAMAAAADgAAAAAAAAAAAAAA AQAAAAIAAAADAAAAAAAAAAAAAAAGAAAABwAAAAUAAAAJAAAACgAAAAsAAAAIAAAABAAAAA0A AAAAAAAAAAAAAAAAAAAAAAAAMwAAAACEBAjmAAAAEgAAADsAAAAQhAQI4QAAABIAAAAaAAAA IIQECG0AAAASAAAAEgAAADCEBAioAAAAEgAAAEcAAABAhAQI4QAAABIAAAALAAAA/JgECAQA AAARABYALAAAAFCEBAjUAAAAEgAAAEEAAABghAQI8QAAABIAAABiAAAAcIQECPsAAAASAAAA TgAAAICEBAjZAAAAEgAAAB8AAACQhAQI3wIAABIAAAB0AAAAoIQECLkAAAASAAAAJgAAAACZ BAgEAAAAEQAWAFMAAADIhwQIBAAAABEADgB5AAAAAAAAAAAAAAAgAAAAAGxpYmMuc28uNgBz dGRvdXQAdG1wZmlsZQBmZW9mAGNhbGxvYwBzdGRpbgBzdHJzdHIAZ2V0Y2hhcgBmZ2V0YwBm cHV0YwByZXdpbmQAZXhpdABfSU9fc3RkaW5fdXNlZABfX2xpYmNfc3RhcnRfbWFpbgBmcmVl AF9fZ21vbl9zdGFydF9fAEdMSUJDXzIuMQBHTElCQ18yLjAAAAACAAIAAgADAAIAAgACAAIA AgACAAIAAgACAAEAAAABAAIAAQAAABAAAAAAAAAAEWlpDQAAAwCIAAAAEAAAABBpaQ0AAAIA kgAAAAAAAAD4mAQIBg8AAPyYBAgFBgAAAJkECAUNAADMmAQIBwEAANCYBAgHAgAA1JgECAcD AADYmAQIBwQAANyYBAgHBQAA4JgECAcHAADkmAQIBwgAAOiYBAgHCQAA7JgECAcKAADwmAQI BwsAAPSYBAgHDAAAVYnlg+wI6PEAAADoTAEAAOiXAwAAycMA/zXEmAQI/yXImAQIAAAAAP8l zJgECGgAAAAA6eD/////JdCYBAhoCAAAAOnQ/////yXUmAQIaBAAAADpwP////8l2JgECGgY AAAA6bD/////JdyYBAhoIAAAAOmg/////yXgmAQIaCgAAADpkP////8l5JgECGgwAAAA6YD/ ////JeiYBAhoOAAAAOlw/////yXsmAQIaEAAAADpYP////8l8JgECGhIAAAA6VD/////JfSY BAhoUAAAAOlA////Me1eieGD5PBQVFJoUIcECGgghwQIUVZoYIUECOif////9JCQVYnlU1Do AAAAAFuBw+ITAACLgzgAAACFwHQC/9CLXfzJw5CQVYnlg+wIgD0EmQQIAHUpoeCXBAiLEIXS dBeJ9oPABKPglwQI/9Kh4JcECIsQhdJ168YFBJkECAHJw4n2VYnlg+wIobyYBAiFwHQZuAAA AACFwHQQg+wMaLyYBAjop3r794PEEMnDkJBVieVTg+wUg+TwuAAAAAApxOi6/v//iUXsx0X0 AAAAAIPsDP917Oi1/v//g8QQg+wM/zUAmQQI6HT+//+DxBCIRfuKRfuEwHQigH37CnUC6xqD 7Aj/dewPvkX7UOif/v//g8QQjUX0/wDrw4N99AB1CoPsDGoA6KX+//+D7Aj/dexqCuh4/v// g8QQjUX0/wCD7AhqAf919OiT/v//g8QQiUXog+wM/3Xs6DL+//+DxBDHRfAAAAAAi0XwO0X0 fALrH4tF8Itd6AHDg+wM/3Xs6Nv9//+DxBCIA41F8P8A69eD7Az/NQCZBAjo0f3//4PEEIXA dD3HRfAAAAAAi0XwO0X0fALrIoPsCP81/JgECItF8ANF6A++AFDo4f3//4PEEI1F8P8A69SD 7AxqAOjt/f//g+wIaMyHBAj/dejorf3//4PEEIXAdTPHRfAAAAAAi0XwO0X0fALrIoPsCP81 /JgECItF8ANF6A++AFDojf3//4PEEI1F8P8A69ToHv3//4hF+4B9+/91Ausgg+wI/zX8mAQI D75F+1DoYP3//4PEEOj4/P//iEX769iD7Az/dejoiP3//4PEEItd/MnDVYnlVlPorvz//7jY lwQILdiXBAjB+AIx2znDcw+JxpD/FJ3YlwQIQznzcvRbXsnDVYnlU1C42JcECC3YlwQIwfgC hcCNWP91C4td/MnpNgAAAIn2/xSd2JcECInaS4XSdfLr5VWJ5VNSoayYBAiD+P+7rJgECHQM g+sE/9CLA4P4/3X0WFvJw1WJ5VNS6AAAAABbgcMOEQAA6Dr9//+LXfzJwwADAAAAAQACAEZy b20AAAAAAAAAAAAAAAAAAAAAuJgECAEAAAABAAAADAAAANiDBAgNAAAAqIcECAQAAAAogQQI BQAAAHyCBAgGAAAAfIEECAoAAACcAAAACwAAABAAAAAVAAAAAAAAAAMAAADAmAQIAgAAAFgA AAAUAAAAEQAAABcAAACAgwQIEQAAAGiDBAgSAAAAGAAAABMAAAAIAAAA/v//bziDBAj///9v AQAAAPD//28YgwQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAA/////wAAAAD/////AAAAAAAAAADklwQIAAAAAAAAAAAGhAQIFoQECCaEBAg2hAQI RoQECFaEBAhmhAQIdoQECIaEBAiWhAQIpoQECAAAAAAAR0NDOiAoR05VKSAzLjIuMiAyMDAz MDIyMiAoUmVkIEhhdCBMaW51eCAzLjIuMi01KQAAR0NDOiAoR05VKSAzLjIuMiAyMDAzMDIy MiAoUmVkIEhhdCBMaW51eCAzLjIuMi01KQAAR0NDOiAoR05VKSAzLjIuMiAyMDAzMDIyMiAo UmVkIEhhdCBMaW51eCAzLjIuMi01KQAAR0NDOiAoR05VKSAzLjIuMiAyMDAzMDIyMiAoUmVk IEhhdCBMaW51eCAzLjIuMi01KQAAR0NDOiAoR05VKSAzLjIuMiAyMDAzMDIyMiAoUmVkIEhh dCBMaW51eCAzLjIuMi01KQAAR0NDOiAoR05VKSAzLjIuMiAyMDAzMDIyMiAoUmVkIEhhdCBM aW51eCAzLjIuMi01KQAAABwAAAACAAAAAAAEAAAAAACwhAQIJAAAAAAAAAAAAAAALAAAAAIA JAkAAAQAAAAAAKiHBAgUAAAA2IMECAwAAADUhAQIIwAAAAAAAAAAAAAAJAAAAAIA3gkAAAQA AAAAAL6HBAgFAAAA7YMECAIAAAAAAAAAAAAAACEAAAACAIgAAACcCAAAhAgAAF9JT19zdGRp bl91c2VkAAAAAACEAAAAAgAAAAAABAEAAAAAsIQECNSEBAguLi9zeXNkZXBzL2kzODYvZWxm L3N0YXJ0LlMAL3Vzci9zcmMvYnVpbGQvMzI0OTU0LWkzODYvQlVJTEQvZ2xpYmMtMi4zLjIt MjAwMzA0MDIwNDMyL2NzdQBHTlUgQVMgMi4xMy45MC4wLjE4AAGAmAgAAAIAFAAAAAQBbwAA ANSEBAjUhAQILwEAAJ8BAAAUBAAAAQI8AAAACAKNA84AAAACjTwAAAACIwAABEwAAABTAAAA BUwAAAABAAZmAwAABAcHaW50AAQFCIUAAAAEA04JjQMAAARiAYUAAAAKVgQAAANMYgAAAAp7 AwAAA02MAAAAAAZmAwAABAcEnAAAAJwAAAAFTAAAAAMABqwAAAABBgLIAAAACANPA3wCAAAD SVMAAAACIwAD1AAAAANOWgAAAAIjBAACAwEAAAwFHgsUAQAAAooDAQAAA8YEAAAFHNAAAAAC IwAL1wUAAANPowAAAAP3BQAABR3pAAAAAiMEAAY3AwAABAUCOgEAABAFIwtfBQAAAos6AQAA A8YEAAAFIRIBAAACIwAD9wUAAAUi6QAAAAIjCAAGMgMAAAgFDIYBAAAEBiYNiAUAAAANRgIA AAEN+gQAAAINUQUAAAMNJQIAAAQNnwIAAAUN3QEAAAYNFAAAAAcNaAAAAAgNwAUAAAkADJsB AAAEBjgNhwQAAAENIAYAAAIADg8CAABAAwAAFAZCC3wGAAAGWA8CAAADQQQAAAZqpwEAAAIj AAv/BQAABl0TBAAAAwAEAAAGa8ABAAACIwQLnwMAAAZlPQQAAAOHAQAABmzZAQAAAiMIA44G AAAGbecDAAACIwwDGQYAAAZuTwQAAAIjEAAPBBUCAAAQUwIAAAFTAAAAEVMCAAARZAMAABHn AwAAEekDAAAR+wMAABHpAwAAEQEEAAARDQQAAAtqAQAABNWFAAAAAA8EWQIAAA5kAwAA9AIA ADwGPwMBAwAABnVbBAAAAiMAA/YDAAAGdmEEAAACIwQDvgAAAAZ4UwAAAAIjCANeBgAABnps BAAAAiMMAwkCAAAGe2wEAAACIxALUgYAAAZIcgQAAAPIAAAABn2rAgAAAiMUCwIBAAAGS6sE AAADaQUAAAZ+xAIAAAIjGAtBAAAABk7GBAAAA+sDAAAGf90CAAACIxwLzAQAAAZP3AQAAAM2 BgAABoD2AgAAAiMgA2oGAAAGhFMAAAACIyQD8AAAAAaFUwAAAAIjKAMQAwAABoZTAAAAAiMs A7MCAAAGh1MAAAACIzADzQIAAAaKUwAAAAIjNAOOBgAABoznAwAAAiM4AA8EagMAAA7nAwAA EQUAACQGQANTAwAABpMHBAAAAiMAA70DAAAGlAcEAAACIwQDtQMAAAaYUwAAAAIjCANVAgAA BpxTAAAAAiMMA+sEAAAGoFMAAAACIxADJgEAAAai7gQAAAIjFAP3BQAABqPpAAAAAiMYA0AG AAAGp08EAAACIyAAEgQPBO8DAAAT9AMAAAajAAAAAQgPBOkDAAAPBAcEAAAPBPQDAAAPBEcC AAAPBBkEAAAQPQQAAAFTAAAAEecDAAAR6QMAABHpAwAAEQcEAAARBwQAAAAPBEMEAAAUTwQA AAER5wMAAAAPBJsBAAAV8wEAAAEPBFUEAAAPBGcEAAATnAAAAA8EnAAAAA8EeAQAABCrBAAA AVMAAAARUwIAABFkAwAAEfsDAAAR6QMAABEBBAAAEQ0EAAARUwAAABFTAAAAAA8EsQQAABDG BAAAAWIAAAARUwIAABH0AwAAAA8EzAQAABDcBAAAAVMAAAARUwIAAAAPBOIEAAAU7gQAAAER UwIAAAAPBOkAAAAOKwUAAIMAAAAIBq0D3AAAAAauRwIAAAIjAANDAQAABq9TAgAAAiMEA44G AAAGsCsFAAACIwgABDoFAABqAwAAFkwAAAAAAl8FAAAsBTQDOQIAAAUy9AQAAAIjAAOOBgAA BTNqAwAAAiMIAAh+BQAALAU1CjkCAAAFL/QEAAAKyQMAAAU0OgUAAAAL6wIAAAIi9AMAAAty AgAAAiOUBQAABpAAAAACBwuXAQAAAiSFAAAAC40CAAACJbEFAAAGYQMAAAQHC38FAAACKMMF AAAGpQAAAAEGC0gGAAACKfQDAAALtAYAAAIq4AUAAAYgAwAAAgULggMAAAIrlAUAAAs3AAAA AixTAAAAC9gCAAACLYUAAAALRwUAAAIyOgEAAAsTAgAAAjMeBgAABlwDAAAIBwuEAgAAAjk6 AQAAC5QDAAACOh4GAAALKgMAAAKDHgYAAAtzAwAAAoSFAAAAC+MFAAAChYUAAAALPgIAAAKG sQUAAAt1BAAAAoceBgAAC7MEAAACiIUAAAALrAUAAAKJhQAAAAtqAgAAAoxTAAAAC5YCAAAC jSUAAAALBwUAAAKOAwEAAAtNBAAAAo+xBQAAC10AAAACkB4GAAALHgIAAAKRhQAAAAsLAAAA ApIDAQAAC7EAAAACk4UAAAALZwQAAAKUAwEAAAstAAAAApZTAAAAC7YFAAAClwMBAAAL4wIA AAKYUwAAAAvrBQAAAptTAAAAC8MCAAACnlMAAAALZQEAAAKhAwEAAAtaAQAAAqYDAQAAC5cE AAACpzoBAAALkwUAAAKqsQUAAAukBAAAAqseBgAACzYBAAACrrEFAAALSwEAAAKvHgYAAAsc AQAAArRTAAAAC6sGAAACtRIBAAALvAQAAAK2kAcAAA8EJQYAAAuVBgAAArdsBAAAC1wEAAAC ulMAAAALOwUAAAK9hQAAAAl/BAAABEUBAwEAAAt1BQAABR7IAAAAC3EBAAAFIwoBAAALIwUA AAZh5AcAAA8E6gcAABAECAAAAVMAAAARYQQAABEECAAAEQ0EAAAADwQKCAAADwRhBAAAC9QD AAAGZBsIAAAPBCEIAAAQNggAAAFTAAAAETYIAAARYQQAAAAPBOcDAAALfQEAAAaxRwgAAA8E 9AQAAAtSAAAABTVfBQAAC+UAAAAFN+AFAAALAAAAAAU4UwAAAAufBgAABTmUBQAAC6AFAAAF OoUAAAAX3AQAAAEZlggAAAEFA8iHBAgTUwAAAAC2AAAAAgAYAQAABAE6AQAAL3Vzci9zcmMv YnVpbGQvMzI0OTU0LWkzODYvQlVJTEQvZ2xpYmMtMi4zLjItMjAwMzA0MDIwNDMyL2J1aWxk LWkzODYtbGludXgvY3N1L2NydGkuUwAvdXNyL3NyYy9idWlsZC8zMjQ5NTQtaTM4Ni9CVUlM RC9nbGliYy0yLjMuMi0yMDAzMDQwMjA0MzIvY3N1AEdOVSBBUyAyLjEzLjkwLjAuMTgAAYC2 AAAAAgAoAQAABAHwAQAAL3Vzci9zcmMvYnVpbGQvMzI0OTU0LWkzODYvQlVJTEQvZ2xpYmMt Mi4zLjItMjAwMzA0MDIwNDMyL2J1aWxkLWkzODYtbGludXgvY3N1L2NydG4uUwAvdXNyL3Ny Yy9idWlsZC8zMjQ5NTQtaTM4Ni9CVUlMRC9nbGliYy0yLjMuMi0yMDAzMDQwMjA0MzIvY3N1 AEdOVSBBUyAyLjEzLjkwLjAuMTgAAYABEQAQBhEBEgEDCBsIJQgTBQAAAAERARAGEgERAQMO Gw4lDhMLAAACEwEBEwsLOgs7CwAAAw0AAw46CzsLSRM4CgAABAEBARNJEwAABSEASRMvCwAA BiQAAw4LCz4LAAAHJAADCAsLPgsAAAgXAQETCws6CzsLAAAJFgADDjoLOwVJEwAACg0AAw46 CzsLSRMAAAsWAAMOOgs7C0kTAAAMBAEBEwsLOgs7CwAADSgAAw4cCwAADhMBARMDDgsLOgs7 CwAADw8ACwtJEwAAEBUBARMnDEkTAAARBQBJEwAAEg8ACwsAABMmAEkTAAAUFQEBEycMAAAV EwADDjwMAAAWIQBJEwAAFzQAAw46CzsLSRM/DAIKAAAAAREAEAYDCBsIJQgTBQAAAAERABAG AwgbCCUIEwUAAABRAAAAAgAvAAAAAQH7DgoAAQEBAQAAAAEuLi9zeXNkZXBzL2kzODYvZWxm AABzdGFydC5TAAEAAAAABQKwhAQIAy4BMB4xOiIfIVZXHh9ZVwIDAAEBFgAAAAIAEAAAAAEB +w4KAAEBAQEAAAABAADHAAAAAgDBAAAAAQH7DgoAAQEBAQAAAAEuLi9zeXNkZXBzL2dlbmVy aWMvYml0cwAuLi93Y3NtYnMAL3Vzci9saWIvZ2NjLWxpYi9pMzg2LXJlZGhhdC1saW51eC8z LjIuMi9pbmNsdWRlAC4uL3N5c2RlcHMvZ251AC4uL2ljb252AABpbml0LmMAAAAAdHlwZXMu aAABAAB3Y2hhci5oAAIAAHN0ZGRlZi5oAAMAAF9HX2NvbmZpZy5oAAQAAGdjb252LmgABQAA ALIAAAACAGkAAAABAfsOCgABAQEBAAAAAS91c3Ivc3JjL2J1aWxkLzMyNDk1NC1pMzg2L0JV SUxEL2dsaWJjLTIuMy4yLTIwMDMwNDAyMDQzMi9idWlsZC1pMzg2LWxpbnV4L2NzdQAAY3J0 aS5TAAEAAAAABQKohwQIAzIBHiweHlceAgkAAQEABQLYgwQIAyIBHiw6AgYAAQEABQLUhAQI AwsBHiweHlceZGQsLC06HgICAAEBkAAAAAIAaQAAAAEB+w4KAAEBAQEAAAABL3Vzci9zcmMv YnVpbGQvMzI0OTU0LWkzODYvQlVJTEQvZ2xpYmMtMi4zLjItMjAwMzA0MDIwNDMyL2J1aWxk LWkzODYtbGludXgvY3N1AABjcnRuLlMAAQAAAAAFAr6HBAgDEgE6HgIBAAEBAAUC7YMECAMJ AR4CAQABAQAAABAAAAD/////AQABfAgMBASIAQAAX0dfaW50MzJfdABfX3RpbWVfdABfX0dD T05WX0lOQ09NUExFVEVfSU5QVVQAX19kYWRkcl90AF9faW50MzJfdABfX2djb252X2luaXRf ZmN0AF9HX2ljb252X3QAX19ybGltNjRfdABfX0dDT05WX0lMTEVHQUxfREVTQ1JJUFRPUgBf X2djb252X2luZm8Ac2hvcnQgdW5zaWduZWQgaW50AHVuc2lnbmVkIGNoYXIAX191c2Vjb25k c190AF9fY291bnRlcgBfX2ZjdABfX3ZhbABfX3ZhbHVlAF9fbnN0ZXBzAF9HX2ludDE2X3QA X19tYXhfbmVlZGVkX2Zyb20AX19nY29udl9idG93Y19mY3QAX19vZmZfdABfX3NzaXplX3QA X19zdGF0ZXAAaW5pdC5jAF9fZnNmaWxjbnRfdABfX3N0ZXBzAF9fZnNmaWxjbnQ2NF90AF9f YmxrY250X3QAX19ibGtzaXplX3QAX0dfZnBvczY0X3QAX19nY29udl90AF9fdHJhbnNfZW5k X2ZjdABfX3VfaW50AC91c3Ivc3JjL2J1aWxkLzMyNDk1NC1pMzg2L0JVSUxEL2dsaWJjLTIu My4yLTIwMDMwNDAyMDQzMi9jc3UAX19HQ09OVl9JTExFR0FMX0lOUFVUAF9fZ2NvbnZfbG9h ZGVkX29iamVjdABfX3RvX25hbWUAX191aW50NjRfdABfX2lkX3QAX19HQ09OVl9FTVBUWV9J TlBVVABfX2NkAF9faW5vX3QAX19HQ09OVl9OT0NPTlYAX19pbnZvY2F0aW9uX2NvdW50ZXIA X19waWRfdABfX3Vfc2hvcnQAX19jb3VudABfX3F1YWRfdABfX3VfbG9uZwBfX2ZzaWRfdABf X0dDT05WX0ZVTExfT1VUUFVUAF9fbWF4X25lZWRlZF90bwBfX3RpbWVyX3QAX19zdGF0ZWZ1 bABfX3VpbnQzMl90AF9fa2V5X3QAX191X2NoYXIAX19nY29udl9zdGVwAF9fc2hsaWJfaGFu ZGxlAF9fbWluX25lZWRlZF90bwBzaG9ydCBpbnQAX19kZXZfdABsb25nIGxvbmcgaW50AF9f Z2NvbnZfdHJhbnNfZGF0YQBfX291dGJ1ZgBsb25nIGxvbmcgdW5zaWduZWQgaW50AF9fdWlk X3QAX193Y2hiAF9fdWludDE2X3QAd2ludF90AF9fdV9xdWFkX3QAX19nY29udl90cmFuc19l bmRfZmN0AF9fZmxhZ3MAX19vdXRidWZlbmQAX19jb21iaW5lZABfX2djb252X3RyYW5zX2lu aXRfZmN0AF9faW5pdF9mY3QAX19tb2RuYW1lAF9fdHJhbnNfY29udGV4dF9mY3QAR05VIEMg My4yLjIgMjAwMzAyMjIgKFJlZCBIYXQgTGludXggMy4yLjItNSkAX190cmFuc19mY3QAX19y bGltX3QAX193Y2gAX19pbnRwdHJfdABfX3N1c2Vjb25kc190AF9faW5vNjRfdAB3Y2hhcl90 AF9fR0NPTlZfSVNfTEFTVABfX2Jsa2NudDY0X3QAX19mc2Jsa2NudDY0X3QAX19tb2RlX3QA X19xYWRkcl90AF9fcG9zAF9fZ2NvbnZfZW5kX2ZjdABfSU9fc3RkaW5fdXNlZABfX2ludGVy bmFsX3VzZQBfX0dDT05WX05PREIAX19jbG9ja190AF9fZ2NvbnZfc3RlcF9kYXRhAF9fZ2Nv bnZfdHJhbnNfcXVlcnlfZmN0AF9fc29ja2xlbl90AF9faW50NjRfdABfX0dDT05WX05PTUVN AF9fb2ZmNjRfdABfX2J0b3djX2ZjdABfR19mcG9zX3QAX19pbnQ4X3QAX19HQ09OVl9PSwBf X2ZzYmxrY250X3QAX0dfdWludDMyX3QAX19ubGlua190AF9fc3dibGtfdABfX0dDT05WX0lO VEVSTkFMX0VSUk9SAF9fbWJzdGF0ZV90AF9fZ2lkX3QAX19jbG9ja2lkX3QAX19zdGF0ZQBf X2djb252X3RyYW5zX2NvbnRleHRfZmN0AF9fbmV4dABfX0dDT05WX0lHTk9SRV9FUlJPUlMA X19lbmRfZmN0AF9fdHJhbnMAX191aW50OF90AF9fZ2NvbnZfZmN0AF9fZnJvbV9uYW1lAF9f bWluX25lZWRlZF9mcm9tAF9fZ2NvbnZfdHJhbnNfZmN0AF9fZGF0YQBfX2NhZGRyX3QAX0df dWludDE2X3QAX19sb2ZmX3QAX19pbnQxNl90AAAuc3ltdGFiAC5zdHJ0YWIALnNoc3RydGFi AC5pbnRlcnAALm5vdGUuQUJJLXRhZwAuaGFzaAAuZHluc3ltAC5keW5zdHIALmdudS52ZXJz aW9uAC5nbnUudmVyc2lvbl9yAC5yZWwuZHluAC5yZWwucGx0AC5pbml0AC50ZXh0AC5maW5p AC5yb2RhdGEALmVoX2ZyYW1lAC5kYXRhAC5keW5hbWljAC5jdG9ycwAuZHRvcnMALmpjcgAu Z290AC5ic3MALmNvbW1lbnQALmRlYnVnX2FyYW5nZXMALmRlYnVnX3B1Ym5hbWVzAC5kZWJ1 Z19pbmZvAC5kZWJ1Z19hYmJyZXYALmRlYnVnX2xpbmUALmRlYnVnX2ZyYW1lAC5kZWJ1Z19z dHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsAAAABAAAA AgAAAPSABAj0AAAAEwAAAAAAAAAAAAAAAQAAAAAAAAAjAAAABwAAAAIAAAAIgQQICAEAACAA AAAAAAAAAAAAAAQAAAAAAAAAMQAAAAUAAAACAAAAKIEECCgBAABUAAAABAAAAAAAAAAEAAAA BAAAADcAAAALAAAAAgAAAHyBBAh8AQAAAAEAAAUAAAABAAAABAAAABAAAAA/AAAAAwAAAAIA AAB8ggQIfAIAAJwAAAAAAAAAAAAAAAEAAAAAAAAARwAAAP///28CAAAAGIMECBgDAAAgAAAA BAAAAAAAAAACAAAAAgAAAFQAAAD+//9vAgAAADiDBAg4AwAAMAAAAAUAAAABAAAABAAAAAAA AABjAAAACQAAAAIAAABogwQIaAMAABgAAAAEAAAAAAAAAAQAAAAIAAAAbAAAAAkAAAACAAAA gIMECIADAABYAAAABAAAAAsAAAAEAAAACAAAAHUAAAABAAAABgAAANiDBAjYAwAAFwAAAAAA AAAAAAAABAAAAAAAAABwAAAAAQAAAAYAAADwgwQI8AMAAMAAAAAAAAAAAAAAAAQAAAAEAAAA ewAAAAEAAAAGAAAAsIQECLAEAAD4AgAAAAAAAAAAAAAEAAAAAAAAAIEAAAABAAAABgAAAKiH BAioBwAAGwAAAAAAAAAAAAAABAAAAAAAAACHAAAAAQAAAAIAAADEhwQIxAcAAA0AAAAAAAAA AAAAAAQAAAAAAAAAjwAAAAEAAAACAAAA1IcECNQHAAAEAAAAAAAAAAAAAAAEAAAAAAAAAJkA AAABAAAAAwAAANiXBAjYBwAADAAAAAAAAAAAAAAABAAAAAAAAACfAAAABgAAAAMAAADklwQI 5AcAAMgAAAAFAAAAAAAAAAQAAAAIAAAAqAAAAAEAAAADAAAArJgECKwIAAAIAAAAAAAAAAAA AAAEAAAAAAAAAK8AAAABAAAAAwAAALSYBAi0CAAACAAAAAAAAAAAAAAABAAAAAAAAAC2AAAA AQAAAAMAAAC8mAQIvAgAAAQAAAAAAAAAAAAAAAQAAAAAAAAAuwAAAAEAAAADAAAAwJgECMAI AAA8AAAAAAAAAAAAAAAEAAAABAAAAMAAAAAIAAAAAwAAAPyYBAj8CAAADAAAAAAAAAAAAAAA BAAAAAAAAADFAAAAAQAAAAAAAAAAAAAA/AgAADIBAAAAAAAAAAAAAAEAAAAAAAAAzgAAAAEA AAAAAAAAAAAAADAKAAB4AAAAAAAAAAAAAAAIAAAAAAAAAN0AAAABAAAAAAAAAAAAAACoCgAA JQAAAAAAAAAAAAAAAQAAAAAAAADtAAAAAQAAAAAAAAAAAAAAzQoAAJgKAAAAAAAAAAAAAAEA AAAAAAAA+QAAAAEAAAAAAAAAAAAAAGUVAAA4AQAAAAAAAAAAAAABAAAAAAAAAAcBAAABAAAA AAAAAAAAAACdFgAAhAIAAAAAAAAAAAAAAQAAAAAAAAATAQAAAQAAAAAAAAAAAAAAJBkAABQA AAAAAAAAAAAAAAQAAAAAAAAAIAEAAAEAAAAwAAAAAAAAADgZAAC+BgAAAAAAAAAAAAABAAAA AQAAABEAAAADAAAAAAAAAAAAAAD2HwAAKwEAAAAAAAAAAAAAAQAAAAAAAAABAAAAAgAAAAAA AAAAAAAAdCYAAHAHAAAhAAAAVAAAAAQAAAAQAAAACQAAAAMAAAAAAAAAAAAAAOQtAADLBAAA AAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9IAECAAAAAADAAEAAAAAAAiB BAgAAAAAAwACAAAAAAAogQQIAAAAAAMAAwAAAAAAfIEECAAAAAADAAQAAAAAAHyCBAgAAAAA AwAFAAAAAAAYgwQIAAAAAAMABgAAAAAAOIMECAAAAAADAAcAAAAAAGiDBAgAAAAAAwAIAAAA AACAgwQIAAAAAAMACQAAAAAA2IMECAAAAAADAAoAAAAAAPCDBAgAAAAAAwALAAAAAACwhAQI AAAAAAMADAAAAAAAqIcECAAAAAADAA0AAAAAAMSHBAgAAAAAAwAOAAAAAADUhwQIAAAAAAMA DwAAAAAA2JcECAAAAAADABAAAAAAAOSXBAgAAAAAAwARAAAAAACsmAQIAAAAAAMAEgAAAAAA tJgECAAAAAADABMAAAAAALyYBAgAAAAAAwAUAAAAAADAmAQIAAAAAAMAFQAAAAAA/JgECAAA AAADABYAAAAAAAAAAAAAAAAAAwAXAAAAAAAAAAAAAAAAAAMAGAAAAAAAAAAAAAAAAAADABkA AAAAAAAAAAAAAAAAAwAaAAAAAAAAAAAAAAAAAAMAGwAAAAAAAAAAAAAAAAADABwAAAAAAAAA AAAAAAAAAwAdAAAAAAAAAAAAAAAAAAMAHgAAAAAAAAAAAAAAAAADAB8AAAAAAAAAAAAAAAAA AwAgAAAAAAAAAAAAAAAAAAMAIQABAAAAAAAAAAAAAAAEAPH/EAAAAAAAAAAAAAAABADx/wEA AAAAAAAAAAAAAAQA8f9kAAAAAAAAAAAAAAAEAPH/bwAAAAAAAAAAAAAABADx/3oAAAAAAAAA AAAAAAQA8f9vAAAAAAAAAAAAAAAEAPH/EAAAAAAAAAAAAAAABADx/28AAAAAAAAAAAAAAAQA 8f8BAAAAAAAAAAAAAAAEAPH/EAAAAAAAAAAAAAAABADx/wEAAAAAAAAAAAAAAAQA8f9kAAAA AAAAAAAAAAAEAPH/bwAAAAAAAAAAAAAABADx/9MAAAAAAAAAAAAAAAQA8f/aAAAAAAAAAAAA AAAEAPH/MAEAAAAAAAAAAAAABADx/4YBAAAAAAAAAAAAAAQA8f/aAAAAAAAAAAAAAAAEAPH/ AQAAAAAAAAAAAAAABADx/xAAAAAAAAAAAAAAAAQA8f8BAAAAAAAAAAAAAAAEAPH/ZAAAAAAA AAAAAAAABADx/9oAAAAAAAAAAAAAAAQA8f+RAQAA1IQECAAAAAACAAwAoQEAAAAAAAAAAAAA BADx/6wBAACsmAQIAAAAAAEAEgC6AQAAtJgECAAAAAABABMAyAEAANSHBAgAAAAAAQAPANsB AAC8mAQIAAAAAAEAFADoAQAA4JcECAAAAAABABAA7AEAAASZBAgBAAAAAQAWAPgBAAD4hAQI AAAAAAIADAAOAgAANIUECAAAAAACAAwAoQEAAAAAAAAAAAAABADx/xoCAACwmAQIAAAAAAEA EgAnAgAAuJgECAAAAAABABMANAIAANSHBAgAAAAAAQAPAEICAAC8mAQIAAAAAAEAFABOAgAA hIcECAAAAAACAAwAZAIAAAAAAAAAAAAABADx/zABAAAAAAAAAAAAAAQA8f+GAQAAAAAAAAAA AAAEAPH/ZAIAAAAAAAAAAAAABADx/wEAAAAAAAAAAAAAAAQA8f8QAAAAAAAAAAAAAAAEAPH/ AQAAAAAAAAAAAAAABADx/2QAAAAAAAAAAAAAAAQA8f9kAgAAAAAAAAAAAAAEAPH/ugIAAAAA AAAAAAAABADx/8gCAAAAhAQI5gAAABIAAADbAgAAEIQECOEAAAASAAAA7AIAACCEBAhtAAAA EgAAAPwCAADklwQIAAAAABEAEQAFAwAAxIcECAQAAAARAA4ADAMAADCEBAioAAAAEgAAAB8D AADYlwQIAAAAABAA8f8wAwAA3JcECAAAAAARAhAAPQMAAFCHBAg0AAAAEgAMAE0DAABAhAQI 4QAAABIAAABfAwAA2IMECAAAAAASAAoAZQMAAPyYBAgEAAAAEQAWAHcDAACwhAQIAAAAABIA DAB+AwAAUIQECNQAAAASAAAAkAMAANiXBAgAAAAAEADx/6MDAABghAQI8QAAABIAAAC0AwAA IIcECDAAAAASAAwAxAMAAPyYBAgAAAAAEADx/9ADAABghQQIwAEAABIADADVAwAAcIQECPsA AAASAAAA8gMAANiXBAgAAAAAEADx/wMEAADYlwQIAAAAACAAEAAOBAAAqIcECAAAAAASAA0A FAQAAICEBAjZAAAAEgAAACQEAACQhAQI3wIAABIAAAA2BAAA/JgECAAAAAAQAPH/PQQAAMCY BAgAAAAAEQAVAFMEAACghAQIuQAAABIAAABjBAAACJkECAAAAAAQAPH/aAQAAACZBAgEAAAA EQAWAHkEAADYlwQIAAAAABAA8f+MBAAAyIcECAQAAAARAA4AmwQAANiXBAgAAAAAEAAQAKgE AAAAAAAAAAAAACAAAAC8BAAAAAAAAAAAAAAgAAAAADxjb21tYW5kIGxpbmU+AC91c3Ivc3Jj L2J1aWxkLzMyNDk1NC1pMzg2L0JVSUxEL2dsaWJjLTIuMy4yLTIwMDMwNDAyMDQzMi9idWls ZC1pMzg2LWxpbnV4L2NvbmZpZy5oADxidWlsdC1pbj4AYWJpLW5vdGUuUwAvdXNyL3NyYy9i dWlsZC8zMjQ5NTQtaTM4Ni9CVUlMRC9nbGliYy0yLjMuMi0yMDAzMDQwMjA0MzIvYnVpbGQt aTM4Ni1saW51eC9jc3UvYWJpLXRhZy5oAGluaXQuYwAvdXNyL3NyYy9idWlsZC8zMjQ5NTQt aTM4Ni9CVUlMRC9nbGliYy0yLjMuMi0yMDAzMDQwMjA0MzIvYnVpbGQtaTM4Ni1saW51eC9j c3UvY3J0aS5TAC91c3Ivc3JjL2J1aWxkLzMyNDk1NC1pMzg2L0JVSUxEL2dsaWJjLTIuMy4y LTIwMDMwNDAyMDQzMi9idWlsZC1pMzg2LWxpbnV4L2NzdS9kZWZzLmgAaW5pdGZpbmkuYwBj YWxsX2dtb25fc3RhcnQAY3J0c3R1ZmYuYwBfX0NUT1JfTElTVF9fAF9fRFRPUl9MSVNUX18A X19FSF9GUkFNRV9CRUdJTl9fAF9fSkNSX0xJU1RfXwBwLjAAY29tcGxldGVkLjEAX19kb19n bG9iYWxfZHRvcnNfYXV4AGZyYW1lX2R1bW15AF9fQ1RPUl9FTkRfXwBfX0RUT1JfRU5EX18A X19GUkFNRV9FTkRfXwBfX0pDUl9FTkRfXwBfX2RvX2dsb2JhbF9jdG9yc19hdXgAL3Vzci9z cmMvYnVpbGQvMzI0OTU0LWkzODYvQlVJTEQvZ2xpYmMtMi4zLjItMjAwMzA0MDIwNDMyL2J1 aWxkLWkzODYtbGludXgvY3N1L2NydG4uUwBybWZyb21sbl92My5jAGdldGNoYXJAQEdMSUJD XzIuMABmZ2V0Y0BAR0xJQkNfMi4wAGZlb2ZAQEdMSUJDXzIuMABfRFlOQU1JQwBfZnBfaHcA dG1wZmlsZUBAR0xJQkNfMi4xAF9fZmluaV9hcnJheV9lbmQAX19kc29faGFuZGxlAF9fbGli Y19jc3VfZmluaQByZXdpbmRAQEdMSUJDXzIuMABfaW5pdABzdGRvdXRAQEdMSUJDXzIuMABf c3RhcnQAc3Ryc3RyQEBHTElCQ18yLjAAX19maW5pX2FycmF5X3N0YXJ0AGZwdXRjQEBHTElC Q18yLjAAX19saWJjX2NzdV9pbml0AF9fYnNzX3N0YXJ0AG1haW4AX19saWJjX3N0YXJ0X21h aW5AQEdMSUJDXzIuMABfX2luaXRfYXJyYXlfZW5kAGRhdGFfc3RhcnQAX2ZpbmkAZXhpdEBA R0xJQkNfMi4wAGNhbGxvY0BAR0xJQkNfMi4wAF9lZGF0YQBfR0xPQkFMX09GRlNFVF9UQUJM RV8AZnJlZUBAR0xJQkNfMi4wAF9lbmQAc3RkaW5AQEdMSUJDXzIuMABfX2luaXRfYXJyYXlf c3RhcnQAX0lPX3N0ZGluX3VzZWQAX19kYXRhX3N0YXJ0AF9Kdl9SZWdpc3RlckNsYXNzZXMA X19nbW9uX3N0YXJ0X18A --------------020003030105060108060207 Content-Type: text/plain; name="rmfromln_v3.c" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rmfromln_v3.c" /* NEW plan: 1) create a temp io-stream with tempfile() 2) read in from stdin and out to temp until EOL (or EOF) 3) dynamically create a string of the appropriate length (i.e. the number of characters written to temp-stream) 4) copy temp-stream to the new string 5) search the string for "From" 6) if found, copy the string to stdout 7) copy the remaining stdin to stdout until EOF reached. */ #include "stdio.h" #include "string.h" #include "stddef.h" #include "stdlib.h" // ############################################### #define EOL '\n' // ############################################### main () { char c; int length; int j; FILE *tempstream; char *tempstring; // Create the temp-stream tempstream = tmpfile(); // Read from stdin into tempstream until EOF or EOL is encountered. length = 0; rewind(tempstream); while ((c=fgetc(stdin)) && (c != EOL)) { fputc(c,tempstream); length++; } // if no input, then just exit and do nothing. if (length == 0) exit(0); // the above code did not put the EOL in the temp-stream, so add it. fputc(EOL,tempstream); length++; // create the tempSTRING and copy the tempstream into it. // tempstring = new string[length]; tempstring = (char *) calloc(length,sizeof(char)); rewind(tempstream); for(j=0;j X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7912416A474 for ; Wed, 21 Jun 2006 18:48:48 +0000 (UTC) (envelope-from nikolas.britton@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 ACF8143D81 for ; Wed, 21 Jun 2006 18:48:38 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so217561nzi for ; Wed, 21 Jun 2006 11:48: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=HIj9vyr19NnMfUqYum79x3iDsSIoefVsqDsp3D4mCACSsWMC0vYZhM0jm4Q/ODRfQSGjjDTJVVRh9pDRPGQdQfwQGSvpgG72PBymGB0z75cL1B3R7HudSIJ/nQ1huAJTv2CceqEKRLj267zcx4hnMAObsVCMo8bUFtoJb9LhBnM= Received: by 10.37.13.61 with SMTP id q61mr818438nzi; Wed, 21 Jun 2006 11:48:36 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Wed, 21 Jun 2006 11:48:31 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 11:48:34 -0700 From: "Nikolas Britton" To: "Nikolas Britton" , "Andy Reitz" , freebsd-questions@freebsd.org In-Reply-To: <20060621173253.GD7596@tigger.digitaltorque.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620233551.GG11625@tigger.digitaltorque.ca> <20060621011340.GI11625@tigger.digitaltorque.ca> <20060621173253.GD7596@tigger.digitaltorque.ca> Cc: Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 18:48:48 -0000 On 6/21/06, Michael P. Soulier wrote: > On 21/06/06 Nikolas Britton said: > > > IA64 = Itanium, Itanium2 = FreeBSD/ia64 > > EM64T = Intel CPUs with AMD64 (P4, Xeon, etc.) = FreeBSD/amd64 > > AMD64 = Opteron, Athlon 64, Turion 64, Sempron 64 = FreeBSD/amd64 > > > > http://en.wikipedia.org/wiki/EM64T > > > > Why do you need to run in 64-bit mode? > > I'm asking that myself. I'd like to do comparisons with and without 64-bit > support. > The consensus seems to be that FreeBSD/amd64 is a tad slower then FreeBSD/i386 because it has to deal with 32 extra bits. The primary reason to use FreeBSD/amd64 seems to be if you need greater then 4GB of RAM. This should give you the speed boost your looking for: CPUTYPE?=pentium2 CFLAGS+= -mtune=nocona COPTFLAGS+= -mtune=nocona Put that in /etc/make.conf and recompile ports/kern/world. -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 18: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 568B516A47A for ; Wed, 21 Jun 2006 18:52:24 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BD5B43D76 for ; Wed, 21 Jun 2006 18:52:11 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so218343nzi for ; Wed, 21 Jun 2006 11:52:10 -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=qnYDpsGvpmM7yf/rKNGNGcxv1fkz+z8c3MgO6DvhAKdcAUhrbNoBkFAsKZi+lk1Y/BTQRWZYhLre4bCHv7xrAw1odWHbhYqEbFtVi08KJZu8WBR4ltlAy6Z3DlCECzZbwoEuyMMmGLn6eUDYiFREFxZZh6tw9kTfa6QfRjG/6wM= Received: by 10.36.25.2 with SMTP id 2mr140498nzy; Wed, 21 Jun 2006 11:52:10 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Wed, 21 Jun 2006 11:52:09 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 11:52:10 -0700 From: "Nikolas Britton" To: "Nikolas Britton" , "Andy Reitz" , freebsd-questions@freebsd.org In-Reply-To: <20060621173253.GD7596@tigger.digitaltorque.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620233551.GG11625@tigger.digitaltorque.ca> <20060621011340.GI11625@tigger.digitaltorque.ca> <20060621173253.GD7596@tigger.digitaltorque.ca> Cc: Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 18:52:24 -0000 On 6/21/06, Michael P. Soulier wrote: > On 21/06/06 Nikolas Britton said: > > > IA64 = Itanium, Itanium2 = FreeBSD/ia64 > > EM64T = Intel CPUs with AMD64 (P4, Xeon, etc.) = FreeBSD/amd64 > > AMD64 = Opteron, Athlon 64, Turion 64, Sempron 64 = FreeBSD/amd64 > > > > http://en.wikipedia.org/wiki/EM64T > > > > Why do you need to run in 64-bit mode? > > I'm asking that myself. I'd like to do comparisons with and without 64-bit > support. > The consensus seems to be that FreeBSD/amd64 is a tad slower then FreeBSD/i386 because it has to deal with 32 extra bits. The primary reason to use FreeBSD/amd64 seems to be if you need greater then 4GB of RAM. This should give you the speed boost your looking for: CPUTYPE?=pentium2 CFLAGS+= -mtune=nocona COPTFLAGS+= -mtune=nocona Put that in /etc/make.conf and recompile ports/kern/world. -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 19:27: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 1DBF016A474 for ; Wed, 21 Jun 2006 19:27:58 +0000 (UTC) (envelope-from freebsd-01@jeremykister.com) Received: from qmail-01.nntx.net (qmail-01.nntx.net [204.9.96.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 1C15343D45 for ; Wed, 21 Jun 2006 19:27:56 +0000 (GMT) (envelope-from freebsd-01@jeremykister.com) Received: (qmail 25298 invoked by uid 1010); 21 Jun 2006 15:27:55 -0400 Received: by simscan 1.2.0 ppid: 25283, pid: 25297, t: 0.0213s scanners:none Received: from unknown (HELO ?64.115.0.169?) (smtpauth-01@jeremykister.com@64.115.0.169) by qmail-01.nntx.net with SMTP; 21 Jun 2006 15:27:55 -0400 Message-ID: <44999DB4.5000700@jeremykister.com> Date: Wed, 21 Jun 2006 15:27:48 -0400 From: Jeremy Kister User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4498E663.8010509@jeremykister.com> In-Reply-To: <4498E663.8010509@jeremykister.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Crashing with HP/Compaq DL360 G3 [paging kernel developer] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 19:27:58 -0000 On 6/21/2006 2:25 AM, Jeremy Kister wrote: > I have sudden [seemingly random] reboots with all four (see > http://unix.derkeiler.com/Mailing-Lists/FreeBSD/questions/2006-02/msg01605.html) > while running FreeBSD 6.0-RELEASE through the PreReleases and now with > 6.1-STABLE. I just found a post suggesting that IPF with SMP is bad. See: http://www.monkey.org/freebsd/archive/freebsd-stable/200507/msg00481.html I do have IPF running on all four boxes and SMP is obviously also configured. Does anyone have data beyond this that says I should remove IPF from the kernel or set ipf_enable="NO" in my rc.conf ? or was this issue resolved in FreeBSD 6 ? -- Jeremy Kister http://jeremy.kister.net./ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 19:41: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 7824B16A474 for ; Wed, 21 Jun 2006 19:41:25 +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 33DC943D46 for ; Wed, 21 Jun 2006 19:41:25 +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 1Ft8Zo-000FMU-JM; Wed, 21 Jun 2006 13:41:24 -0600 In-Reply-To: References: <20060620060845.U1114@ganymede.hub.org> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <12F7613C-AEB2-4203-9019-ECB928EFA588@shire.net> Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Wed, 21 Jun 2006 13:41:23 -0600 To: Nikolas Britton X-Mailer: Apple Mail (2.750) 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 Cc: FreeBSD-Questions Questions Subject: Re: Are hardware vendors starting to bail 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, 21 Jun 2006 19:41:25 -0000 On Jun 21, 2006, at 12:18 PM, Nikolas Britton wrote: > Areca also supports FreeBSD: > $ man arcmsr (FreeBSD 5.4+) > http://www.areca.com.tw I have some though they are not in service yet. Right now destined for some Solaris boxes when Areca can fix a bad interaction between my Tyan opteron board and their Solaris driver... I bought Areca for three reasons : They support Solaris 10 AND FreeBSD so I can re-deploy HW as needed under both OS (that is two reasons) and they got good reviews (#3). > > My next controller will probably be from Areca because they support > RAID level 6 and have multi-lane connectors... maybe ARC-1130ML + > 12x500GB. Does anyone know what SAS (Serial Attached SCSI) RAID > controllers are supported by FreeBSD?, they can use SATA drives > correct? Areca is supposed to have some new SAS cards though I don't know if they are out yet. Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 20:03: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 A295216A479 for ; Wed, 21 Jun 2006 20:03:22 +0000 (UTC) (envelope-from jnatola@familycareintl.org) Received: from mail.familycareintl.org (mail.familycareintl.org [68.167.21.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEDC043D49 for ; Wed, 21 Jun 2006 20:03:18 +0000 (GMT) (envelope-from jnatola@familycareintl.org) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Wed, 21 Jun 2006 16:03:11 -0400 Message-ID: <3A85D7EF44E1C744BF6434691F5659E99303C5@www.fcimail.org> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Creating DVD Movies Thread-Index: AcaU9jUoAwgihJE7T2eha9CjcxV4UAAdVcDQ From: "Jean-Paul Natola" To: Subject: RE: Creating DVD Movies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 20:03:22 -0000 -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of David J Brooks Sent: Wednesday, June 21, 2006 1:47 AM To: freebsd-questions@freebsd.org Cc: Derrick Ryalls Subject: Re: Creating DVD Movies On Tuesday 20 June 2006 19:48, Derrick Ryalls wrote: > Greetings, > > i was wondering if anyone had a good tool recommendation for creating > DVD movies with FreeBSD. Since I have a child growing up, it is > appealing to me to make a copy of their favorite DVD and burn it so > they can handle the copy, not the original (legal to make backup > copies). I also was thinking it could be handy to author my own dvds, > but that might not be for a while. > > So far, I can use mplayer to get the DVD to an avi file, but I can't > find anything to get it back onto a dvd. I have tried dvdauthor, but > the app kept crashing. Does anyone have any suggestions for this? What you need is tovid. (/usr/ports/multimedia/tovid). This link...=20 http://forums.whirlpool.net.au/forum-replies-archive.cfm/511457.html=20 ...gives some very basic instructions, but read the manpages for all the nifty=20 options. It's three steps from avi to dvd. 1) tovid converts the avi to mpeg, 2) makexml produces an xml script to feed into makedvd and 3) makedvd splits the mpeg into all the TS_VIDEO/VOBs and whatnots and = can=20 leave with with either a raw directory structure, an ISO file, or burn = it=20 straight to dvd for you. David --=20 Sure God created the world in only six days, but He didn't have an established user-base. _______________________________________________ Does this app only do AVI to MPEG? From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 20:06: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 0C8DC16A482 for ; Wed, 21 Jun 2006 20:06:43 +0000 (UTC) (envelope-from sven.hazejager@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 E5F5443D46 for ; Wed, 21 Jun 2006 20:06:41 +0000 (GMT) (envelope-from sven.hazejager@gmail.com) Received: by py-out-1112.google.com with SMTP id d80so63909pyd for ; Wed, 21 Jun 2006 13:06: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:mime-version:content-type; b=i8BjVs2x37DEz4cE7BRkCcoCtIbLgF2WUt6lOGrvfGSdnWjifYub3Hu8jYKQfmmUgZ970xZc54g7ebenXDSzJYl6QJIKyU0A1SZ2yIw1u8ZUD4rS0on387/Nl7QFeIBmMr7IIq6PTrNVtTyEfG7TORxLvNqJrytVAIqZ4LGfGV4= Received: by 10.35.84.16 with SMTP id m16mr232625pyl; Wed, 21 Jun 2006 13:06:39 -0700 (PDT) Received: by 10.35.123.3 with HTTP; Wed, 21 Jun 2006 13:06:38 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 22:06:38 +0200 From: "Sven Hazejager" To: freebsd-questions@freebsd.org, freebsd-fs@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 Cc: Subject: HELP! Filesystem EMPTY after upgrade from 4.11 to 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, 21 Jun 2006 20:06:43 -0000 Hi all! I have quite a big problem here.... I've upgraded my FreeBSD 4.11 to 6.1. Basically, I did a newfs of / and /usr and reinstalled from scratch. That worked. Rebooted in 6.1 single user mode, mounted /, /usr and /usr/home. The latter I did not touch and I need to save that partition. /usr/home had all the files it needed to have. PROBLEM: mount said soft-updates were not set on /usr/home. So I did umount /usr/home, tunefs -n enable /usr/home, mount /usr/home again... EMPTY!!!! What has gone wrong? I did fsck (in read-only), no problems, rebooted the system, did tunefs -n disable, still no luck. I really need those files guys... Please help urgently. Many thanks, Sven Hazejager From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 20:34: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 2539616A479 for ; Wed, 21 Jun 2006 20:34:52 +0000 (UTC) (envelope-from daeg@houston.rr.com) Received: from ms-smtp-02.texas.rr.com (ms-smtp-02.texas.rr.com [24.93.47.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id B16B143D46 for ; Wed, 21 Jun 2006 20:34:51 +0000 (GMT) (envelope-from daeg@houston.rr.com) Received: from cpe-24-167-71-114.houston.res.rr.com (cpe-24-167-71-114.houston.res.rr.com [24.167.71.114]) by ms-smtp-02.texas.rr.com (8.13.6/8.13.6) with ESMTP id k5LKYW5X011497; Wed, 21 Jun 2006 15:34:33 -0500 (CDT) From: David J Brooks Organization: KC5WNK To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 15:34:31 -0500 User-Agent: KMail/1.9.3 References: <3A85D7EF44E1C744BF6434691F5659E99303C5@www.fcimail.org> In-Reply-To: <3A85D7EF44E1C744BF6434691F5659E99303C5@www.fcimail.org> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(=?utf-8?q?gxJxxc=0A=09R=09nSNPNr*/=5E=7EStawWU9KDJ-CT0k=24f=23?=@t2^K&BS_f|?ZV/.7Q MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606211534.32591.daeg@houston.rr.com> X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: Jean-Paul Natola Subject: Re: Creating DVD Movies X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 20:34:52 -0000 On Wednesday 21 June 2006 15:03, Jean-Paul Natola wrote: >Does this app only do AVI to MPEG? tovid takes any multimedia video file as input, and produces (S)VCD or DVD-compliant MPEG video files as output. The output of tovid then becomes an input to makevcd or makedvd, and so on. David -- Sure God created the world in only six days, but He didn't have an established user-base. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 20: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 A87DE16A474 for ; Wed, 21 Jun 2006 20:35:49 +0000 (UTC) (envelope-from clarkp@mtmary.edu) Received: from fear.mtmary.edu (fear.mtmary.edu [208.24.226.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D59343D49 for ; Wed, 21 Jun 2006 20:35:48 +0000 (GMT) (envelope-from clarkp@mtmary.edu) Received: from [127.0.0.1] (war.mtmary.edu [208.24.226.200]) by fear.mtmary.edu (Postfix) with ESMTP id DD20E50545E for ; Wed, 21 Jun 2006 16:07:04 -0500 (CDT) Message-ID: <4499AD9F.4080305@mtmary.edu> Date: Wed, 21 Jun 2006 15:35:43 -0500 From: Peter Clark User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Device Busy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 20:35:49 -0000 Hello, I am installing a FreeBSD 6.1 i386 machine and using IPF. When I apply some variables to sysctl for IPF I end up with a device busy response. the variables in question are: net.inet.ipf.fr_tcpclosed=1 net.inet.ipf.fr_tcpclosewait=60 net.inet.ipf.fr_tcphalfclosed=300 net.inet.ipf.fr_tcpidletimeout=7200 net.inet.ipf.fr_tcplastack=20 net.inet.ipf.fr_tcptimeout=120 net.inet.ipf.fr_udptimeout=120 The problem occurs both on startup with these in sysctl.conf and if I try do enter it manually: imap# sysctl net.inet.ipf.fr_tcpclosed=1 net.inet.ipf.fr_tcpclosed: 120 sysctl: net.inet.ipf.fr_tcpclosed: Device busy These are the same variables that I have been using successfully on other versions of FreeBSD (5.x and 4.x) so I am inclined to think that I am missing something obvious in this latest version. I am running: FreeBSD 6.1-RELEASE-p2 with: ipf: IP Filter: v4.1.8 (416) Any pointers? Thanks, Peter From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 20:47: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 BCB2816A479 for ; Wed, 21 Jun 2006 20:47:32 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com [66.111.4.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E9B743D45 for ; Wed, 21 Jun 2006 20:47:32 +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 0E6FED83668 for ; Wed, 21 Jun 2006 16:04:21 -0400 (EDT) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by frontend3.internal (MEProxy); Wed, 21 Jun 2006 16:04:21 -0400 X-Sasl-enc: cJmEAjzpbmkznp07HG83ukwegL/iPk6ncGAinUNuoOqV 1150920261 Received: from bb-87-81-140-128.ukonline.co.uk (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 836EE4CBB for ; Wed, 21 Jun 2006 16:04:21 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Wed, 21 Jun 2006 21:04:17 +0100 User-Agent: KMail/1.9.3 References: <44980305.7010806@poklib.org> <200606202150.22728.list-freebsd-2004@morbius.sent.com> <44998475.8080707@poklib.org> In-Reply-To: <44998475.8080707@poklib.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606212104.18808.list-freebsd-2004@morbius.sent.com> Subject: Re: rcorder example? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 20:47:32 -0000 On Wednesday 21 June 2006 18:40, B. Cook wrote: > RW wrote: > > On Tuesday 20 June 2006 15:15, B. Cook wrote: > >> Hello all, > >> > >> I'm looking at what I think is the right answer.. but can't make sense > >> of it.. > >> > >> basically I have a couple of mailservers that run exim and dnscache, all > >> being called out of daemontools. > >> > >> but I can't seem to figure out how to make svscan start first.. > > > > I don't see what you are getting at here, if exim and dnscache are > > started by svscan, then by defininition svscan *is* starting first. > > _______________________________________________ > > 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" > > Yes svscan starts dnscache and exim, but many services depend on dns > (dnscache is setup on loopback) so I have to wait (for up to 3 minutes) > for dns timeouts to occour so that they boot can continue, and finally > get to starting svscan (quite low in the dictionary order of things) > > So I'm looking for how I can control the order that things start up in. As I said in my other reply it depends on which version of FreeBSD you are using. pre 6.1 you will have to move it to /etc/rc.d as several base-system scripts require dns access. There is also the potential problem that the later rc scripts wont wait for svscan to complete its initializations. By far the easiest solution to this problem is to put additional nameservers in resolv.conf after 127.0.0.1. The servers are checked in order, so only dnscache will be used once it's up. That's what I do and it works fine. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 21:40: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 D108E16A474 for ; Wed, 21 Jun 2006 21:40:50 +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 1FCE643D46 for ; Wed, 21 Jun 2006 21:40:49 +0000 (GMT) (envelope-from idefix@fechner.net) Received: from server.idefix.loc (ppp-82-135-68-3.dynamic.mnet-online.de [82.135.68.3]) (authenticated bits=0) by michelle.lostinspace.de (8.13.6/8.13.6) with ESMTP id k5LKKS6I001857 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 21 Jun 2006 22:20:28 +0200 (CEST) (envelope-from idefix@fechner.net) Received: from idefix by server.idefix.loc with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1Ft9Bc-000DIQ-AP for freebsd-questions@freebsd.org; Wed, 21 Jun 2006 22:20:28 +0200 Date: Wed, 21 Jun 2006 22:20:28 +0200 From: Matthias Fechner To: freebsd-questions@freebsd.org Message-ID: <20060621202027.GI49892@server.idefix.loc> Mail-Followup-To: freebsd-questions@freebsd.org References: <20060620233233.GF11625@tigger.digitaltorque.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u3/rZRmxL6MmkK24" Content-Disposition: inline In-Reply-To: <20060620233233.GF11625@tigger.digitaltorque.ca> X-Crypto: GnuPG/1.0.6 http://www.gnupg.org X-GnuPG: 0x1B756EF6 User-Agent: Mutt/1.5.11 Sender: Matthias Fechner X-Virus-Scanned: ClamAV 0.88.2/1559/Wed Jun 21 16:23:13 2006 on michelle.lostinspace.de X-Virus-Status: Clean Subject: Re: ppp not starting at boot 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: Wed, 21 Jun 2006 21:40:50 -0000 --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello Michael, * Michael P. Soulier [20-06-06 19:32]: > # Enable PPPoE > ppp_enable=3D"YES" > ppp_mode=3D"ddial" > ppp_nat=3D"YES" > ppp_profile=3D"storm" >=20 > Is this not correct? Should this not cause ppp to be started, using the > "storm" profile, at boot? >=20 > I had to do it manually via >=20 > ppp -ddial storm I remember that on FreeBSD 6.x the script ppp-user has changed to ppp, maybe updated without using mergemaster? Best regards, Matthias --=20 "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 --u3/rZRmxL6MmkK24 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEmaoLkZS/qRt1bvYRArFMAJ94gW/9rHcwN4rw4MipBVmAbFeN8ACfRV3p G2i4beny53fnhqxZZo4qJQw= =B9cO -----END PGP SIGNATURE----- --u3/rZRmxL6MmkK24-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 21:41: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 8E0FB16A479 for ; Wed, 21 Jun 2006 21:41:39 +0000 (UTC) (envelope-from nehe@cruzinternet.com) Received: from mail.cruzinternet.com (mail.cruzinternet.com [216.234.167.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCDED43D48 for ; Wed, 21 Jun 2006 21:41:38 +0000 (GMT) (envelope-from nehe@cruzinternet.com) Received: (qmail 13033 invoked from network); 21 Jun 2006 21:41:23 -0000 Received: from iphost-216-234-182-9.cruzinternet.com (HELO ?192.168.1.2?) (216.234.182.9) by mail.cruzinternet.com with SMTP; 21 Jun 2006 21:41:23 -0000 Message-ID: <4499BCFC.2050103@cruzinternet.com> Date: Wed, 21 Jun 2006 15:41:16 -0600 From: Jeff Molofee User-Agent: Thunderbird 1.5.0.4 (X11/20060610) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060621185231.B288F16A4D1@hub.freebsd.org> In-Reply-To: <20060621185231.B288F16A4D1@hub.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Google Earth... Anyone? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 21:41:39 -0000 does anyone know how to resolve the following error in googleearth (astro/google-earth) ===> Vulnerability check disabled, database not found ===> Extracting for google-earth-4 => MD5 Checksum OK for GoogleEarthLinux.bin. => SHA256 Checksum OK for GoogleEarthLinux.bin. ===> Patching for google-earth-4 ===> google-earth-4 depends on executable: unmakeself - found ===> Configuring for google-earth-4 ===> Building for google-earth-4 ===> Installing for google-earth-4 ===> google-earth-4 depends on executable: update-mime-database - found ===> google-earth-4 depends on file: /compat/linux/usr/X11R6/lib/libGL.so.1 - found ===> google-earth-4 depends on file: /compat/linux/etc/fedora-release - found ===> Generating temporary packing list ===> Checking if astro/google-earth already installed /bin/mkdir -p /usr/local/share/google-earth install -o root -g wheel -m 444 /usr/ports/astro/google-earth/work/google-earth-4/googleearth-mimetypes.xml /usr/local/share/mime/application/ install: /usr/ports/astro/google-earth/work/google-earth-4/googleearth-mimetypes.xml: No such file or directory *** Error code 71 The mimetypes.xml file doesn't seem to exist for me. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 21: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 2547E16A47A for ; Wed, 21 Jun 2006 21:55:48 +0000 (UTC) (envelope-from danial_thom@yahoo.com) Received: from web33311.mail.mud.yahoo.com (web33311.mail.mud.yahoo.com [68.142.206.126]) by mx1.FreeBSD.org (Postfix) with SMTP id 7FD5B43D49 for ; Wed, 21 Jun 2006 21:55:47 +0000 (GMT) (envelope-from danial_thom@yahoo.com) Received: (qmail 49185 invoked by uid 60001); 21 Jun 2006 21:55:46 -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=2UfZSRQyX7ImbS/4KmaxClhaOjdbok1EDeM9JGkuEi4ZTwNTJWCFkXJv/5YpszU3ZFF9F60mSjevA+KVX7fdbj8WGjkT3nY76sxiZITOZ72kQFk2VVINLuBc/JfzASjQ9i4tU1EYkaMnJihG1jRDvW5QEMgPPbROjox2WHumx6M= ; Message-ID: <20060621215546.49183.qmail@web33311.mail.mud.yahoo.com> Received: from [65.34.182.15] by web33311.mail.mud.yahoo.com via HTTP; Wed, 21 Jun 2006 14:55:46 PDT Date: Wed, 21 Jun 2006 14:55:46 -0700 (PDT) From: Danial Thom To: Brett In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Cc: zionicman@gmail.com, Ingrid Kast Fuller , freebsd-questions@freebsd.org, freebsd-chat@freebsd.org Subject: Re: Serious breach of copyright -- First post X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: danial_thom@yahoo.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 21:55:48 -0000 --- Brett wrote: > On 6/20/06, Danial Thom > wrote: > > > > > > User manuals and how-tos don't generally get > > copyright notices, because there is nothing > > creative about it. Someone could write > exactly > > the same thing (just about), and you'd have > > little claim to it because its just a > procedural > > description. What, is the formatting of your > > index unique or something? > > Not at all. The entire procedure is unique. > That's why > it's helpful to others, hopefully. > > Check out the FreeBSD handbook. It's full of > copyright notices. > I don't think someone's going to come out with > a FreeBSD handbook > without images and claim that they wrote it, > and then get away with it. > And even then, the copyright notice is just a > formality. > > > > > > But that aside, I was more amused by the > subject > > "serious breach of copyright", as if someone > had > > taken your claim for writing War and Peace or > > something. They didn't even explicitly put a > > byline on it. Its just a how-to on a web > page. > > > > And where are the credits for all of the > how-tos > > you read to gain this knowledge? Why doesn't > > their work count? You should have a full > > bibliography. After all, credit is important! > > > > Like I said, who cares. > > > > DT > > Maybe we can get Ingrid to put your mailing address on there also so we can send you cards, gifts and cash donations. Can you make that about 2 points bigger also? We wouldn't want anyone to miss it. DT __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 22: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 3E98116A481 for ; Wed, 21 Jun 2006 22:17:24 +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 A655B43D45 for ; Wed, 21 Jun 2006 22:17:23 +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 k5LMHLZa084985 for ; Wed, 21 Jun 2006 15:17:22 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k5LMHLho084939 for freebsd-questions@FreeBSD.ORG; Wed, 21 Jun 2006 15:17:21 -0700 (PDT) (envelope-from kline) Date: Wed, 21 Jun 2006 15:17:20 -0700 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20060621221720.GA55540@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 19++ years of service to the Unix community Cc: Subject: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 22:17:24 -0000 I would probably save weeks trying to turn FBSD into the kind of "Desktop" or window-manager platform I want by just using my Ubuntu platform. I'm still stickng with CTWM. On my Ubuntu servers there is amarak(sp?) which is my favorite audio-only apps so far. Is there anything like this that doesn't require desktop-specific libraries? tia, guys, gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 22:23: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 1852816A47B for ; Wed, 21 Jun 2006 22:23:58 +0000 (UTC) (envelope-from nikolas.britton@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 7A1E543D46 for ; Wed, 21 Jun 2006 22:23:57 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so264986nzi for ; Wed, 21 Jun 2006 15:23: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=rDejkHyGBOITWUEMpnA6RTjsfiVKyitM3BvCeTME5Mu3gj5AGRvOegGs22FH3iVgWI9rSKfccEP4wKLOuiEE37djai97sGwQ0HA2tG6GG/DPI7GE0TRYl02sk5OvjePIxeCtpSXkrQ8wI6oP9RrTuQeqIZiedlLHqEkk+neDMkU= Received: by 10.37.2.65 with SMTP id e65mr868253nzi; Wed, 21 Jun 2006 15:23:56 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Wed, 21 Jun 2006 15:23:56 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 17:23:56 -0500 From: "Nikolas Britton" To: "Marc G. Fournier" In-Reply-To: <20060621183832.H1114@ganymede.hub.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060845.U1114@ganymede.hub.org> <20060621183832.H1114@ganymede.hub.org> Cc: freebsd-questions@freebsd.org, Ted Mittelstaedt , chad@shire.net Subject: Re: Are hardware vendors starting to bail 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, 21 Jun 2006 22:23:58 -0000 On 6/21/06, Marc G. Fournier wrote: > On Wed, 21 Jun 2006, Nikolas Britton wrote: > > > On 6/21/06, Ted Mittelstaedt wrote: > >> > >> >-----Original Message----- > >> >From: owner-freebsd-questions@freebsd.org > >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marc > >> >G. Fournier > >> >Sent: Tuesday, June 20, 2006 2:24 AM > >> >To: freebsd-questions@freebsd.org > >> >Subject: Are hardware vendors starting to bail on FreeBSD ... ? > >> > > > > > [deleted] > > > >> > > >> > What can we, as a community, due to improve this situation? > >> > > >> > >> Simple. If you want to run RAID-5 then purchase the HiPoint card or > >> the 3ware card, both of them come with manufacturer-written drivers. > >> 3ware is really great, they have a developer with committ rights and > >> they just stick their driver right into the FreeBSD source repository. > >> > > > > s/HiPoint/HighPoint/ a.k.a HighPoint Technologies, Inc. or simply HPT. > > > > I have two HighPoint controllers and like them both: > > FreeBSD 6.1/i386 + HPT2220 + 8x250GB. > > FreeBSD 6.1-STABLE/amd64 + HPT1820A + 8x300GB. > > > > Areca also supports FreeBSD: > > $ man arcmsr (FreeBSD 5.4+) > > http://www.areca.com.tw > > > > My next controller will probably be from Areca because they support > > RAID level 6 and have multi-lane connectors... maybe ARC-1130ML + > > 12x500GB. Does anyone know what SAS (Serial Attached SCSI) RAID > > controllers are supported by FreeBSD?, they can use SATA drives > > correct? > > SAS is what I'm using in our HP servers ... don't know about SATA drives, > since the SAS drives are closer to a 'laptop size' then full size drive > ... the HP controller is supported by the CISS driver, and is, by far, > IMHO, the best driver we have, since you don't need any 'external > utilities' to check the status of the RAID controller ... wish they all > provided that :( > HighPoint and Areca both have native FreeBSD array management utilities and 12port, and up, Areca controllers have a built-in Ethernet port with an embedded http/smtp/snmp/telnet server running on them. Oh and SAS controllers can support SATA drives, from Adaptec's website: "The SAS connector is a universal interconnection that is form-factor compatible with SATA, allowing SAS or SATA drives to plug directly into a SAS environment whether for mission critical applications with high availability and high performance requirements or lower cost-per-gigabyte applications such as near-box storage. SATA connector signals are a subset of SAS signals, enabling the compatibility of SATA devices and SAS controllers. SAS drives will not operate on a SATA controller and are keyed to prevent any chance of plugging them in incorrectly. In addition, the similar SAS and SATA physical interfaces enable a new universal SAS backplane that provides connectivity to both SAS drives and SATA drives, eliminating the need for separate SCSI and ATA drive backplanes. This consolidation of designs greatly benefits both backplane manufacturers and end-users by reducing inventory and design costs." -- http://www.adaptec.com/en-US/products/sata/_education/SAS_SATA_unprlcompat.htm -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 22:51: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 3FCF616A584 for ; Wed, 21 Jun 2006 22:51:36 +0000 (UTC) (envelope-from nikolas.britton@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 412E843D48 for ; Wed, 21 Jun 2006 22:51:33 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so271211nzi for ; Wed, 21 Jun 2006 15:51:33 -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=qiBqmPtklKhAfU1L+CCo2IpL2ru7PO25vlzCfK9y4F6kf6W6quA/tL42j3EWgNAbZTxbPg98StvXdQXZp6J9ECU04V57NHISu4UesVbxyqrYat0ExfvsJNHI2Su4RuadSQ6LZcJuiTRpVpq/cRIunKsg8TOVzRfhXJd3K6o6+Ts= Received: by 10.36.132.5 with SMTP id f5mr1084914nzd; Wed, 21 Jun 2006 15:51:33 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Wed, 21 Jun 2006 15:51:32 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 17:51:32 -0500 From: "Nikolas Britton" To: "Gary Kline" In-Reply-To: <20060621221720.GA55540@thought.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_840_20216895.1150930292843" References: <20060621221720.GA55540@thought.org> Cc: FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 22:51:36 -0000 ------=_Part_840_20216895.1150930292843 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 6/21/06, Gary Kline wrote: > > I would probably save weeks trying to turn FBSD into the kind of > "Desktop" or window-manager platform I want by just using my > Ubuntu platform. > > I'm still stickng > with CTWM. On my Ubuntu servers there is amarak(sp?) which is > my favorite audio-only apps so far. Is there anything like this > that doesn't require desktop-specific libraries? > cplay!!! http://mask.tf.hut.fi/~flu/hacks/cplay/ It's in ports under audio/cplay. cplay is just a, python based, curses front-end so you will also need to install a back-end (ogg123, splay, mpg123, mpg321, madplay, mikmod, xmp, or sox), I recommend splay. I've attached the default .cplayrc config file, copy it to your home directory if the port doesn't automatically install it (I don't think it does)... and read the man page for cplay. -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ ------=_Part_840_20216895.1150930292843 Content-Type: application/octet-stream; name=.cplayrc Content-Transfer-Encoding: base64 X-Attachment-Id: f_eoq9ra4k Content-Disposition: attachment; filename=".cplayrc" UExBWUVSUyA9IFsKICAgIEZyYW1lT2Zmc2V0UGxheWVyKCJvZ2cxMjMgLXEgLXYgLWsgJWQgJXMi LCAiXC5vZ2ckIiksCiAgICBGcmFtZU9mZnNldFBsYXllcigic3BsYXkgLWYgLWsgJWQgJXMiLCAi KF5odHRwOi8vfFwubXBbMTIzXSQpIiwgMzguMjgpLAogICAgRnJhbWVPZmZzZXRQbGF5ZXIoIm1w ZzEyMyAtcSAtdiAtayAlZCAlcyIsICIoXmh0dHA6Ly98XC5tcFsxMjNdJCkiLCAzOC4yOCksCiAg ICBGcmFtZU9mZnNldFBsYXllcigibXBnMzIxIC1xIC12IC1rICVkICVzIiwgIiheaHR0cDovL3xc Lm1wWzEyM10kKSIsIDM4LjI4KSwKICAgIFRpbWVPZmZzZXRQbGF5ZXIoIm1hZHBsYXkgLXYgLS1u by10dHktY29udHJvbCAtLWRpc3BsYXktdGltZT1yZW1haW5pbmcgLXMgJWQgJXMiLCAiXC5tcFsx MjNdJCIpLAogICAgTm9PZmZzZXRQbGF5ZXIoIm1pa21vZCAtcSAtcDAgJXMiLCAiXC4obW9kfHht fGZtfHMzbXxtZWR8Y29sfDY2OXxpdHxtdG0pJCIpLAogICAgTm9PZmZzZXRQbGF5ZXIoInhtcCAt cSAlcyIsICJcLihtb2R8eG18Zm18czNtfG1lZHxjb2x8NjY5fGl0fG10bXxzdG0pJCIpLAogICAg Tm9PZmZzZXRQbGF5ZXIoInBsYXkgJXMiLCAiXC4oYWlmZnxhdXxjZHJ8bXAzfG9nZ3x3YXYpJCIp LAogICAgTm9PZmZzZXRQbGF5ZXIoInNwZWV4ZGVjICVzIiwgIlwuc3B4JCIpCiAgICBdCgo= ------=_Part_840_20216895.1150930292843-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 22:59: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 33EBF16A474 for ; Wed, 21 Jun 2006 22:59:49 +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 DFB4743D45 for ; Wed, 21 Jun 2006 22:59:48 +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 1FtBfo-0007Qm-7M; Wed, 21 Jun 2006 16:59:48 -0600 In-Reply-To: <20060621195523.I1114@ganymede.hub.org> References: <20060620060845.U1114@ganymede.hub.org> <20060621183832.H1114@ganymede.hub.org> <20060621195523.I1114@ganymede.hub.org> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <7E758C4C-E9A0-4871-80AA-66B97A4DFF01@shire.net> Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Wed, 21 Jun 2006 16:59:47 -0600 To: Marc G. Fournier X-Mailer: Apple Mail (2.750) 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 Cc: FreeBSD-Questions Questions Subject: Re: Are hardware vendors starting to bail 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, 21 Jun 2006 22:59:49 -0000 On Jun 21, 2006, at 4:58 PM, Marc G. Fournier wrote: > > b. are ppl actually using/promoting SATA drives in a server > environment? > Or are we just talking about situations where you have a large > number > of spindles to work with? My one experience with an SATA > configuration > is that the server doesn't *feel* like its performing as well as my > SCSI servers do ... under load ... That may have as much to do as the controller and driver as the drive type. Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 23:08: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 3873116A47E for ; Wed, 21 Jun 2006 23:08:25 +0000 (UTC) (envelope-from list-freebsd-2004@morbius.sent.com) Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com [66.111.4.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9350743D45 for ; Wed, 21 Jun 2006 23:08:24 +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 C851FD865A4 for ; Wed, 21 Jun 2006 19:08:22 -0400 (EDT) Received: from heartbeat1.messagingengine.com ([10.202.2.160]) by frontend3.internal (MEProxy); Wed, 21 Jun 2006 19:08:23 -0400 X-Sasl-enc: lUrFrfx9t7w4qfvHOGV0EvxmLAiodHr5yY1Q/+Po26N7 1150931303 Received: from bb-87-81-140-128.ukonline.co.uk (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mail.messagingengine.com (Postfix) with ESMTP id 89C3784BC for ; Wed, 21 Jun 2006 19:08:23 -0400 (EDT) From: RW To: freebsd-questions@freebsd.org Date: Thu, 22 Jun 2006 00:08:20 +0100 User-Agent: KMail/1.9.3 References: <20060621221720.GA55540@thought.org> In-Reply-To: <20060621221720.GA55540@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606220008.21262.list-freebsd-2004@morbius.sent.com> Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 23:08:25 -0000 On Wednesday 21 June 2006 23:17, Gary Kline wrote: > I would probably save weeks trying to turn FBSD into the kind of > "Desktop" or window-manager platform I want by just using my > Ubuntu platform. > > I'm still stickng > with CTWM. On my Ubuntu servers there is amarak(sp?) which is > my favorite audio-only apps so far. Is there anything like this > that doesn't require desktop-specific libraries? Without a doubt xmms. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 21 23:08: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 C7B6A16A494 for ; Wed, 21 Jun 2006 23:08:30 +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 4EB8343D45 for ; Wed, 21 Jun 2006 23:08:29 +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 k5LNGEBO057802; Wed, 21 Jun 2006 19:16:15 -0400 (EDT) (envelope-from chris@monochrome.org) Date: Wed, 21 Jun 2006 19:10:43 -0400 (EDT) From: Chris Hill To: Gary Kline In-Reply-To: <20060621221720.GA55540@thought.org> Message-ID: <20060621190527.J16398@tripel.monochrome.org> References: <20060621221720.GA55540@thought.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 21 Jun 2006 23:08:30 -0000 On Wed, 21 Jun 2006, Gary Kline wrote: > ...On my Ubuntu servers there is amarak(sp?) which is > my favorite audio-only apps so far. Is there anything like this > that doesn't require desktop-specific libraries? I've been using xmms for ages. It works, supports many formats, and seems to be pretty lightweight. HTH. -- Chris Hill chris@monochrome.org ** [ Busy Expunging <|> ] From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 01: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 B7CB616A47A for ; Thu, 22 Jun 2006 01:09:46 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0504743D49 for ; Thu, 22 Jun 2006 01:09:45 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id 3AE0A290C38; Wed, 21 Jun 2006 18:39:26 -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 54865-04; Wed, 21 Jun 2006 18:39:29 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id A21E0290C1E; Wed, 21 Jun 2006 18:39:25 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id 2935347F89; Wed, 21 Jun 2006 18:39:32 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id 226A647DD2; Wed, 21 Jun 2006 18:39:32 -0300 (ADT) Date: Wed, 21 Jun 2006 18:39:32 -0300 (ADT) From: "Marc G. Fournier" To: Nikolas Britton In-Reply-To: Message-ID: <20060621183832.H1114@ganymede.hub.org> References: <20060620060845.U1114@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Ted Mittelstaedt Subject: Re: Are hardware vendors starting to bail 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: Thu, 22 Jun 2006 01:09:46 -0000 On Wed, 21 Jun 2006, Nikolas Britton wrote: > On 6/21/06, Ted Mittelstaedt wrote: >> >> >-----Original Message----- >> >From: owner-freebsd-questions@freebsd.org >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marc >> >G. Fournier >> >Sent: Tuesday, June 20, 2006 2:24 AM >> >To: freebsd-questions@freebsd.org >> >Subject: Are hardware vendors starting to bail on FreeBSD ... ? >> > > > [deleted] > >> > >> > What can we, as a community, due to improve this situation? >> > >> >> Simple. If you want to run RAID-5 then purchase the HiPoint card or >> the 3ware card, both of them come with manufacturer-written drivers. >> 3ware is really great, they have a developer with committ rights and >> they just stick their driver right into the FreeBSD source repository. >> > > s/HiPoint/HighPoint/ a.k.a HighPoint Technologies, Inc. or simply HPT. > > I have two HighPoint controllers and like them both: > FreeBSD 6.1/i386 + HPT2220 + 8x250GB. > FreeBSD 6.1-STABLE/amd64 + HPT1820A + 8x300GB. > > Areca also supports FreeBSD: > $ man arcmsr (FreeBSD 5.4+) > http://www.areca.com.tw > > My next controller will probably be from Areca because they support > RAID level 6 and have multi-lane connectors... maybe ARC-1130ML + > 12x500GB. Does anyone know what SAS (Serial Attached SCSI) RAID > controllers are supported by FreeBSD?, they can use SATA drives > correct? SAS is what I'm using in our HP servers ... don't know about SATA drives, since the SAS drives are closer to a 'laptop size' then full size drive ... the HP controller is supported by the CISS driver, and is, by far, IMHO, the best driver we have, since you don't need any 'external utilities' to check the status of the RAID controller ... wish they all provided that :( ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 01: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 CAE0116A47B for ; Thu, 22 Jun 2006 01:09:46 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04EB843D48 for ; Thu, 22 Jun 2006 01:09:45 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id 1D8B5290C39; Wed, 21 Jun 2006 19:58:01 -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 62670-06; Wed, 21 Jun 2006 19:58:05 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id 49463290C35; Wed, 21 Jun 2006 19:58:00 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id DFC6C47F89; Wed, 21 Jun 2006 19:58:07 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id D98FC47DD2; Wed, 21 Jun 2006 19:58:07 -0300 (ADT) Date: Wed, 21 Jun 2006 19:58:07 -0300 (ADT) From: "Marc G. Fournier" To: Nikolas Britton In-Reply-To: Message-ID: <20060621195523.I1114@ganymede.hub.org> References: <20060620060845.U1114@ganymede.hub.org> <20060621183832.H1114@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Ted Mittelstaedt , chad@shire.net Subject: Re: Are hardware vendors starting to bail 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: Thu, 22 Jun 2006 01:09:46 -0000 On Wed, 21 Jun 2006, Nikolas Britton wrote: > On 6/21/06, Marc G. Fournier wrote: >> On Wed, 21 Jun 2006, Nikolas Britton wrote: >> >> > On 6/21/06, Ted Mittelstaedt wrote: >> >> >> >> >-----Original Message----- >> >> >From: owner-freebsd-questions@freebsd.org >> >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Marc >> >> >G. Fournier >> >> >Sent: Tuesday, June 20, 2006 2:24 AM >> >> >To: freebsd-questions@freebsd.org >> >> >Subject: Are hardware vendors starting to bail on FreeBSD ... ? >> >> > >> > >> > [deleted] >> > >> >> > >> >> > What can we, as a community, due to improve this situation? >> >> > >> >> >> >> Simple. If you want to run RAID-5 then purchase the HiPoint card or >> >> the 3ware card, both of them come with manufacturer-written drivers. >> >> 3ware is really great, they have a developer with committ rights and >> >> they just stick their driver right into the FreeBSD source repository. >> >> >> > >> > s/HiPoint/HighPoint/ a.k.a HighPoint Technologies, Inc. or simply HPT. >> > >> > I have two HighPoint controllers and like them both: >> > FreeBSD 6.1/i386 + HPT2220 + 8x250GB. >> > FreeBSD 6.1-STABLE/amd64 + HPT1820A + 8x300GB. >> > >> > Areca also supports FreeBSD: >> > $ man arcmsr (FreeBSD 5.4+) >> > http://www.areca.com.tw >> > >> > My next controller will probably be from Areca because they support >> > RAID level 6 and have multi-lane connectors... maybe ARC-1130ML + >> > 12x500GB. Does anyone know what SAS (Serial Attached SCSI) RAID >> > controllers are supported by FreeBSD?, they can use SATA drives >> > correct? >> >> SAS is what I'm using in our HP servers ... don't know about SATA drives, >> since the SAS drives are closer to a 'laptop size' then full size drive >> ... the HP controller is supported by the CISS driver, and is, by far, >> IMHO, the best driver we have, since you don't need any 'external >> utilities' to check the status of the RAID controller ... wish they all >> provided that :( >> > > HighPoint and Areca both have native FreeBSD array management > utilities and 12port, and up, Areca controllers have a built-in > Ethernet port with an embedded http/smtp/snmp/telnet server running on > them. > > Oh and SAS controllers can support SATA drives, from Adaptec's website: > > "The SAS connector is a universal interconnection that is form-factor > compatible with SATA, allowing SAS or SATA drives to plug directly > into a SAS environment whether for mission critical applications with > high availability and high performance requirements or lower > cost-per-gigabyte applications such as near-box storage. > > SATA connector signals are a subset of SAS signals, enabling the > compatibility of SATA devices and SAS controllers. SAS drives will not > operate on a SATA controller and are keyed to prevent any chance of > plugging them in incorrectly. > > In addition, the similar SAS and SATA physical interfaces enable a new > universal SAS backplane that provides connectivity to both SAS drives > and SATA drives, eliminating the need for separate SCSI and ATA drive > backplanes. This consolidation of designs greatly benefits both > backplane manufacturers and end-users by reducing inventory and design > costs." > > -- > http://www.adaptec.com/en-US/products/sata/_education/SAS_SATA_unprlcompat.htm a. HPs SAS drives don't have the same form-factor as the SATA drives, or, at least, not the SATA drives I've had experience with, so although the interface may work with either, the rack mount servers don't have that option ... my love of the SAS drives is 4 drives per 1U rack, which means I can do RAID1+0 instead of RAID5 on SCSI/SATA racks ... b. are ppl actually using/promoting SATA drives in a server environment? Or are we just talking about situations where you have a large number of spindles to work with? My one experience with an SATA configuration is that the server doesn't *feel* like its performing as well as my SCSI servers do ... under load ... ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 02:55: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 B8EF316A47A for ; Thu, 22 Jun 2006 02:55:02 +0000 (UTC) (envelope-from mrl0lz@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 1A6F743D49 for ; Thu, 22 Jun 2006 02:55:00 +0000 (GMT) (envelope-from mrl0lz@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so309094nzi for ; Wed, 21 Jun 2006 19:55: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:mime-version:content-type; b=XQ3N4v7rG/64WYVxqChL2AvyUq1Nbn7Q2AMI5pP2LZz3g35ON85qVGmpWx7waGmgPmSoThckIzh2m94GGyyCXXUytK+00S3bjkrLN5mzgvYvk8BsE80WOJ/QlbIEkk2/BcLR6esk2ldDgb5RkRH5RubWN34T7/4c57eLp5GZwHU= Received: by 10.36.25.2 with SMTP id 2mr570986nzy; Wed, 21 Jun 2006 19:55:00 -0700 (PDT) Received: by 10.37.2.48 with HTTP; Wed, 21 Jun 2006 19:55:00 -0700 (PDT) Message-ID: Date: Wed, 21 Jun 2006 19:55:00 -0700 From: "Remington L" To: 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 Cc: Subject: pkg_add is driving me NUTS! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 02:55:02 -0000 I have two servers, exact same hardware, exact same version of FreeBSD, in this case 4.10. When I run pkg_add blah.tbz on one machine, it takes between 2-8 hours, on the other 8-10 minutes. These machines are quad-Intel 2.8Xeons, with 4GB of memory. Ive done everything from running make world, to md5ing pkg_add, bzip2, and tar, there identical. I noticed on the one thing, on the machine that takes forever, bzip2 is only using 1-3% load, while the other, which does work, takes 100%. I have SMP compiled into the kernel, well actually, there both using the exact same kernconf. Anyone have ideas?? From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 03:12: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 DF68816A484 for ; Thu, 22 Jun 2006 03:12:34 +0000 (UTC) (envelope-from scuba@centroin.com.br) Received: from mdhost1.centroin.com.br (mail-gw1.centroin.com.br [200.225.63.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12B8E43D46 for ; Thu, 22 Jun 2006 03:12:33 +0000 (GMT) (envelope-from scuba@centroin.com.br) Received: from trex.centroin.com.br (trex.centroin.com.br [200.225.63.134]) by mdhost1.centroin.com.br (8.13.5/8.13.5/CIP SMTP HOST) with ESMTP id k5M3CVVd010824 for ; Thu, 22 Jun 2006 00:12:31 -0300 (BRT) (envelope-from scuba@centroin.com.br) Date: Thu, 22 Jun 2006 00:12:53 -0300 (BRT) From: scuba@centroin.com.br Sender: mpsouza@trex.centroin.com.br To: freebsd-questions@freebsd.org Message-ID: <20060622001205.L85604@trex.centroin.com.br> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: How to raise the limit for sockets X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 03:12:35 -0000 Hi all, How can I raise the file descriptors limits for each socket in FBSD 5.4? Thank You, - Marcelo From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 03:52: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 2EFDC16A47A for ; Thu, 22 Jun 2006 03:52:51 +0000 (UTC) (envelope-from fedder-public@skovgaard.dk) Received: from mail.dbmail.dk (mail.dbmail.dk [82.143.192.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id A994C4458C for ; Thu, 22 Jun 2006 03:52:50 +0000 (GMT) (envelope-from fedder-public@skovgaard.dk) Received: from localhost (mail.dbmail.dk [127.0.0.1]) by mail.dbmail.dk (Dbmail) with ESMTP id A45B8501B7 for ; Thu, 22 Jun 2006 05:52:49 +0200 (CEST) Received: from mail.dbmail.dk ([127.0.0.1]) by localhost (mail.dbmail.dk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31115-04 for ; Thu, 22 Jun 2006 05:52:49 +0200 (CEST) Received: from skovgaard.dk (unknown [82.143.226.49]) by mail.dbmail.dk (Dbmail) with SMTP id 089F650081 for ; Thu, 22 Jun 2006 05:52:49 +0200 (CEST) Received: (qmail 34882 invoked from network); 22 Jun 2006 03:52:49 -0000 Received: from localhost (HELO ?127.0.0.1?) (127.0.0.1) by skovgaard.dk with SMTP; 22 Jun 2006 03:52:49 -0000 Message-ID: <449A1410.9060708@skovgaard.dk> Date: Thu, 22 Jun 2006 05:52:48 +0200 From: Fedder Skovgaard User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) 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: amavisd-new at dbmail.dk Subject: "unexpected busfree while idle" on FreeBSD 5.4 RELEASE-p7 with AIC-7899 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 03:52:51 -0000 Hi Everybody, I posted this to the freebsd-scsi list a week ago but no-one has replied, why I take the liberty of posting it here as well. Sorry for bothering you, but if you have the time, I'd really appreciate your comments on the following problem: I've got a P3 system with an onboard Adaptec AIC-7899 SCSI Controller. The system came with a "QUANTUM ATLAS10K3_18_WLS Version: 020W" disk, to which I've added two "SEAGATE SX1181677LCV Version: C00C" disks to the same cable (using 80->68 pins converters). The two Seagate disks run in a gmirror. Disk activity seems to lock in periods with the above mentioned error shown in the system log. The interval of these lock-ups seem to be closely related to the amount of disk activity in the system. I can see that you, at least intended, to look at a seemingly similar problem last january, ref: http://lists.freebsd.org/pipermail/freebsd-scsi/2005-January/001662.html Where a user downgraded a driver. Is there a fix available for it now, if I i.e. upgrade to 6.1-RELEASE? Thanks in advance for any suggestions. /Fedder Here's an excerpt from the system log during one of those lock-ups. Jun 13 23:14:10 FreeBSD kernel: ahc0: Unexpected busfree while idle Jun 13 23:14:10 FreeBSD kernel: SEQADDR == 0x30 Jun 13 23:14:26 FreeBSD kernel: ahc0: Recovery Initiated Jun 13 23:14:26 FreeBSD kernel: >>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<< Jun 13 23:14:26 FreeBSD kernel: ahc0: Dumping Card State while idle, at SEQADDR 0x8 Jun 13 23:14:26 FreeBSD kernel: Card was paused Jun 13 23:14:26 FreeBSD kernel: ACCUM = 0x0, SINDEX = 0x64, DINDEX = 0xe4, ARG_2 = 0x0 Jun 13 23:14:26 FreeBSD kernel: HCNT = 0x0 SCBPTR = 0x1b Jun 13 23:14:26 FreeBSD kernel: SCSIPHASE[0x0] SCSISIGI[0x0] ERROR[0x0] SCSIBUSL[0x0] Jun 13 23:14:26 FreeBSD kernel: LASTPHASE[0x1]:(P_BUSFREE) SCSISEQ[0x12]:(ENAUTOATNP|ENRSELI) Jun 13 23:14:26 FreeBSD kernel: SBLKCTL[0x6]:(SELWIDE|ENAB20) SCSIRATE[0x0] SEQCTL[0x10]:(FASTMODE) Jun 13 23:14:26 FreeBSD kernel: SEQ_FLAGS[0xc0]:(NO_CDB_SENT|NOT_IDENTIFIED) SSTAT0[0x0] Jun 13 23:14:26 FreeBSD kernel: SSTAT1[0x0] SSTAT2[0x0] SSTAT3[0x0] SIMODE0[0x8]:(ENSWRAP) Jun 13 23:14:26 FreeBSD kernel: SIMODE1[0xa4]:(ENSCSIPERR|ENSCSIRST|ENSELTIMO) SXFRCTL0[0x80]:(DFON) Jun 13 23:14:26 FreeBSD kernel: DFCNTRL[0x0] DFSTATUS[0x89]:(FIFOEMP|HDONE|PRELOAD_AVAIL) Jun 13 23:14:26 FreeBSD kernel: STACK: 0xe2 0x164 0x10a 0x3 Jun 13 23:14:26 FreeBSD kernel: SCB count = 160 Jun 13 23:14:26 FreeBSD kernel: Kernel NEXTQSCB = 54 Jun 13 23:14:26 FreeBSD kernel: Card NEXTQSCB = 54 Jun 13 23:14:26 FreeBSD kernel: QINFIFO entries: Jun 13 23:14:26 FreeBSD kernel: Waiting Queue entries: Jun 13 23:14:26 FreeBSD kernel: Disconnected Queue entries: Jun 13 23:14:26 FreeBSD kernel: QOUTFIFO entries: Jun 13 23:14:26 FreeBSD kernel: Sequencer Free SCB List: 27 10 13 1 17 28 23 16 12 18 4 2 6 0 15 31 5 20 7 30 25 19 24 29 11 3 22 Jun 13 23:14:26 FreeBSD kernel: Sequencer SCB Info: Jun 13 23:14:26 FreeBSD kernel: 0 SCB_CONTROL[0xe0]:(TAG_ENB|DISCENB|TARGET_SCB) SCB_SCSIID[0x67] Jun 13 23:14:26 FreeBSD kernel: SCB_LUN[0x0] SCB_TAG[0xff] Jun 13 23:14:26 FreeBSD kernel: 1 ... Jun 13 23:14:26 FreeBSD kernel: <<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>> Jun 13 23:14:26 FreeBSD kernel: (da0:ahc0:0:6:0): SCB 0x7 - timed out Jun 13 23:14:26 FreeBSD kernel: sg[0] - Addr 0x19a93000 : Length 4096 Jun 13 23:14:26 FreeBSD kernel: (da0:ahc0:0:6:0): Queuing a BDR SCB Jun 13 23:14:26 FreeBSD kernel: Infinite interrupt loop, INTSTAT = 0ahc0: Timedout SCBs already complete. Interrupts may not be functioning. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 04:48: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 053A616A51A for ; Thu, 22 Jun 2006 04:48:30 +0000 (UTC) (envelope-from fedder@skovgaard.dk) Received: from mail.dbmail.dk (mail.dbmail.dk [82.143.192.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D11B444D8 for ; Thu, 22 Jun 2006 03:47:23 +0000 (GMT) (envelope-from fedder@skovgaard.dk) Received: from localhost (mail.dbmail.dk [127.0.0.1]) by mail.dbmail.dk (Dbmail) with ESMTP id 0EB2550151 for ; Thu, 22 Jun 2006 05:47:22 +0200 (CEST) Received: from mail.dbmail.dk ([127.0.0.1]) by localhost (mail.dbmail.dk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30787-05 for ; Thu, 22 Jun 2006 05:47:21 +0200 (CEST) Received: from skovgaard.dk (unknown [82.143.226.49]) by mail.dbmail.dk (Dbmail) with SMTP id 6F474501A3 for ; Thu, 22 Jun 2006 05:47:21 +0200 (CEST) Received: (qmail 34876 invoked from network); 22 Jun 2006 03:47:21 -0000 Received: from localhost (HELO ?127.0.0.1?) (127.0.0.1) by skovgaard.dk with SMTP; 22 Jun 2006 03:47:21 -0000 Message-ID: <449A12C8.7040506@skovgaard.dk> Date: Thu, 22 Jun 2006 05:47:20 +0200 From: Fedder Skovgaard User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) 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: amavisd-new at dbmail.dk Subject: "unexpected busfree while idle" on FreeBSD 5.4 RELEASE-p7 with AIC-7899 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 04:48:30 -0000 Hi Everybody, I posted this to the freebsd-scsi list a week ago but no-one has replied, why I take the liberty of posting it here as well. Sorry for bothering you, but if you have the time, I'd really appreciate your comments on the following problem: I've got a P3 system with an onboard Adaptec AIC-7899 SCSI Controller. The system came with a "QUANTUM ATLAS10K3_18_WLS Version: 020W" disk, to which I've added two "SEAGATE SX1181677LCV Version: C00C" disks to the same cable (using 80->68 pins converters). The two Seagate disks run in a gmirror. Disk activity seems to lock in periods with the above mentioned error shown in the system log. The interval of these lock-ups seem to be closely related to the amount of disk activity in the system. I can see that you, at least intended, to look at a seemingly similar problem last january, ref: http://lists.freebsd.org/pipermail/freebsd-scsi/2005-January/001662.html Where a user downgraded a driver. Is there a fix available for it now, if I i.e. upgrade to 6.1-RELEASE? Thanks in advance for any suggestions. /Fedder Here's an excerpt from the system log during one of those lock-ups. Jun 13 23:14:10 FreeBSD kernel: ahc0: Unexpected busfree while idle Jun 13 23:14:10 FreeBSD kernel: SEQADDR == 0x30 Jun 13 23:14:26 FreeBSD kernel: ahc0: Recovery Initiated Jun 13 23:14:26 FreeBSD kernel: >>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<< Jun 13 23:14:26 FreeBSD kernel: ahc0: Dumping Card State while idle, at SEQADDR 0x8 Jun 13 23:14:26 FreeBSD kernel: Card was paused Jun 13 23:14:26 FreeBSD kernel: ACCUM = 0x0, SINDEX = 0x64, DINDEX = 0xe4, ARG_2 = 0x0 Jun 13 23:14:26 FreeBSD kernel: HCNT = 0x0 SCBPTR = 0x1b Jun 13 23:14:26 FreeBSD kernel: SCSIPHASE[0x0] SCSISIGI[0x0] ERROR[0x0] SCSIBUSL[0x0] Jun 13 23:14:26 FreeBSD kernel: LASTPHASE[0x1]:(P_BUSFREE) SCSISEQ[0x12]:(ENAUTOATNP|ENRSELI) Jun 13 23:14:26 FreeBSD kernel: SBLKCTL[0x6]:(SELWIDE|ENAB20) SCSIRATE[0x0] SEQCTL[0x10]:(FASTMODE) Jun 13 23:14:26 FreeBSD kernel: SEQ_FLAGS[0xc0]:(NO_CDB_SENT|NOT_IDENTIFIED) SSTAT0[0x0] Jun 13 23:14:26 FreeBSD kernel: SSTAT1[0x0] SSTAT2[0x0] SSTAT3[0x0] SIMODE0[0x8]:(ENSWRAP) Jun 13 23:14:26 FreeBSD kernel: SIMODE1[0xa4]:(ENSCSIPERR|ENSCSIRST|ENSELTIMO) SXFRCTL0[0x80]:(DFON) Jun 13 23:14:26 FreeBSD kernel: DFCNTRL[0x0] DFSTATUS[0x89]:(FIFOEMP|HDONE|PRELOAD_AVAIL) Jun 13 23:14:26 FreeBSD kernel: STACK: 0xe2 0x164 0x10a 0x3 Jun 13 23:14:26 FreeBSD kernel: SCB count = 160 Jun 13 23:14:26 FreeBSD kernel: Kernel NEXTQSCB = 54 Jun 13 23:14:26 FreeBSD kernel: Card NEXTQSCB = 54 Jun 13 23:14:26 FreeBSD kernel: QINFIFO entries: Jun 13 23:14:26 FreeBSD kernel: Waiting Queue entries: Jun 13 23:14:26 FreeBSD kernel: Disconnected Queue entries: Jun 13 23:14:26 FreeBSD kernel: QOUTFIFO entries: Jun 13 23:14:26 FreeBSD kernel: Sequencer Free SCB List: 27 10 13 1 17 28 23 16 12 18 4 2 6 0 15 31 5 20 7 30 25 19 24 29 11 3 22 Jun 13 23:14:26 FreeBSD kernel: Sequencer SCB Info: Jun 13 23:14:26 FreeBSD kernel: 0 SCB_CONTROL[0xe0]:(TAG_ENB|DISCENB|TARGET_SCB) SCB_SCSIID[0x67] Jun 13 23:14:26 FreeBSD kernel: SCB_LUN[0x0] SCB_TAG[0xff] Jun 13 23:14:26 FreeBSD kernel: 1 ... Jun 13 23:14:26 FreeBSD kernel: <<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>> Jun 13 23:14:26 FreeBSD kernel: (da0:ahc0:0:6:0): SCB 0x7 - timed out Jun 13 23:14:26 FreeBSD kernel: sg[0] - Addr 0x19a93000 : Length 4096 Jun 13 23:14:26 FreeBSD kernel: (da0:ahc0:0:6:0): Queuing a BDR SCB Jun 13 23:14:26 FreeBSD kernel: Infinite interrupt loop, INTSTAT = 0ahc0: Timedout SCBs already complete. Interrupts may not be functioning. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 04: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 D05B116A47C for ; Thu, 22 Jun 2006 04:53:30 +0000 (UTC) (envelope-from dennisolvany@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 20A2543D58 for ; Thu, 22 Jun 2006 04:53:29 +0000 (GMT) (envelope-from dennisolvany@gmail.com) Received: by wr-out-0506.google.com with SMTP id 50so324982wri for ; Wed, 21 Jun 2006 21:53:29 -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=DaFsRUyBCN51VXe4dKT/uCWBHqUzXrYvNuy9sGNazwlPkFCZNU3m0OF4tHNaDmUjetJR7g+wY9tLbRqVRX32+z82Hvd41EzrYHWMxvPxMtVzJ31VelK0fvQIEcYw76J/peX8Gj3sanIz4XDs7kN5+GiT0VNe7h2yYQP9rDJQmco= Received: by 10.54.106.14 with SMTP id e14mr713152wrc; Wed, 21 Jun 2006 21:53:28 -0700 (PDT) Received: from ?195.16.87.34? ( [195.16.87.34]) by mx.gmail.com with ESMTP id 8sm1138159wra.2006.06.21.21.53.25; Wed, 21 Jun 2006 21:53:27 -0700 (PDT) Message-ID: <449A2243.1010307@gmail.com> Date: Wed, 21 Jun 2006 23:53:23 -0500 From: Dennis Olvany User-Agent: Thunderbird 1.5 (X11/20060211) MIME-Version: 1.0 To: Gary Kline References: <20060621221720.GA55540@thought.org> In-Reply-To: <20060621221720.GA55540@thought.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 04:53:30 -0000 vlc From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 06:21: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 512EA16A4D5 for ; Thu, 22 Jun 2006 06:21:49 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id EADD543D5A for ; Thu, 22 Jun 2006 06:21:48 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id A7B33290C39 for ; Thu, 22 Jun 2006 03:21:46 -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 25224-07 for ; Thu, 22 Jun 2006 03:21:48 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id 2E106290C35 for ; Thu, 22 Jun 2006 03:21:46 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id 8757E5C196; Thu, 22 Jun 2006 03:21:48 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id 83C2A5C054 for ; Thu, 22 Jun 2006 03:21:48 -0300 (ADT) Date: Thu, 22 Jun 2006 03:21:48 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-questions@freebsd.org Message-ID: <20060622031513.Q1114@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: SSH tunneling to FreeBSD 6.x using entunnel ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 06:21:49 -0000 I have a client that has been using entunnel for the longest time to do an SSH tunnel into their vServer ... we've recently begun upgrading to FreeBSD 6.x, and entunnel is no longer working (upgraded from FreeBSD 4.x) ... Apparenty, bitvise.com's tunnelier has the same problem ... The way the client describes how entunnel used to work for them: "entunnel was great - i never had to think about it. it just worked, all the time, automatically - came up at startup as a service and just sat in the system tray." Without having to downgrade their OpenSSH to the same version as was on FreeBSD 4.x (bad option!), is there something that I can look at on the FreeBSD 6.x OpenSSH to fix the problem? Maybe some backwards compatibility mode? Thanks ... ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 07:23: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 E9D6C16A474 for ; Thu, 22 Jun 2006 07:23:00 +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 8150343D5A for ; Thu, 22 Jun 2006 07:22:59 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-39-242.dynamic.qsc.de [212.202.39.242]) by efacilitas.de (Postfix) with ESMTP id 4C92D4CBF3; Thu, 22 Jun 2006 09:23:27 +0200 (CEST) Received: from [192.168.1.2] (muhkuh.local [192.168.1.2]) by eurystheus.local (Postfix) with ESMTP id 508435285F; Thu, 22 Jun 2006 09:21:55 +0200 (CEST) Message-ID: <449A454A.5070107@cs.tu-berlin.de> Date: Thu, 22 Jun 2006 09:22:50 +0200 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-AT; rv:1.7.13) Gecko/20060519 X-Accept-Language: de, en MIME-Version: 1.0 To: Remington L References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: questions@freebsd.org Subject: Re: pkg_add is driving me NUTS! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 07:23:01 -0000 Remington L schrieb: > I have two servers, exact same hardware, exact same version of FreeBSD, in > this case 4.10. When I run pkg_add blah.tbz on one machine, it takes > between > 2-8 hours, on the other 8-10 minutes. These machines are quad-Intel > 2.8Xeons, with 4GB of memory. > > Ive done everything from running make world, to md5ing pkg_add, bzip2, and > tar, there identical. > > I noticed on the one thing, on the machine that takes forever, bzip2 is > only > using 1-3% load, while the other, which does work, takes 100%. I have SMP > compiled into the kernel, well actually, there both using the exact same > kernconf. > > Anyone have ideas?? I would try to encircle the problem. Try to compress and decompress idendical random data with bzip2 on both machines. Try also the GENERIC kernel without SMP. At a glance I would assume that there is a hardware fault. Björn From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 07:34: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 3E1C516A474 for ; Thu, 22 Jun 2006 07:34:46 +0000 (UTC) (envelope-from jorpavon@hotmail.com) Received: from hotmail.com (bay113-f29.bay113.hotmail.com [65.54.168.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id D138243D55 for ; Thu, 22 Jun 2006 07:34:45 +0000 (GMT) (envelope-from jorpavon@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Thu, 22 Jun 2006 00:34:45 -0700 Message-ID: Received: from 65.54.168.200 by by113fd.bay113.hotmail.msn.com with HTTP; Thu, 22 Jun 2006 07:34:42 GMT X-Originating-IP: [213.96.60.26] X-Originating-Email: [jorpavon@hotmail.com] X-Sender: jorpavon@hotmail.com In-Reply-To: From: "Jordi Pavon" To: sub02@freeode.co.uk Date: Thu, 22 Jun 2006 07:34:42 +0000 X-OriginalArrivalTime: 22 Jun 2006 07:34:45.0529 (UTC) FILETIME=[55679090:01C695CE] MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format="flowed" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: make buildkernel ERROR ?Why? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 07:34:46 -0000 Right John, I follow your instructions and it's OK. Thank you very much!! >You have the umass device enabled which, as it says, requires scbus >and da. Either remark the umass line or unremark the scbus and da >lines in the SCSI peripherals section. > >Also, as you have the INET6 option remarked out, you probably won't >need the faith device (in Pseudo devices). > >-- >HTH, John. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 07:35: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 6B4FF16A59A for ; Thu, 22 Jun 2006 07:35:43 +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 2237743D8A for ; Thu, 22 Jun 2006 07:35:41 +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 k5M7ZXEY025857; Thu, 22 Jun 2006 10:35:33 +0300 From: Nikos Vassiliadis To: freebsd-questions@freebsd.org Date: Thu, 22 Jun 2006 10:31:40 +0300 User-Agent: KMail/1.9.1 References: <449A454A.5070107@cs.tu-berlin.de> In-Reply-To: <449A454A.5070107@cs.tu-berlin.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Content-Disposition: inline Message-Id: <200606221031.41033.nvass@teledomenet.gr> Cc: Remington L , =?iso-8859-1?q?Bj=F6rn_K=F6nig?= Subject: Re: pkg_add is driving me NUTS! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 07:35:43 -0000 On Thursday 22 June 2006 10:22, Björn König wrote: > Remington L schrieb: > > I have two servers, exact same hardware, exact same version of FreeBSD, > > in this case 4.10. When I run pkg_add blah.tbz on one machine, it takes > > between > > 2-8 hours, on the other 8-10 minutes. These machines are quad-Intel > > 2.8Xeons, with 4GB of memory. > > > > Ive done everything from running make world, to md5ing pkg_add, bzip2, > > and tar, there identical. > > > > I noticed on the one thing, on the machine that takes forever, bzip2 is > > only > > using 1-3% load, while the other, which does work, takes 100%. I have SMP > > compiled into the kernel, well actually, there both using the exact same > > kernconf. > > > > Anyone have ideas?? > > I would try to encircle the problem. Try to compress and decompress > idendical random data with bzip2 on both machines. Try also the GENERIC > kernel without SMP. At a glance I would assume that there is a hardware > fault. Yes that, or perhaps medium problems? anything interesting from dmesg(8)? From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 08:14: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 7AA5E16A47E for ; Thu, 22 Jun 2006 08:14:33 +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 D5F97443AB for ; Thu, 22 Jun 2006 08:14:32 +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 k5M8E4EY026703; Thu, 22 Jun 2006 11:14:04 +0300 From: Nikos Vassiliadis To: freebsd-questions@freebsd.org Date: Thu, 22 Jun 2006 11:10:11 +0300 User-Agent: KMail/1.9.1 References: <20060622001205.L85604@trex.centroin.com.br> In-Reply-To: <20060622001205.L85604@trex.centroin.com.br> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606221110.11848.nvass@teledomenet.gr> Cc: scuba@centroin.com.br Subject: Re: How to raise the limit for sockets X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 08:14:33 -0000 On Thursday 22 June 2006 06:12, scuba@centroin.com.br wrote: > Hi all, > > How can I raise the file descriptors limits for each socket in > FBSD 5.4? Each socket is a descriptor. I guess you need something like: from limits(1): -n [val] Select or set the openfiles resource limit. The system-wide limit on the maximum number of open files per process can be viewed by examining the kern.maxfilesperproc sysctl(8) vari- able. The total number of simultaneously open files in the entire system is limited to the value displayed by the kern.maxfiles sysctl(8) variable. --[snip]-- SEE ALSO csh(1), env(1), limit(1), sh(1), getrlimit(2), setrlimit(2), login_cap(3), login.conf(5), sysctl(8) From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 08:24: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 00FFF16A47F for ; Thu, 22 Jun 2006 08:24:20 +0000 (UTC) (envelope-from jahilliya@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 41BA144648 for ; Thu, 22 Jun 2006 08:24:19 +0000 (GMT) (envelope-from jahilliya@gmail.com) Received: by nz-out-0102.google.com with SMTP id m22so397227nzf for ; Thu, 22 Jun 2006 01: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:references; b=So+8YFfPDbQzMouw43g3Qc4Oi0cCh7Zq4oJ0UR5Bjzo2ncCHqvM3P2Ab3On5TFqf3m+PqwfQAqurbayQEwjHWWaPuZfI28F45DFjTip/XBJ6jl/8ct6KIgHpZDjl0aKL9w2VN4JVpe1FSQobIw1vMEVIzlBacj1qe26+BU3QBjo= Received: by 10.37.13.43 with SMTP id q43mr1579481nzi; Thu, 22 Jun 2006 01:24:18 -0700 (PDT) Received: by 10.37.15.74 with HTTP; Thu, 22 Jun 2006 01:24:12 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 16:24:12 +0800 From: Jahilliya To: "Nikos Vassiliadis" In-Reply-To: <200606221031.41033.nvass@teledomenet.gr> MIME-Version: 1.0 References: <449A454A.5070107@cs.tu-berlin.de> <200606221031.41033.nvass@teledomenet.gr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Remington L , freebsd-questions@freebsd.org, =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= Subject: Re: pkg_add is driving me NUTS! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 08:24:20 -0000 On 6/22/06, Nikos Vassiliadis wrote: > > On Thursday 22 June 2006 10:22, Bj=F6rn K=F6nig wrote: > > Remington L schrieb: > > > I have two servers, exact same hardware, exact same version of > FreeBSD, > > > in this case 4.10. When I run pkg_add blah.tbz on one machine, it > takes > > > between > > > 2-8 hours, on the other 8-10 minutes. These machines are quad-Intel > > > 2.8Xeons, with 4GB of memory. > > > > > > Ive done everything from running make world, to md5ing pkg_add, bzip2= , > > > and tar, there identical. > > > > > > I noticed on the one thing, on the machine that takes forever, bzip2 > is > > > only > > > using 1-3% load, while the other, which does work, takes 100%. I have > SMP > > > compiled into the kernel, well actually, there both using the exact > same > > > kernconf. > What about the default nice levels, what is top reporting the nice levels are on both the servers? Are other processes hogging the CPU? Have profiles been modified at all on either machine? (/etc/login.conf) Try doing nice -n -19 pkg_add ...... Monitor iostat -c99999 diskdev to see what speed they're reading from the disk at.... From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 08:25:24 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 1D27716A56E; Thu, 22 Jun 2006 08:25:24 +0000 (UTC) (envelope-from greg.lane@internode.on.net) Received: from ash25e.internode.on.net (ash25e.internode.on.net [203.16.214.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 235BD441B8; Thu, 22 Jun 2006 07:52:38 +0000 (GMT) (envelope-from greg.lane@internode.on.net) Received: from router.lane.family (ozlane.net [150.101.115.95]) by ash25e.internode.on.net (8.13.6/8.13.5) with ESMTP id k5M7qaaH042945; Thu, 22 Jun 2006 17:22:37 +0930 (CST) (envelope-from greg.lane@internode.on.net) Received: from router.lane.family (localhost.lane.family [127.0.0.1]) by router.lane.family (8.13.6/8.13.6) with ESMTP id k5M7qanN095445; Thu, 22 Jun 2006 17:52:36 +1000 (EST) (envelope-from gjl103@router.lane.family) Received: (from gjl103@localhost) by router.lane.family (8.13.6/8.13.6/Submit) id k5M7qa34095444; Thu, 22 Jun 2006 17:52:36 +1000 (EST) (envelope-from gjl103) Date: Thu, 22 Jun 2006 17:52:36 +1000 From: Greg Lane To: amd64@freebsd.org, questions@freebsd.org Message-ID: <20060622075236.GA95258@router.lane.family> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Cc: Subject: Does anyone run VNC with 64-bit FreeBSD (amd64)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: greg.lane@internode.on.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 08:25:24 -0000 G'day everyone, I recently had to replace a disk and took the opportunity to upgrade from 5-stable to 6-stable. I also changed from the 32-bit to the 64-bit version. I have a dual Opteron server. VNC installed from ports (4.2.1) doesn't work on the 64-bit machine. The same version installed on my home machine (32-bit) with the .vnc directory copied over exactly from my work 64-bit machine runs fine. So in what sense does it fail.... If I create a blank .vnc/xstartup, then I get the usual grey screen. Then if I try and run X commands on that display, some work, like xsetroot -solid blue, but others, xterm, icewm, twm, etc don't. 130>~/.vnc$ icewm -display :9 IceWM: using /home/xxxxxx/.icewm for private configuration files X Error of failed request: BadValue (integer parameter out of range for operation) Major opcode of failed request: 2 (X_ChangeWindowAttributes) Value in failed request: 0x0 Serial number of failed request: 9 Current serial number in output stream: 10 131>~/.vnc$ xterm -display :9 X Error of failed request: BadValue (integer parameter out of range for operation) Major opcode of failed request: 1 (X_CreateWindow) Value in failed request: 0x21 Serial number of failed request: 41 Current serial number in output stream: 49 If they are in the xstartup file they give the exact same errors in the vnc log file. I was only running them interactively above to troubleshoot it. Google has failed me for once, so I seek your experience and advice... Greg From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 08:26: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 7E89716A4DF for ; Thu, 22 Jun 2006 08:26:41 +0000 (UTC) (envelope-from howie@thingy.com) Received: from tasmania.network-i.net (tasmania.network-i.net [212.21.121.160]) by mx1.FreeBSD.org (Postfix) with SMTP id 14FDA43E88 for ; Thu, 22 Jun 2006 08:26:28 +0000 (GMT) (envelope-from howie@thingy.com) Received: (qmail 41890 invoked from network); 22 Jun 2006 08:26:26 -0000 Received: from nat1.network-i.net (HELO ?10.1.1.134?) (212.21.99.52) by tasmania.network-i.net with SMTP; 22 Jun 2006 08:26:26 -0000 Message-ID: <449A544B.5050106@thingy.com> Date: Thu, 22 Jun 2006 09:26:51 +0100 From: Howard Jones User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Change detection order for firewire vs SCSI? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 08:26:41 -0000 I have an old dual-P3 server with an internal SCSI backplane. I also have an external firewire drive attached to it as cheap, 'disposable' storage. It all works swimmingly apart from one thing: When the system boots, it loads the kernel from the SCSI drive OK, then at some stage it changes it's idea of what da0 is from the first SCSI drive to the firewire one, and then fails to boot since there's no da0s1a on the firewire drive. Unplugging the firewire drive and rebooting works, but means it can't be done unattended, obviously. Is there any way to stop or change this behaviour? I couldn't see anything in the sbp(4) manpage... I'm running FreeBSD 6.1-RELEASE, in case it's relevant. Thanks for any pointers. Howie From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 09:02: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 E847216A474 for ; Thu, 22 Jun 2006 09:02:37 +0000 (UTC) (envelope-from carpetsmoker@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 6CF1943D5A for ; Thu, 22 Jun 2006 09:02:37 +0000 (GMT) (envelope-from carpetsmoker@gmail.com) Received: by py-out-1112.google.com with SMTP id c59so259020pyc for ; Thu, 22 Jun 2006 02:02:36 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:to:subject:content-type:mime-version:references:content-transfer-encoding:message-id:in-reply-to:user-agent:from; b=QZKi2oa/fEijki/A17N9XQIz7KclUZbY74S1j0HAa7CJ1KMOSolNLRnIpfZRpFSihRIz+huFirfTML+AoT8ubxmHDrVv4M7uEFSvSKojVgnUc1RLMhSJZlNq+P2BsPPXyxgH1r9N09rBHTewtv8c5fE3BcFTxzuE0ZHVEchUh+U= Received: by 10.35.129.19 with SMTP id g19mr853091pyn; Thu, 22 Jun 2006 02:02:36 -0700 (PDT) Received: from carpetsmoker.ictwerkplaats.org ( [80.126.94.163]) by mx.gmail.com with ESMTP id a75sm709497pyf.2006.06.22.02.02.35; Thu, 22 Jun 2006 02:02:36 -0700 (PDT) Date: Thu, 22 Jun 2006 11:00:22 -0000 To: "Jeff Molofee" , freebsd-questions@freebsd.org Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <20060621185231.B288F16A4D1@hub.freebsd.org> <4499BCFC.2050103@cruzinternet.com> Content-Transfer-Encoding: Quoted-Printable Message-ID: In-Reply-To: <4499BCFC.2050103@cruzinternet.com> User-Agent: Opera Mail/9.00 (FreeBSD) From: Martin Tournoy Cc: Subject: Re: Google Earth... Anyone? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 09:02:38 -0000 On Wed, 21 Jun 2006 21:41:16 -0000, Jeff Molofee = = wrote: > does anyone know how to resolve the following error in googleearth = > (astro/google-earth) > > =3D=3D=3D> Vulnerability check disabled, database not found > =3D=3D=3D> Extracting for google-earth-4 > =3D> MD5 Checksum OK for GoogleEarthLinux.bin. > =3D> SHA256 Checksum OK for GoogleEarthLinux.bin. > =3D=3D=3D> Patching for google-earth-4 > =3D=3D=3D> google-earth-4 depends on executable: unmakeself - found > =3D=3D=3D> Configuring for google-earth-4 > =3D=3D=3D> Building for google-earth-4 > =3D=3D=3D> Installing for google-earth-4 > =3D=3D=3D> google-earth-4 depends on executable: update-mime-database = - found > =3D=3D=3D> google-earth-4 depends on file: = > /compat/linux/usr/X11R6/lib/libGL.so.1 - found > =3D=3D=3D> google-earth-4 depends on file: /compat/linux/etc/fedora-re= lease - = > found > =3D=3D=3D> Generating temporary packing list > =3D=3D=3D> Checking if astro/google-earth already installed > /bin/mkdir -p /usr/local/share/google-earth > install -o root -g wheel -m 444 = > /usr/ports/astro/google-earth/work/google-earth-4/googleearth-mimetype= s.xml = > /usr/local/share/mime/application/ > install: = > /usr/ports/astro/google-earth/work/google-earth-4/googleearth-mimetype= s.xml: = > No such file or directory > *** Error code 71 > Create an empty file with the same name, program will probably still wor= k. = (not pretty solution though) Try doing manual install, just extract and follow whatever instructions = = google provides you. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 09:14: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 A6FF716A479 for ; Thu, 22 Jun 2006 09:14:29 +0000 (UTC) (envelope-from carpetsmoker@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 335FF43D7D for ; Thu, 22 Jun 2006 09:14:28 +0000 (GMT) (envelope-from carpetsmoker@gmail.com) Received: by py-out-1112.google.com with SMTP id c59so261720pyc for ; Thu, 22 Jun 2006 02:14:28 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:to:subject:content-type:mime-version:references:content-transfer-encoding:message-id:in-reply-to:user-agent:from; b=n1o5GE+13NaviThIP/bCwVD/DGM3jUfpahqk54LjnyvWxrMYdfF65H90D/W1psNeLfLr1nQTXX9L++I9Akli5GMRRnYqsgTvnEq0cF3MBQ5mphyQhfnQfb1zSj1STA/H/4WKK5Pd+XwN+voK0SLyuDtE90dmIHTXdxZoTrATbtA= Received: by 10.35.83.6 with SMTP id k6mr866855pyl; Thu, 22 Jun 2006 02:14:28 -0700 (PDT) Received: from carpetsmoker.ictwerkplaats.org ( [80.126.94.163]) by mx.gmail.com with ESMTP id w25sm723079pyw.2006.06.22.02.14.27; Thu, 22 Jun 2006 02:14:27 -0700 (PDT) Date: Thu, 22 Jun 2006 11:12:14 -0000 To: rapopp@eastcentral.edu, freebsd-questions@freebsd.org Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <200606211203.10187.rapopp@eastcentral.edu> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <200606211203.10187.rapopp@eastcentral.edu> User-Agent: Opera Mail/9.00 (FreeBSD) From: Martin Tournoy Cc: Subject: Re: Mounting an old drive/filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 09:14:29 -0000 On Wed, 21 Jun 2006 17:03:09 -0000, Reuben A. Popp wrote: > Hello all, > > We have an old dusty DECstation (last bootup circa 1993) that is finally > being > removed from our server room after we do one final dump of the data. If > I > were to remove its drives to attatch to a modern scsi card, could I still > mount them under FreeBSD? I'm pretty sure Ultrix was UFS, but I'm not > 100% > positive. Anyone have any suggestions or ideas? > > Thanks in advance > Reuben A. Popp > Ultrix is based on 4.2BSD and uses UFS. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 09:39: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 4927316A474 for ; Thu, 22 Jun 2006 09:39:47 +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 A8AE94479B for ; Thu, 22 Jun 2006 09:39:45 +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 k5M9dgvK013851; Thu, 22 Jun 2006 02:39:43 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k5M9dePl013689; Thu, 22 Jun 2006 02:39:40 -0700 (PDT) (envelope-from kline) Date: Thu, 22 Jun 2006 02:39:40 -0700 From: Gary Kline To: Nikolas Britton Message-ID: <20060622093940.GB89614@thought.org> References: <20060621221720.GA55540@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 19++ years of service to the Unix community Cc: Gary Kline , FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 09:39:47 -0000 On Wed, Jun 21, 2006 at 05:51:32PM -0500, Nikolas Britton wrote: > On 6/21/06, Gary Kline wrote: > > > > I would probably save weeks trying to turn FBSD into the kind of > > "Desktop" or window-manager platform I want by just using my > > Ubuntu platform. > > > > I'm still stickng > > with CTWM. On my Ubuntu servers there is amarak(sp?) which is > > my favorite audio-only apps so far. Is there anything like this > > that doesn't require desktop-specific libraries? > > > > cplay!!! http://mask.tf.hut.fi/~flu/hacks/cplay/ It's in ports under > audio/cplay. cplay is just a, python based, curses front-end so you > will also need to install a back-end (ogg123, splay, mpg123, mpg321, > madplay, mikmod, xmp, or sox), I recommend splay. > > I've attached the default .cplayrc config file, copy it to your home > directory if the port doesn't automatically install it (I don't think > it does)... and read the man page for cplay. > > Does cplay play streaming audio? The KDE app does and I am really getting into some one the new drums and ambient(?) stuff. Wow. Anyway, curses is fine. Thanks for the config file. gary > > -- > BSD Podcasts @: > http://bsdtalk.blogspot.com/ > http://freebsdforall.blogspot.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" -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 09:46: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 2C15116A474 for ; Thu, 22 Jun 2006 09:46:20 +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 9B4CE44699 for ; Thu, 22 Jun 2006 09:46:19 +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 k5M9kB7t018439; Thu, 22 Jun 2006 02:46:12 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k5M9k5vU018434; Thu, 22 Jun 2006 02:46:05 -0700 (PDT) (envelope-from kline) Date: Thu, 22 Jun 2006 02:46:04 -0700 From: Gary Kline To: Chris Hill Message-ID: <20060622094604.GC89614@thought.org> References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060621190527.J16398@tripel.monochrome.org> User-Agent: Mutt/1.4.2.1i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 19++ years of service to the Unix community Cc: Gary Kline , FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 09:46:20 -0000 On Wed, Jun 21, 2006 at 07:10:43PM -0400, Chris Hill wrote: > On Wed, 21 Jun 2006, Gary Kline wrote: > > > ...On my Ubuntu servers there is amarak(sp?) which is > > my favorite audio-only apps so far. Is there anything like this > > that doesn't require desktop-specific libraries? > > I've been using xmms for ages. It works, supports many formats, and > seems to be pretty lightweight. > I use xmms to play the few mp3 files I have; I see many variants of this in ports, but zero idea how the interface. Does xmms play streams? Be nice is there were a Howto for this. gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 09:48: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 82EEC16A572 for ; Thu, 22 Jun 2006 09:48:52 +0000 (UTC) (envelope-from carpetsmoker@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 2D2FD44218 for ; Thu, 22 Jun 2006 09:16:20 +0000 (GMT) (envelope-from carpetsmoker@gmail.com) Received: by py-out-1112.google.com with SMTP id m51so227576pye for ; Thu, 22 Jun 2006 02:16:19 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:to:subject:content-type:mime-version:references:content-transfer-encoding:message-id:in-reply-to:user-agent:from; b=r253TJCz1gW8RRJq7fsepc0Du+1OBe58pPpfvfjhgvSXaq0i1f6atgt0u2AD0B4gOQwqlZkZ7NWFM3RgpHeX4ahsMVe84pxS9P2GrzJQa9EN5DEQurBrnB5AKRNtdfg3Z7VLhRRaNZDfqaI5O2eNR4j0UCBRK3sNSOUJF+YdCfQ= Received: by 10.35.111.14 with SMTP id o14mr855997pym; Thu, 22 Jun 2006 02:09:02 -0700 (PDT) Received: from carpetsmoker.ictwerkplaats.org ( [80.126.94.163]) by mx.gmail.com with ESMTP id y78sm716333pyg.2006.06.22.02.09.00; Thu, 22 Jun 2006 02:09:01 -0700 (PDT) Date: Thu, 22 Jun 2006 11:06:48 -0000 To: "Sven Hazejager" , freebsd-questions@freebsd.org, freebsd-fs@freebsd.org Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: Content-Transfer-Encoding: Quoted-Printable Message-ID: In-Reply-To: User-Agent: Opera Mail/9.00 (FreeBSD) From: Martin Tournoy Cc: Subject: Re: HELP! Filesystem EMPTY after upgrade from 4.11 to 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, 22 Jun 2006 09:48:52 -0000 On Wed, 21 Jun 2006 20:06:38 -0000, Sven Hazejager = wrote: > Hi all! > > I have quite a big problem here.... > > I've upgraded my FreeBSD 4.11 to 6.1. Basically, I did a newfs of / an= d = > /usr > and reinstalled from scratch. That worked. > > Rebooted in 6.1 single user mode, mounted /, /usr and /usr/home. The = > latter > I did not touch and I need to save that partition. /usr/home had all t= he > files it needed to have. PROBLEM: mount said soft-updates were not set= on > /usr/home. So I did umount /usr/home, tunefs -n enable /usr/home, moun= t > /usr/home again... EMPTY!!!! > > What has gone wrong? I did fsck (in read-only), no problems, rebooted = the > system, did tunefs -n disable, still no luck. I really need those file= s > guys... > > Please help urgently. > > Many thanks, > > Sven Hazejager 4.11 uses UFS1, 6.1 UFS2, there might be some conflict there... Try using stellar phoenix BSD, it can recover data, before you start = messing around and destroy stuff... It's not free, but there's a free trial... http://www.stellarinfo.com/download/download_form.php?sid=3D35 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 09:50: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 0D23D16A6F1 for ; Thu, 22 Jun 2006 09:50:15 +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 D7BF643D8D for ; Thu, 22 Jun 2006 09:50:13 +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 k5M9norx018983; Thu, 22 Jun 2006 02:49: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 k5M9nlcs018833; Thu, 22 Jun 2006 02:49:47 -0700 (PDT) (envelope-from kline) Date: Thu, 22 Jun 2006 02:49:42 -0700 From: Gary Kline To: Dennis Olvany Message-ID: <20060622094942.GD89614@thought.org> References: <20060621221720.GA55540@thought.org> <449A2243.1010307@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <449A2243.1010307@gmail.com> User-Agent: Mutt/1.4.2.1i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 19++ years of service to the Unix community Cc: Gary Kline , FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 09:50:24 -0000 On Wed, Jun 21, 2006 at 11:53:23PM -0500, Dennis Olvany wrote: > vlc Sounds familiar; any docs? I'll check the orts tree... -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 10: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 EEDD616A47B for ; Thu, 22 Jun 2006 10: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 5CF3943D5A for ; Thu, 22 Jun 2006 10:28:09 +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 1FtMPw-0001CF-FS; Thu, 22 Jun 2006 11:28:08 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out5.blueyonder.co.uk with esmtp (Exim 4.52) id 1FtMPv-0002Nu-VB; Thu, 22 Jun 2006 11:28:07 +0100 Message-ID: <449A70B7.6060904@dial.pipex.com> Date: Thu, 22 Jun 2006 11:28:07 +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: DSA - JCR References: <3044.217.114.136.133.1150793055.squirrel@llca513-a.servidoresdns.net> In-Reply-To: <3044.217.114.136.133.1150793055.squirrel@llca513-a.servidoresdns.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: NFS Server and MS Windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 10:28:11 -0000 DSA - JCR wrote: > >I have read it and downloaded, but it seems to be something obsolete (v. >3.5 is from 2004) and I suspect they hasn't made nothing new. > > It supports NFSv3 and TCP mounts which (right now) is all you want. We'll see if MS start to support NFSv4, but right now, IIRC, even BSD may not support that fully. The thing about software, is that if it works, it doesn't need updating. NFS does not get 38 new features a fortnight so doesn't need patching all the time. If the software worked in 2004, and the standard didn't change, MS would have no need to update anything. I cannot say that MS NFS works fine, because I am still evaluating it myself. I can say that googling *didn't* turn up millions of problems. So it's probably the case that since this is a relatively straightforward protocol with a well defined standard (RFC), even MS could find competent programmers to implement it. --Alex From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 10:36: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 7355516A474 for ; Thu, 22 Jun 2006 10:36:29 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out2.blueyonder.co.uk (smtp-out2.blueyonder.co.uk [195.188.213.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E6A943D53 for ; Thu, 22 Jun 2006 10:36:29 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.141] (helo=anti-virus02-08) by smtp-out2.blueyonder.co.uk with smtp (Exim 4.52) id 1FtMXz-0000zv-VS; Thu, 22 Jun 2006 11:36:27 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out3.blueyonder.co.uk with esmtp (Exim 4.52) id 1FtMXz-0003KW-6e; Thu, 22 Jun 2006 11:36:27 +0100 Message-ID: <449A72AA.4090806@dial.pipex.com> Date: Thu, 22 Jun 2006 11:36:26 +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: Michael Collette References: <44978913.3070401@Metrol.net> <20060620015644.629b47a2@localhost> <449891DA.70507@Metrol.net> In-Reply-To: <449891DA.70507@Metrol.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: AMD64 Desktop Support X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 10:36:29 -0000 Michael Collette wrote: > > I don't have any bias towards either company. My focus is spending my > money on what will actually work. Starting to feel like I'll be > looking at the Pentium-D processors. I've got a laptop with a dual > core Pentium and it works pretty sweet. AMD 64bit processors work just fine in i386 mode and dollar for dollar will outperform Intel and run cooler and use less power. There is no need to discount AMD just because you don't want to run 64 bit version. No, I don't work for AMD, I just recognise a better product. --Alex, my 2 pence From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 11:05: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 CE93216A474 for ; Thu, 22 Jun 2006 11:05:01 +0000 (UTC) (envelope-from nikolas.britton@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 42FE74477F for ; Thu, 22 Jun 2006 11:05:01 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id l1so419755nzf for ; Thu, 22 Jun 2006 04:05: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=ZJl4p6T7TODlo+qwcVitQfcDwVgeiFqlNND3vTDxAPgjTmy1RCGeIApHAi0PaQrzeGN+hPXo+cux7F3yvDanJNmj8L+t+0SdzYqT54uJzS5y35y4FqigvjWq+ECa6GOwy9lWbI4As24I6GAekntDkLNR7FCDeZvaBA5+v37DsTU= Received: by 10.36.252.42 with SMTP id z42mr1771828nzh; Thu, 22 Jun 2006 04:05:00 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Thu, 22 Jun 2006 04:05:00 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 06:05:00 -0500 From: "Nikolas Britton" To: "Gary Kline" In-Reply-To: <20060622093940.GB89614@thought.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060621221720.GA55540@thought.org> <20060622093940.GB89614@thought.org> Cc: FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 11:05:01 -0000 On 6/22/06, Gary Kline wrote: > On Wed, Jun 21, 2006 at 05:51:32PM -0500, Nikolas Britton wrote: > > On 6/21/06, Gary Kline wrote: > > > > > > I would probably save weeks trying to turn FBSD into the kind of > > > "Desktop" or window-manager platform I want by just using my > > > Ubuntu platform. > > > > > > I'm still stickng > > > with CTWM. On my Ubuntu servers there is amarak(sp?) which is > > > my favorite audio-only apps so far. Is there anything like this > > > that doesn't require desktop-specific libraries? > > > > > > > cplay!!! http://mask.tf.hut.fi/~flu/hacks/cplay/ It's in ports under > > audio/cplay. cplay is just a, python based, curses front-end so you > > will also need to install a back-end (ogg123, splay, mpg123, mpg321, > > madplay, mikmod, xmp, or sox), I recommend splay. > > > > I've attached the default .cplayrc config file, copy it to your home > > directory if the port doesn't automatically install it (I don't think > > it does)... and read the man page for cplay. > > > > > > Does cplay play streaming audio? The KDE app does and I am > really getting into some one the new drums and ambient(?) > stuff. Wow. Anyway, curses is fine. Thanks for the config > file. > Download the streams playlist file (.pls, .m3u, etc.) and then add it to cplays playlist like you would with a normal mp3... That's how I do it, I have not looked for a better way to do it because it's good enough for me... It also depends on the back-end your using and what's in your cplayrc file... You could also launch the stream at the command line, you'll still need to manually download the playlist file first: $ cplay radio_paradise.m3u If you do this: $ cplay http://www.radioparadise.com/musiclinks/rp_128.m3u It won't automatically fetch the playlist file, I think it's simply an issue with the back-end player... maybe mpg123 (or another back-end) can automatically fetch them... I don't know... have not tried. -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 11:11: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 86DE716A4A7 for ; Thu, 22 Jun 2006 11:11:47 +0000 (UTC) (envelope-from ionut.vancea@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5A794435F for ; Thu, 22 Jun 2006 10:41:37 +0000 (GMT) (envelope-from ionut.vancea@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so439016uge for ; Thu, 22 Jun 2006 03:41:36 -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=FT31JCxg9n4jDyglW8WtrBXgf+/EboRAwGiGUsuU0jfXAHyI3WZjt4A9o41RglFgozBjmTQhM3smqfM2/rc0eXwEf5VQazwVPLy37/MnD5vsICIjCoUIC7T0cjzFMb3IZH4/cNuEqzkwgm+IGFBXWQ9W/wRKUpT+AcBk8vfk1zU= Received: by 10.67.29.12 with SMTP id g12mr913729ugj; Thu, 22 Jun 2006 03:14:00 -0700 (PDT) Received: by 10.66.218.10 with HTTP; Thu, 22 Jun 2006 03:13:59 -0700 (PDT) Message-ID: <368177940606220313m6e63aca9q4cfc5312792b31b2@mail.gmail.com> Date: Thu, 22 Jun 2006 12:13:59 +0200 From: "Ionut Vancea" To: freebsd-questions@freebsd.org In-Reply-To: <3985.84.18.30.110.1150567687.squirrel@llca513-a.servidoresdns.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <3985.84.18.30.110.1150567687.squirrel@llca513-a.servidoresdns.net> Subject: Re: AC97 sound 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: Thu, 22 Jun 2006 11:11:47 -0000 helo, On 6/17/06, DSA - JCR wrote: > Hi all at this marvellous list of this marvellous OS !! ;D > > I am installing a new FreeBSD box and all is ok less the sound car. > This is an MSI 945P Neo Platinum mainboarda with the sound chipset in it: > > I have installed FreeBSD 6.1 "amd64" (is EM64T chip) > > In BIOS say: > > - Azalia/AC97 sound > > in Manual: > > - High definition link controller in INtel ICH7R chip > - 7.1+2 channel audio codec Realtek ALC882 > - complaint with Azalia 1.0 spec. > - Supports DTS effect. > > Well, I only want that the computer has sound for CD, DVD, movies, etc. > better things are wellcome of course but it is not the purpose of this > computer. > > I have do the following: > > get the generic sund driver > # kldload snd_driver > > and > # cat /dev/sndstat > > but no sound !!!, also the cat command says that there is no sound devices > installed. > > Is there a device driver for this, or someone I can get to put sound at > work at a minimum? maybe, you can try www.opensound.com [skip] OSS 3.99.4a announced for FreeBSD (x86 and AMD64) Fixed up problems with mmap() (games like Quake/Doom) and Non-blocking mode (like VLC). Support for FreeBSD 6.0-RELEASE (x86 and amd64) now available Intel Azalia High Definition Audio now functional http://www.opensound.com/osshw.html have a nice day, -- ======================== Ioan Vancea http://www.vioan.ro http://www.vioan-solutions.com ======================== From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 11:14: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 E4FAC16A479 for ; Thu, 22 Jun 2006 11:14:45 +0000 (UTC) (envelope-from dick@nagual.st) Received: from nagual.st (cc20684-a.assen1.dr.home.nl [82.74.2.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D16B43D80 for ; Thu, 22 Jun 2006 11:14:44 +0000 (GMT) (envelope-from dick@nagual.st) Received: from arwen.nagual.st (arwen.nagual.st [192.168.11.29]) by nagual.st with esmtp; Thu, 22 Jun 2006 13:14:43 +0200 id 0003981B.449A7BA3.00000CAF Date: Thu, 22 Jun 2006 13:14:43 +0200 From: dick hoogendijk To: fbsdq Message-Id: <20060622131443.598cd7ae.dick@nagual.st> Organization: de nagual X-Mailer: Sylpheed version 2.2.5 (GTK+ 2.8.18; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: dhcp resolv.conf and loading priority of network cards X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 11:14:46 -0000 I have tow nics: a re0 (cabled) and an ath0 (wifi) card. I want the latter to use dhcp like this: defaultrouter="192.168.11.1" hostname="arwen.nagual.st" ifconfig_re0="192.168.11.29 netmask 255.255.255.0" ifconfig_ath0="dhcp ssid air01 nwkey 0xc1e1639b753021ab6d64be2575 hidessid authmode shared" What happens is that the ath0 card gets loaded first (not wanted!) plus the dhcp setting changes my resolv.conf (not wanted either). How do I get this changed? re0 first, than my ath0 and NO changes to resolv.conf? System: freebsd-6.1R -- dick -- http://nagual.st/ -- PGP/GnuPG key: F86289CE ++ Running FreeBSD 6.1 ++ The Power to Serve From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 11:51: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 B963116A474 for ; Thu, 22 Jun 2006 11:51:31 +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 11C7C43D53 for ; Thu, 22 Jun 2006 11:51:30 +0000 (GMT) (envelope-from mikhailg@webanoide.org) Received: from [192.168.0.4] (ppp106-19.lns1.hba1.internode.on.net [150.101.106.19]) (authenticated bits=0) by overlord.navalradio.cl (8.13.4/8.13.4) with ESMTP id k5MBphNL015701; Thu, 22 Jun 2006 07:51:45 -0400 (CLT) (envelope-from mikhailg@webanoide.org) Message-ID: <449A8433.7070100@webanoide.org> Date: Thu, 22 Jun 2006 21:51:15 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 1.5.0.4 (Macintosh/20060530) MIME-Version: 1.0 To: dick hoogendijk References: <20060622131443.598cd7ae.dick@nagual.st> In-Reply-To: <20060622131443.598cd7ae.dick@nagual.st> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-99.8 required=5.0 tests=AWL,USER_IN_WHITELIST autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on overlord.navalradio.cl Cc: fbsdq Subject: Re: dhcp resolv.conf and loading priority of network cards X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 11:51:31 -0000 dick hoogendijk wrote: > I have tow nics: a re0 (cabled) and an ath0 (wifi) card. I want the > latter to use dhcp like this: > > defaultrouter="192.168.11.1" > hostname="arwen.nagual.st" > ifconfig_re0="192.168.11.29 netmask 255.255.255.0" > ifconfig_ath0="dhcp ssid air01 nwkey 0xc1e1639b753021ab6d64be2575 > hidessid authmode shared" > > What happens is that the ath0 card gets loaded first (not wanted!) plus > the dhcp setting changes my resolv.conf (not wanted either). > > How do I get this changed? re0 first, than my ath0 and NO changes to > resolv.conf? > > System: freebsd-6.1R > Not sure about initialising interfaces in specific order but if you don't want to accept changes from a DHCP then: man dhclient.conf (look at supersede) 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 Jun 22 11:52: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 42E6E16A474 for ; Thu, 22 Jun 2006 11:52:50 +0000 (UTC) (envelope-from kieran@slinq.com) Received: from muon.digital-crocus.com (muon.digital-crocus.com [208.101.15.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D9A243DC0 for ; Thu, 22 Jun 2006 11:52:41 +0000 (GMT) (envelope-from kieran@slinq.com) Received: from localhost ([127.0.0.1] helo=mail.digital-crocus.com) by muon.digital-crocus.com with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1FtNjj-000KzF-6Q for freebsd-questions@freebsd.org; Thu, 22 Jun 2006 12:52:41 +0100 Received: from 80.42.67.159 (SquirrelMail authenticated user kieran) by mail.digital-crocus.com with HTTP; Thu, 22 Jun 2006 11:52:39 -0000 (UTC) Message-ID: <1332.80.42.67.159.1150977159.squirrel@mail.digital-crocus.com> Date: Thu, 22 Jun 2006 11:52:39 -0000 (UTC) From: "Kieran Simkin" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.6 MIME-Version: 1.0 X-Priority: 3 (Normal) Importance: Normal X-Spam-Score: -3.9 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Using IPFW to redirect all outgoing SMTP traffic to localhost X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kieran@slinq.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 11:52:50 -0000 Hi Guys, I have an IPFW question that I'm a bit stuck on and could do with some help. Basically what I'm trying to do is count and limit the number of e-mails each user on the system is allowed to send. I've got this working fine within the e-mail server and everything's dandy, except for the fact that it's easy to bypass the mail server by making direct SMTP connections to the target hosts. What I need to be able to do is force all connections to any host on port 25 to be redirected to localhost. Ideally I'd just be able to forward all outgoing connections with dst port 25 to localhost. If this is not possible, I would be happy to simply firewall all outbound traffic with dst port 25. There is a caveat: I need port 25 redirection/blocking to occur for all users except those which I name (ie, the mailserver and certain admin users). Of course, the mail server must be able to send e-mail to external hosts, and I'd like certain other users on the system to be able to do this as well. To be honest I'm not really sure where to start writing an IPFW rule to do this - and pointers would be greatly appreciated. Best regards, ~Kieran Simkin Digital Crocus From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 12:21: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 3E00416A479 for ; Thu, 22 Jun 2006 12:21:35 +0000 (UTC) (envelope-from maslak@ihlas.net.tr) Received: from pop3.ihlas.net.tr (mail.ihlas.net.tr [213.238.128.115]) by mx1.FreeBSD.org (Postfix) with SMTP id 31E64447D6 for ; Thu, 22 Jun 2006 12:21:33 +0000 (GMT) (envelope-from maslak@ihlas.net.tr) Received: (qmail 48331 invoked by uid 89); 22 Jun 2006 12:20:45 -0000 X-Mail-Scanner: Scanned by qSheff-II-2.1 (http://www.enderunix.org/qsheff/) Received: from unknown (HELO ihlasnetym) (maslak@213.238.150.220) by 0 with SMTP; 22 Jun 2006 12:20:45 -0000 Message-ID: <00aa01c695f6$5da2c680$dc96eed5@ihlasnetym> From: "Maslak Yavuz" To: Date: Thu, 22 Jun 2006 15:21:18 +0300 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1506 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: is there a sysctl monitor tool ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 12:21:35 -0000 Hello=20 I have 2 server . I use FreeBSD6.1 and Freebsd6.0 on them. 1 - Is there any program or command about how much the server use the = parameters sysctl values and whether the server exceed the sysctl limits = or not ?=20 can you say a command or tool except top, ps, netstat -m ? 2 - While I am looking at system performance with systat command, I = sometimes see values in usage of disk over %100 as below, Disks amrd0 pass0 54 ofod intrn 2002 = cpu1: time KB/t 16.00 0.00 88 %slo-z 114464 buf 2002 = cpu3: time tps 251 0 531 tfree 274 dirtybuf MB/s 3.93 0.00 100000 desiredvnodes % busy 102 0 83032 numvnodes 25001 freevnodes What cause does this condition ? 3 - On FreeBSD6.1 when I typed "netstat -m" I saw below values; 173/2827/3000 mbufs in use (current/cache/total) 164/1910/2074/17088 mbuf clusters in use (current/cache/total/max) 164/479 mbuf+clusters out of packet secondary zone in use = (current/cache) 0/0/0/0 4k (page size) jumbo clusters in use (current/cache/total/max) 0/0/0/0 9k jumbo clusters in use (current/cache/total/max) 0/0/0/0 16k jumbo clusters in use (current/cache/total/max) 371K/4526K/4898K bytes allocated to network (current/cache/total) 105906/27714/27042 requests for mbufs denied = (mbufs/clusters/mbuf+clusters) 0/0/0 requests for jumbo clusters denied (4k/9k/16k) 0/9/4528 sfbufs in use (current/peak/max) 0 requests for sfbufs denied 0 requests for sfbufs delayed 4 requests for I/O initiated by sendfile 109 calls to protocol drain routines What does "105906/27714/27042 requests for mbufs denied = (mbufs/clusters/mbuf+clusters)" mean ? Thanks From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 12:28: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 1D2F916A47B for ; Thu, 22 Jun 2006 12:28:21 +0000 (UTC) (envelope-from dick@nagual.st) Received: from nagual.st (cc20684-a.assen1.dr.home.nl [82.74.2.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 704A7447D5 for ; Thu, 22 Jun 2006 12:28:20 +0000 (GMT) (envelope-from dick@nagual.st) Received: from arwen.nagual.st (arwen.nagual.st [192.168.11.29]) by nagual.st with esmtp; Thu, 22 Jun 2006 14:28:19 +0200 id 0003980A.449A8CE3.00000E3A Date: Thu, 22 Jun 2006 14:28:19 +0200 From: dick hoogendijk To: fbsdq Message-Id: <20060622142819.3e194f05.dick@nagual.st> In-Reply-To: <449A8433.7070100@webanoide.org> References: <20060622131443.598cd7ae.dick@nagual.st> <449A8433.7070100@webanoide.org> Organization: de nagual X-Mailer: Sylpheed version 2.2.5 (GTK+ 2.8.18; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: dhcp resolv.conf and loading priority of network cards X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 12:28:21 -0000 On Thu, 22 Jun 2006 21:51:15 +1000 Mikhail Goriachev wrote: > dick hoogendijk wrote: > > I have tow nics: a re0 (cabled) and an ath0 (wifi) card. I want the > > latter to use dhcp like this: > > > > defaultrouter="192.168.11.1" > > hostname="arwen.nagual.st" > > ifconfig_re0="192.168.11.29 netmask 255.255.255.0" > > ifconfig_ath0="dhcp ssid air01 nwkey 0xc1e1639b753021ab6d64be2575 > > hidessid authmode shared" > > > > What happens is that the ath0 card gets loaded first (not wanted!) > > plus the dhcp setting changes my resolv.conf (not wanted either). > > > > How do I get this changed? re0 first, than my ath0 and NO changes to > > resolv.conf? > > > > System: freebsd-6.1R > > > > > Not sure about initialising interfaces in specific order but if you > don't want to accept changes from a DHCP then: > > man dhclient.conf (look at supersede) Yes, I know. I foudn something like that on google. Also a file named dhclient-enter-hooks seems to do the trick, but I miss the option to just say "don't use my existing resolv.conf" badly. On linux it's easier as I remember (but that's years ago, so things might have changed there too. The initialising in a specific order is more important to me at the moment. Anybody? -- dick -- http://nagual.st/ -- PGP/GnuPG key: F86289CE ++ Running FreeBSD 6.1 ++ The Power to Serve From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 13:04:37 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 4819216A479 for ; Thu, 22 Jun 2006 13:04:37 +0000 (UTC) (envelope-from savovski@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8951743D5A for ; Thu, 22 Jun 2006 13:04:36 +0000 (GMT) (envelope-from savovski@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so505171uge for ; Thu, 22 Jun 2006 06:04:35 -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=qQj3yki+J1rSOaLZiJWMh8QTdvsQBElofUPR2coBMi9DxIu8ceyPrY5ZjwC6gER12TOj8yoeQjCVHhjTUwe2fyPVsjiy6sUSqreA041OWK/sWpVnSjMyyTjwbdCYmLClhPC2hB95pIk+WQ9nos9GRW8IZDXA/HxsbINE/fKXa34= Received: by 10.67.93.6 with SMTP id v6mr1063407ugl; Thu, 22 Jun 2006 06:04:35 -0700 (PDT) Received: by 10.67.95.6 with HTTP; Thu, 22 Jun 2006 06:04:34 -0700 (PDT) Message-ID: <10a002530606220604m5de5d7b0lfa1e779a16096cb7@mail.gmail.com> Date: Thu, 22 Jun 2006 16:04:34 +0300 From: "Alex Savovski" To: greg.lane@internode.on.net In-Reply-To: <20060622075236.GA95258@router.lane.family> MIME-Version: 1.0 References: <20060622075236.GA95258@router.lane.family> 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: amd64@freebsd.org, questions@freebsd.org Subject: Re: Does anyone run VNC with 64-bit 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: Thu, 22 Jun 2006 13:04:37 -0000 I have the same ,problem,But I have never run on other version,I use RELENG_6_1, AMD64 On 6/22/06, Greg Lane wrote: > > G'day everyone, > > I recently had to replace a disk and took the opportunity to > upgrade from 5-stable to 6-stable. I also changed from the > 32-bit to the 64-bit version. I have a dual Opteron server. > > VNC installed from ports (4.2.1) doesn't work on the 64-bit machine. > The same version installed on my home machine (32-bit) with the .vnc > directory copied over exactly from my work 64-bit machine runs fine. > So in what sense does it fail.... > > If I create a blank .vnc/xstartup, then I get the usual grey screen. > Then if I try and run X commands on that display, some work, like > xsetroot -solid blue, but others, xterm, icewm, twm, etc don't. > > 130>~/.vnc$ icewm -display :9 > IceWM: using /home/xxxxxx/.icewm for private configuration files > X Error of failed request: BadValue (integer parameter out of range for > operation) > Major opcode of failed request: 2 (X_ChangeWindowAttributes) > Value in failed request: 0x0 > Serial number of failed request: 9 > Current serial number in output stream: 10 > > 131>~/.vnc$ xterm -display :9 > X Error of failed request: BadValue (integer parameter out of range for > operation) > Major opcode of failed request: 1 (X_CreateWindow) > Value in failed request: 0x21 > Serial number of failed request: 41 > Current serial number in output stream: 49 > > If they are in the xstartup file they give the exact same errors in > the vnc log file. I was only running them interactively above > to troubleshoot it. Google has failed me for once, so I seek > your experience and advice... > > Greg > > _______________________________________________ > freebsd-amd64@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 > To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 13:08: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 E49C716A479 for ; Thu, 22 Jun 2006 13:08:14 +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 2BD0943D5D for ; Thu, 22 Jun 2006 13:08:14 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 473275E3A; Thu, 22 Jun 2006 09:08:13 -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 NUlNaNrjQsYy; Thu, 22 Jun 2006 09:08:12 -0400 (EDT) Received: from [192.168.1.251] (pool-68-160-201-170.ny325.east.verizon.net [68.160.201.170]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 7C0C65CB5; Thu, 22 Jun 2006 09:08:12 -0400 (EDT) Message-ID: <449A9631.6080705@mac.com> Date: Thu, 22 Jun 2006 09:08:01 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: kieran@slinq.com References: <1332.80.42.67.159.1150977159.squirrel@mail.digital-crocus.com> In-Reply-To: <1332.80.42.67.159.1150977159.squirrel@mail.digital-crocus.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Using IPFW to redirect all outgoing SMTP traffic to localhost X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 13:08:15 -0000 Kieran Simkin wrote: > I have an IPFW question that I'm a bit stuck on and > could do with some help. Basically what I'm trying to do is count and > limit the number of e-mails each user on the system is allowed to send. > I've got this working fine within the e-mail server and everything's > dandy, except for the fact that it's easy to bypass the mail server by > making direct SMTP connections to the target hosts. Yes. Use the firewall to do something like: ipfw add pass tcp from any to MAILSERVER 25 keep-state ipfw add pass tcp from MAILSERVER to any 25 keep-state ipfw add unreach filter-prohib log tcp from any to any 25 (I suppose you could use a deny instead, but getting an actual ICMP error is probably more useful in this situation....) -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 13:54: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 A741F16A47A for ; Thu, 22 Jun 2006 13:54:11 +0000 (UTC) (envelope-from valerio.daelli@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 C60794465C for ; Thu, 22 Jun 2006 13:54:10 +0000 (GMT) (envelope-from valerio.daelli@gmail.com) Received: by nf-out-0910.google.com with SMTP id x30so258641nfb for ; Thu, 22 Jun 2006 06:54:09 -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=P4ChEtG87eZijGE05oIPHmZE83OvbFXBAVVsksiDFFX90IBkmdiSNTZ5KLAGysmaIJMKs4bwi5oVyGvp26bd/gtfWCkekO+Bf/qnuHV6y/EuhkZARAcHnUjO7C61B38je3ymWJeKzdMMs6ucur84LRPZH6uvp1WaPoXQONtsp0E= Received: by 10.49.91.12 with SMTP id t12mr1434219nfl; Thu, 22 Jun 2006 06:54:08 -0700 (PDT) Received: by 10.49.33.13 with HTTP; Thu, 22 Jun 2006 06:54:08 -0700 (PDT) Message-ID: <27dbfc8c0606220654y65fd76ectf3191dc7b935465@mail.gmail.com> Date: Thu, 22 Jun 2006 15:54:08 +0200 From: "Valerio daelli" 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: Error in man page of sendmsg? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 13:54:11 -0000 Hi working with InterMapper (a network tool) on FreeBSD 5.4 I got a sendmsg -1 errno 22 Invalid argument I looked in man sendmsg in the errors but I found no EINVAL in the errors. So I looked at the kernel sources and I found ---------------------------------------------------------------------------------------------------------- static int sendit(td, s, mp, flags) register struct thread *td; int s; register struct msghdr *mp; int flags; { struct mbuf *control; struct sockaddr *to; int error; if (mp->msg_name != NULL) { error = getsockaddr(&to, mp->msg_name, mp->msg_namelen); if (error) { to = NULL; goto bad; } mp->msg_name = to; } else { to = NULL; } if (mp->msg_control) { if (mp->msg_controllen < sizeof(struct cmsghdr) #ifdef COMPAT_OLDSOCK && mp->msg_flags != MSG_COMPAT #endif ) { error = EINVAL; ---------------------------------------------------------------------------------------------------------- that error is set to EINVAL so the man page should report EINVAL as possible error in this funcion. Bye Valerio Daelli From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 15:22: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 9E18316A4E0 for ; Thu, 22 Jun 2006 15:22:20 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24CA4440D1 for ; Thu, 22 Jun 2006 14:50:29 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [192.168.2.2] ([69.27.149.254]) by ezekiel.daleco.biz (8.13.4/8.13.1) with ESMTP id k5MEnCBm040437; Thu, 22 Jun 2006 09:49:37 -0500 (CDT) (envelope-from kdk@daleco.biz) Message-ID: <449AADDD.7090207@daleco.biz> Date: Thu, 22 Jun 2006 09:49:01 -0500 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.0.2) Gecko/20060509 SeaMonkey/1.0.1 MIME-Version: 1.0 To: Valerio daelli References: <27dbfc8c0606220654y65fd76ectf3191dc7b935465@mail.gmail.com> In-Reply-To: <27dbfc8c0606220654y65fd76ectf3191dc7b935465@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Error in man page of sendmsg? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 15:22:20 -0000 Valerio daelli wrote: > working with InterMapper (a network tool) on FreeBSD 5.4 I got a > > sendmsg -1 errno 22 Invalid argument > > I looked in man sendmsg in the errors but I found no EINVAL in the errors. > So I looked at the kernel sources and I found > > --------------------------------------------------------------------------- > > > static int > sendit(td, s, mp, flags) > register struct thread *td; > int s; > register struct msghdr *mp; > int flags; > { > struct mbuf *control; > struct sockaddr *to; > int error; > > if (mp->msg_name != NULL) { > error = getsockaddr(&to, mp->msg_name, mp->msg_namelen); > if (error) { > to = NULL; > goto bad; > } > mp->msg_name = to; > } else { > to = NULL; > } > > if (mp->msg_control) { > if (mp->msg_controllen < sizeof(struct cmsghdr) > #ifdef COMPAT_OLDSOCK > && mp->msg_flags != MSG_COMPAT > #endif > ) { > error = EINVAL; > > -------------------------------------------------------------------- > > > that error is set to EINVAL so the man page should report EINVAL as > possible > error in this funcion. Looks like a good catch. Could you use send-pr(1) to get this into the GNATS (problem report) database? It's a "doc bug", apparently. Kevin Kinsey -- In war it is not men, but the man who counts. -- Napoleon From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 15:28: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 B6A4C16A479 for ; Thu, 22 Jun 2006 15:28:40 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B4E043D8B for ; Thu, 22 Jun 2006 15:28:29 +0000 (GMT) (envelope-from af300wsm@gmail.com) Received: by nz-out-0102.google.com with SMTP id 18so415396nzp for ; Thu, 22 Jun 2006 08:28:29 -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=gV2DHUe4SHmD7Q8p+Os9I0a/VdWIohQFNgIfPD1c/fLbpvH//7Qu9UbE70WlK6rtAkH711CGJZjjTCFsqcfEEaYDrXjHOPZmdPHWFoTXJDeQFm0zLePDS0h/P5gM+G8ynEkjJwBvGHzQGmZ2xSme5ko+qbVNSH742KGjEpYFerc= Received: by 10.36.77.2 with SMTP id z2mr881471nza; Thu, 22 Jun 2006 08:28:29 -0700 (PDT) Received: by 10.36.24.10 with HTTP; Thu, 22 Jun 2006 08:28:28 -0700 (PDT) Message-ID: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> Date: Thu, 22 Jun 2006 09:28:28 -0600 From: "Andrew Falanga" 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: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 15:28:40 -0000 Hello, I've got a case where I'm writing a simply serial program to send bytes from one system to another over a serial cable. The program works in Linux, but when I use it in FreeBSD nothing happens. The program starts and, in the case of receiving, waits for data to appear on the /dev/cuad1 port and times out in select. If I'm sending in FreeBSD, the send program believes it has written all the data but nothing is received in Linux (either with running my code on Linux or using kermit). On FreeBSD, however, if I use kermit to monitor the /dev/cuad1 port and send, using my code, from Linux, all 2500 packets are transmitted ok. Also, when sending from Linux and receiving in FreeBSD, the FreeBSD machine show silo and tty-level interrupt errors. The man page for sio describes that as problems in the interrupt handler, for silo overflows, and that data arrived faster than the application could process (for the tty-level overflows). What am I doing wrong? What is it that Kermit does to allow data being read from the /dev/cuad1 device that I'm not? I've been looking over the kermit sources but to be honest, before Thursday of last week, I'd never programmed for serial ports before let alone having any knowledge of termios. Therefore, I'm looking at a very steep learning curve. Please look over my ctor for the serial line class that is in my code. After much debugging, I'm convinced that my problem is in how I'm configuring my port. sline::sline( std::string d, int opm ) : dev( d ), opMode( opm ) { memset( &oldSettings, 0, sizeof( oldSettings ) ); memset( &ioPort, 0, sizeof( ioPort ) ); memset( recvBuf, 0, PACKETSIZE ); memset( &timeout, 0, sizeof( timeout ) ); FD_ZERO( &incoming ); timeout.tv_sec = TIMEOUT_SEC; timeout.tv_usec = TIMEOUT_USEC; // create the packet char asciiPrtChars = 32; // first printable ascii character in decimal for( int i = 0; i < PACKETSIZE; i++ ) { packet[i] = asciiPrtChars++; if( asciiPrtChars == 127 ) // 127 is the delete character asciiPrtChars = 32; } // on the systems this code was meant to compile, LINUX and FreeBSD // O_NDELAY and O_NONBLOCK are the same, however, this is not always // true fd = open( dev.c_str(), O_RDWR | O_NOCTTY | O_NDELAY ); if( fd < 0 ) throw init(); tcgetattr( fd, &oldSettings ); tcgetattr( fd, &ioPort ); #ifdef DEBUG COUT << "Current input speed is " << cfgetispeed( &ioPort ) << ENDL; COUT << "Current output speed is " << cfgetospeed( &ioPort ) << ENDL; #endif #if 0 if( opMode == OPMODE_WRITE ) { if( fcntl( fd, F_SETFL, 0 ) < 0 ) { perror( "fcntl" ); throw init(); } } else { if( fcntl( fd, F_SETFL, FNDELAY ) < 0 ) { perror( "fcntl" ); throw init(); } FD_SET( fd, &incoming ); } #endif #if 0 // configure control field, this should configure for 8N1 // first, disable flow control (may have to put it back in) // ioPort.c_cflag &= ~CRTSCTS; ioPort.c_cflag |= CRTSCTS | CLOCAL | CREAD; ioPort.c_cflag &= ~PARENB; ioPort.c_cflag &= ~CSTOPB; ioPort.c_cflag &= ~CSIZE; ioPort.c_cflag |= CS8; // configure local field, setting to RAW mode ioPort.c_lflag |= ~( ICANON | ECHO | ECHOE | ISIG ); // configure the input field, setting to ignore parity errors // and disable software flow control ioPort.c_iflag |= IGNPAR; ioPort.c_iflag &= ~( IXON | IXOFF | IXANY ); // configure output field, setting to RAW ioPort.c_iflag &= ~OPOST; #endif /* end of if 0 */ // configure for raw data transfer cfmakeraw( &ioPort ); // set VMIN and VTIME parameters in c_cc array ioPort.c_cc[VMIN] = PACKETSIZE; ioPort.c_cc[VTIME] = 0; if( cfsetispeed( &ioPort, BAUDRATE ) < 0 ) { perror( "cfsetispeed" ); throw init(); } if( cfsetospeed( &ioPort, BAUDRATE ) < 0 ) { perror( "cfsetospeed" ); throw init(); } COUT << "flushing dev: " << dev << ENDL; if( tcflush( fd, TCIOFLUSH ) < 0 ) { perror( "tcflush" ); throw init(); } COUT << "Setting new parameters to: " << dev << ENDL; if( tcsetattr( fd, TCSANOW, &ioPort ) < 0 ) { perror( "tcsetattr" ); throw init(); } #if 0 if( ioctl( fd, TIOCMGET, &portStatus ) < 0 ) { perror( "ioctl - get" ); throw init(); } // I believe we want to clearn the DCD bit portStatus &= ~TIOCM_DTR; if( ioctl( fd, TIOCMSET, &portStatus ) < 0 ) { perror( "ioctl - set" ); throw init(); } #endif /* removed for debugging, still not sure I need it */ if( fcntl( fd, F_SETFL, FNDELAY | O_NONBLOCK ) < 0 ) { perror( "fcntl" ); throw init(); } #ifdef DEBUG COUT << "New input speed is " << cfgetispeed( &ioPort ) << ENDL; COUT << "New output speed is " << cfgetospeed( &ioPort ) << ENDL; #endif } // end of sline ctor Thanks for you help, Andy From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 15:41: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 D92AF16A479 for ; Thu, 22 Jun 2006 15:41:32 +0000 (UTC) (envelope-from atom.powers@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 2345643D53 for ; Thu, 22 Jun 2006 15:41:31 +0000 (GMT) (envelope-from atom.powers@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so588552uge for ; Thu, 22 Jun 2006 08:41: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VdlhPLPiwcXoYIxulbKdcrKlCvRAARwpRwyrNBIIWm9ifh33ebI4FQR6D+lKehBsIYrcfaBRMIUBfkQuESnAovjvYgwoEouMiM+1igyX7V0Vn7CCUFGNYLG0lcNnDExtGPlqP4E5xw6hzxrn0jFFst3pFHsnCOtVGKnRZXcztDk= Received: by 10.78.165.16 with SMTP id n16mr584384hue; Thu, 22 Jun 2006 08:34:57 -0700 (PDT) Received: by 10.78.37.16 with HTTP; Thu, 22 Jun 2006 08:34:57 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 08:34:57 -0700 From: "Atom Powers" To: "Marc G. Fournier" In-Reply-To: <20060621195523.I1114@ganymede.hub.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060845.U1114@ganymede.hub.org> <20060621183832.H1114@ganymede.hub.org> <20060621195523.I1114@ganymede.hub.org> Cc: chad@shire.net, Nikolas Britton , Ted Mittelstaedt , freebsd-questions@freebsd.org Subject: Re: Are hardware vendors starting to bail 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: Thu, 22 Jun 2006 15:41:32 -0000 On 6/21/06, Marc G. Fournier wrote: > b. are ppl actually using/promoting SATA drives in a server environment? > Or are we just talking about situations where you have a large number > of spindles to work with? My one experience with an SATA configuration > is that the server doesn't *feel* like its performing as well as my > SCSI servers do ... under load ... Yes. All the servers I'm installing this year will have SATA drives (and 3ware RAID controllers). The Western Digital Raptor drives are every bit as good as the SCSI drives I used to get. Although it can be difficult to explain to the finance people why a 74GB drive is better than a 500GB drive at the same price. -- -- Perfection is just a word I use occasionally with mustard. --Atom Powers-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 16:28: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 F088B16A6EE for ; Thu, 22 Jun 2006 16:28:36 +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 675DC4401B for ; Thu, 22 Jun 2006 16:07:15 +0000 (GMT) (envelope-from maslak@ihlas.net.tr) Received: (qmail 32146 invoked by uid 89); 22 Jun 2006 16:06:29 -0000 X-Mail-Scanner: Scanned by qSheff-II-2.1 (http://www.enderunix.org/qsheff/) Received: from unknown (HELO ihlasnetym) (maslak@213.238.150.220) by 0 with SMTP; 22 Jun 2006 16:06:29 -0000 Message-ID: <003701c69615$e6b4dc50$dc96eed5@ihlasnetym> From: "KHalid Faith" To: Date: Thu, 22 Jun 2006 19:07:02 +0300 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1506 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Why have I get kern.ipc.maxpipekva exceeded; see tuning(7) 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: Thu, 22 Jun 2006 16:28:37 -0000 I use FreeBSD6.0 My server give me an error as below kern.ipc.maxpipekva exceeded; see tuning(7) When I looked at its value as below sysctl -a |grep kern.ipc.maxpipekva=20 kern.ipc.maxpipekva: 16777216 How can I do about that ? Thanks From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 16:59: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 7A36816A479 for ; Thu, 22 Jun 2006 16:59:48 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 102F743D70 for ; Thu, 22 Jun 2006 16:59:48 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id 243D5290C46; Thu, 22 Jun 2006 13:59:46 -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 08240-08; Thu, 22 Jun 2006 13:59:46 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id 8040E290C35; Thu, 22 Jun 2006 13:59:45 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id EB66649083; Thu, 22 Jun 2006 13:59:44 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id E5ED547DD2; Thu, 22 Jun 2006 13:59:44 -0300 (ADT) Date: Thu, 22 Jun 2006 13:59:44 -0300 (ADT) From: "Marc G. Fournier" To: KHalid Faith In-Reply-To: <003701c69615$e6b4dc50$dc96eed5@ihlasnetym> Message-ID: <20060622135852.B1114@ganymede.hub.org> References: <003701c69615$e6b4dc50$dc96eed5@ihlasnetym> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Why have I get kern.ipc.maxpipekva exceeded; see tuning(7) 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: Thu, 22 Jun 2006 16:59:48 -0000 On Thu, 22 Jun 2006, KHalid Faith wrote: > I use FreeBSD6.0 > > My server give me an error as below > > kern.ipc.maxpipekva exceeded; see tuning(7) > > When I looked at its value as below > > sysctl -a |grep kern.ipc.maxpipekva > kern.ipc.maxpipekva: 16777216 > > How can I do about that ? Add an entry to /boot/loader.conf, similar to: # cat /boot/loader.conf kern.ipc.maxpipekva=67108864 I'm up to 64M, with current usage being closer to 40M: ============================== kern.ipc.maxpipekva: 67108864 - kern.ipc.pipekva: 39112704 running processes: 1528 ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 17:02: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 5C6BB16A49A for ; Thu, 22 Jun 2006 17:02:04 +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 C59A443D46 for ; Thu, 22 Jun 2006 17:01:56 +0000 (GMT) (envelope-from derek@computinginnovations.com) Received: from p17.computinginnovations.com (dhcp-10-20-30-100.computinginnovations.com [10.20.30.100]) (authenticated bits=0) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k5MH0p23031698; Thu, 22 Jun 2006 12:00:51 -0500 (CDT) Message-Id: <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Thu, 22 Jun 2006 12:00:41 -0500 To: "Andrew Falanga" , freebsd-questions@freebsd.org From: Derek Ragona In-Reply-To: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.co m> References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> 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: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 17:02:04 -0000 Andy, Did you kill the getty running on the port? Are you getting any errors? -Derek At 10:28 AM 6/22/2006, Andrew Falanga wrote: >Hello, > >I've got a case where I'm writing a simply serial program to send bytes from >one system to another over a serial cable. The program works in Linux, but >when I use it in FreeBSD nothing happens. The program starts and, in the >case of receiving, waits for data to appear on the /dev/cuad1 port and times >out in select. If I'm sending in FreeBSD, the send program believes it has >written all the data but nothing is received in Linux (either with running >my code on Linux or using kermit). On FreeBSD, however, if I use kermit to >monitor the /dev/cuad1 port and send, using my code, from Linux, all 2500 >packets are transmitted ok. Also, when sending from Linux and receiving in >FreeBSD, the FreeBSD machine show silo and tty-level interrupt errors. The >man page for sio describes that as problems in the interrupt handler, for >silo overflows, and that data arrived faster than the application could >process (for the tty-level overflows). > >What am I doing wrong? What is it that Kermit does to allow data being read >from the /dev/cuad1 device that I'm not? I've been looking over the kermit >sources but to be honest, before Thursday of last week, I'd never programmed >for serial ports before let alone having any knowledge of termios. >Therefore, I'm looking at a very steep learning curve. Please look over my >ctor for the serial line class that is in my code. After much debugging, >I'm convinced that my problem is in how I'm configuring my port. > >sline::sline( std::string d, int opm ) : dev( d ), opMode( opm ) >{ > memset( &oldSettings, 0, sizeof( oldSettings ) ); > memset( &ioPort, 0, sizeof( ioPort ) ); > memset( recvBuf, 0, PACKETSIZE ); > memset( &timeout, 0, sizeof( timeout ) ); > > FD_ZERO( &incoming ); > > timeout.tv_sec = TIMEOUT_SEC; > timeout.tv_usec = TIMEOUT_USEC; > > // create the packet > char asciiPrtChars = 32; // first printable ascii character in decimal > for( int i = 0; i < PACKETSIZE; i++ ) { > packet[i] = asciiPrtChars++; > if( asciiPrtChars == 127 ) // 127 is the delete character > asciiPrtChars = 32; > } > > // on the systems this code was meant to compile, LINUX and FreeBSD > // O_NDELAY and O_NONBLOCK are the same, however, this is not always > // true > fd = open( dev.c_str(), O_RDWR | O_NOCTTY | O_NDELAY ); > if( fd < 0 ) > throw init(); > > tcgetattr( fd, &oldSettings ); > tcgetattr( fd, &ioPort ); > >#ifdef DEBUG > COUT << "Current input speed is " << cfgetispeed( &ioPort ) << ENDL; > COUT << "Current output speed is " << cfgetospeed( &ioPort ) << ENDL; >#endif > >#if 0 > if( opMode == OPMODE_WRITE ) { > if( fcntl( fd, F_SETFL, 0 ) < 0 ) { > perror( "fcntl" ); > throw init(); > } > } else { > if( fcntl( fd, F_SETFL, FNDELAY ) < 0 ) { > perror( "fcntl" ); > throw init(); > } > FD_SET( fd, &incoming ); > } >#endif > >#if 0 > // configure control field, this should configure for 8N1 > // first, disable flow control (may have to put it back in) > // ioPort.c_cflag &= ~CRTSCTS; > ioPort.c_cflag |= CRTSCTS | CLOCAL | CREAD; > ioPort.c_cflag &= ~PARENB; > ioPort.c_cflag &= ~CSTOPB; > ioPort.c_cflag &= ~CSIZE; > ioPort.c_cflag |= CS8; > > // configure local field, setting to RAW mode > ioPort.c_lflag |= ~( ICANON | ECHO | ECHOE | ISIG ); > > // configure the input field, setting to ignore parity errors > // and disable software flow control > ioPort.c_iflag |= IGNPAR; > ioPort.c_iflag &= ~( IXON | IXOFF | IXANY ); > > // configure output field, setting to RAW > ioPort.c_iflag &= ~OPOST; >#endif /* end of if 0 */ > > // configure for raw data transfer > cfmakeraw( &ioPort ); > > // set VMIN and VTIME parameters in c_cc array > ioPort.c_cc[VMIN] = PACKETSIZE; > ioPort.c_cc[VTIME] = 0; > > if( cfsetispeed( &ioPort, BAUDRATE ) < 0 ) { > perror( "cfsetispeed" ); > throw init(); > } > > if( cfsetospeed( &ioPort, BAUDRATE ) < 0 ) { > perror( "cfsetospeed" ); > throw init(); > } > > COUT << "flushing dev: " << dev << ENDL; > if( tcflush( fd, TCIOFLUSH ) < 0 ) { > perror( "tcflush" ); > throw init(); > } > > COUT << "Setting new parameters to: " << dev << ENDL; > if( tcsetattr( fd, TCSANOW, &ioPort ) < 0 ) { > perror( "tcsetattr" ); > throw init(); > } > >#if 0 > if( ioctl( fd, TIOCMGET, &portStatus ) < 0 ) { > perror( "ioctl - get" ); > throw init(); > } > > // I believe we want to clearn the DCD bit > portStatus &= ~TIOCM_DTR; > > if( ioctl( fd, TIOCMSET, &portStatus ) < 0 ) { > perror( "ioctl - set" ); > throw init(); > } >#endif /* removed for debugging, still not sure I need it */ > > if( fcntl( fd, F_SETFL, FNDELAY | O_NONBLOCK ) < 0 ) { > perror( "fcntl" ); > throw init(); > } > >#ifdef DEBUG > COUT << "New input speed is " << cfgetispeed( &ioPort ) << ENDL; > COUT << "New output speed is " << cfgetospeed( &ioPort ) << ENDL; >#endif >} // end of sline ctor > >Thanks for you help, >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" > >-- >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 Jun 22 17:15: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 F31E816A479 for ; Thu, 22 Jun 2006 17:15:59 +0000 (UTC) (envelope-from simon@olofsson.de) 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 0651F43D76 for ; Thu, 22 Jun 2006 17:15:58 +0000 (GMT) (envelope-from simon@olofsson.de) Received: from mail-in-10-z2.arcor-so.net (mail-in-10-z2.arcor-online.net [151.189.8.27]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id 4E7D1EC81E for ; Thu, 22 Jun 2006 19:15:57 +0200 (CEST) Received: from mail-in-09.arcor-online.net (mail-in-09.arcor-online.net [151.189.21.49]) by mail-in-10-z2.arcor-so.net (Postfix) with ESMTP id 412C633A87B for ; Thu, 22 Jun 2006 19:15:57 +0200 (CEST) Received: from gul.lan.gath3n.de (dslb-084-060-185-171.pools.arcor-ip.net [84.60.185.171]) by mail-in-09.arcor-online.net (Postfix) with SMTP id E2C143395F2 for ; Thu, 22 Jun 2006 19:15:56 +0200 (CEST) Received: by gul.lan.gath3n.de (sSMTP sendmail emulation); Thu, 22 Jun 2006 19:15:56 +0200 From: "Simon Olofsson" Date: Thu, 22 Jun 2006 19:15:56 +0200 To: freebsd-questions@freebsd.org Message-ID: <20060622171556.GA2787@gul.lan.gath3n.de> Mail-Followup-To: freebsd-questions@freebsd.org References: <20060621221720.GA55540@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20060621221720.GA55540@thought.org> User-Agent: Mutt/1.5.11 Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 17:16:00 -0000 Hi, audio/cmus is very nice. HTH On Wed, Jun 21, 2006 at 03:17:20PM -0700, Gary Kline wrote: > > I would probably save weeks trying to turn FBSD into the kind of > "Desktop" or window-manager platform I want by just using my > Ubuntu platform. > > I'm still stickng > with CTWM. On my Ubuntu servers there is amarak(sp?) which is > my favorite audio-only apps so far. Is there anything like this > that doesn't require desktop-specific libraries? -- Mit freundlichem Gruß, With best regards, Simon Olofsson http://olofsson.de From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 17:42: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 44E7F16A481 for ; Thu, 22 Jun 2006 17:42:21 +0000 (UTC) (envelope-from hakmi@rogers.com) Received: from smtp108.rog.mail.re2.yahoo.com (smtp108.rog.mail.re2.yahoo.com [68.142.225.206]) by mx1.FreeBSD.org (Postfix) with SMTP id AEB6D44696 for ; Thu, 22 Jun 2006 17:42:20 +0000 (GMT) (envelope-from hakmi@rogers.com) Received: (qmail 63958 invoked from network); 22 Jun 2006 17:39:05 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:From:To:Subject:Date:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Mailer:In-Reply-To:X-MimeOLE:Thread-Index; b=d/Gn99uVX/+t8rwrlQNZ7j0QB+xQ/VoK3HL5kDWP2TYR6sjJz+9xC9HNvC2thTQVwdLf7LgjHOmkNIKW/0tapEgoXPwlxb5b9hRe4NlXVenMiiPnqGPjoa7ZYC2v8Vv4ZQ+Q+7Z5/73i0iQcruzPAgbVuB3c9o0/q3TSBgxKCkI= ; Received: from unknown (HELO tamouh) (hakmi@rogers.com@70.27.160.99 with login) by smtp108.rog.mail.re2.yahoo.com with SMTP; 22 Jun 2006 17:39:05 -0000 From: "Tamouh H." To: Date: Thu, 22 Jun 2006 13:39:14 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook, Build 11.0.6353 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Thread-Index: AcaWEml8XEUgwFsEQnq6UgboN6IYZAAD8zaQ Message-Id: <20060622174220.AEB6D44696@mx1.FreeBSD.org> Subject: RE: Are hardware vendors starting to bail 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: Thu, 22 Jun 2006 17:42:21 -0000 =20 ware vendors starting to bail on FreeBSD ... ? >=20 > On 6/21/06, Marc G. Fournier wrote: > > b. are ppl actually using/promoting SATA drives in a server=20 > environment? > > Or are we just talking about situations where you have=20 > a large number > > of spindles to work with? My one experience with an=20 > SATA configuration > > is that the server doesn't *feel* like its performing=20 > as well as my > > SCSI servers do ... under load ... >=20 > Yes. All the servers I'm installing this year will have SATA=20 > drives (and 3ware RAID controllers). The Western Digital=20 > Raptor drives are every bit as good as the SCSI drives I used to get. >=20 > Although it can be difficult to explain to the finance people=20 > why a 74GB drive is better than a 500GB drive at the same price. >=20 I know there have been a lot of mentioning of 3Ware and SCSI. But I went = on 3WARE website and there is not a single SCSI Adapter RAID or else! In that case, the only real players left for SCSI are Adaptec and LSI = (aside from HP controllers). Adaptec is out of question for FreeBSD due = to its performance, so really only LSI left! It seems SATA is the way to go on small to medium sized servers. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 17:43: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 8634416A49E for ; Thu, 22 Jun 2006 17:43:48 +0000 (UTC) (envelope-from swygue@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 4B20E4470B for ; Thu, 22 Jun 2006 17:43:32 +0000 (GMT) (envelope-from swygue@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so649625uge for ; Thu, 22 Jun 2006 10:43: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=qJ+LfoNdQQ8eHQ7FMauAS8v7vnEf6yH1BJNMpAl7okzJKZg7BEa3nX0v7x6wLRlPeTX3WFTTGKwTidBQO7ySDljdpRgVUD8kP9yKYWq5usGFzCkjmZwG5uVSz6iy/dK6nY9WpsmxZ9jqfzruYUJ3VFIC6vCpvJCBTENlVUe6Cng= Received: by 10.78.177.3 with SMTP id z3mr622273hue; Thu, 22 Jun 2006 10:43:31 -0700 (PDT) Received: by 10.78.20.7 with HTTP; Thu, 22 Jun 2006 10:43:31 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 13:43:31 -0400 From: swygue 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: Learn more about ld-elf and 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, 22 Jun 2006 17:43:48 -0000 Once in a while I get some error, looking like this: /usr/libexec/ld-elf.so.1: Shared object "libpq.so.3" not found This specific error was a result of trying to connect to a postgresql-7.4.2 database running on FreeBSD, 4.6.2. And yes the server is in the process of being decommissioned. I was wondering how have others resolve problems related to ld-elf and shared objects ? And where can I find more information about ld-elf and FreeBSD ? Thanks -- swygue neron --->> From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 17:52: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 BF3CF16A621 for ; Thu, 22 Jun 2006 17:52:33 +0000 (UTC) (envelope-from maslak@ihlas.net.tr) Received: from pop3.ihlas.net.tr (mail.ihlas.net.tr [213.238.128.115]) by mx1.FreeBSD.org (Postfix) with SMTP id 1DE4B44523 for ; Thu, 22 Jun 2006 17:28:39 +0000 (GMT) (envelope-from maslak@ihlas.net.tr) Received: (qmail 88764 invoked by uid 89); 22 Jun 2006 17:27:53 -0000 X-Mail-Scanner: Scanned by qSheff-II-2.1 (http://www.enderunix.org/qsheff/) Received: from unknown (HELO ihlasnetym) (maslak@213.238.150.220) by 0 with SMTP; 22 Jun 2006 17:27:53 -0000 Message-ID: <000b01c69621$45e376e0$dc96eed5@ihlasnetym> From: "KHalid Faith" To: References: <003701c69615$e6b4dc50$dc96eed5@ihlasnetym> <20060622135852.B1114@ganymede.hub.org> Date: Thu, 22 Jun 2006 20:28:26 +0300 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.1506 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Subject: Re: Why have I get kern.ipc.maxpipekva exceeded; see tuning(7) 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: Thu, 22 Jun 2006 17:52:33 -0000 Ok How can I do active the loader.conf ? is there any command for it ? Thanks ----- Original Message ----- From: "Marc G. Fournier" To: "KHalid Faith" Cc: Sent: Thursday, June 22, 2006 7:59 PM Subject: Re: Why have I get kern.ipc.maxpipekva exceeded; see tuning(7) message ? > On Thu, 22 Jun 2006, KHalid Faith wrote: > > > I use FreeBSD6.0 > > > > My server give me an error as below > > > > kern.ipc.maxpipekva exceeded; see tuning(7) > > > > When I looked at its value as below > > > > sysctl -a |grep kern.ipc.maxpipekva > > kern.ipc.maxpipekva: 16777216 > > > > How can I do about that ? > > Add an entry to /boot/loader.conf, similar to: > > # cat /boot/loader.conf > kern.ipc.maxpipekva=67108864 > > I'm up to 64M, with current usage being closer to 40M: > > ============================== > kern.ipc.maxpipekva: 67108864 - kern.ipc.pipekva: 39112704 > running processes: 1528 > > ---- > Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) > Email . scrappy@hub.org MSN . scrappy@hub.org > Yahoo . yscrappy Skype: hub.org ICQ . 7615664 > _______________________________________________ > 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 Jun 22 17:55: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 CE94416A492 for ; Thu, 22 Jun 2006 17:55:54 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE4A243D58 for ; Thu, 22 Jun 2006 17:55:53 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id B27BD290C35; Thu, 22 Jun 2006 14:55:51 -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 17803-08; Thu, 22 Jun 2006 14:55:53 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id C87FC290C20; Thu, 22 Jun 2006 14:55:50 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id 89ECB4A373; Thu, 22 Jun 2006 14:55:51 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id 891754A108; Thu, 22 Jun 2006 14:55:51 -0300 (ADT) Date: Thu, 22 Jun 2006 14:55:51 -0300 (ADT) From: "Marc G. Fournier" To: "Tamouh H." In-Reply-To: <20060622174220.AEB6D44696@mx1.FreeBSD.org> Message-ID: <20060622145130.I1114@ganymede.hub.org> References: <20060622174220.AEB6D44696@mx1.FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: RE: Are hardware vendors starting to bail 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: Thu, 22 Jun 2006 17:55:54 -0000 On Thu, 22 Jun 2006, Tamouh H. wrote: > I know there have been a lot of mentioning of 3Ware and SCSI. But I went > on 3WARE website and there is not a single SCSI Adapter RAID or else! > > In that case, the only real players left for SCSI are Adaptec and LSI > (aside from HP controllers). Adaptec is out of question for FreeBSD due > to its performance, so really only LSI left! In our case, where we are dealing with co-located servers, we've finally settled on HP Proliant servers ... not only do I like the SAS drives (4 in a 1U rack so that I can use RAID1+0), but iLO is 's gift to remote administration, and the HP RAID controllers actually provide FreeBSD with usual status information without requiring some external utility ... Cost is a bit more, but when your servers are several countries south of you, and you hate disturbing the techs down there if you don't have to, the ability to see the BIOS (motherboard and RAID controller), as well as everything happening on the console ... and being able to reboot ... I'll pay the extra ... ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 17:56: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 0AA8B16A47B for ; Thu, 22 Jun 2006 17:56:19 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C58C43D46 for ; Thu, 22 Jun 2006 17:56:18 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id 53CD5290C35; Thu, 22 Jun 2006 14:56:16 -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 18354-06; Thu, 22 Jun 2006 14:56:17 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id BCCEE290C20; Thu, 22 Jun 2006 14:56:15 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id E02E9492D4; Thu, 22 Jun 2006 14:56:16 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id DEBA03ECEA; Thu, 22 Jun 2006 14:56:16 -0300 (ADT) Date: Thu, 22 Jun 2006 14:56:16 -0300 (ADT) From: "Marc G. Fournier" To: KHalid Faith In-Reply-To: <000b01c69621$45e376e0$dc96eed5@ihlasnetym> Message-ID: <20060622145600.J1114@ganymede.hub.org> References: <003701c69615$e6b4dc50$dc96eed5@ihlasnetym> <20060622135852.B1114@ganymede.hub.org> <000b01c69621$45e376e0$dc96eed5@ihlasnetym> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Why have I get kern.ipc.maxpipekva exceeded; see tuning(7) 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: Thu, 22 Jun 2006 17:56:19 -0000 On Thu, 22 Jun 2006, KHalid Faith wrote: > Ok > How can I do active the loader.conf ? > is there any command for it ? You have to reboot, unfortunately ... > > Thanks > > ----- Original Message ----- > From: "Marc G. Fournier" > To: "KHalid Faith" > Cc: > Sent: Thursday, June 22, 2006 7:59 PM > Subject: Re: Why have I get kern.ipc.maxpipekva exceeded; see tuning(7) > message ? > > >> On Thu, 22 Jun 2006, KHalid Faith wrote: >> >>> I use FreeBSD6.0 >>> >>> My server give me an error as below >>> >>> kern.ipc.maxpipekva exceeded; see tuning(7) >>> >>> When I looked at its value as below >>> >>> sysctl -a |grep kern.ipc.maxpipekva >>> kern.ipc.maxpipekva: 16777216 >>> >>> How can I do about that ? >> >> Add an entry to /boot/loader.conf, similar to: >> >> # cat /boot/loader.conf >> kern.ipc.maxpipekva=67108864 >> >> I'm up to 64M, with current usage being closer to 40M: >> >> ============================== >> kern.ipc.maxpipekva: 67108864 - kern.ipc.pipekva: 39112704 >> running processes: 1528 >> >> ---- >> Marc G. Fournier Hub.Org Networking Services > (http://www.hub.org) >> Email . scrappy@hub.org MSN . scrappy@hub.org >> Yahoo . yscrappy Skype: hub.org ICQ . 7615664 >> _______________________________________________ >> 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" > ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 18:00: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 D464916A481 for ; Thu, 22 Jun 2006 18:00:32 +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 74A3343D5D for ; Thu, 22 Jun 2006 18:00:31 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 16358 invoked from network); 22 Jun 2006 18:00:31 -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 ; 22 Jun 2006 18:00:30 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 1F6AF28449; Thu, 22 Jun 2006 14:00:30 -0400 (EDT) To: "Marc G. Fournier" References: <20060622031513.Q1114@ganymede.hub.org> From: Lowell Gilbert Date: Thu, 22 Jun 2006 14:00:29 -0400 In-Reply-To: <20060622031513.Q1114@ganymede.hub.org> (Marc G. Fournier's message of "Thu, 22 Jun 2006 03:21:48 -0300 (ADT)") Message-ID: <44psh16pfm.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: SSH tunneling to FreeBSD 6.x using entunnel ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 18:00:33 -0000 "Marc G. Fournier" writes: > I have a client that has been using entunnel for the longest time to > do an SSH tunnel into their vServer ... we've recently begun upgrading > to FreeBSD 6.x, and entunnel is no longer working (upgraded from > FreeBSD 4.x) ... > > Apparenty, bitvise.com's tunnelier has the same problem ... > > The way the client describes how entunnel used to work for them: > > "entunnel was great - i never had to think about it. it just worked, > all the time, automatically - came up at startup as a service and just > sat in the system tray." > > Without having to downgrade their OpenSSH to the same version as was > on FreeBSD 4.x (bad option!), is there something that I can look at on > the FreeBSD 6.x OpenSSH to fix the problem? Maybe some backwards > compatibility mode? I don't know those particular Windows clients, but maybe they want your sshd_config to enable PasswordAuthentication? From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 18:05:01 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 E901C16A49A for ; Thu, 22 Jun 2006 18:05:01 +0000 (UTC) (envelope-from jfalconer@puc.edu) Received: from ecf2.puc.edu (ecf2.puc.edu [67.134.132.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68BF543D83 for ; Thu, 22 Jun 2006 18:05:00 +0000 (GMT) (envelope-from jfalconer@puc.edu) Received: from localhost (jfalconer@localhost) by ecf2.puc.edu (8.11.6/8.10.1) with ESMTP id k5MI4w609300 for ; Thu, 22 Jun 2006 11:04:58 -0700 (PDT) Date: Thu, 22 Jun 2006 11:04:58 -0700 (PDT) From: Jon Falconer To: questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Subject: problem creating filesystem snapshot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 18:05:02 -0000 Greetings, I needed to dump the partitions on a running FreeBSD 6.1R system so I could duplicate them on a test server. The server is a Dell 2850 with the PERC 4e/Di RAID controller with 5 x 73GB disk array. So I thought I would try using the snapshot feature. I used the mksnap_ffs to create a snapshot of a 20GB partition. The command completed in about 15 - 20 seconds. I was then able to run dump against the new snap file and all seemed ok. I then tried the same thing on a 225GB partition. The mksnap_ffs command took over 30 minutes to complete. But every access to that partition after that just hung. I wanted to see the size of the snap file so I typed ls -l /home/.snap (where I had told mksnap_ffs to put the snap file) and it hung. Same thing from several logins. I figured I would have to reset the box so I typed sync, and that hung. All the time, access to other partitions was just fine (/, /usr, /var). All partitions (except /) were created with soft update enables (default when installing.) The questions. Is there anything magic about the /xxx/.snap directory in each partition? When I created the snap file for the 20GB partition, I did not put it inside the /xxx/.snap directory, and it worked fine. Is there some partition size restrictions? Thank you for your thoughts, Jon From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 18:05: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 5517916A47E for ; Thu, 22 Jun 2006 18:05:20 +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 3996B43D69 for ; Thu, 22 Jun 2006 18:05:16 +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 1FtTYJ-000LBi-Fq; Thu, 22 Jun 2006 12:05:15 -0600 In-Reply-To: <20060622145130.I1114@ganymede.hub.org> References: <20060622174220.AEB6D44696@mx1.FreeBSD.org> <20060622145130.I1114@ganymede.hub.org> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <86B8B6FA-1099-4819-A63E-873174591CB0@shire.net> Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Thu, 22 Jun 2006 12:05:14 -0600 To: Marc G. Fournier X-Mailer: Apple Mail (2.750) 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 Cc: FreeBSD-Questions Questions Subject: Re: Are hardware vendors starting to bail 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: Thu, 22 Jun 2006 18:05:20 -0000 On Jun 22, 2006, at 11:55 AM, Marc G. Fournier wrote: > not only do I like the SAS drives (4 in a 1U rack so that I can > use RAID1+0) What drives are they? There is nothing in the SAS spec about drive dimensions so it seems you like your particular models of SAS drives Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 18:06: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 5921016A47C for ; Thu, 22 Jun 2006 18:06:18 +0000 (UTC) (envelope-from arfranks@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 EBA2143D7D for ; Thu, 22 Jun 2006 18:06:17 +0000 (GMT) (envelope-from arfranks@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so536542nzp for ; Thu, 22 Jun 2006 11:06: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=q1D3ymZFTEcVK+G7ScUNgju5yYg0UNW2P36TLBq3GN1xdnivzom3xln7aAIJ0lWXTIP/OMkBmcP8/cvSZsHR4Z1QEY3EtZjDO6Q7JCRP0nb94XSoauF1Bop7wZu7pmktYRHwLWSxLcFx2Ox14L43HCJNKLJ8iLGLYy9YbqqkHoQ= Received: by 10.64.125.17 with SMTP id x17mr1755471qbc; Thu, 22 Jun 2006 11:06:17 -0700 (PDT) Received: by 10.65.51.1 with HTTP; Thu, 22 Jun 2006 11:06:17 -0700 (PDT) Message-ID: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> Date: Thu, 22 Jun 2006 11:06:17 -0700 From: "Alex Franks" 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: Hot-Swapping hard drives on Dell PowerEdge 2850 running FBSD 5.5-PRE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 18:06:18 -0000 Hello all, I'm getting ready to install 2 identical drives into the available drive bays in my 2850. However, it would be highly preferable that this machine NOT be shut down in order to install these drives. I know from looking at the docs that these drive bays are hot-swappable, but I'd like to know before I attempt this that someone else out there has successfully performed a hot-swap or hot-install of drives on a 2850 or comparable Dell PowerEdge running FreeBSD. Thanks! Alex From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 18: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 A3B1A16A47B for ; Thu, 22 Jun 2006 18:21:24 +0000 (UTC) (envelope-from af300wsm@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 B31CD43E60 for ; Thu, 22 Jun 2006 18:19:48 +0000 (GMT) (envelope-from af300wsm@gmail.com) Received: by nz-out-0102.google.com with SMTP id 18so450848nzp for ; Thu, 22 Jun 2006 11:19: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=Kn6iTUoRj3cutBdzG/QAD6GMWHbP+GNOezdNxWbhrVEskyLoyI1JyuV+UiaObBIMwjM4bRIO9SsYWJ+DROXW5oyPxJoe9kKWnkmOwmoaHVotK9LaQzRtjtoou8rWPUxbMnZDbXvnr+1uyaYU/KQGWPMHPKbmEojpqM8zJjT8CK8= Received: by 10.36.18.16 with SMTP id 16mr1121703nzr; Thu, 22 Jun 2006 11:19:41 -0700 (PDT) Received: by 10.36.24.10 with HTTP; Thu, 22 Jun 2006 11:19:41 -0700 (PDT) Message-ID: <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> Date: Thu, 22 Jun 2006 12:19:41 -0600 From: "Andrew Falanga" To: "Derek Ragona" , freebsd-questions@freebsd.org In-Reply-To: <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> MIME-Version: 1.0 References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.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: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 18:21:24 -0000 Derek, No I didn't disable the getty on the port. To be honest, I didn't know one was running. Second, the errors I'm receiving are: sio1: 2 more silo overflows (total 9) sio1: 280221 more tty-level buffer overflows (total 576898) One question I have is, why would kermit able to receive/send data across the port? I don't know if said this in my first message, but I started kermit on both the FreeBSD and Linux machines and was able to send/receive data in either direction. I didn't disable getty before doing that. Second question is, does my code look ok? Am I initializing everythin accordingly? Andy On 6/22/06, Derek Ragona wrote: > > Andy, > > Did you kill the getty running on the port? > > Are you getting any errors? > > -Derek > > > At 10:28 AM 6/22/2006, Andrew Falanga wrote: > > Hello, > > I've got a case where I'm writing a simply serial program to send bytes > from > one system to another over a serial cable. The program works in Linux, > but > when I use it in FreeBSD nothing happens. The program starts and, in the > case of receiving, waits for data to appear on the /dev/cuad1 port and > times > out in select. If I'm sending in FreeBSD, the send program believes it > has > written all the data but nothing is received in Linux (either with running > my code on Linux or using kermit). On FreeBSD, however, if I use kermit > to > monitor the /dev/cuad1 port and send, using my code, from Linux, all 2500 > packets are transmitted ok. Also, when sending from Linux and receiving > in > FreeBSD, the FreeBSD machine show silo and tty-level interrupt errors. > The > man page for sio describes that as problems in the interrupt handler, for > silo overflows, and that data arrived faster than the application could > process (for the tty-level overflows). > > What am I doing wrong? What is it that Kermit does to allow data being > read > from the /dev/cuad1 device that I'm not? I've been looking over the > kermit > sources but to be honest, before Thursday of last week, I'd never > programmed > for serial ports before let alone having any knowledge of termios. > Therefore, I'm looking at a very steep learning curve. Please look over > my > ctor for the serial line class that is in my code. After much debugging, > I'm convinced that my problem is in how I'm configuring my port. > > sline::sline( std::string d, int opm ) : dev( d ), opMode( opm ) > { > memset( &oldSettings, 0, sizeof( oldSettings ) ); > memset( &ioPort, 0, sizeof( ioPort ) ); > memset( recvBuf, 0, PACKETSIZE ); > memset( &timeout, 0, sizeof( timeout ) ); > > FD_ZERO( &incoming ); > > timeout.tv_sec = TIMEOUT_SEC; > timeout.tv_usec = TIMEOUT_USEC; > > // create the packet > char asciiPrtChars = 32; // first printable ascii character in decimal > for( int i = 0; i < PACKETSIZE; i++ ) { > packet[i] = asciiPrtChars++; > if( asciiPrtChars == 127 ) // 127 is the delete character > asciiPrtChars = 32; > } > > // on the systems this code was meant to compile, LINUX and FreeBSD > // O_NDELAY and O_NONBLOCK are the same, however, this is not always > // true > fd = open( dev.c_str(), O_RDWR | O_NOCTTY | O_NDELAY ); > if( fd < 0 ) > throw init(); > > tcgetattr( fd, &oldSettings ); > tcgetattr( fd, &ioPort ); > > #ifdef DEBUG > COUT << "Current input speed is " << cfgetispeed( &ioPort ) << ENDL; > COUT << "Current output speed is " << cfgetospeed( &ioPort ) << ENDL; > #endif > > #if 0 > if( opMode == OPMODE_WRITE ) { > if( fcntl( fd, F_SETFL, 0 ) < 0 ) { > perror( "fcntl" ); > throw init(); > } > } else { > if( fcntl( fd, F_SETFL, FNDELAY ) < 0 ) { > perror( "fcntl" ); > throw init(); > } > FD_SET( fd, &incoming ); > } > #endif > > #if 0 > // configure control field, this should configure for 8N1 > // first, disable flow control (may have to put it back in) > // ioPort.c_cflag &= ~CRTSCTS; > ioPort.c_cflag |= CRTSCTS | CLOCAL | CREAD; > ioPort.c_cflag &= ~PARENB; > ioPort.c_cflag &= ~CSTOPB; > ioPort.c_cflag &= ~CSIZE; > ioPort.c_cflag |= CS8; > > // configure local field, setting to RAW mode > ioPort.c_lflag |= ~( ICANON | ECHO | ECHOE | ISIG ); > > // configure the input field, setting to ignore parity errors > // and disable software flow control > ioPort.c_iflag |= IGNPAR; > ioPort.c_iflag &= ~( IXON | IXOFF | IXANY ); > > // configure output field, setting to RAW > ioPort.c_iflag &= ~OPOST; > #endif /* end of if 0 */ > > // configure for raw data transfer > cfmakeraw( &ioPort ); > > // set VMIN and VTIME parameters in c_cc array > ioPort.c_cc[VMIN] = PACKETSIZE; > ioPort.c_cc[VTIME] = 0; > > if( cfsetispeed( &ioPort, BAUDRATE ) < 0 ) { > perror( "cfsetispeed" ); > throw init(); > } > > if( cfsetospeed( &ioPort, BAUDRATE ) < 0 ) { > perror( "cfsetospeed" ); > throw init(); > } > > COUT << "flushing dev: " << dev << ENDL; > if( tcflush( fd, TCIOFLUSH ) < 0 ) { > perror( "tcflush" ); > throw init(); > } > > COUT << "Setting new parameters to: " << dev << ENDL; > if( tcsetattr( fd, TCSANOW, &ioPort ) < 0 ) { > perror( "tcsetattr" ); > throw init(); > } > > #if 0 > if( ioctl( fd, TIOCMGET, &portStatus ) < 0 ) { > perror( "ioctl - get" ); > throw init(); > } > > // I believe we want to clearn the DCD bit > portStatus &= ~TIOCM_DTR; > > if( ioctl( fd, TIOCMSET, &portStatus ) < 0 ) { > perror( "ioctl - set" ); > throw init(); > } > #endif /* removed for debugging, still not sure I need it */ > > if( fcntl( fd, F_SETFL, FNDELAY | O_NONBLOCK ) < 0 ) { > perror( "fcntl" ); > throw init(); > } > > #ifdef DEBUG > COUT << "New input speed is " << cfgetispeed( &ioPort ) << ENDL; > COUT << "New output speed is " << cfgetospeed( &ioPort ) << ENDL; > #endif > } // end of sline ctor > > Thanks for you help, > 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" > > -- > 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 Jun 22 18:22: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 22D0316A49A for ; Thu, 22 Jun 2006 18:22:35 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418B243F4D for ; Thu, 22 Jun 2006 18:20:16 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id 7379D290C46; Thu, 22 Jun 2006 15:20:08 -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 23714-01; Thu, 22 Jun 2006 15:20:09 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id 6EC8B290C35; Thu, 22 Jun 2006 15:20:07 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id 67816494AB; Thu, 22 Jun 2006 15:20:07 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id 63AEC4934F; Thu, 22 Jun 2006 15:20:07 -0300 (ADT) Date: Thu, 22 Jun 2006 15:20:07 -0300 (ADT) From: "Marc G. Fournier" To: "Chad Leigh -- Shire.Net LLC" In-Reply-To: <86B8B6FA-1099-4819-A63E-873174591CB0@shire.net> Message-ID: <20060622151752.A1114@ganymede.hub.org> References: <20060622174220.AEB6D44696@mx1.FreeBSD.org> <20060622145130.I1114@ganymede.hub.org> <86B8B6FA-1099-4819-A63E-873174591CB0@shire.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD-Questions Questions Subject: Re: Are hardware vendors starting to bail 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: Thu, 22 Jun 2006 18:22:35 -0000 On Thu, 22 Jun 2006, Chad Leigh -- Shire.Net LLC wrote: > > On Jun 22, 2006, at 11:55 AM, Marc G. Fournier wrote: > >> not only do I like the SAS drives (4 in a 1U rack so that I can use >> RAID1+0) > > What drives are they? There is nothing in the SAS spec about drive > dimensions so it seems you like your particular models of SAS drives Ack, I thought it was a standard size thing, never even thought about it ... I ordered the drives from HP, with the server ... From: http://h18004.www1.hp.com/products/servers/proliantstorage/drives-enclosures/index.html?jumpid=ex_hphqglobal_wwentsem/Proliant I'm guessing what I got were the 2.5" form factor, vs the 3.5" ... and based on that same page, looks like I can get 2.5" SATA also ... i thought the 'small size' was a SAS feature :( ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 18:28: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 D675E16A481 for ; Thu, 22 Jun 2006 18:28:35 +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 8BB8643D53 for ; Thu, 22 Jun 2006 18:28:32 +0000 (GMT) (envelope-from derek@computinginnovations.com) Received: from p17.computinginnovations.com (dhcp-10-20-30-100.computinginnovations.com [10.20.30.100]) (authenticated bits=0) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k5MISBrd032827; Thu, 22 Jun 2006 13:28:13 -0500 (CDT) Message-Id: <6.0.0.22.2.20060622132439.0253b160@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Thu, 22 Jun 2006 13:28:01 -0500 To: "Andrew Falanga" , freebsd-questions@freebsd.org From: Derek Ragona In-Reply-To: <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.co m> References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> 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: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 18:28:35 -0000 Your code looked OK, but I would add some debugging print statements. silo overflow is a stack overflow, so you should figure where this is happening. The getty may be managing the port IO, which is why I would disable it. Getty is listening to the port for traffic. Depending on the OS, some don't run getty on all physical ports, some do by default. Some are more exclusive in the perms as well, or should be. -Derek At 01:19 PM 6/22/2006, Andrew Falanga wrote: >Derek, > >No I didn't disable the getty on the port. To be honest, I didn't know >one was running. > >Second, the errors I'm receiving are: > >sio1: 2 more silo overflows (total 9) >sio1: 280221 more tty-level buffer overflows (total 576898) > > >One question I have is, why would kermit able to receive/send data across >the port? I don't know if said this in my first message, but I started >kermit on both the FreeBSD and Linux machines and was able to send/receive >data in either direction. I didn't disable getty before doing that. > >Second question is, does my code look ok? Am I initializing everythin >accordingly? > >Andy > >On 6/22/06, Derek Ragona < >derek@computinginnovations.com> wrote: >>Andy, >> >>Did you kill the getty running on the port? >> >>Are you getting any errors? >> >> -Derek >> >> >>At 10:28 AM 6/22/2006, Andrew Falanga wrote: >>Hello, >> >>I've got a case where I'm writing a simply serial program to send bytes from >>one system to another over a serial cable. The program works in Linux, but >>when I use it in FreeBSD nothing happens. The program starts and, in the >>case of receiving, waits for data to appear on the /dev/cuad1 port and times >>out in select. If I'm sending in FreeBSD, the send program believes it has >>written all the data but nothing is received in Linux (either with running >>my code on Linux or using kermit). On FreeBSD, however, if I use kermit to >>monitor the /dev/cuad1 port and send, using my code, from Linux, all 2500 >>packets are transmitted ok. Also, when sending from Linux and receiving in >>FreeBSD, the FreeBSD machine show silo and tty-level interrupt errors. The >>man page for sio describes that as problems in the interrupt handler, for >>silo overflows, and that data arrived faster than the application could >>process (for the tty-level overflows). >> >>What am I doing wrong? What is it that Kermit does to allow data being read >>from the /dev/cuad1 device that I'm not? I've been looking over the kermit >>sources but to be honest, before Thursday of last week, I'd never programmed >>for serial ports before let alone having any knowledge of termios. >>Therefore, I'm looking at a very steep learning curve. Please look over my >>ctor for the serial line class that is in my code. After much debugging, >>I'm convinced that my problem is in how I'm configuring my port. >> >>sline::sline( std::string d, int opm ) : dev( d ), opMode( opm ) >>{ >> memset( &oldSettings, 0, sizeof( oldSettings ) ); >> memset( &ioPort, 0, sizeof( ioPort ) ); >> memset( recvBuf, 0, PACKETSIZE ); >> memset( &timeout, 0, sizeof( timeout ) ); >> >> FD_ZERO( &incoming ); >> >> timeout.tv_sec = TIMEOUT_SEC; >> timeout.tv_usec = TIMEOUT_USEC; >> >> // create the packet >> char asciiPrtChars = 32; // first printable ascii character in decimal >> for( int i = 0; i < PACKETSIZE; i++ ) { >> packet[i] = asciiPrtChars++; >> if( asciiPrtChars == 127 ) // 127 is the delete character >> asciiPrtChars = 32; >> } >> >> // on the systems this code was meant to compile, LINUX and FreeBSD >> // O_NDELAY and O_NONBLOCK are the same, however, this is not always >> // true >> fd = open( dev.c_str(), O_RDWR | O_NOCTTY | O_NDELAY ); >> if( fd < 0 ) >> throw init(); >> >> tcgetattr( fd, &oldSettings ); >> tcgetattr( fd, &ioPort ); >> >>#ifdef DEBUG >> COUT << "Current input speed is " << cfgetispeed( &ioPort ) << ENDL; >> COUT << "Current output speed is " << cfgetospeed( &ioPort ) << ENDL; >>#endif >> >>#if 0 >> if( opMode == OPMODE_WRITE ) { >> if( fcntl( fd, F_SETFL, 0 ) < 0 ) { >> perror( "fcntl" ); >> throw init(); >> } >> } else { >> if( fcntl( fd, F_SETFL, FNDELAY ) < 0 ) { >> perror( "fcntl" ); >> throw init(); >> } >> FD_SET( fd, &incoming ); >> } >>#endif >> >>#if 0 >> // configure control field, this should configure for 8N1 >> // first, disable flow control (may have to put it back in) >> // ioPort.c_cflag &= ~CRTSCTS; >> ioPort.c_cflag |= CRTSCTS | CLOCAL | CREAD; >> ioPort.c_cflag &= ~PARENB; >> ioPort.c_cflag &= ~CSTOPB; >> ioPort.c_cflag &= ~CSIZE; >> ioPort.c_cflag |= CS8; >> >> // configure local field, setting to RAW mode >> ioPort.c_lflag |= ~( ICANON | ECHO | ECHOE | ISIG ); >> >> // configure the input field, setting to ignore parity errors >> // and disable software flow control >> ioPort.c_iflag |= IGNPAR; >> ioPort.c_iflag &= ~( IXON | IXOFF | IXANY ); >> >> // configure output field, setting to RAW >> ioPort.c_iflag &= ~OPOST; >>#endif /* end of if 0 */ >> >> // configure for raw data transfer >> cfmakeraw( &ioPort ); >> >> // set VMIN and VTIME parameters in c_cc array >> ioPort.c_cc[VMIN] = PACKETSIZE; >> ioPort.c_cc[VTIME] = 0; >> >> if( cfsetispeed( &ioPort, BAUDRATE ) < 0 ) { >> perror( "cfsetispeed" ); >> throw init(); >> } >> >> if( cfsetospeed( &ioPort, BAUDRATE ) < 0 ) { >> perror( "cfsetospeed" ); >> throw init(); >> } >> >> COUT << "flushing dev: " << dev << ENDL; >> if( tcflush( fd, TCIOFLUSH ) < 0 ) { >> perror( "tcflush" ); >> throw init(); >> } >> >> COUT << "Setting new parameters to: " << dev << ENDL; >> if( tcsetattr( fd, TCSANOW, &ioPort ) < 0 ) { >> perror( "tcsetattr" ); >> throw init(); >> } >> >>#if 0 >> if( ioctl( fd, TIOCMGET, &portStatus ) < 0 ) { >> perror( "ioctl - get" ); >> throw init(); >> } >> >> // I believe we want to clearn the DCD bit >> portStatus &= ~TIOCM_DTR; >> >> if( ioctl( fd, TIOCMSET, &portStatus ) < 0 ) { >> perror( "ioctl - set" ); >> throw init(); >> } >>#endif /* removed for debugging, still not sure I need it */ >> >> if( fcntl( fd, F_SETFL, FNDELAY | O_NONBLOCK ) < 0 ) { >> perror( "fcntl" ); >> throw init(); >> } >> >>#ifdef DEBUG >> COUT << "New input speed is " << cfgetispeed( &ioPort ) << ENDL; >> COUT << "New output speed is " << cfgetospeed( &ioPort ) << ENDL; >>#endif >>} // end of sline ctor >> >>Thanks for you help, >>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" >> >>-- >>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. > > >-- >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 Jun 22 18:51: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 DFC9316A47C for ; Thu, 22 Jun 2006 18:51:15 +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 5C6C0449C5 for ; Thu, 22 Jun 2006 18:51:15 +0000 (GMT) (envelope-from dkelly@Grumpy.DynDNS.org) Received: (qmail 26363 invoked by uid 0); 22 Jun 2006 18:48:38 -0000 Received: from unknown (HELO Grumpy.DynDNS.org) (216.186.148.249) by smtp7.knology.net with SMTP; 22 Jun 2006 18:48:38 -0000 Received: by Grumpy.DynDNS.org (Postfix, from userid 928) id A74B028421; Thu, 22 Jun 2006 13:51:11 -0500 (CDT) Date: Thu, 22 Jun 2006 13:51:11 -0500 From: David Kelly To: Andrew Falanga Message-ID: <20060622185111.GA28343@Grumpy.DynDNS.org> References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-questions@freebsd.org Subject: Re: Serial programming on FreeBSD 6.0 RELEASE 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, 22 Jun 2006 18:51:16 -0000 On Thu, Jun 22, 2006 at 12:19:41PM -0600, Andrew Falanga wrote: > Derek, > > No I didn't disable the getty on the port. To be honest, I didn't know one > was running. Its not going to be running by default. Even if it was then it would be on /dev/ttyd1 not /dev/cuad1. What is supposed to happen is that getty can listen for incoming on /dev/ttyd1 but if it doesn't have an active connection it would be set aside while another comes along on the call-out device to use the port. If ttyd1 is busy attempts to open cuad1 should fail. > Second, the errors I'm receiving are: > > sio1: 2 more silo overflows (total 9) > sio1: 280221 more tty-level buffer overflows (total 576898) Believe this is saying the data arrived and nobody picked it up. > One question I have is, why would kermit able to receive/send data > across the port? I don't know if said this in my first message, but I > started kermit on both the FreeBSD and Linux machines and was able to > send/receive data in either direction. I didn't disable getty before > doing that. /dev/cuad1 is rw for uucp:dialer and nothing for anyone else. What ID is running your code? Generally one places users who are permitted to use the serial ports into group dialer. Furthermore kermit needs the user's uucp group permissions in order to create the UUCP lock in the hopes that other programs will honor kermit's word that the device is busy. -- David Kelly N4HHE, dkelly@HiWAAY.net ======================================================================== Whom computers would destroy, they must first drive mad. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 18:51: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 B066516A4A6 for ; Thu, 22 Jun 2006 18:51:23 +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 DA1AB449C6 for ; Thu, 22 Jun 2006 18:51:22 +0000 (GMT) (envelope-from mcbrune@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so681623uge for ; Thu, 22 Jun 2006 11:51:21 -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=DWUxFuFDAOSJfn8/Vy5gubaVGYuHagi8TKTYh+E8pXskmdaYk1mvlwtsTWYITwaH3BwZe/A1IJTG86n0NDbzoJhvbok46Sjq17fzcrz6iZOWt7tdqGiO4QkY7za/an0BzYDKa94QlFyLTC4ISTPpfB/EuwZe9Y8EMSQ0aJUXzaA= Received: by 10.67.28.9 with SMTP id f9mr1336247ugj; Thu, 22 Jun 2006 11:51:21 -0700 (PDT) Received: by 10.66.221.2 with HTTP; Thu, 22 Jun 2006 11:51:20 -0700 (PDT) Message-ID: <562705370606221151g6efa05b3m6fcfaa6d828eb42d@mail.gmail.com> Date: Thu, 22 Jun 2006 13:51:20 -0500 From: "Corey Brune" To: swygue 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 Cc: freebsd-questions@freebsd.org Subject: Re: Learn more about ld-elf and 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, 22 Jun 2006 18:51:23 -0000 Have you tried setting LD_LIBRARY_PATH to include the directory where libpq is? Are you getting this error after psql or something like it? If you haven't, then set LD_LIBRARY_PATH, then type 'ldd '. This will tell you which libs are found and which are not. Hope this helps. Corey On 6/22/06, swygue wrote: > > Once in a while I get some error, looking like this: > > /usr/libexec/ld-elf.so.1: Shared object "libpq.so.3" not found > > This specific error was a result of trying to connect to a > postgresql-7.4.2 database running on FreeBSD, 4.6.2. And yes the > server is in the process of being decommissioned. > > I was wondering how have others resolve problems related to ld-elf and > shared objects ? And where can I find more information about ld-elf > and FreeBSD ? > > Thanks > > -- > swygue neron --->> > _______________________________________________ > 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 Jun 22 18:58: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 DF57816A47B for ; Thu, 22 Jun 2006 18:58:00 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEEB9449CE for ; Thu, 22 Jun 2006 18:57:58 +0000 (GMT) (envelope-from af300wsm@gmail.com) Received: by nz-out-0102.google.com with SMTP id 18so458338nzp for ; Thu, 22 Jun 2006 11:57: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:in-reply-to:mime-version:content-type:references; b=grocpPez+A7Q2RLNg+amP+nP95Hjc3CZxRbkRdvzYS86VtE8xxxr++zPfptfkXhRY/5XFiWFiW8cvd9/bB6Ko8f2OwebXAkqXxKKObgUhhPFuh3xcM/FMlICPoUTFFRTh+MI8gJSriMtxQRQnzzNz0BTqKxR8jFdM8YvHS1oCo8= Received: by 10.36.252.49 with SMTP id z49mr2461761nzh; Thu, 22 Jun 2006 11:57:58 -0700 (PDT) Received: by 10.36.24.10 with HTTP; Thu, 22 Jun 2006 11:57:58 -0700 (PDT) Message-ID: <340a29540606221157s7307de7cu15bbe8028aa64434@mail.gmail.com> Date: Thu, 22 Jun 2006 12:57:58 -0600 From: "Andrew Falanga" To: "Derek Ragona" , freebsd-questions@freebsd.org In-Reply-To: <6.0.0.22.2.20060622134310.02533080@mail.computinginnovations.com> MIME-Version: 1.0 References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> <6.0.0.22.2.20060622132439.0253b160@mail.computinginnovations.com> <340a29540606221139w7b257b26j5c115c3976bd2927@mail.gmail.com> <6.0.0.22.2.20060622134310.02533080@mail.computinginnovations.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: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 18:58:01 -0000 Unfortunately, it looks like getty isn't running on /dev/cuad1. I did the ps command you suggest below and it apears that getty is only running on the virtual terminals (ttyvx). Would you have any idea what it is that kermit is doing differently that I? Andy On 6/22/06, Derek Ragona wrote: > > I would do a > ps -ax|more > to see what is running. > > Depending on your version FreeBSD may not have enabled the getty in > /etc/ttys > > -Derek > > > > From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 19: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 88B3A16A47C for ; Thu, 22 Jun 2006 19:55:56 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9CC9450B0 for ; Thu, 22 Jun 2006 19:55:55 +0000 (GMT) (envelope-from af300wsm@gmail.com) Received: by nz-out-0102.google.com with SMTP id 16so485225nzp for ; Thu, 22 Jun 2006 12:55: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:in-reply-to:mime-version:content-type:references; b=U4hsDISkEA43k867QrZ70GMFadBBR3hrFuwCxwkdpaNzGv5+3uJnTfUMk4CzOM0dK7YKb3lqms03xOH3qFOUhZhfVhToGf/+L3krp2ozaN9+eZqBvvJzHc920O0pys/vA99leBOhCiLmjXi/bv3Q/baE+UcQ+EIT2TvbGPvCL0U= Received: by 10.36.221.38 with SMTP id t38mr1409385nzg; Thu, 22 Jun 2006 12:55:55 -0700 (PDT) Received: by 10.36.24.10 with HTTP; Thu, 22 Jun 2006 12:55:54 -0700 (PDT) Message-ID: <340a29540606221255xd82aa33qf0dc96b95cb0cb12@mail.gmail.com> Date: Thu, 22 Jun 2006 13:55:54 -0600 From: "Andrew Falanga" To: "Derek Ragona" , freebsd-questions@freebsd.org In-Reply-To: <6.0.0.22.2.20060622141710.0203b870@mail.computinginnovations.com> MIME-Version: 1.0 References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> <6.0.0.22.2.20060622132439.0253b160@mail.computinginnovations.com> <340a29540606221139w7b257b26j5c115c3976bd2927@mail.gmail.com> <6.0.0.22.2.20060622134310.02533080@mail.computinginnovations.com> <340a29540606221157s71e3fb15n4187b4329722fbab@mail.gmail.com> <6.0.0.22.2.20060622141710.0203b870@mail.computinginnovations.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: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 19:55:56 -0000 I'm not sure I understand what you mean. Andy On 6/22/06, Derek Ragona wrote: > > Kermit may be manipulating the uart directly. > > Unless you are not getting the uart to flush the characters. I have only > had that problem with doing low-level direct programing. Typically not a > problem with high-level coding where you just open the device and set it for > non-buffered output. > > Your problem though may be in the stack overflows. You may need to > explicitly compile and link it with a larger stack. It may be these > overflows causing the output to never get there. > > -Derek > > > > At 01:57 PM 6/22/2006, Andrew Falanga wrote: > > Unfortunately, it looks like getty isn't running on /dev/cuad1. I did the > ps command you suggest below and it apears that getty is only running on the > virtual terminals (ttyvx). > > Would you have any idea what it is that kermit is doing differently that > I? > > Andy > > On 6/22/06, *Derek Ragona* wrote: > > I would do a > ps -ax|more > to see what is running. > > Depending on your version FreeBSD may not have enabled the getty in > /etc/ttys > > -Derek > > > > > -- > 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 Jun 22 20:05: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 0C1E316A49E for ; Thu, 22 Jun 2006 20:05:38 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 557CD44F98 for ; Thu, 22 Jun 2006 19:47:41 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id l1so570213nzf for ; Thu, 22 Jun 2006 12:47: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ScEMhwGeJNxZMiHlJa0b/hGFf5AzJk37p8Pb0weBAXbAzbeyvWMZsWqkavbzzem3ng/Z4+bYNv0DObMgYo7aNtwbJSp/tavQ4PB2SNqyZ8daiUoajn3VMXK6CTOdzIekDenRzOpWnHHeeLEJHFzAGQW1npt/hA7gAZ9E1MtEuGI= Received: by 10.36.135.5 with SMTP id i5mr2527339nzd; Thu, 22 Jun 2006 12:47:39 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Thu, 22 Jun 2006 12:47:39 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 14:47:39 -0500 From: "Nikolas Britton" To: "Marc G. Fournier" In-Reply-To: <20060622151752.A1114@ganymede.hub.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060622174220.AEB6D44696@mx1.FreeBSD.org> <20060622145130.I1114@ganymede.hub.org> <86B8B6FA-1099-4819-A63E-873174591CB0@shire.net> <20060622151752.A1114@ganymede.hub.org> Cc: FreeBSD-Questions Questions , "Chad Leigh -- Shire.Net LLC" Subject: Re: Are hardware vendors starting to bail 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: Thu, 22 Jun 2006 20:05:38 -0000 On 6/22/06, Marc G. Fournier wrote: > On Thu, 22 Jun 2006, Chad Leigh -- Shire.Net LLC wrote: > > > > > On Jun 22, 2006, at 11:55 AM, Marc G. Fournier wrote: > > > >> not only do I like the SAS drives (4 in a 1U rack so that I can use > >> RAID1+0) > > > > What drives are they? There is nothing in the SAS spec about drive > > dimensions so it seems you like your particular models of SAS drives > > Ack, I thought it was a standard size thing, never even thought about it > ... I ordered the drives from HP, with the server ... > > From: > > http://h18004.www1.hp.com/products/servers/proliantstorage/drives-enclosures/index.html?jumpid=ex_hphqglobal_wwentsem/Proliant > > I'm guessing what I got were the 2.5" form factor, vs the 3.5" ... and > based on that same page, looks like I can get 2.5" SATA also ... i thought > the 'small size' was a SAS feature :( > The 74GB 2.5" SAS drives are $700 each, $9.50 per gigabyte! The array I just finished building was 2400GB, If I'd used your drives the drives alone would have cost $23,000... holy shit man. http://www.newegg.com/Product/Product.asp?Item=N82E16822116156 -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 20:05: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 47EE316A4F4 for ; Thu, 22 Jun 2006 20:05:38 +0000 (UTC) (envelope-from af300wsm@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 E5CE744B8A for ; Thu, 22 Jun 2006 19:02:55 +0000 (GMT) (envelope-from af300wsm@gmail.com) Received: by nz-out-0102.google.com with SMTP id o1so551431nzf for ; Thu, 22 Jun 2006 12:02: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:in-reply-to:mime-version:content-type:references; b=LgZMfcHKl9+w5S3Be+pUTbuo8vo8DZwDPppGy46PaMu+Gw9vyiOyHlRUM9XPWp0Cw5A+Nwfj250vbp/YSpsXka+Y9qmQESZosBrZCh7sJFFjHnDGO6jSRKQynluKEbkx0/KBAQ2Fj58JPMxWru8SsMu5su1T0/z4A4bbIuiouf0= Received: by 10.37.22.68 with SMTP id z68mr2484139nzi; Thu, 22 Jun 2006 12:02:55 -0700 (PDT) Received: by 10.36.24.10 with HTTP; Thu, 22 Jun 2006 12:02:55 -0700 (PDT) Message-ID: <340a29540606221202r617b978aqecb2f68353f37b9@mail.gmail.com> Date: Thu, 22 Jun 2006 13:02:55 -0600 From: "Andrew Falanga" To: FreeBSD-Questions@freebsd.org In-Reply-To: <20060622185111.GA28343@Grumpy.DynDNS.org> MIME-Version: 1.0 References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> <20060622185111.GA28343@Grumpy.DynDNS.org> 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: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 20:05:38 -0000 On 6/22/06, David Kelly wrote: > > On Thu, Jun 22, 2006 at 12:19:41PM -0600, Andrew Falanga wrote: > > Derek, > > > > No I didn't disable the getty on the port. To be honest, I didn't know > one > > was running. > > Its not going to be running by default. Even if it was then it would be > on /dev/ttyd1 not /dev/cuad1. What is supposed to happen is that getty > can listen for incoming on /dev/ttyd1 but if it doesn't have an active > connection it would be set aside while another comes along on the > call-out device to use the port. If ttyd1 is busy attempts to open cuad1 > should fail. > > > Second, the errors I'm receiving are: > > > > sio1: 2 more silo overflows (total 9) > > sio1: 280221 more tty-level buffer overflows (total 576898) > > Believe this is saying the data arrived and nobody picked it up. Yes, I'm sure of this as well. In fact, this is my problem. If I run the receive program that I build, it starts, apparrently configures the port as I want since the ctor doesn't throw the init error and just sits there until select times out waiting for data on the file descriptor opened in the same ctor. > One question I have is, why would kermit able to receive/send data > > across the port? I don't know if said this in my first message, but I > > started kermit on both the FreeBSD and Linux machines and was able to > > send/receive data in either direction. I didn't disable getty before > > doing that. > > /dev/cuad1 is rw for uucp:dialer and nothing for anyone else. What ID is > running your code? Generally one places users who are permitted to use > the serial ports into group dialer. Furthermore kermit needs the user's > uucp group permissions in order to create the UUCP lock in the hopes > that other programs will honor kermit's word that the device is busy. I did put my user in the dialer group. I'm not familiar with what you mean by the uucp group and the UUCP lock. Andy From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 20:06: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 4174D16A4C2 for ; Thu, 22 Jun 2006 20:06:14 +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 02BDF43D7E for ; Thu, 22 Jun 2006 20:05:20 +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-1) with ESMTP id k5MK49aV009318 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 22 Jun 2006 23:04:35 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k5MK3tn1002688; Thu, 22 Jun 2006 23:04:01 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k5MK3piS002687; Thu, 22 Jun 2006 23:03:51 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 22 Jun 2006 23:03:51 +0300 From: Giorgos Keramidas To: Andrew Falanga Message-ID: <20060622200351.GA2655@gothmog.pc> References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> <6.0.0.22.2.20060622132439.0253b160@mail.computinginnovations.com> <340a29540606221139w7b257b26j5c115c3976bd2927@mail.gmail.com> <6.0.0.22.2.20060622134310.02533080@mail.computinginnovations.com> <340a29540606221157s71e3fb15n4187b4329722fbab@mail.gmail.com> <6.0.0.22.2.20060622141710.0203b870@mail.computinginnovations.com> <340a29540606221255xd82aa33qf0dc96b95cb0cb12@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <340a29540606221255xd82aa33qf0dc96b95cb0cb12@mail.gmail.com> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.38, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 1.02, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@FreeBSD.org, Derek Ragona Subject: Re: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 20:06:14 -0000 On 2006-06-22 13:55, Andrew Falanga wrote: > On 6/22/06, Derek Ragona wrote: > > > > Kermit may be manipulating the uart directly. > > > >Unless you are not getting the uart to flush the characters. I have only > >had that problem with doing low-level direct programing. Typically not a > >problem with high-level coding where you just open the device and set it > >for > >non-buffered output. > > > >Your problem though may be in the stack overflows. You may need to > >explicitly compile and link it with a larger stack. It may be these > >overflows causing the output to never get there. > > I'm not sure I understand what you mean. > Andy AFAIK, 'silo overflow' messages are *NOT* about stack overflows. Andy, can you please post a complete, compilable but minimal program that exhibits the behavior you find strange? - Giorgos From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 20:34: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 136C716A49E for ; Thu, 22 Jun 2006 20:34:09 +0000 (UTC) (envelope-from freebsd-01@jeremykister.com) Received: from qmail-01.nntx.net (qmail-01.nntx.net [204.9.96.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 6DB2D454AD for ; Thu, 22 Jun 2006 20:34:08 +0000 (GMT) (envelope-from freebsd-01@jeremykister.com) Received: (qmail 1676 invoked by uid 1010); 22 Jun 2006 16:34:07 -0400 Received: by simscan 1.2.0 ppid: 1670, pid: 1675, t: 0.1178s scanners:none Received: from unknown (HELO ?64.115.0.169?) (smtpauth-01@jeremykister.com@64.115.0.169) by qmail-01.nntx.net with SMTP; 22 Jun 2006 16:34:07 -0400 Message-ID: <449AFEB9.9080303@jeremykister.com> Date: Thu, 22 Jun 2006 16:34:01 -0400 From: Jeremy Kister User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ted Mittelstaedt References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Crashing with HP/Compaq DL360 G3 [paging kernel developer] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 20:34:09 -0000 On 6/21/2006 6:01 AM, Ted Mittelstaedt wrote: > Did you install the Broadcom patch? Still no takers. Is there a better place to get the attention of a willing kernel developer than freebsd-questions ? -- Jeremy Kister http://jeremy.kister.net./ From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 21:08: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 719F216A47B for ; Thu, 22 Jun 2006 21:08:05 +0000 (UTC) (envelope-from swygue@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 9F12B43D6D for ; Thu, 22 Jun 2006 21:08:04 +0000 (GMT) (envelope-from swygue@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so742976uge for ; Thu, 22 Jun 2006 14:08: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:references; b=J+HIVMUBNEWu9qUUkZZ2eOOKxLg0tQ1skaKRMKegQnNRwqfBDXKL2NANYNIywxrfaKzXJ8YlZnSRO7rOD8og8+v2OvU+ukMFf14mzl/mnDyaUINmqQSAg/K8xiASXnM+Fcz5zM51tSvQPDJwr0koDfEy20OF2oKEieXrC1Q2c0c= Received: by 10.78.185.7 with SMTP id i7mr897192huf; Thu, 22 Jun 2006 14:01:50 -0700 (PDT) Received: by 10.78.20.7 with HTTP; Thu, 22 Jun 2006 14:01:50 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 17:01:50 -0400 From: swygue To: "Corey Brune" In-Reply-To: <562705370606221151g6efa05b3m6fcfaa6d828eb42d@mail.gmail.com> MIME-Version: 1.0 References: <562705370606221151g6efa05b3m6fcfaa6d828eb42d@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: Learn more about ld-elf and 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, 22 Jun 2006 21:08:05 -0000 Corey, Thanks for your response, I did set the LD_LIBRARY_PATH but ldd still can't find it. pgsql@server1=>ldd /usr/local/postgresql-7.4.2/bin/psql /usr/local/pgsql/bin/psql: libpq.so.3 => not found (0x0) libpam.so.1 => /usr/lib/libpam.so.1 (0x28086000) libz.so.2 => /usr/lib/libz.so.2 (0x28090000) libreadline.so.4 => /usr/lib/libreadline.so.4 (0x2809d000) libcrypt.so.2 => /usr/lib/libcrypt.so.2 (0x280c2000) libm.so.2 => /usr/lib/libm.so.2 (0x280db000) libutil.so.3 => /usr/lib/libutil.so.3 (0x280f7000) libc.so.4 => /usr/lib/libc.so.4 (0x28100000) libncurses.so.5 => /usr/lib/libncurses.so.5 (0x2819a000) -Rod On 6/22/06, Corey Brune wrote: > > Have you tried setting LD_LIBRARY_PATH to include the directory where > libpq is? Are you getting this error after psql or something like it? If you > haven't, then set LD_LIBRARY_PATH, then type 'ldd '. This will tell > you which libs are found and which are not. > > Hope this helps. > Corey > > > On 6/22/06, swygue wrote: > > > Once in a while I get some error, looking like this: > > /usr/libexec/ld-elf.so.1: Shared object "libpq.so.3" not found > > This specific error was a result of trying to connect to a > postgresql-7.4.2 database running on FreeBSD, 4.6.2. And yes the > server is in the process of being decommissioned. > > I was wondering how have others resolve problems related to ld-elf and > shared objects ? And where can I find more information about ld-elf > and FreeBSD ? > > Thanks > > -- > swygue neron --->> > _______________________________________________ > 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" > > -- swygue neron --->> From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 21:13: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 AD12B16A51A for ; Thu, 22 Jun 2006 21:13:53 +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 25AC0457B5 for ; Thu, 22 Jun 2006 20:50:55 +0000 (GMT) (envelope-from derek@computinginnovations.com) Received: from p17.computinginnovations.com (dhcp-10-20-30-100.computinginnovations.com [10.20.30.100]) (authenticated bits=0) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k5MKoSS3034534; Thu, 22 Jun 2006 15:50:32 -0500 (CDT) Message-Id: <6.0.0.22.2.20060622154002.02588490@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Thu, 22 Jun 2006 15:50:18 -0500 To: "Andrew Falanga" , freebsd-questions@freebsd.org From: Derek Ragona In-Reply-To: <340a29540606221255xd82aa33qf0dc96b95cb0cb12@mail.gmail.com > References: <340a29540606220828i500905afq6d1ff81cf095cf88@mail.gmail.com> <6.0.0.22.2.20060622115945.02533de8@mail.computinginnovations.com> <340a29540606221119o16cab29ak5ae46156a3feca09@mail.gmail.com> <6.0.0.22.2.20060622132439.0253b160@mail.computinginnovations.com> <340a29540606221139w7b257b26j5c115c3976bd2927@mail.gmail.com> <6.0.0.22.2.20060622134310.02533080@mail.computinginnovations.com> <340a29540606221157s71e3fb15n4187b4329722fbab@mail.gmail.com> <6.0.0.22.2.20060622141710.0203b870@mail.computinginnovations.com> <340a29540606221255xd82aa33qf0dc96b95cb0cb12@mail.gmail.com> 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: Serial programming on FreeBSD 6.0 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: Thu, 22 Jun 2006 21:13:53 -0000 Let me try this again. Programing the uart directly means directly manipulating the serial port chip. Programing in c or c++ does not usually do this, as you normally would open the device/file and simply read or write to it. In opening the device you need to set it to unbuffered in the flags when you do the open call. -Derek At 02:55 PM 6/22/2006, Andrew Falanga wrote: >I'm not sure I understand what you mean. > >Andy > >On 6/22/06, Derek Ragona ><derek@computinginnovations.com > wrote: >>Kermit may be manipulating the uart directly. >> >>Unless you are not getting the uart to flush the characters. I have only >>had that problem with doing low-level direct programing. Typically not a >>problem with high-level coding where you just open the device and set it >>for non-buffered output. >> >>Your problem though may be in the stack overflows. You may need to >>explicitly compile and link it with a larger stack. It may be these >>overflows causing the output to never get there. >> >> -Derek >> >> >> >>At 01:57 PM 6/22/2006, Andrew Falanga wrote: >>Unfortunately, it looks like getty isn't running on /dev/cuad1. I did >>the ps command you suggest below and it apears that getty is only running >>on the virtual terminals (ttyvx). >> >>Would you have any idea what it is that kermit is doing differently that I? >> >>Andy >> >>On 6/22/06, Derek Ragona >><derek@computinginnovations.com> wrote: >>>I would do a >>>ps -ax|more >>>to see what is running. >>> >>>Depending on your version FreeBSD may not have enabled the getty in >>>/etc/ttys >>> >>> -Derek >>> >> >> >>-- >>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. > > >-- >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 Jun 22 21:45: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 F224B16A576 for ; Thu, 22 Jun 2006 21:45:32 +0000 (UTC) (envelope-from maxsec@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C88143E2D for ; Thu, 22 Jun 2006 21:12:29 +0000 (GMT) (envelope-from maxsec@gmail.com) Received: by wr-out-0506.google.com with SMTP id 50so490056wri for ; Thu, 22 Jun 2006 14:12:29 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:subject:cc:in-reply-to:mime-version:content-type:references; b=ZgK0NmDL0VkabBqMH0KPNcQosyfIis1rhQzdd5X4FDApPTAmO0Al3O0Th2jZjT7+Q8wF4Q4EmBnQRmERl0KpqPiZHBQJUOoRPcu72RrnH7Tat1u+cWaeaI66FCVbu4gv9ash33B32uw4ABgEY7PtyAS5K9R03mKEbMLZVs1q3CA= Received: by 10.54.76.3 with SMTP id y3mr2534607wra; Thu, 22 Jun 2006 14:12:29 -0700 (PDT) Received: by 10.54.107.12 with HTTP; Thu, 22 Jun 2006 14:12:29 -0700 (PDT) Message-ID: <72cf361e0606221412l72dde88co74082023f13cf437@mail.gmail.com> Date: Thu, 22 Jun 2006 22:12:29 +0100 From: "Martin Hepworth" 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 Cc: freebsd-fs@freebsd.org, freebsd-questions@freebsd.org Subject: Re: HELP! Filesystem EMPTY after upgrade from 4.11 to 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, 22 Jun 2006 21:45:33 -0000 Sven ok so no backup beforehand then... Have you tried moving the drive to a 4.11 system and mounting the partition from there, and then backing-up the data! Might be some way of forcing UFS1 over UFS2 on the mount command, but I don't see any mention of this in the man page (which still says 4.11 on the online version!) -- Martin On 6/21/06, Sven Hazejager wrote: > > Hi all! > > I have quite a big problem here.... > > I've upgraded my FreeBSD 4.11 to 6.1. Basically, I did a newfs of / and > /usr > and reinstalled from scratch. That worked. > > Rebooted in 6.1 single user mode, mounted /, /usr and /usr/home. The > latter > I did not touch and I need to save that partition. /usr/home had all the > files it needed to have. PROBLEM: mount said soft-updates were not set on > /usr/home. So I did umount /usr/home, tunefs -n enable /usr/home, mount > /usr/home again... EMPTY!!!! > > What has gone wrong? I did fsck (in read-only), no problems, rebooted the > system, did tunefs -n disable, still no luck. I really need those files > guys... > > Please help urgently. > > Many thanks, > > Sven Hazejager > _______________________________________________ > 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 Jun 22 21:45: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 3A22816A4CC for ; Thu, 22 Jun 2006 21:45:34 +0000 (UTC) (envelope-from maxsec@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 272F444361 for ; Thu, 22 Jun 2006 21:18:06 +0000 (GMT) (envelope-from maxsec@gmail.com) Received: by wr-out-0506.google.com with SMTP id 50so491582wri for ; Thu, 22 Jun 2006 14:18:05 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:subject:cc:in-reply-to:mime-version:content-type:references; b=S6ZAHwa+4139qowxLp1d7rFPmhymcT3d0QkfqC7IMo6rcCg/SBAR9aIJLlAM201Ffmkushz8LfRlx68J0B+l7qGgkrp6xcmQB5qCocRI9rZhXIu+hBNsDtrFbr0AhEHUxQxv4WXYGBlZcirBiNP6ul5dpRr5uYVFtgtxPz3ISwI= Received: by 10.54.151.7 with SMTP id y7mr2957062wrd; Thu, 22 Jun 2006 14:18:05 -0700 (PDT) Received: by 10.54.107.12 with HTTP; Thu, 22 Jun 2006 14:18:05 -0700 (PDT) Message-ID: <72cf361e0606221418ufa291a2g474d72caa9813336@mail.gmail.com> Date: Thu, 22 Jun 2006 22:18:05 +0100 From: "Martin Hepworth" Cc: freebsd-questions@freebsd.org In-Reply-To: <4498AB21.4060405@endries.org> MIME-Version: 1.0 References: <4498AB21.4060405@endries.org> 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: RAID online capacity expansion X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 21:45:34 -0000 Josh You'll need to use vinum as a volume manager first. Wouldn't recommend it at all on a mounted filesystem, this can give you alsorts of worries. I'd think about why you need to grow the volume, esp as any expansion of a RAID set will normally result in poor performance, unless you backup the data, rebuild the RAID set/filesystem and then restore the data. IE plan for any changes first. -- Martin On 6/21/06, Josh Endries wrote: > > Hello, > > Has anyone out there successfully done an online expansion of a RAID > array in FreeBSD? How is it done and with what hardware did it work? > From what I can gather, it's not possible. Aside from the fact that > fdisk(8) says "Editing an existing slice will most likely result in the > loss of all data in that slice", growfs(8) says it cannot enlarge a > mounted filesystem. disklabel seems to be okay with making live changes, > but I haven't tested it. > > Is there any way to do this in FreeBSD or is Linux+LVM the way to go? > > Thanks, > Josh > _______________________________________________ > 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 Jun 22 21:45:41 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 6673A16A4D4; Thu, 22 Jun 2006 21:45:41 +0000 (UTC) (envelope-from greg.lane@internode.on.net) Received: from ash25e.internode.on.net (ash25e.internode.on.net [203.16.214.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9C8544F75; Thu, 22 Jun 2006 21:21:22 +0000 (GMT) (envelope-from greg.lane@internode.on.net) Received: from router.lane.family (ozlane.net [150.101.115.95]) by ash25e.internode.on.net (8.13.6/8.13.5) with ESMTP id k5MLLKMm052916; Fri, 23 Jun 2006 06:51:20 +0930 (CST) (envelope-from greg.lane@internode.on.net) Received: from router.lane.family (localhost.lane.family [127.0.0.1]) by router.lane.family (8.13.6/8.13.6) with ESMTP id k5MLLJq3007444; Fri, 23 Jun 2006 07:21:19 +1000 (EST) (envelope-from gjl103@router.lane.family) Received: (from gjl103@localhost) by router.lane.family (8.13.6/8.13.6/Submit) id k5MLLJRd007443; Fri, 23 Jun 2006 07:21:19 +1000 (EST) (envelope-from gjl103) Date: Fri, 23 Jun 2006 07:21:19 +1000 From: Greg Lane To: Jonathan Fosburgh , savovski@gmail.com Message-ID: <20060622212119.GA7232@router.lane.family> References: <20060622075236.GA95258@router.lane.family> <200606221129.19239.syjef@mdanderson.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200606221129.19239.syjef@mdanderson.org> User-Agent: Mutt/1.4.2.1i Cc: questions@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: Does anyone run VNC with 64-bit FreeBSD (amd64)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: greg.lane@internode.on.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 21:45:43 -0000 On Thu, Jun 22, 2006 at 04:04:34PM +0300, Alex Savovski wro > I have the same ,problem,But I have never run on other version,I use > RELENG_6_1, AMD64 On Thu, Jun 22, 2006 at 11:29:15AM -0500, Jonathan Fosburgh wrote: > VNC (tightvnc included) as well as NXWindows (IMHO, much better than VNC) are > based on old versions of XFree86 that don't support AMD64. I have had some > success running the i386 package of tightvnc and starting only twm from the > xstartup script. Some applications (just about anything using gtk) crash the > VNC server, and some (KDE) work all right. YMMV. > > I have tried to make NXWindows work on amd64 but there is just too much > patching that needs to be done for my meager skills. Thanks for the info. I had figured something like this. I installed the 64-bit system anticipating a future memory upgrade from the current 4GB to 8GB. However, VNC is essential for various members of my group, as is ports/devel/root (which doesn't compile on amd64) and there is some of our own (also essential) custom software which is not 64-bit clean. Since this holds up a number of people from their work and my patching skills are VERY meager, I will have to roll back to the 32-bit OS. Thanks again! Greg P.S. Yes, I should have tested more before the upgrade. I did some tests, but obviously not enough! In my defence, I was hastened by the disk dying and the need to get the machine back up and running. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 22:12: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 2C5EF16A47C for ; Thu, 22 Jun 2006 22:12:56 +0000 (UTC) (envelope-from matt@frii.com) Received: from mail.frii.com (phobos01.frii.net [216.17.128.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEDF445941 for ; Thu, 22 Jun 2006 22:12:55 +0000 (GMT) (envelope-from matt@frii.com) Received: from elara.frii.com (elara.frii.com [216.17.128.39]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.frii.com (FRII) with ESMTP id 96400AED9D for ; Thu, 22 Jun 2006 16:12:55 -0600 (MDT) Date: Thu, 22 Jun 2006 16:12:55 -0600 (MDT) From: Matt Ruzicka X-X-Sender: mattr@elara.frii.com To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Tracking if disk is busy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 22:12:56 -0000 We've got a couple servers that appear to have particularly busy disks and I was trying to determine if there is a way to more easily poll this data for tracking. I'm not sure if this is one of those can't see the forest for the trees issues or not, but the only means that I am familiar with to see the percentage of time the disk is busy is to run 'systat -vmstat'. I was hoping for something more concise that I could run periodically and maybe even graph (realizing that watching this might well distort the results). It appears that iostat on Solaris gives this information, but I can't seem to mimic this functionality with FreeBSD. Are there other ways in FreeBSD to pull the percentage of time the disk is busy? Thanks. Matt Ruzicka - Systems Administrator Front Range Internet, Inc. matt@frii.net - (970) 212-0728 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 22:52: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 E0EFE16A54C for ; Thu, 22 Jun 2006 22:52:50 +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 93CC245A4D for ; Thu, 22 Jun 2006 22:29:53 +0000 (GMT) (envelope-from wmoran@collaborativefusion.com) Received: from localhost (monrovll-cuda1-24-53-251-44.pittpa.adelphia.net [24.53.251.44]) (AUTH: LOGIN wmoran, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by wingspan with esmtp; Thu, 22 Jun 2006 18:29:52 -0400 id 00056405.449B19E0.00010571 Date: Thu, 22 Jun 2006 18:29:50 -0400 From: Bill Moran To: Matt Ruzicka Message-Id: <20060622182950.55f534eb.wmoran@collaborativefusion.com> In-Reply-To: References: Organization: Collaborative Fusion X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; 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: Tracking if disk is busy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 22:52:51 -0000 Matt Ruzicka wrote: > We've got a couple servers that appear to have particularly busy disks and > I was trying to determine if there is a way to more easily poll this data > for tracking. > > I'm not sure if this is one of those can't see the forest for the trees > issues or not, but the only means that I am familiar with to see the > percentage of time the disk is busy is to run 'systat -vmstat'. I was > hoping for something more concise that I could run periodically and maybe > even graph (realizing that watching this might well distort the results). > > It appears that iostat on Solaris gives this information, but I can't seem > to mimic this functionality with FreeBSD. > > Are there other ways in FreeBSD to pull the percentage of time the disk is > busy? If you instal net-snmp you can get various statistics via snmp. We use mrtg to graph them. Disk activity is but one. I haven't messed with the builtin snmp stuff that comes with 6.x, but I've got in on my list to investigate and see if it's ready to replace the net-snmp port. -- Bill Moran You will give me the Ring freely? In place of the Dark Lord you will set up a Queen. And I shall not be dark, but beautiful and terrible as the Morning and the Night! Fair as the Sea and the Sun and the Snow upon the Mountain! Dreadful as the Storm and the Lightning! Stronger than the foundations of the earth. All shall love me and despair! Galadriel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 23:15:49 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 6B58116A494 for ; Thu, 22 Jun 2006 23:15:49 +0000 (UTC) (envelope-from nomadlogic@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 8B14F463E3 for ; Thu, 22 Jun 2006 23:15:48 +0000 (GMT) (envelope-from nomadlogic@gmail.com) Received: by py-out-1112.google.com with SMTP id f28so467141pyf for ; Thu, 22 Jun 2006 16:15: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=E6OfHv8E0j/rIYFod2J0E+GNAOJ9OcWn7DsctDxJA6/rivOCU6TrFgt6OdeS3FOV3DPwBQBJwqaTzuszMRz9IOJeZxo9f3+RKbF8Kmf4oAfErtzi2WTRJXykiiepjTOtD6nilW+7OcZosSsr+6+/4wuxujJg6yh7hZMngvAErKA= Received: by 10.35.63.2 with SMTP id q2mr1607665pyk; Thu, 22 Jun 2006 16:15:47 -0700 (PDT) Received: by 10.35.75.8 with HTTP; Thu, 22 Jun 2006 16:15:47 -0700 (PDT) Message-ID: <57d710000606221615s4138166bma64b9bf0e686d2d5@mail.gmail.com> Date: Thu, 22 Jun 2006 16:15:47 -0700 From: "pete wright" To: greg.lane@internode.on.net In-Reply-To: <20060622230005.GA8445@router.lane.family> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060622075236.GA95258@router.lane.family> <200606221129.19239.syjef@mdanderson.org> <20060622212119.GA7232@router.lane.family> <57d710000606221506s7b1c3f99g3c748e19c37c59e9@mail.gmail.com> <20060622230005.GA8445@router.lane.family> Cc: questions@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: Does anyone run VNC with 64-bit 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: Thu, 22 Jun 2006 23:15:49 -0000 On 6/22/06, Greg Lane wrote: > On Thu, Jun 22, 2006 at 03:06:46PM -0700, pete wright wrote: > > Did you try to build/install a 32bit version of VNC? > > Thanks for the suggestion. > > I thought about doing that, but there is still other essential > software that is not 64-bit clean and our entire group needs this > machine back up ASAP since currently we are sitting on our hands > doing nothing till I get it back up. If I had a spare machine > I could potentially spend some time getting this sorted. But > we don't have a spare machine, we don't have any money to buy > one, there is only me to fix it, and I have to get some real > work done.... the usual story. > hmm, so there is no way to run the app's which are not 64bit clean in 32bit mode in your environment? > > Also, if you are > > running a Unix like OS why use VNC? You can achive %90 of the same > > features (with less of a memory/cpu impact) by running X apps > > remotely. > > What about the other 10%? We use VNC because it saves state > for those of my users who work from multiple locations, at home, > at work and some are even based overseas. They don't want to > restart up to 20 windows every time they logon. Remote access > in this form is essential for their productivity. > screen? /usr/port/sysutils/screen I hope this is taken as friendly advice to save you work.... -pete -- ~~o0OO0o~~ Pete Wright www.nycbug.org NYC's *BSD User Group From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 23:29: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 C683C16A541 for ; Thu, 22 Jun 2006 23:29:06 +0000 (UTC) (envelope-from scott@fishballoon.org) Received: from queue02-winn.ispmail.ntl.com (queue02-winn.ispmail.ntl.com [81.103.221.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A8FC45A8A for ; Thu, 22 Jun 2006 22:31:07 +0000 (GMT) (envelope-from scott@fishballoon.org) Received: from aamtaout01-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout01-winn.ispmail.ntl.com with ESMTP id <20060622210958.MBBJ15018.mtaout01-winn.ispmail.ntl.com@aamtaout01-winn.ispmail.ntl.com>; Thu, 22 Jun 2006 22:09:58 +0100 Received: from llama.fishballoon.org ([81.101.128.185]) by aamtaout01-winn.ispmail.ntl.com with ESMTP id <20060622210958.TNUY19763.aamtaout01-winn.ispmail.ntl.com@llama.fishballoon.org>; Thu, 22 Jun 2006 22:09:58 +0100 Received: from tuatara.fishballoon.org ([192.168.1.6]) by llama.fishballoon.org with esmtp (Exim 4.61 (FreeBSD)) (envelope-from ) id 1FtWR2-0005mb-GH; Thu, 22 Jun 2006 22:09:56 +0100 Received: (from scott@localhost) by tuatara.fishballoon.org (8.13.4/8.13.4/Submit) id k5ML9umr001185; Thu, 22 Jun 2006 22:09:56 +0100 (BST) (envelope-from scott) Date: Thu, 22 Jun 2006 22:09:55 +0100 From: Scott Mitchell To: Alex Franks Message-ID: <20060622210955.GA1088@tuatara.fishballoon.org> References: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 5.4-STABLE i386 Cc: freebsd-questions@freebsd.org Subject: Re: Hot-Swapping hard drives on Dell PowerEdge 2850 running FBSD 5.5-PRE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 23:29:06 -0000 On Thu, Jun 22, 2006 at 11:06:17AM -0700, Alex Franks wrote: > Hello all, > > I'm getting ready to install 2 identical drives into the available > drive bays in my 2850. However, it would be highly preferable that > this machine NOT be shut down in order to install these drives. I know > from looking at the docs that these drive bays are hot-swappable, but > I'd like to know before I attempt this that someone else out there has > successfully performed a hot-swap or hot-install of drives on a 2850 > or comparable Dell PowerEdge running FreeBSD. I've swapped drives on an 1850 with no problems - the drives were in a RAID-1 configuration and the OS didn't even notice that anything had happened. If you're not using hardware RAID I guess a "camcontrol rescan" or something similar might be needed for the new drives to be recognised? Cheers, 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 Thu Jun 22 23:29:08 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 B2F6C16A5AE; Thu, 22 Jun 2006 23:29:08 +0000 (UTC) (envelope-from greg.lane@internode.on.net) Received: from smtp1.adl2.internode.on.net (smtp1.adl2.internode.on.net [203.16.214.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CD6A45D98; Thu, 22 Jun 2006 23:00:08 +0000 (GMT) (envelope-from greg.lane@internode.on.net) Received: from router.lane.family (ozlane.net [150.101.115.95]) by smtp1.adl2.internode.on.net (8.13.6/8.13.5) with ESMTP id k5MN06G7031402; Fri, 23 Jun 2006 08:30:06 +0930 (CST) (envelope-from greg.lane@internode.on.net) Received: from router.lane.family (localhost.lane.family [127.0.0.1]) by router.lane.family (8.13.6/8.13.6) with ESMTP id k5MN06lD008639; Fri, 23 Jun 2006 09:00:06 +1000 (EST) (envelope-from gjl103@router.lane.family) Received: (from gjl103@localhost) by router.lane.family (8.13.6/8.13.6/Submit) id k5MN05KN008638; Fri, 23 Jun 2006 09:00:05 +1000 (EST) (envelope-from gjl103) Date: Fri, 23 Jun 2006 09:00:05 +1000 From: Greg Lane To: pete wright Message-ID: <20060622230005.GA8445@router.lane.family> References: <20060622075236.GA95258@router.lane.family> <200606221129.19239.syjef@mdanderson.org> <20060622212119.GA7232@router.lane.family> <57d710000606221506s7b1c3f99g3c748e19c37c59e9@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <57d710000606221506s7b1c3f99g3c748e19c37c59e9@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Cc: questions@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: Does anyone run VNC with 64-bit FreeBSD (amd64)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: greg.lane@internode.on.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 23:29:09 -0000 On Thu, Jun 22, 2006 at 03:06:46PM -0700, pete wright wrote: > Did you try to build/install a 32bit version of VNC? Thanks for the suggestion. I thought about doing that, but there is still other essential software that is not 64-bit clean and our entire group needs this machine back up ASAP since currently we are sitting on our hands doing nothing till I get it back up. If I had a spare machine I could potentially spend some time getting this sorted. But we don't have a spare machine, we don't have any money to buy one, there is only me to fix it, and I have to get some real work done.... the usual story. > Also, if you are > running a Unix like OS why use VNC? You can achive %90 of the same > features (with less of a memory/cpu impact) by running X apps > remotely. What about the other 10%? We use VNC because it saves state for those of my users who work from multiple locations, at home, at work and some are even based overseas. They don't want to restart up to 20 windows every time they logon. Remote access in this form is essential for their productivity. Greg From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 23:29: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 878B516A4DD for ; Thu, 22 Jun 2006 23:29:49 +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 A43A64599B for ; Thu, 22 Jun 2006 22:25:10 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5MMPAww099715; Thu, 22 Jun 2006 17:25:10 -0500 (CDT) (envelope-from dan) Date: Thu, 22 Jun 2006 17:25:10 -0500 From: Dan Nelson To: Matt Ruzicka Message-ID: <20060622222509.GA95588@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: Tracking if disk is busy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 23:29:49 -0000 In the last episode (Jun 22), Matt Ruzicka said: > We've got a couple servers that appear to have particularly busy > disks and I was trying to determine if there is a way to more easily > poll this data for tracking. > > I'm not sure if this is one of those can't see the forest for the > trees issues or not, but the only means that I am familiar with to > see the percentage of time the disk is busy is to run 'systat > -vmstat'. I was hoping for something more concise that I could run > periodically and maybe even graph (realizing that watching this might > well distort the results). > > It appears that iostat on Solaris gives this information, but I can't > seem to mimic this functionality with FreeBSD. iostat on -current and 6-stable has a Solaris-style -x mode with a percent-busy column. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Thu Jun 22 23:58: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 7CF1716A49A for ; Thu, 22 Jun 2006 23:58:31 +0000 (UTC) (envelope-from coolzone@io.dk) Received: from dansknet.dk (smtp1.dansknet.dk [85.233.229.242]) by mx1.FreeBSD.org (Postfix) with SMTP id B7430448DF for ; Thu, 22 Jun 2006 23:36:00 +0000 (GMT) (envelope-from coolzone@io.dk) Received: (qmail 16805 invoked from network); 23 Jun 2006 00:30:06 -0000 Received: from 85233231013.switch.dansknet.dk (HELO ?85.233.231.13?) (85.233.231.13) by dansknet.dk with SMTP; 23 Jun 2006 00:30:06 -0000 Message-ID: <449B28F8.8060309@io.dk> Date: Fri, 23 Jun 2006 01:34:16 +0200 From: Rico User-Agent: Thunderbird 1.5.0.2 (X11/20060531) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Upload a binary of Open Office 2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 22 Jun 2006 23:58:31 -0000 Hi, Would someone, with access, mind compiling Open Office 2 for FreeBSD 6 stable, and uploading it to the FreeBSD server? Best and kind regards, Rico From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 00:02: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 4938116A4C8 for ; Fri, 23 Jun 2006 00:02:19 +0000 (UTC) (envelope-from nikolas.britton@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 C6A0945065 for ; Thu, 22 Jun 2006 23:40:18 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id 8so588823nzo for ; Thu, 22 Jun 2006 16:40: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=gSXk7upj/l1NOEHZoE2IgX4VdIMfZJcY1LegwI8gvfcYLR05o3hTc5e/T/fOxxBG5EjrXSS3C3eKOJvfImxc658F6U0Zw7bnsgq5A1Yquyz3HeZxrhoQtAwgET41+QWlnsBapBIF/m72yg2Ow/msGVNK945395916T+d5DUQqLc= Received: by 10.36.250.75 with SMTP id x75mr2848253nzh; Thu, 22 Jun 2006 16:40:18 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Thu, 22 Jun 2006 16:40:18 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 18:40:18 -0500 From: "Nikolas Britton" To: "HighPoint Support" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: FreeBSD Mailing List Subject: Cloning Drives from a RAID Array? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 00:02:19 -0000 If I clone a drive and then put the new cloned drive into the array will the array continue working without a rebuild? ---------------- 1. Shutdown server/array. 2. Pull drive to be cloned from array. 3. Clone drive using another computer with: 'dd if=/dev/disk1 of=/dev/disk2 bs=8m'. 4. Insert new cloned drive into array. 5. Power Up server/array. 5. ??? 6. Profit! Will this work? --------------- Controller = HighPoint 2220 Disk1 = Maxtor MaxLine III 7L250SO DISK2 = Maxtor MaxLine III 7L300SO HighPoint CLI> query arrays 1 ID Capacity(GB) MaxFree TotalFree Type Model Number 1/1 250.920 0.000 0.000 RAID5 Maxtor 7L250S0 1/2 299.977 49.057 49.057 RAID5 Maxtor 7L300S0 1/3 250.920 0.000 0.000 RAID5 Maxtor 7L250S0 1/4 250.920 0.000 0.000 RAID5 Maxtor 7L250S0 1/5 299.977 49.057 49.057 RAID5 Maxtor 7L300S0 1/6 299.977 49.057 49.057 RAID5 Maxtor 7L300S0 1/7 299.977 49.057 49.057 RAID5 Maxtor 7L300S0 1/8 299.977 49.057 49.057 RAID5 Maxtor 7L300S0 -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 00:03: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 AEC5916A47E for ; Fri, 23 Jun 2006 00:03:10 +0000 (UTC) (envelope-from s.devrieze@pandora.be) Received: from hoboe2bl1.telenet-ops.be (hoboe2bl1.telenet-ops.be [195.130.137.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 734A544CD7 for ; Thu, 22 Jun 2006 23:37:40 +0000 (GMT) (envelope-from s.devrieze@pandora.be) Received: from localhost (localhost.localdomain [127.0.0.1]) by hoboe2bl1.telenet-ops.be (Postfix) with SMTP id 62386124063 for ; Fri, 23 Jun 2006 01:37:39 +0200 (CEST) Received: from [192.168.123.10] (d51A52E65.access.telenet.be [81.165.46.101]) by hoboe2bl1.telenet-ops.be (Postfix) with ESMTP id 516AC12401A for ; Fri, 23 Jun 2006 01:37:39 +0200 (CEST) From: Sander Devrieze To: freebsd-questions@freebsd.org Date: Fri, 23 Jun 2006 01:37:30 +0200 User-Agent: KMail/1.9.1 Jabber-ID: sander@devrieze.dyndns.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606230137.31937.s.devrieze@pandora.be> Subject: snd_via8233 module do not work with Asus A7V8X-X motherboard X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 00:03:10 -0000 Hi, According to the supported hardware list the VIA VT8235 chipset is supported by snd_via8233. But this information seems to be not always right (like in my case). The first problem is that I do not get errors, but also no sound. Thus, I searched on the Internet and I discovered that I was not the first with exactly the same problem: http://www.bsdforums.org/forums/archive/index.php/t-15072.html http://groups.google.be/group/fa.freebsd.hackers/browse_thread/thread/ef6b040e3242e478/14323b0a79fca308?lnk=st&q=vt8235+%22no+sound%22+freebsd&rnum=5&hl=nl#14323b0a79fca308 Unfortunately there are no solutions in these posts. So I went to #freebsd on eu.undernet.org (xmpp:freebsd%irc.eu.undernet.org@irc.jaim.at?join for people with XMPP uri support ;-) ). After a some chatting, Predius said it was probably because my codec/chipset combination isn't supported by the module. My hardware and software: 1) dmesg: pcm0: port 0xe000-0xe0ff irq 5 at device 17.5 on pci0 pcm0: pcm0: 2) motherboard: A7V8X-X 3) chipset: VIA VT8235 4) tools to make sound: esound, mplayer, mpg123 5) via8233 module loaded with kldload without error messages: # ls /dev/dsp* /dev/dsp0.0 /dev/dsp0.2 /dev/dsp0.4 /dev/dspW0.0 /dev/dspW0.2 /dev/dspW0.4 /dev/dspr0.5 /dev/dsp0.1 /dev/dsp0.3 /dev/dsp0.5 /dev/dspW0.1 /dev/dspW0.3 /dev/dspW0.5 Is there any way to fix this? (opensound is no solution for me) The second problem is that the supported hardware list do not indicate the supported codecs for each supported chipset. Maybe there can be subpages for every chipset on that page with all codecs that are supported on that chipset. It is a very bad end-user experience to discover after *many* hours that the supported hardware list is not complete. -- Mvg, Sander Devrieze. xmpp:sander@devrieze.dyndns.org ejabberd, the expandable Jabber daemon. -- http://ejabberd.jabber.ru/ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 00:31: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 AF2A216A47B for ; Fri, 23 Jun 2006 00:31:47 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3A634474D for ; Fri, 23 Jun 2006 00:07:17 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id 34so646143nzf for ; Thu, 22 Jun 2006 17:07: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=mpcB3NoDK6KzIX9WwkfbOUVvagPuEjsUGubvm987mEwuSV19YYHSQZkaGuM7DiM/+Vx88/jEGqMGhNIbxNfNqdEBlmtPMd/ZDuG6GlGVPvPGd6HzkQxcMSMeomCDFOc/3iNh1hP/6r8OFUWav4Y1xyEa1u1FEhOTevL8rdsC05g= Received: by 10.37.2.65 with SMTP id e65mr2691251nzi; Thu, 22 Jun 2006 17:07:17 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Thu, 22 Jun 2006 17:07:17 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 19:07:17 -0500 From: "Nikolas Britton" To: "Josh Endries" In-Reply-To: <4498AB21.4060405@endries.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <4498AB21.4060405@endries.org> Cc: freebsd-questions@freebsd.org Subject: Re: RAID online capacity expansion X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 00:31:47 -0000 On 6/20/06, Josh Endries wrote: > Hello, > > Has anyone out there successfully done an online expansion of a > RAID array in FreeBSD? I've done it twice, both times successfully, and I'm about to do it again. > How is it done and with what hardware did it work? > From what I can gather, it's not possible. HighPoint RocketRAID 2220. It is possible. ----------------------------------------------------------------- I don't have time tonight to document the all the steps... I will reply ma=F1ana... This should get you started though: http://ezine.daemonnews.org/200111/growfs.html --=20 BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 00:48: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 23A2F16A481 for ; Fri, 23 Jun 2006 00:48:49 +0000 (UTC) (envelope-from hakmi@rogers.com) Received: from smtp101.rog.mail.re2.yahoo.com (smtp101.rog.mail.re2.yahoo.com [206.190.36.79]) by mx1.FreeBSD.org (Postfix) with SMTP id 1AD49454CC for ; Thu, 22 Jun 2006 23:42:46 +0000 (GMT) (envelope-from hakmi@rogers.com) Received: (qmail 85807 invoked from network); 22 Jun 2006 23:42:46 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:From:To:Cc:Subject:Date:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Mailer:In-Reply-To:X-MimeOLE:Thread-Index; b=TM2564H+e4lSIuPTqhVSDLtyqosFL0I44jqi6iZm+tgXesIThApZ/BeFQ56smznIHX5Y45BphF40Q29pc3A5KiLuC5aqGAI152bTYMifSwA+HcbOfJnQEL2u1zIXWuOZfwABpHvz4IXSiPad/hlht0aQWddMox5nJLT2SB7/DJU= ; Received: from unknown (HELO tamouh) (hakmi@rogers.com@70.27.160.99 with login) by smtp101.rog.mail.re2.yahoo.com with SMTP; 22 Jun 2006 23:42:46 -0000 From: "Tamouh H." To: "'Dan Nelson'" , "'Matt Ruzicka'" Date: Thu, 22 Jun 2006 19:42:56 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 In-Reply-To: <20060622222509.GA95588@dan.emsphone.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Thread-Index: AcaWVDzpBywiZPITSzWNX+elwelOGQAATmvA Message-Id: <20060622234246.1AD49454CC@mx1.FreeBSD.org> Cc: freebsd-questions@freebsd.org Subject: RE: Tracking if disk is busy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 00:48:49 -0000 > > In the last episode (Jun 22), Matt Ruzicka said: > > We've got a couple servers that appear to have particularly > busy disks > > and I was trying to determine if there is a way to more easily poll > > this data for tracking. > > > > I'm not sure if this is one of those can't see the forest for the > > trees issues or not, but the only means that I am familiar > with to see > > the percentage of time the disk is busy is to run 'systat > -vmstat'. I > > was hoping for something more concise that I could run periodically > > and maybe even graph (realizing that watching this might > well distort > > the results). > > > > It appears that iostat on Solaris gives this information, > but I can't > > seem to mimic this functionality with FreeBSD. > > iostat on -current and 6-stable has a Solaris-style -x mode > with a percent-busy column. > > -- Use : systat -vm 1 that will give you all the info u need, you can also try: systat -io 1 '%busy' From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 00:49:41 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 66C7316A492; Fri, 23 Jun 2006 00:49:41 +0000 (UTC) (envelope-from greg.lane@internode.on.net) Received: from smtp3.adl2.internode.on.net (smtp3.adl2.internode.on.net [203.16.214.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 502D845A6D; Thu, 22 Jun 2006 23:47:36 +0000 (GMT) (envelope-from greg.lane@internode.on.net) Received: from router.lane.family (ozlane.net [150.101.115.95]) by smtp3.adl2.internode.on.net (8.13.6/8.13.5) with ESMTP id k5MNlYPs000872; Fri, 23 Jun 2006 09:17:34 +0930 (CST) (envelope-from greg.lane@internode.on.net) Received: from router.lane.family (localhost.lane.family [127.0.0.1]) by router.lane.family (8.13.6/8.13.6) with ESMTP id k5MNlUYh009231; Fri, 23 Jun 2006 09:47:30 +1000 (EST) (envelope-from gjl103@router.lane.family) Received: (from gjl103@localhost) by router.lane.family (8.13.6/8.13.6/Submit) id k5MNlUtk009230; Fri, 23 Jun 2006 09:47:30 +1000 (EST) (envelope-from gjl103) Date: Fri, 23 Jun 2006 09:47:30 +1000 From: Greg Lane To: pete wright Message-ID: <20060622234730.GA8950@router.lane.family> References: <20060622075236.GA95258@router.lane.family> <200606221129.19239.syjef@mdanderson.org> <20060622212119.GA7232@router.lane.family> <57d710000606221506s7b1c3f99g3c748e19c37c59e9@mail.gmail.com> <20060622230005.GA8445@router.lane.family> <57d710000606221615s4138166bma64b9bf0e686d2d5@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <57d710000606221615s4138166bma64b9bf0e686d2d5@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Cc: questions@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: Does anyone run VNC with 64-bit FreeBSD (amd64)? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: greg.lane@internode.on.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 00:49:41 -0000 On Thu, Jun 22, 2006 at 04:15:47PM -0700, pete wright wrote: > hmm, so there is no way to run the app's which are not 64bit clean in > 32bit mode in your environment? I did test one of them. It works, but I don't have time to mess with all of them, and finding the 32-bit libraries and putting them in the right place took me forever. I am afraid I am not a great programmer... However, I can quickly do a reinstall safely since I have a recent backup and all my /data and /home file systems are on separate disks I can just unplug. It comes down to a "how much time do I have to spare issue" and in the end the machine has to be back up today. I already have my own "instant-server" meta-port that installs all my standard ports. It only takes a couple of hours and I can do some other work while I wait. > >> Also, if you are > >> running a Unix like OS why use VNC? You can achive %90 of the same > >> features (with less of a memory/cpu impact) by running X apps > >> remotely. > > > >What about the other 10%? We use VNC because it saves state > >for those of my users who work from multiple locations, at home, > >at work and some are even based overseas. They don't want to > >restart up to 20 windows every time they logon. Remote access > >in this form is essential for their productivity. > > > > screen? > /usr/port/sysutils/screen My users need up to 20 instances of a graphical analysis package which has a text-based control window that spawns two graphical windows. They run a window manager with 24 virtual desktops, each running an instance of this program. As much as I love screen (I use it constantly for sysadmin-type work and I have mutt running constantly on one of my "screen"s), it doesn't quite fulfill our needs for this task. > I hope this is taken as friendly advice to save you work.... No drama! Friendly advice is always gratefully received. Especially if it is aimed at saving me work! Unfortunately I think rolling back the OS is the least work for me at this point in time. Thanks again, I do appreciate the advice. Greg From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 01: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 1E51016A6E5 for ; Fri, 23 Jun 2006 01:55:31 +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 0D9F443F94 for ; Fri, 23 Jun 2006 01:26:34 +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 k5N1YPqN061652; Thu, 22 Jun 2006 21:34:26 -0400 (EDT) (envelope-from chris@monochrome.org) Date: Thu, 22 Jun 2006 21:28:51 -0400 (EDT) From: Chris Hill To: Gary Kline In-Reply-To: <20060622094604.GC89614@thought.org> Message-ID: <20060622211054.J3990@tripel.monochrome.org> References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> <20060622094604.GC89614@thought.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 01:55:31 -0000 On Thu, 22 Jun 2006, Gary Kline wrote: > ... Does xmms play streams? I'm not sure about xmms and streams, never having tried it. So I've just been playing with this, and it seems to work like Nikolas' description of cplay: download the playlist manually, then you can load it from within xmms. I'm listening to radioparadise.com as I type this (thanks for the link, Nikolas!) -- Chris Hill chris@monochrome.org ** [ Busy Expunging <|> ] From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 02:22: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 C9EC416A47E for ; Fri, 23 Jun 2006 02:22:28 +0000 (UTC) (envelope-from jqdkf+dated+1151893345.1ee491@cz3.nus.edu.sg) Received: from smtp.nus.edu.sg (smtp.nus.edu.sg [137.132.14.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BFC543D53 for ; Fri, 23 Jun 2006 02:22:27 +0000 (GMT) (envelope-from jqdkf+dated+1151893345.1ee491@cz3.nus.edu.sg) Received: from cactus.homeunix.org ([172.20.201.214]) by smtp.nus.edu.sg with Microsoft SMTPSVC(6.0.3790.1830); Fri, 23 Jun 2006 10:22:25 +0800 Received: by cactus.homeunix.org (Postfix, from userid 1000) id 9F6CFBA11; Fri, 23 Jun 2006 10:22:25 +0800 (SGT) Received: by cactus.homeunix.org (tmda-sendmail, from uid 1000); Fri, 23 Jun 2006 10:22:25 +0800 (SGT) Date: Fri, 23 Jun 2006 10:22:25 +0800 To: Rico Message-ID: <20060623022225.GA3164@cactus.homeunix.org> References: <449B28F8.8060309@io.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline In-Reply-To: <449B28F8.8060309@io.dk> User-Agent: Mutt/1.5.11 X-Delivery-Agent: TMDA/1.0.3 (Seattle Slew) From: Zeng Nan Mail-Followup-To: coolzone@io.dk, freebsd-questions@freebsd.org X-OriginalArrivalTime: 23 Jun 2006 02:22:26.0071 (UTC) FILETIME=[DE3AF270:01C6966B] Cc: freebsd-questions@freebsd.org Subject: Re: Upload a binary of Open Office 2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 02:22:28 -0000 --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 23, 2006 at 01:34:16AM +0200, Rico wrote: > Hi, >=20 > Would someone, with access, mind compiling Open Office 2 for FreeBSD 6=20 > stable, and uploading it to the FreeBSD server? >=20 > Best and kind regards, > Rico >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" >=20 You can download it directly from openoffice's website: http://www.openoffice.org/index.html --=20 Zeng Nan =20 MY BLOG: http://zengnan.blogspot.com Public Key: http://pgp.mit.edu/ | www.keyserver.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To any truly impartial person, it would be obvious that I am always right. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --HlL+5n6rz5pIUxbD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFEm1BhxFSvMHT0z4kRApdLAKC7SyXSF8MiX2/qn3mom/BE6IsGQQCffVrF Vq5lbDEu+szyHrGuk4Sjw48= =rpHx -----END PGP SIGNATURE----- --HlL+5n6rz5pIUxbD-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 02:28: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 1649E16A494 for ; Fri, 23 Jun 2006 02:28:58 +0000 (UTC) (envelope-from stapleton.41@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 692A543D45 for ; Fri, 23 Jun 2006 02:28:57 +0000 (GMT) (envelope-from stapleton.41@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so843298uge for ; Thu, 22 Jun 2006 19:28: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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=p+H5eDS5Kl0eicQqr3uLaHLK/i/7i1/yeFeax5DV5ViQhj3nddTdO9ouDmQGEOvSSxJx72PbpDtcEfDVmWYfSd+B8GRgYBEAqu4JvFHkv9+X9H34R+3OWTB2xzLdygRWWkifpmsf5GFK3aBIwLKx7wXHa13ckksCsXCpSsxtG/k= Received: by 10.66.244.10 with SMTP id r10mr1700852ugh; Thu, 22 Jun 2006 19:28:56 -0700 (PDT) Received: by 10.67.100.9 with HTTP; Thu, 22 Jun 2006 19:28:55 -0700 (PDT) Message-ID: <80f4f2b20606221928y5a24453dj4cf2d3b68e4856c0@mail.gmail.com> Date: Thu, 22 Jun 2006 22:28:55 -0400 From: "Jim Stapleton" To: freebsd-questions@freebsd.org In-Reply-To: <20060622211054.J3990@tripel.monochrome.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> <20060622094604.GC89614@thought.org> <20060622211054.J3990@tripel.monochrome.org> Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 02:28:58 -0000 I know xmms does a few stream formats (like MP3), and can probably handle most as it is plugin based. I use it as my main audio player in BSD/Linux as I like the interface most. It's a faitful winamp clone, which as my first music player that stuck. Anyway, the "sterio" looking controls do what they would on a remote control, there is a playlist (PL in the main window) that is drag and drop, with some labled buttons that should be relatively navigatable (add files/directories/etc). For a lot of configuration, right click on a couple of non interface areas until you see a menu with options->preferences come out. http://www.xmms.org/ http://www.xmms.org/docs/readme.php -Jim Stapleton From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 02:47: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 2DF8516A482 for ; Fri, 23 Jun 2006 02:47:23 +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 65D2044D29 for ; Thu, 22 Jun 2006 21:57:29 +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 1FtXB2-0006BK-Q6; Thu, 22 Jun 2006 15:57:28 -0600 In-Reply-To: <72cf361e0606221412l72dde88co74082023f13cf437@mail.gmail.com> References: <72cf361e0606221412l72dde88co74082023f13cf437@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Thu, 22 Jun 2006 15:57:27 -0600 To: Martin Hepworth X-Mailer: Apple Mail (2.750) 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 Cc: FreeBSD-Questions Questions Subject: Re: HELP! Filesystem EMPTY after upgrade from 4.11 to 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, 23 Jun 2006 02:47:23 -0000 On Jun 22, 2006, at 3:12 PM, Martin Hepworth wrote: > Sven > > ok so no backup beforehand then... > > Have you tried moving the drive to a 4.11 system and mounting the > partition > from there, and then backing-up the data! > > Might be some way of forcing UFS1 over UFS2 on the mount command, > but I > don't see any mention of this in the man page (which still says > 4.11 on the > online version!) I would guess that mount can tell the difference between ufs1 and ufs2. The man page for mount on my 6.0 system just shows mount -t ufs with no discrimination between the two. Chad --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 03:02:41 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 ECE1B16A4A6 for ; Fri, 23 Jun 2006 03:02:41 +0000 (UTC) (envelope-from nomadlogic@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 E40D245910 for ; Thu, 22 Jun 2006 22:06:47 +0000 (GMT) (envelope-from nomadlogic@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so512527pye for ; Thu, 22 Jun 2006 15:06: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ldPWkS/NpvPX2kqf0q90lktktTyN+8qcoBPhjC/1KPr4Tm7M6tNYhjOZK0RSTouU7d7wJ/oRAJGH0pJj1Al3BcRqAZBSQcdPfeA/E1lPvHfaAHFlN+Q5UGRLZGJGm5pAgRdFNOpzHBkHrzjdSPunUGUofXseaAW/HeF8kP3WePk= Received: by 10.35.63.2 with SMTP id q2mr1546812pyk; Thu, 22 Jun 2006 15:06:46 -0700 (PDT) Received: by 10.35.75.8 with HTTP; Thu, 22 Jun 2006 15:06:46 -0700 (PDT) Message-ID: <57d710000606221506s7b1c3f99g3c748e19c37c59e9@mail.gmail.com> Date: Thu, 22 Jun 2006 15:06:46 -0700 From: "pete wright" To: greg.lane@internode.on.net In-Reply-To: <20060622212119.GA7232@router.lane.family> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060622075236.GA95258@router.lane.family> <200606221129.19239.syjef@mdanderson.org> <20060622212119.GA7232@router.lane.family> Cc: questions@freebsd.org, Jonathan Fosburgh , savovski@gmail.com, freebsd-amd64@freebsd.org Subject: Re: Does anyone run VNC with 64-bit 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: Fri, 23 Jun 2006 03:02:42 -0000 On 6/22/06, Greg Lane wrote: > On Thu, Jun 22, 2006 at 04:04:34PM +0300, Alex Savovski wro > > I have the same ,problem,But I have never run on other version,I use > > RELENG_6_1, AMD64 > > On Thu, Jun 22, 2006 at 11:29:15AM -0500, Jonathan Fosburgh wrote: > > VNC (tightvnc included) as well as NXWindows (IMHO, much better than VNC) are > > based on old versions of XFree86 that don't support AMD64. I have had some > > success running the i386 package of tightvnc and starting only twm from the > > xstartup script. Some applications (just about anything using gtk) crash the > > VNC server, and some (KDE) work all right. YMMV. > > > > I have tried to make NXWindows work on amd64 but there is just too much > > patching that needs to be done for my meager skills. > > Thanks for the info. I had figured something like this. I installed > the 64-bit system anticipating a future memory upgrade from the current > 4GB to 8GB. However, VNC is essential for various members of my group, > as is ports/devel/root (which doesn't compile on amd64) and there is > some of our own (also essential) custom software which is not 64-bit > clean. Since this holds up a number of people from their work > and my patching skills are VERY meager, I will have to roll back to > the 32-bit OS. > Did you try to build/install a 32bit version of VNC? Also, if you are running a Unix like OS why use VNC? You can achive %90 of the same features (with less of a memory/cpu impact) by running X apps remotely. -pete -- ~~o0OO0o~~ Pete Wright www.nycbug.org NYC's *BSD User Group From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 03: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 9D11816A49A for ; Fri, 23 Jun 2006 03:14:08 +0000 (UTC) (envelope-from excalibur@icehouse.net) Received: from mail.icehouse.net (mail.icehouse.net [216.255.223.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9DCE43D5A for ; Fri, 23 Jun 2006 03:14:06 +0000 (GMT) (envelope-from excalibur@icehouse.net) Received: from localhost (webmail.icehouse.net [216.255.223.202]) by mail.icehouse.net (Postfix) with ESMTP id 69C2050A2D for ; Thu, 22 Jun 2006 20:14:03 -0700 (PDT) Received: from dialup-4.227.157.128.Dial1.Denver1.Level3.net (dialup-4.227.157.128.Dial1.Denver1.Level3.net [4.227.157.128]) by webmail.icehouse.net (IMP) with HTTP for ; Thu, 22 Jun 2006 19:51:07 -0700 Message-ID: <1151031067.449b571b0afab@webmail.icehouse.net> Date: Thu, 22 Jun 2006 19:51:07 -0700 From: excalibur@icehouse.net 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.3 Subject: Problems with both firefox and mozilla from ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 03:14:08 -0000 Hello, I installed firefox and mozilla from ports on my FreeBSD 6.0 RELEASE machine at home. I installed mozilla which was working, then I did a portupgrade to all my installed ports (took 3 days on my friends "high" speed line, well higher than mine which is dial-up). Then I decided to installed firefox from ports too (over my modem, took ~3 hours just to download). Well, anyway, the long story much shorter is, now neither work. Every time I launch either I get the following errors: (20:51:37 <~>) 0 $ -> firefox (Gecko:702): GLib-GObject-WARNING **: cannot register existing type `GConfClient' (Gecko:702): GLib-GObject-CRITICAL **: g_object_new: assertion `G_TYPE_IS_OBJECT (object_type)' failed (Gecko:702): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed Segmentation fault (core dumped) When I launch mozilla the errors are identical with the exception that the "Gecko:XXX" number are different, but the text is the same. Thinking that is was, perhaps, not a good thing to have them together on the same system, I did a make deinstall to mozilla and firefox, and then rebuilt firefox and reinstalled it. I'm still getting the same issue. Does anyone know how to fix this? I'm stuck using Konquerer and for some reason, it dies every time it tries to do something with ssl. I'm thinking I'm probably going to have to update the OpenSSL libraries I have installed. Whether I attempt to enter an encrypted site, or attempt to configure the crypto stuff in Konquerer, it's the same story, segfault and a core dump. Oh well, I'm not as interested in Konquerer. I really want to get firefox or mozilla working. Please respond to the list and/or my google mail account, af300wsm at gmail.com. That account is subscribed to freebsd-questions as this account can't handle storying the large volume of traffic (and because I'm using Konquerer I couldn't log in to google mail). Thanks, Andy From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:01: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 632D316A47B for ; Fri, 23 Jun 2006 04:01:41 +0000 (UTC) (envelope-from mcbrune@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 6AC9143D46 for ; Fri, 23 Jun 2006 04:01:40 +0000 (GMT) (envelope-from mcbrune@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so869190uge for ; Thu, 22 Jun 2006 21:01: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=KWKleZwwY11J4BtGH946mHjA+Mp6qYdWfJW4+CgIhuhXIBOjoeO2J2PBR02A1b1Z/5p1ZVlPhyfLVQYKUK6CzJ6eI8hz0OtZp489F17CS1heV7de19Mo7Sj1VsL7wudM2yVQ9hUv+VcD/c0+ZqEOu9u41ou+wVPqMoF8Ilp8bGE= Received: by 10.67.101.10 with SMTP id d10mr627349ugm; Thu, 22 Jun 2006 21:01:39 -0700 (PDT) Received: by 10.66.221.2 with HTTP; Thu, 22 Jun 2006 21:01:38 -0700 (PDT) Message-ID: <562705370606222101rf4af539y5cd2a7948174d667@mail.gmail.com> Date: Thu, 22 Jun 2006 23:01:38 -0500 From: "Corey Brune" To: swygue In-Reply-To: MIME-Version: 1.0 References: <562705370606221151g6efa05b3m6fcfaa6d828eb42d@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: Learn more about ld-elf and 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: Fri, 23 Jun 2006 04:01:41 -0000 That's interesting. Would you email me the output of these commands? echo $LD_LIBRARY_PATH ls file libpq.so.3 Thanks, Corey On 6/22/06, swygue wrote: > > Corey, > > Thanks for your response, I did set the LD_LIBRARY_PATH but ldd still > can't find it. > > pgsql@server1=>ldd /usr/local/postgresql-7.4.2/bin/psql > /usr/local/pgsql/bin/psql: > libpq.so.3 => not found (0x0) > libpam.so.1 => /usr/lib/libpam.so.1 (0x28086000) > libz.so.2 => /usr/lib/libz.so.2 (0x28090000) > libreadline.so.4 => /usr/lib/libreadline.so.4 (0x2809d000) > libcrypt.so.2 => /usr/lib/libcrypt.so.2 (0x280c2000) > libm.so.2 => /usr/lib/libm.so.2 (0x280db000) > libutil.so.3 => /usr/lib/libutil.so.3 (0x280f7000) > libc.so.4 => /usr/lib/libc.so.4 (0x28100000) > libncurses.so.5 => /usr/lib/libncurses.so.5 (0x2819a000) > > > -Rod > > > On 6/22/06, Corey Brune wrote: > > > > Have you tried setting LD_LIBRARY_PATH to include the directory where > > libpq is? Are you getting this error after psql or something like it? If you > > haven't, then set LD_LIBRARY_PATH, then type 'ldd '. This will tell > > you which libs are found and which are not. > > > > Hope this helps. > > Corey > > > > > > On 6/22/06, swygue < swygue@gmail.com> wrote: > > > > > Once in a while I get some error, looking like this: > > > > /usr/libexec/ld-elf.so.1: Shared object "libpq.so.3" not found > > > > This specific error was a result of trying to connect to a > > postgresql-7.4.2 database running on FreeBSD, 4.6.2. And yes the > > server is in the process of being decommissioned. > > > > I was wondering how have others resolve problems related to ld-elf and > > shared objects ? And where can I find more information about ld-elf > > and FreeBSD ? > > > > Thanks > > > > -- > > swygue neron --->> > > _______________________________________________ > > 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 > > " > > > > > > > -- > swygue neron --->> > From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:06: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 D36E316A494 for ; Fri, 23 Jun 2006 04:06:55 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82F0E43D46 for ; Fri, 23 Jun 2006 04:06:55 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id CCE187E8D4 for ; Fri, 23 Jun 2006 00:06:50 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EZAvuGWhx5H9 for ; Fri, 23 Jun 2006 00:06:50 -0400 (EDT) Received: from [192.168.0.3] (unknown [74.128.244.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id 20BF57E8D7 for ; Fri, 23 Jun 2006 00:06:50 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v750) Content-Transfer-Encoding: 7bit Message-Id: <157DAABD-8A51-4642-994F-90C79C75CD80@netmusician.org> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: FreeBSD Questions From: Joe Auty Date: Fri, 23 Jun 2006 00:06:58 -0400 X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Gpgmail-State: signed X-Mailer: Apple Mail (2.750) Subject: MySQL RC script failing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:06:55 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I'm basically having the same problem described in this thread: http://lists.freebsd.org/pipermail/freebsd-questions/2004-December/ 067213.html A solution was never posted... Has anybody come up with something? This same RC script is working fine on my other FreeBSD machine. My other FreeBSD machine also has a working Mailman install I can't get working on this machine, despite carefully and thoroughly reinstalling the software from scratch. I'm starting to wonder if my production machine I'm having these problems on isn't somehow cursed =) - ----------- Joe Auty NetMusician: web publishing software for musicians http://www.netmusician.org joe@netmusician.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFEm2jjCgdfeCwsL5ERAomAAJ9tDWZ7FQ/J+soEgtImWum70SqdgACeNyOP I89bRp/TzinQc376blvk7nM= =eZHK -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:09: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 9D6B616A481 for ; Fri, 23 Jun 2006 04:09:47 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.int.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FD7A43D45 for ; Fri, 23 Jun 2006 04:09:47 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.int.dfwlp.com (athena.int.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.int.dfwlp.com (8.13.6/8.13.6) with ESMTP id k5N49hU4010944 for ; Thu, 22 Jun 2006 23:09:43 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Thu, 22 Jun 2006 23:09: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: <200606222309.38096.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on zeus.int.dfwlp.com Subject: from STABLE to RELENG? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:09:47 -0000 generally, how risky of an operation is it to change the branch im following (assuming i have a server in good working order)? i think i would now prefer to start following RELENG on my production servers instead of STABLE (not that im having any issues), so that i can keep up with patchlevels of specific servers a little easier. im sure this is a common thing, but i want to ask since google didnt bring anything up to me on this topic. thanks, jonathan From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:16: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 8FA3216A481 for ; Fri, 23 Jun 2006 04:16:13 +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 15A6D43D48 for ; Fri, 23 Jun 2006 04:16:13 +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 1Ftd5Y-000Mi0-Bn; Thu, 22 Jun 2006 22:16:12 -0600 In-Reply-To: <200606222309.38096.freebsd@dfwlp.com> References: <200606222309.38096.freebsd@dfwlp.com> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <09359E1D-CCE1-4609-9158-41A4EE5CA4BE@shire.net> Content-Transfer-Encoding: 7bit From: "Chad Leigh -- Shire.Net LLC" Date: Thu, 22 Jun 2006 22:16:09 -0600 To: Jonathan Horne X-Mailer: Apple Mail (2.750) 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 Cc: freebsd-questions@freebsd.org Subject: Re: from STABLE to RELENG? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:16:13 -0000 On Jun 22, 2006, at 10:09 PM, Jonathan Horne wrote: > generally, how risky of an operation is it to change the branch im > following > (assuming i have a server in good working order)? > > i think i would now prefer to start following RELENG on my > production servers > instead of STABLE (not that im having any issues), so that i can > keep up with > patchlevels of specific servers a little easier. That easiest if you do it at a version change. Say, for example, 6.0- STABLE to 6.1-RELEASE or similar. --- Chad Leigh -- Shire.Net LLC Your Web App and Email hosting provider chad at shire.net From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:17: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 BA51E16A49A for ; Fri, 23 Jun 2006 04:17:55 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B8F943D45 for ; Fri, 23 Jun 2006 04:17:55 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id DF02F7E8D6 for ; Fri, 23 Jun 2006 00:17:54 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lfuhbHYkKG1p for ; Fri, 23 Jun 2006 00:17:54 -0400 (EDT) Received: from [192.168.0.3] (unknown [74.128.244.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id 7053D7E8D4 for ; Fri, 23 Jun 2006 00:17:54 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v750) Content-Transfer-Encoding: 7bit Message-Id: <7CEA25D4-9A1F-47BB-AE9B-79E3ADE6F939@netmusician.org> Content-Type: text/plain; charset=US-ASCII; format=flowed To: FreeBSD Questions From: Joe Auty Date: Fri, 23 Jun 2006 00:17:55 -0400 X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Gpgmail-State: signed X-Mailer: Apple Mail (2.750) Subject: problems with strace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:17:55 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 No matter what command I run with strace, I have the same problem: # strace ls strace: open("/proc/...", ...): No such file or directory trouble opening proc file Any ideas why this is? - ----------- Joe Auty NetMusician: web publishing software for musicians http://www.netmusician.org joe@netmusician.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFEm2t6CgdfeCwsL5ERAnBEAKCBFCnGeJbxPBbCrhDQcdCoKX/BVQCbBASW BWlfS8Q2ChQWqjpcn7k6epY= =GCd0 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:18: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 1FBA916A47E for ; Fri, 23 Jun 2006 04:18:37 +0000 (UTC) (envelope-from nikolas.britton@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 8B2DB43D46 for ; Fri, 23 Jun 2006 04:18:36 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so669105nzh for ; Thu, 22 Jun 2006 21:18:35 -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=HB+a6ZYt7tG+lgJxkGupsdHHi80NdIXjKoljuARI0YnQxv3d2ru+g8IcfXdFx3tGyQ3O+3/T37EeeLWAibaiTM0K1XEk4e9KNAd3CH/XN9d6MWzzRLvY6JH/ODeE2N6GW/6t+4o6gFvgiNxhUGJHyIclUIVb/504MY8BACG4AHI= Received: by 10.37.22.68 with SMTP id z68mr3142223nzi; Thu, 22 Jun 2006 21:18:35 -0700 (PDT) Received: by 10.36.182.7 with HTTP; Thu, 22 Jun 2006 21:18:35 -0700 (PDT) Message-ID: Date: Thu, 22 Jun 2006 23:18:35 -0500 From: "Nikolas Britton" To: "Chris Hill" In-Reply-To: <20060622211054.J3990@tripel.monochrome.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> <20060622094604.GC89614@thought.org> <20060622211054.J3990@tripel.monochrome.org> Cc: Gary Kline , FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:18:37 -0000 On 6/22/06, Chris Hill wrote: > On Thu, 22 Jun 2006, Gary Kline wrote: > > > ... Does xmms play streams? > > I'm not sure about xmms and streams, never having tried it. So I've just > been playing with this, and it seems to work like Nikolas' description > of cplay: download the playlist manually, then you can load it from > within xmms. I'm listening to radioparadise.com as I type this (thanks > for the link, Nikolas!) > Your welcome, here's more: http://www.somafm.com/ (multiple genres) http://www.bassdrive.com/ (Drum & Bass / Junge) http://www.friskyradio.com/ (EDM etc.) http://www.di.fm/ (multiple genres, mostly electronic) http://www.xtcradio.com/ (DJ Mix Sets) http://www.staticbeats.com/ (IDM) http://www.m1live.com/ (Club/Dance) Also, Ishkur's Guide to Electronic Music (Flash Player Required): http://www.di.fm/edmguide/edmguide.html Does anyone know of streams that sound like XRT or Q101?... two radio stations in Chicago -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:19: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 40D0816A49E for ; Fri, 23 Jun 2006 04:19:20 +0000 (UTC) (envelope-from dennisolvany@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA66E43D49 for ; Fri, 23 Jun 2006 04:19:19 +0000 (GMT) (envelope-from dennisolvany@gmail.com) Received: by wr-out-0506.google.com with SMTP id 50so553650wri for ; Thu, 22 Jun 2006 21:19:19 -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=GWYOdKC3ZxzHeUSDc8hGw1oX4hX9YW7boLelvRDM9KCQT9nyS0zk78zP/Pdr6P5RcpDyjb1T4fqzgDfVPtOyYiL6/W613Y017NAj3PJY8hUPoKBmDtvrMMmT1mYiH75NRotH3PJ64Z0rhOERYJLjUnhEC2DURSrLLNnt3x9mnIU= Received: by 10.54.152.12 with SMTP id z12mr2925092wrd; Thu, 22 Jun 2006 21:19:19 -0700 (PDT) Received: from ?195.16.87.34? ( [195.16.87.34]) by mx.gmail.com with ESMTP id g3sm2050354wra.2006.06.22.21.19.17; Thu, 22 Jun 2006 21:19:18 -0700 (PDT) Message-ID: <449B6BC3.5080704@gmail.com> Date: Thu, 22 Jun 2006 23:19:15 -0500 From: Dennis Olvany User-Agent: Thunderbird 1.5 (X11/20060211) MIME-Version: 1.0 To: Joe Auty References: <157DAABD-8A51-4642-994F-90C79C75CD80@netmusician.org> In-Reply-To: <157DAABD-8A51-4642-994F-90C79C75CD80@netmusician.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: MySQL RC script failing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:19:20 -0000 I recall having to tinker with the rc script. Let's have a look at the script and also the log residing in the db root, probably /var/db/mysql. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:23: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 252E216A513 for ; Fri, 23 Jun 2006 04:23:24 +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 5C08743D55 for ; Fri, 23 Jun 2006 04:23:23 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5N4NMDs031880; Thu, 22 Jun 2006 23:23:22 -0500 (CDT) (envelope-from dan) Date: Thu, 22 Jun 2006 23:23:22 -0500 From: Dan Nelson To: Joe Auty Message-ID: <20060623042322.GD95588@dan.emsphone.com> References: <7CEA25D4-9A1F-47BB-AE9B-79E3ADE6F939@netmusician.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7CEA25D4-9A1F-47BB-AE9B-79E3ADE6F939@netmusician.org> X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: FreeBSD Questions Subject: Re: problems with strace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:23:24 -0000 In the last episode (Jun 23), Joe Auty said: > No matter what command I run with strace, I have the same problem: > > # strace ls > strace: open("/proc/...", ...): No such file or directory > trouble opening proc file > > Any ideas why this is? Is /proc mounted? -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04:31: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 D42B016A494 for ; Fri, 23 Jun 2006 04:31:10 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75DA043D45 for ; Fri, 23 Jun 2006 04:31:10 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id F01C27E8D6; Fri, 23 Jun 2006 00:31:09 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Us8bY5nP8rcQ; Fri, 23 Jun 2006 00:31:09 -0400 (EDT) Received: from [192.168.0.3] (unknown [74.128.244.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id 519137E8D4; Fri, 23 Jun 2006 00:31:09 -0400 (EDT) In-Reply-To: <449B6BC3.5080704@gmail.com> References: <157DAABD-8A51-4642-994F-90C79C75CD80@netmusician.org> <449B6BC3.5080704@gmail.com> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Joe Auty Date: Fri, 23 Jun 2006 00:31:17 -0400 To: Dennis Olvany X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Gpgmail-State: signed X-Mailer: Apple Mail (2.750) Cc: FreeBSD Questions Subject: Re: MySQL RC script failing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:31:11 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Jun 23, 2006, at 12:19 AM, Dennis Olvany wrote: > I recall having to tinker with the rc script. Let's have a look at > the script and also the log residing in the db root, probably /var/ > db/mysql. > _______________________________________________ Sure! Here is the RC script: > #!/bin/sh > # > # $FreeBSD: ports/databases/mysql50-server/files/mysql- > server.sh.in,v 1.3 2006/03/07 16:25:00 ale Exp $ > # > > # PROVIDE: mysql > # REQUIRE: LOGIN > # KEYWORD: shutdown > > # > # Add the following line to /etc/rc.conf to enable mysql: > # mysql_enable (bool): Set to "NO" by default. > # Set it to "YES" to enable MySQL. > # mysql_limits (bool): Set to "NO" by default. > # Set it to yes to run `limits -e -U mysql` > # just before mysql starts. > # mysql_dbdir (str): Default to "/var/db/mysql" > # Base database directory. > # mysql_args (str): Custom additional arguments to be passed > # to mysqld_safe (default empty). > # > > . /etc/rc.subr > > name="mysql" > rcvar=`set_rcvar` > > load_rc_config $name > > : ${mysql_enable="NO"} > : ${mysql_limits="NO"} > : ${mysql_dbdir="/var/db/mysql"} > : ${mysql_args=""} > > mysql_user="mysql" > mysql_limits_args="-e -U ${mysql_user}" > pidfile="${mysql_dbdir}/`/bin/hostname`.pid" > command="/usr/local/bin/mysqld_safe" > command_args="--defaults-extra-file=${mysql_dbdir}/my.cnf --user=$ > {mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} $ > {mysql_args} > /dev/null &" > procname="/usr/local/libexec/mysqld" > start_precmd="${name}_prestart" > mysql_install_db="/usr/local/bin/mysql_install_db" > mysql_install_db_args="--ldata=${mysql_dbdir}" > > mysql_create_auth_tables() > { > eval $mysql_install_db $mysql_install_db_args >/dev/null > [ $? -eq 0 ] && chown -R ${mysql_user}:${mysql_user} $ > {mysql_dbdir} > } > > mysql_prestart() > { > if [ ! -d "${mysql_dbdir}/mysql/." ]; then > mysql_create_auth_tables || return 1 > fi > if checkyesno mysql_limits; then > eval `/usr/bin/limits ${mysql_limits_args}` 2>/dev/null > else > return 0 > fi > } > > run_rc_command "$1" Here is the relevant snippet from my error log: 060622 23:54:39 mysqld started 060622 23:54:39 [ERROR] Can't find messagefile '/usr/local/share/ mysql/english/errmsg.sys' 060622 23:54:39 [ERROR] Aborting 060622 23:54:39 mysqld ended This file does exist, and has the same permissions assigned to it that my working FreeBSD machine has, so I don't think this error message should be taken at face value. - ----------- Joe Auty NetMusician: web publishing software for musicians http://www.netmusician.org joe@netmusician.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFEm26VCgdfeCwsL5ERAuXfAJwOPilCeI2b2CFDTzRjLyEF7ai8/gCfVgsz ZKel2JXXdF0BcFJpnam+Q+w= =Do5b -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 04: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 AF16E16A49A for ; Fri, 23 Jun 2006 04:46:12 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from zeus.int.dfwlp.com (zeus.dfwlp.com [208.11.134.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6008F43D70 for ; Fri, 23 Jun 2006 04:46:12 +0000 (GMT) (envelope-from freebsd@dfwlp.com) Received: from athena.int.dfwlp.com (athena.int.dfwlp.com [192.168.125.83]) (authenticated bits=0) by zeus.int.dfwlp.com (8.13.6/8.13.6) with ESMTP id k5N4kAXX011189 for ; Thu, 22 Jun 2006 23:46:11 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Thu, 22 Jun 2006 23:46:10 -0500 User-Agent: KMail/1.9.3 References: <200606222309.38096.freebsd@dfwlp.com> <09359E1D-CCE1-4609-9158-41A4EE5CA4BE@shire.net> In-Reply-To: <09359E1D-CCE1-4609-9158-41A4EE5CA4BE@shire.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606222346.10640.freebsd@dfwlp.com> X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on zeus.int.dfwlp.com Subject: Re: from STABLE to RELENG? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 04:46:12 -0000 On Thursday 22 June 2006 23:16, Chad Leigh -- Shire.Net LLC wrote: > On Jun 22, 2006, at 10:09 PM, Jonathan Horne wrote: > > generally, how risky of an operation is it to change the branch im > > following > > (assuming i have a server in good working order)? > > > > i think i would now prefer to start following RELENG on my > > production servers > > instead of STABLE (not that im having any issues), so that i can > > keep up with > > patchlevels of specific servers a little easier. > > That easiest if you do it at a version change. Say, for example, 6.0- > STABLE to 6.1-RELEASE or similar. > > > --- > Chad Leigh -- Shire.Net LLC > Your Web App and Email hosting provider > chad at shire.net > well i would be attempting a 6.1-STABLE to 6.1-RELENG. i have a dev box i think im going to give it a go on, and see what happens. if this one doesnt go well, ill just wait until the next RELEASE increments to the next. thanks, jonathan From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 05:07: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 BD2FE16A482 for ; Fri, 23 Jun 2006 05:07:26 +0000 (UTC) (envelope-from elessar@bsdforen.de) Received: from postfix.bsdforen.de (bsdforen.de [212.204.60.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 309CD43D45 for ; Fri, 23 Jun 2006 05:07:26 +0000 (GMT) (envelope-from elessar@bsdforen.de) Received: by postfix.bsdforen.de (Postfix, from userid 20000) id BFB31684A26; Fri, 23 Jun 2006 07:07:24 +0200 (CEST) Received: from localhost (postfix [127.0.0.3]) by postfix.bsdforen.de (Postfix) with ESMTP id B119A684A24 for ; Fri, 23 Jun 2006 07:07:23 +0200 (CEST) Received: from postfix.bsdforen.de ([127.0.0.3]) by localhost (postfix.bsdforen.de [127.0.0.3]) (amavisd-new, port 10024) with LMTP id 84542-06-2 for ; Fri, 23 Jun 2006 07:07:23 +0200 (CEST) Received: from loki.starkstrom.lan (p549CD973.dip.t-dialin.net [84.156.217.115]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by postfix.bsdforen.de (Postfix) with ESMTP id 2531A684A1F for ; Fri, 23 Jun 2006 07:07:23 +0200 (CEST) Date: Fri, 23 Jun 2006 07:07:11 +0200 From: Joerg Pernfuss To: FreeBSD Questions Message-ID: <20060623070711.04c5bf94@loki.starkstrom.lan> In-Reply-To: References: <1150853032.16507.1.camel@localhost> <0578D634449883E0B7478DE4@Paul-Schmehls-Computer.local> X-Mailer: Sylpheed-Claws 2.2.3 (GTK+ 2.8.9; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_gp1I4V=eXu/XNEk7n962yHm"; protocol="application/pgp-signature"; micalg=PGP-SHA1 X-Virus-Scanned: amavisd-new at bsdforen.de X-DSPAM-Result: Innocent X-DSPAM-Confidence: 0.9997 X-DSPAM-Probability: 0.0000 X-DSPAM-Signature: 449b770c885481488287631 X-DSPAM-User: global Subject: Re: FreeBSD 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: Fri, 23 Jun 2006 05:07:26 -0000 --Sig_gp1I4V=eXu/XNEk7n962yHm Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Tue, 20 Jun 2006 22:51:46 -0500 (CDT) Denny White wrote: > Okay, might be off base here, so someone correct me if > I'm wrong. Don't you also have to remove the following >=20 > #ifdef SMP > #ifndef COMPILING_LINT > #error DEVICE_POLLING is not compatible with SMP > #endif > #endif >=20 > from /usr/src/sys/kern/kern_poll.c ? >=20 > You'll get an error part of the way through building > the kernel otherwise, right? Like I said, that's the > way I remember it. Just trying to save someone some > unnecessary work. Obviously only if you have enabled device polling in your custom kernel and know what you're doing. Defaulting to refuse to build polling on SMP has its reason. While it is generally not a problem, the kernel / userland ratio and statistics code might get messed up if I recall an old posting from Luigi correctly. Joerg --=20 | /"\ ASCII ribbon | GnuPG Key ID | e86d b753 3deb e749 6c3a | | \ / campaign against | 0xbbcaad24 | 5706 1f7d 6cfd bbca ad24 | | X HTML in email | .the next sentence is true. | | / \ and news | .the previous sentence was a lie. | --Sig_gp1I4V=eXu/XNEk7n962yHm Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFEm3cJH31s/bvKrSQRAqaqAJ9LXCUdfjWiAUWQyQrhhcsy8nlHqgCfY4Uz XVVAOqmkoUZAGYBKyYCCHhs= =H37m -----END PGP SIGNATURE----- --Sig_gp1I4V=eXu/XNEk7n962yHm-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 05: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 F158C16A4A0 for ; Fri, 23 Jun 2006 05:14:12 +0000 (UTC) (envelope-from snacktime@gmail.com) Received: from hu-out-0102.google.com (hu-out-0102.google.com [72.14.214.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58BF643D48 for ; Fri, 23 Jun 2006 05:14:12 +0000 (GMT) (envelope-from snacktime@gmail.com) Received: by hu-out-0102.google.com with SMTP id 28so338690hug for ; Thu, 22 Jun 2006 22:14:10 -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=Obz2KJrzcRtE46XeLcGkBoxjKkJzZMGCa3Sn6VqWlRnhc3VQVaoB4m+3n5cWNR0TUkjgUWKKz4urB+egim9ZUu/9YDEMI/Bc9BML0DzTfiBCfxlkWubdE/dMaoR2h5D/VfRQzMeeg3zISq8NCRWisZSkhJvE18YTVLiS7qOOfgc= Received: by 10.67.100.17 with SMTP id c17mr1806721ugm; Thu, 22 Jun 2006 22:14:10 -0700 (PDT) Received: by 10.66.232.4 with HTTP; Thu, 22 Jun 2006 22:14:10 -0700 (PDT) Message-ID: <1f060c4c0606222214o29262d03k1ea30e7a7fd3d2d1@mail.gmail.com> Date: Thu, 22 Jun 2006 22:14:10 -0700 From: snacktime To: freebsd-questions@freebsd.org In-Reply-To: <200606222309.38096.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: <200606222309.38096.freebsd@dfwlp.com> Subject: Re: from STABLE to RELENG? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 05:14:13 -0000 Maybe I've been lucky, but I've never had problems upgrading from one version to another, as long as it's a supported jump. Most of those have also been remote upgrades without going to single user mode. I just upgraded a couple 5.4-STABLE boxes to 6.1-RELEASE, and it went without a hitch. I think the last time I messed something up with a remote upgrade was when it involved going from a.out to elf. Can't remember the specifics, but I do remember messing that one up. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 06:22: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 1D10A16A47C for ; Fri, 23 Jun 2006 06:22:18 +0000 (UTC) (envelope-from freebsd-questions@auscert.org.au) Received: from titania.auscert.org.au (gw.auscert.org.au [203.5.112.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 556C443D49 for ; Fri, 23 Jun 2006 06:22:16 +0000 (GMT) (envelope-from freebsd-questions@auscert.org.au) Received: from app.auscert.org.au (app [10.0.1.192]) by titania.auscert.org.au (8.12.10/8.12.10) with ESMTP id k5N6MAuE028614; Fri, 23 Jun 2006 16:22:10 +1000 (EST) Received: from app.auscert.org.au (localhost.auscert.org.au [127.0.0.1]) by app.auscert.org.au (8.13.1/8.13.1) with ESMTP id k5N6MARO021889; Fri, 23 Jun 2006 16:22:10 +1000 (EST) (envelope-from freebsd-questions@auscert.org.au) Message-Id: <200606230622.k5N6MARO021889@app.auscert.org.au> To: Adi Pircalabu from: freebsd-questions@auscert.org.au In-Reply-To: Your message of "Thu, 08 Jun 2006 12:26:28 +0300." <20060608122628.7c073cfb@apircalabu.dsd.ro> Date: Fri, 23 Jun 2006 16:22:09 +1000 Cc: freebsd-questions@freebsd.org Subject: Re: Firefox crashes and hangs my 6.1R 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: Fri, 23 Jun 2006 06:22:18 -0000 Hi Adi, On Thu, 8 Jun 2006 12:26:28 +0300, Adi Pircalabu wrote: >On Thu, 08 Jun 2006 11:02:16 +1000 freebsd-questions@auscert.org.au >wrote: > >> >Try to reproduce the above described behaviour and jump over with >> >gdb. Sort of: >> > >> >gdb /usr/X11R6/lib/firefox/firefox-bin >> >(... wait) >> >(gdb) t a a bt full Just to bring you and the list up to date - I've solved my hang issue :) It seems that it was nothing to do with Firefox, after all. I removed the ATI Radeon AGP card from my machine and reverted to the onboard i915 Intel video and no more problem. I think there may be something not quite right with the Xorg Radeon driver (or is it the radeon.ko?), or maybe even the hardware itself as what finally prompted me to remove the card was that I began to see more and more artifacts on the display - at its worst, my white-background xterms were becoming unreadable due to a growing reddish tinge that could only be cured by 'wiping' one xterm with another! Thanks for the help. joel -- Joel Hatton -- Infrastructure Manager | Hotline: +61 7 3365 4417 AusCERT - Australia's national CERT | Fax: +61 7 3365 7031 The University of Queensland | WWW: www.auscert.org.au Qld 4072 Australia | Email: auscert@auscert.org.au From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 06:33: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 5740616A47B for ; Fri, 23 Jun 2006 06:33:37 +0000 (UTC) (envelope-from andreas-ml@wideroe.net) Received: from malibu.wideroe.net (malibu.wideroe.net [193.71.196.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC78643D55 for ; Fri, 23 Jun 2006 06:33:36 +0000 (GMT) (envelope-from andreas-ml@wideroe.net) Received: from hangloose.wideroe.net (193.80-202-150.nextgentel.com [80.202.150.193]) (authenticated bits=0) by malibu.wideroe.net (8.12.10/8.12.10) with ESMTP id k5N6XXFt088717 (version=TLSv1/SSLv3 cipher=EDH-DSS-DES-CBC3-SHA bits=168 verify=NO) for ; Fri, 23 Jun 2006 08:33:34 +0200 (CEST) (envelope-from andreas-ml@wideroe.net) Message-Id: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> X-Mailer: QUALCOMM Windows Eudora Version 7.0.1.0 Date: Fri, 23 Jun 2006 08:33:31 +0200 To: freebsd-questions@freebsd.org From: Andreas Wideroe Andersen Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Spam-Status: No, score=-2.2 required=7.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on malibu.wideroe.net Subject: Backup sollutions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 06:33:37 -0000 Hi, I'm looking for a free (ports?) backup sollutions for FreeBSD servers. I would like to have something similare to IBM's Tivoli where you install a client on each server and administer the backup from another server with a web gui. Are there similare sollutions found for FreeBSD? Thanks! Andreas From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 06:36: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 3BF5316A49E for ; Fri, 23 Jun 2006 06:36:50 +0000 (UTC) (envelope-from on@cs.ait.ac.th) Received: from mail.cs.ait.ac.th (mail.cs.ait.ac.th [192.41.170.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9438F43D5F for ; Fri, 23 Jun 2006 06:36:46 +0000 (GMT) (envelope-from on@cs.ait.ac.th) Received: from banyan.cs.ait.ac.th (banyan.cs.ait.ac.th [192.41.170.5]) by mail.cs.ait.ac.th (8.13.1/8.12.11) with ESMTP id k5N6abIB017577 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 23 Jun 2006 13:36:41 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id k5N6abbg059571; Fri, 23 Jun 2006 13:36:37 +0700 (ICT) Date: Fri, 23 Jun 2006 13:36:37 +0700 (ICT) Message-Id: <200606230636.k5N6abbg059571@banyan.cs.ait.ac.th> From: Olivier Nicole To: andreas-ml@wideroe.net In-reply-to: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> (message from Andreas Wideroe Andersen on Fri, 23 Jun 2006 08:33:31 +0200) References: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions@freebsd.org Subject: Re: Backup sollutions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 06:36:50 -0000 > I'm looking for a free (ports?) backup sollutions for FreeBSD > servers. I would like to have something similare to IBM's Tivoli > where you install a client on each server and administer the backup > from another server with a web gui. I don't know about the GUI, but I have been using Amanda very successfuly for many years. It will backup FreeBSD, but any flavor of Unix, as well as Microsoft... Best regards, Olivier From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 07: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 344CF16A492 for ; Fri, 23 Jun 2006 07:48:26 +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 A861D43D45 for ; Fri, 23 Jun 2006 07:48:25 +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 k5N7mMx15912; Fri, 23 Jun 2006 00:48:22 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Message-ID: <000a01c69699$665c1030$3c01a8c0@coolf89ea26645> From: "Ted Mittelstaedt" To: "William" References: Date: Fri, 23 Jun 2006 00:48:20 -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: freebsd-questions@freebsd.org Subject: Re: FreeBSD 6.0 compat with DL320 G4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 07:48:26 -0000 It is fine as long as you buy a 64 bit pc-express intel ethernet card. The patch I created makes the broadcom chip work without panicing the kernel Unfortunately the chip periodically issues a timeout error message and momentararily downs the interface. There are a number of complaints in the PR database about this happening with this driver, with different models of the broadcom chip in different machines. Ted ----- Original Message ----- From: "William" To: "Ted Mittelstaedt" Cc: Sent: Wednesday, June 21, 2006 1:16 AM Subject: Re: FreeBSD 6.0 compat with DL320 G4 > Hello again, > > Sorry to dig this up again. I'm in the position to order the server > now and the DL320 is within our price range. Is everyone still having > an enjoyable experience running FreeBSD on the DL3XX G4 range? > > Regards, > > William > > On 05/05/06, Ted Mittelstaedt wrote: > > > > Yes, for some reason the first nic locks the system up when you try to > > bring it up. > > > > Ted > > > > >-----Original Message----- > > >From: William [mailto:willay@gmail.com] > > >Sent: Friday, May 05, 2006 2:39 AM > > >To: Ted Mittelstaedt > > >Cc: freebsd-questions@freebsd.org > > >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > > > > > > >Hi Ted, > > > > > >Great news! but as per your patch you can only use the second nic? > > > > > >Cheers, > > > > > >Will > > > > > >On 05/05/06, Ted Mittelstaedt wrote: > > >> Hi William, > > >> > > >> I was able to create a patch that fixed the problem, see > > >> here: > > >> > > >> http://www.freebsd.org/cgi/query-pr.cgi?pr=96806 > > >> > > >> Ted > > >> > > >> >-----Original Message----- > > >> >From: owner-freebsd-questions@freebsd.org > > >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of William > > >> >Sent: Wednesday, May 03, 2006 1:41 AM > > >> >To: Ted Mittelstaedt > > >> >Cc: freebsd-questions@freebsd.org > > >> >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > >> > > > >> > > > >> >The chances of getting it returned because fbsd doesnt work are > > >> >very small! :( > > >> > > > >> >On 03/05/06, Ted Mittelstaedt wrote: > > >> >> > > >> >> I have a DL320 G4 in the rack and the thing panics under 6.1-RC1 > > >> >> when more than a few K of data is sent over the bge interface. I > > >> >> haven't tried 6.0-RELEASE on it. Just make sure you can return it > > >> >> if it doesen't work. > > >> >> > > >> >> Ted > > >> >> > > >> >> > > >> >> >-----Original Message----- > > >> >> >From: owner-freebsd-questions@freebsd.org > > >> >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of William > > >> >> >Sent: Tuesday, May 02, 2006 3:10 AM > > >> >> >To: freebsd-questions@freebsd.org > > >> >> >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > >> >> > > > >> >> > > > >> >> >What was your experience like with 6.0-RELEASE and the > > >dl320 g4? I've > > >> >> >had a quote back on that model so could be near to > > >actually getting > > >> >> >some hardware for once :) > > >> >> > > > >> >> >On 30/04/06, No@SPAM@mgEDV.net wrote: > > >> >> >> > > >> >> >> just for info: our dl320 g4 also has bge interfaces, and > > >> >> >> they work very well under 6.1-RC1 (even BETA4 was ok). > > >> >> >> but our server has been bought 2 months ago, maybe there's > > >> >> >> a newer/different chipset in it. > > >> >> >> we also have a dl320 g2 being heavily used as lan switches > > >> >> >> monitor, this server also has bge interfaces and had no > > >> >> >> problem since 1 year capturing and analyzing more than > > >> >> >> 26GB/day (avg) of nw-data on the 2nd interface and serving > > >> >> >> more than 4GB/day (avg) on the primary one (both IPv4 only). > > >> >> >> > > >> >> >> c ya ;-) > > >> >> >> > > >> >> >> > > >> >> >_______________________________________________ > > >> >> >freebsd-questions@freebsd.org mailing list > > >> >> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > >> >> >To unsubscribe, send any mail to > > >> >> >"freebsd-questions-unsubscribe@freebsd.org" > > >> >> > > > >> >> >-- > > >> >> >No virus found in this incoming message. > > >> >> >Checked by AVG Free Edition. > > >> >> >Version: 7.1.385 / Virus Database: 268.5.1/328 - Release > > >> >Date: 5/1/2006 > > >> >> > > > >> >> > > >> >_______________________________________________ > > >> >freebsd-questions@freebsd.org mailing list > > >> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > >> >To unsubscribe, send any mail to > > >> >"freebsd-questions-unsubscribe@freebsd.org" > > >> > > > >> >-- > > >> >No virus found in this incoming message. > > >> >Checked by AVG Free Edition. > > >> >Version: 7.1.385 / Virus Database: 268.5.1/328 - Release > > >Date: 5/1/2006 > > >> > > > >> > > >> > > > > > >-- > > >No virus found in this incoming message. > > >Checked by AVG Free Edition. > > >Version: 7.1.392 / Virus Database: 268.5.3/331 - Release Date: 5/3/2006 > > > > > > From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08:04: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 57B0916A4A6 for ; Fri, 23 Jun 2006 08:04:24 +0000 (UTC) (envelope-from miki@wisedot.ca) Received: from bpd2mo1no.prod.shawcable.com (shawmail.shawcable.com [64.59.128.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E96043D49 for ; Fri, 23 Jun 2006 08:04:22 +0000 (GMT) (envelope-from miki@wisedot.ca) Received: from bpd2mi4no.prod.shawcable.com (bpd2mi4no-qfe3.prod.shawcable.com [10.0.184.123]) by bpd2mo1no.prod.shawcable.com (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J1A009I8ZQC8740@bpd2mo1no.prod.shawcable.com> for freebsd-questions@freebsd.org; Fri, 23 Jun 2006 02:03:48 -0600 (MDT) Received: from wisedota6635sx (S0106001217f998fd.vf.shawcable.net [70.69.34.22]) by bpd2mi4no.prod.shawcable.com (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0J1A00JVCZQBYP40@bpd2mi4no.prod.shawcable.com> for freebsd-questions@freebsd.org; Fri, 23 Jun 2006 02:03:48 -0600 (MDT) Date: Fri, 23 Jun 2006 01:03:51 -0700 From: "Miki Klein - Wisedot Technologies Inc." To: freebsd-questions@freebsd.org Message-id: <000001c6969b$90e8a1e0$7101a8c0@wisedota6635sx> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: IBM 440 8CPU + RAID 4LX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 08:04:24 -0000 Hi, I am trying to install freebsd on IBM server. But the system hung up after the boot. (There is an error saying that there are more then 31 cpu id). I can turn ACPI off in this case the server will boot but without the raid. I tried FreeBSD live cd and he is running well but in single CPU. Need Help in this Issue Miki From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08:05: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 E560916A4A0 for ; Fri, 23 Jun 2006 08:05:44 +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 7E0F943D49 for ; Fri, 23 Jun 2006 08:05:43 +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 k5N85ex16017; Fri, 23 Jun 2006 01:05:40 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Message-ID: <001701c6969b$d128b100$3c01a8c0@coolf89ea26645> From: "Ted Mittelstaedt" To: "Jeremy Kister" , References: <4498E663.8010509@jeremykister.com> <44999DB4.5000700@jeremykister.com> Date: Fri, 23 Jun 2006 01:05:39 -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: Crashing with HP/Compaq DL360 G3 [paging kernel developer] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 08:05:45 -0000 ----- Original Message ----- From: "Jeremy Kister" To: Sent: Wednesday, June 21, 2006 12:27 PM Subject: Re: Crashing with HP/Compaq DL360 G3 [paging kernel developer] > On 6/21/2006 2:25 AM, Jeremy Kister wrote: > > I have sudden [seemingly random] reboots with all four (see > > http://unix.derkeiler.com/Mailing-Lists/FreeBSD/questions/2006-02/msg01605.html) > > while running FreeBSD 6.0-RELEASE through the PreReleases and now with > > 6.1-STABLE. > > I just found a post suggesting that IPF with SMP is bad. See: > http://www.monkey.org/freebsd/archive/freebsd-stable/200507/msg00481.html > > I do have IPF running on all four boxes and SMP is obviously also > configured. > > Does anyone have data beyond this that says I should remove IPF from the > kernel or set ipf_enable="NO" in my rc.conf ? or was this issue > resolved in FreeBSD 6 ? > If you read the complete thread you would have come across this: http://www.freebsd.org/cgi/query-pr.cgi?pr=83220 And if you read that you would see it was resolved to the unsatisfaction of the PR filer. That is, replace ipf with pf or fix the program. This is in the category of "doctor it hurts when I do this" Root can "rm -r /" and once most of the system is gone, it will probably panic pretty soon. Root can unmount volumes and make the system panic as well. Neither operation is a failure of the operating system. For ipf to work, the program must be given pretty deep control of the OS. If the program uses that control to make the system crash, then who is at fault? The OS? I don't think so. You might also consider that most people use ipfw. One of the benefits of Open Source is that you can run what you want instead of running what the rest of the lemmings run. The downside of this is that if your doing that and it blows up on you, you have to fix it yourself. The developers are going to fix the things that the rest of the lemmings have problems with first, before working on off-the-beaten-trail stuff, simply because there's more lemmings than you. If you don't like it, see Microsoft - oh I forgot, they handle their bugs exactly the same way - except you can't even fix them for them. Ted From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08:05: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 260EF16A47B for ; Fri, 23 Jun 2006 08:05:57 +0000 (UTC) (envelope-from maslak@ihlas.net.tr) Received: from pop3.ihlas.net.tr (mail.ihlas.net.tr [213.238.128.115]) by mx1.FreeBSD.org (Postfix) with SMTP id 3565C43D45 for ; Fri, 23 Jun 2006 08:05:55 +0000 (GMT) (envelope-from maslak@ihlas.net.tr) Received: (qmail 64176 invoked by uid 89); 23 Jun 2006 08:05:09 -0000 X-Mail-Scanner: Scanned by qSheff-II-2.1 (http://www.enderunix.org/qsheff/) Received: from unknown (HELO ihlasnetym) (maslak@213.238.150.220) by 0 with SMTP; 23 Jun 2006 08:05:09 -0000 Message-ID: <004301c6969b$d4cd4f00$dc96eed5@ihlasnetym> From: "Basheer Faith" To: Date: Fri, 23 Jun 2006 11:05:45 +0300 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1506 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1506 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: What does it cause that message "Fatal trap 12: page fault while in kernel mode" ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 08:05:57 -0000 Hello I use FreeBSD-release6.0. the server gives an error on display as below = and be locked about every 10 days. Fatal trap 12: page fault while in kernel mode ... ... The server has 1 gbyte Ram, P3-550 Mhz, 2 CPU. SMP is active in kernel. What shall I do ? From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08:08: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 65E5316A47E for ; Fri, 23 Jun 2006 08:08:55 +0000 (UTC) (envelope-from willay@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 ABA0F43D46 for ; Fri, 23 Jun 2006 08:08:53 +0000 (GMT) (envelope-from willay@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so943740uge for ; Fri, 23 Jun 2006 01:08: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:content-transfer-encoding:content-disposition:references; b=cLMtdhGrjl6HgnvJ9bVbr4jrF5UqOaw3TAnLUEci76Wr1piFYWagEUJMo4WWpVaEp1+PGwIQzcoe4XFijv9GvCVGl9dw0vAXqBKmtUiaYMYF4F5/Bq27UHUrf+8+JV3rBw8+l3R0WoQ3/UrjyVkL3Kyx/MmMRlgZLgkLCrJu3hw= Received: by 10.66.243.2 with SMTP id q2mr1937359ugh; Fri, 23 Jun 2006 01:08:52 -0700 (PDT) Received: by 10.67.29.5 with HTTP; Fri, 23 Jun 2006 01:08:52 -0700 (PDT) Message-ID: Date: Fri, 23 Jun 2006 09:08:52 +0100 From: William To: "Ted Mittelstaedt" In-Reply-To: <000a01c69699$665c1030$3c01a8c0@coolf89ea26645> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000a01c69699$665c1030$3c01a8c0@coolf89ea26645> Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 6.0 compat with DL320 G4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 08:08:55 -0000 Wow thats a total pain in the arse, I'll put it through some stress testing before it gets shipped. Can you reccomend a card? On 23/06/06, Ted Mittelstaedt wrote: > > It is fine as long as you buy a 64 bit pc-express intel ethernet card. > > The patch I created makes the broadcom chip work without panicing > the kernel > > Unfortunately the chip periodically issues a timeout error message and > momentararily downs the interface. > > There are a number of complaints in the PR database about this > happening with this driver, with different models of the broadcom > chip in different machines. > > Ted > > ----- Original Message ----- > From: "William" > To: "Ted Mittelstaedt" > Cc: > Sent: Wednesday, June 21, 2006 1:16 AM > Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > > Hello again, > > > > Sorry to dig this up again. I'm in the position to order the server > > now and the DL320 is within our price range. Is everyone still having > > an enjoyable experience running FreeBSD on the DL3XX G4 range? > > > > Regards, > > > > William > > > > On 05/05/06, Ted Mittelstaedt wrote: > > > > > > Yes, for some reason the first nic locks the system up when you try to > > > bring it up. > > > > > > Ted > > > > > > >-----Original Message----- > > > >From: William [mailto:willay@gmail.com] > > > >Sent: Friday, May 05, 2006 2:39 AM > > > >To: Ted Mittelstaedt > > > >Cc: freebsd-questions@freebsd.org > > > >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > > > > > > > > > >Hi Ted, > > > > > > > >Great news! but as per your patch you can only use the second nic? > > > > > > > >Cheers, > > > > > > > >Will > > > > > > > >On 05/05/06, Ted Mittelstaedt wrote: > > > >> Hi William, > > > >> > > > >> I was able to create a patch that fixed the problem, see > > > >> here: > > > >> > > > >> http://www.freebsd.org/cgi/query-pr.cgi?pr=96806 > > > >> > > > >> Ted > > > >> > > > >> >-----Original Message----- > > > >> >From: owner-freebsd-questions@freebsd.org > > > >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of William > > > >> >Sent: Wednesday, May 03, 2006 1:41 AM > > > >> >To: Ted Mittelstaedt > > > >> >Cc: freebsd-questions@freebsd.org > > > >> >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > >> > > > > >> > > > > >> >The chances of getting it returned because fbsd doesnt work are > > > >> >very small! :( > > > >> > > > > >> >On 03/05/06, Ted Mittelstaedt wrote: > > > >> >> > > > >> >> I have a DL320 G4 in the rack and the thing panics under 6.1-RC1 > > > >> >> when more than a few K of data is sent over the bge interface. I > > > >> >> haven't tried 6.0-RELEASE on it. Just make sure you can return it > > > >> >> if it doesen't work. > > > >> >> > > > >> >> Ted > > > >> >> > > > >> >> > > > >> >> >-----Original Message----- > > > >> >> >From: owner-freebsd-questions@freebsd.org > > > >> >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of William > > > >> >> >Sent: Tuesday, May 02, 2006 3:10 AM > > > >> >> >To: freebsd-questions@freebsd.org > > > >> >> >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > >> >> > > > > >> >> > > > > >> >> >What was your experience like with 6.0-RELEASE and the > > > >dl320 g4? I've > > > >> >> >had a quote back on that model so could be near to > > > >actually getting > > > >> >> >some hardware for once :) > > > >> >> > > > > >> >> >On 30/04/06, No@SPAM@mgEDV.net wrote: > > > >> >> >> > > > >> >> >> just for info: our dl320 g4 also has bge interfaces, and > > > >> >> >> they work very well under 6.1-RC1 (even BETA4 was ok). > > > >> >> >> but our server has been bought 2 months ago, maybe there's > > > >> >> >> a newer/different chipset in it. > > > >> >> >> we also have a dl320 g2 being heavily used as lan switches > > > >> >> >> monitor, this server also has bge interfaces and had no > > > >> >> >> problem since 1 year capturing and analyzing more than > > > >> >> >> 26GB/day (avg) of nw-data on the 2nd interface and serving > > > >> >> >> more than 4GB/day (avg) on the primary one (both IPv4 only). > > > >> >> >> > > > >> >> >> c ya ;-) > > > >> >> >> > > > >> >> >> > > > >> >> >_______________________________________________ > > > >> >> >freebsd-questions@freebsd.org mailing list > > > >> >> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > >> >> >To unsubscribe, send any mail to > > > >> >> >"freebsd-questions-unsubscribe@freebsd.org" > > > >> >> > > > > >> >> >-- > > > >> >> >No virus found in this incoming message. > > > >> >> >Checked by AVG Free Edition. > > > >> >> >Version: 7.1.385 / Virus Database: 268.5.1/328 - Release > > > >> >Date: 5/1/2006 > > > >> >> > > > > >> >> > > > >> >_______________________________________________ > > > >> >freebsd-questions@freebsd.org mailing list > > > >> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > >> >To unsubscribe, send any mail to > > > >> >"freebsd-questions-unsubscribe@freebsd.org" > > > >> > > > > >> >-- > > > >> >No virus found in this incoming message. > > > >> >Checked by AVG Free Edition. > > > >> >Version: 7.1.385 / Virus Database: 268.5.1/328 - Release > > > >Date: 5/1/2006 > > > >> > > > > >> > > > >> > > > > > > > >-- > > > >No virus found in this incoming message. > > > >Checked by AVG Free Edition. > > > >Version: 7.1.392 / Virus Database: 268.5.3/331 - Release Date: 5/3/2006 > > > > > > > > > > > From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08: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 AEBC016A4E0 for ; Fri, 23 Jun 2006 08:16:33 +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 3060E43D53 for ; Fri, 23 Jun 2006 08:16:33 +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 k5N8GMx16080; Fri, 23 Jun 2006 01:16:22 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Message-ID: <002201c6969d$510742a0$3c01a8c0@coolf89ea26645> From: "Ted Mittelstaedt" To: "Philippe Lang" , "Doug Poland" References: <6C0CF58A187DA5479245E0830AF84F421D0E40@poweredge.attiksystem.ch> Date: Fri, 23 Jun 2006 01:16:20 -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: freebsd-questions Subject: Re: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 08:16:33 -0000 ----- Original Message ----- From: "Philippe Lang" To: "Ted Mittelstaedt" ; "Doug Poland" Cc: "freebsd-questions" Sent: Wednesday, June 21, 2006 2:32 AM Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? > Ted Mittelstaedt wrote: > > >>> On Mon, Jun 19, 2006 at 10:18:05AM +0200, Philippe Lang wrote: > >>>> Hi, > >>>> > >>>> I've got two boxes that would be perfect for a small server. The > >>>> motherboards are: > >>>> > >>>> - ASUS P4C800-E Deluxe, with ICH5R and Promise PDC20378 > >>>> - ASUS P5WD2, with ICH7R > >>>> > >>>> I intend to install FreeBSD 6.1, and I wonder which chipset you > >>>> would recommend me for RAID 1? I need something rock-solid, of > >>>> course... > >>>> > >>> I'm running -STABLE on a P4C800-E. I've never had a problem with > >>> the PDC20378. Recently, I added two drives on the ICH5R with no > >>> issues. A little benchmarking shows the ICH5R to be a little faster. > >> > >> Hi, > >> > >> I wasn't as lucky as Doug with my ASUS P4C800-E Deluxe board, both > >> with the ICH5R and Promise RAID controller. > >> > >> 1) With the Promise controller, after simulating a disk problem > >> (shutdown - disk disconnection - reboot - shutdown - disk > >> reconnection - reboot), I wasn't able to rebuild the array at all, > >> either with "atacontrol rebuild ar0" or from the bios. I suspect a > >> spare disk is necessary for a complete rebuild. > >> > >> 2) With the ICH5R controller, installation went fine too. If I > >> disconnect a disk, the system still boots, but when I plug the disk > >> back (computer shut down), no boot is possible anymore. At boot, a > >> kernel panic says: "softdep_setup_inomapdep". No array rebuild is > >> possible from the bios, so I'm stuck. > >> > > > > You need to take the disk you unplugged to some other machine > > and wipe it, then make sure the one disk with the system left > > on it is in the 0 position, put the wiped disk in the 1 > > position, then you should be able to boot. > > > > Your simulating a failure when you pull the one disk, but > > your not simulating a recovery when you insert that disk back in. > > > > Ted > > Hi, > > I'm sure there are solutions to make things work, but personnaly, I > don't feel confortable with a RAID system that acts that way, and that > is supposed to make the whole system more robust and problem-free. Your missing the point. If a disk crashes it wipes the metafile off the disk. If you want to simulate a disk crash, issue a raid detach command first, then pull the disk. The ata raid in the ata driver isn't written to handle the condition of a disk being pulled that has nothing wrong with it then reinserted. It is written to handle the condition of a disk crashing, then being pulled, then a new one replaced. > I used to play with hardware SCSI RAID controllers, and was never able to > trash the system. I have SCSI raid controllers too that I can do that with. But keep in mind that these controllers firmware is written to if a disk is pulled then replaced, it immediately assumes that the disk is toast, and rebuilds it from scratch. > Arrays are being rebuilt in the background, that's > just great. I hope this is the kind of ease and quality I will get with > the 3WARE raid controller I have ordered... Apparently, everyone says > very good things about 3WARE. > The only problem we had with ours is that the very latest firmware did not work with the FreeBSD driver. This was about 3-4 months ago though so they might have fixed that problem. We always automatically update all cards we buy to the latest firmware before we install them for the first time, that is why we hit that problem. Ted From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08:24: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 2605216A47E for ; Fri, 23 Jun 2006 08:24:50 +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 9831943D49 for ; Fri, 23 Jun 2006 08:24:48 +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 k5N8Ojx16135; Fri, 23 Jun 2006 01:24:45 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Message-ID: <002701c6969e$7b4ed180$3c01a8c0@coolf89ea26645> From: "Ted Mittelstaedt" To: "William" References: <000a01c69699$665c1030$3c01a8c0@coolf89ea26645> Date: Fri, 23 Jun 2006 01:24:43 -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: freebsd-questions@freebsd.org Subject: Re: FreeBSD 6.0 compat with DL320 G4 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 08:24:50 -0000 You got 2 choices Out of the box the DL 320 G4 ships with a riser card that has 2 pci express slots. At least that is what they are supposed to be, we haven't tried them. HP sells a riser card that has a single 64 bit PCI 133 slot on it. You can buy that and replace the existing riser. If you only do the pci express then the adapter you want is the Intel Pro 1000 PT either the single port or the dual port, and make sure it is the "server adapter" not the "desktop adapter" (the models carry the same model number but different descriptions, which is infuriating) If you do the riser card replacement then you can use a Pro 1000 MT server adapter. If you buy the optional hot-swap module (which I don't think works under FreeBSD anyhow) then you have to buy the riser card with the pci 133 slot since that module is not pci express. Ted ----- Original Message ----- From: "William" To: "Ted Mittelstaedt" Cc: Sent: Friday, June 23, 2006 1:08 AM Subject: Re: FreeBSD 6.0 compat with DL320 G4 > Wow thats a total pain in the arse, I'll put it through some stress > testing before it gets shipped. > > Can you reccomend a card? > > On 23/06/06, Ted Mittelstaedt wrote: > > > > It is fine as long as you buy a 64 bit pc-express intel ethernet card. > > > > The patch I created makes the broadcom chip work without panicing > > the kernel > > > > Unfortunately the chip periodically issues a timeout error message and > > momentararily downs the interface. > > > > There are a number of complaints in the PR database about this > > happening with this driver, with different models of the broadcom > > chip in different machines. > > > > Ted > > > > ----- Original Message ----- > > From: "William" > > To: "Ted Mittelstaedt" > > Cc: > > Sent: Wednesday, June 21, 2006 1:16 AM > > Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > > > > > Hello again, > > > > > > Sorry to dig this up again. I'm in the position to order the server > > > now and the DL320 is within our price range. Is everyone still having > > > an enjoyable experience running FreeBSD on the DL3XX G4 range? > > > > > > Regards, > > > > > > William > > > > > > On 05/05/06, Ted Mittelstaedt wrote: > > > > > > > > Yes, for some reason the first nic locks the system up when you try to > > > > bring it up. > > > > > > > > Ted > > > > > > > > >-----Original Message----- > > > > >From: William [mailto:willay@gmail.com] > > > > >Sent: Friday, May 05, 2006 2:39 AM > > > > >To: Ted Mittelstaedt > > > > >Cc: freebsd-questions@freebsd.org > > > > >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > > > > > > > > > > > > >Hi Ted, > > > > > > > > > >Great news! but as per your patch you can only use the second nic? > > > > > > > > > >Cheers, > > > > > > > > > >Will > > > > > > > > > >On 05/05/06, Ted Mittelstaedt wrote: > > > > >> Hi William, > > > > >> > > > > >> I was able to create a patch that fixed the problem, see > > > > >> here: > > > > >> > > > > >> http://www.freebsd.org/cgi/query-pr.cgi?pr=96806 > > > > >> > > > > >> Ted > > > > >> > > > > >> >-----Original Message----- > > > > >> >From: owner-freebsd-questions@freebsd.org > > > > >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of William > > > > >> >Sent: Wednesday, May 03, 2006 1:41 AM > > > > >> >To: Ted Mittelstaedt > > > > >> >Cc: freebsd-questions@freebsd.org > > > > >> >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > > >> > > > > > >> > > > > > >> >The chances of getting it returned because fbsd doesnt work are > > > > >> >very small! :( > > > > >> > > > > > >> >On 03/05/06, Ted Mittelstaedt wrote: > > > > >> >> > > > > >> >> I have a DL320 G4 in the rack and the thing panics under 6.1-RC1 > > > > >> >> when more than a few K of data is sent over the bge interface. I > > > > >> >> haven't tried 6.0-RELEASE on it. Just make sure you can return it > > > > >> >> if it doesen't work. > > > > >> >> > > > > >> >> Ted > > > > >> >> > > > > >> >> > > > > >> >> >-----Original Message----- > > > > >> >> >From: owner-freebsd-questions@freebsd.org > > > > >> >> >[mailto:owner-freebsd-questions@freebsd.org]On Behalf Of William > > > > >> >> >Sent: Tuesday, May 02, 2006 3:10 AM > > > > >> >> >To: freebsd-questions@freebsd.org > > > > >> >> >Subject: Re: FreeBSD 6.0 compat with DL320 G4 > > > > >> >> > > > > > >> >> > > > > > >> >> >What was your experience like with 6.0-RELEASE and the > > > > >dl320 g4? I've > > > > >> >> >had a quote back on that model so could be near to > > > > >actually getting > > > > >> >> >some hardware for once :) > > > > >> >> > > > > > >> >> >On 30/04/06, No@SPAM@mgEDV.net wrote: > > > > >> >> >> > > > > >> >> >> just for info: our dl320 g4 also has bge interfaces, and > > > > >> >> >> they work very well under 6.1-RC1 (even BETA4 was ok). > > > > >> >> >> but our server has been bought 2 months ago, maybe there's > > > > >> >> >> a newer/different chipset in it. > > > > >> >> >> we also have a dl320 g2 being heavily used as lan switches > > > > >> >> >> monitor, this server also has bge interfaces and had no > > > > >> >> >> problem since 1 year capturing and analyzing more than > > > > >> >> >> 26GB/day (avg) of nw-data on the 2nd interface and serving > > > > >> >> >> more than 4GB/day (avg) on the primary one (both IPv4 only). > > > > >> >> >> > > > > >> >> >> c ya ;-) > > > > >> >> >> > > > > >> >> >> > > > > >> >> >_______________________________________________ > > > > >> >> >freebsd-questions@freebsd.org mailing list > > > > >> >> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > > >> >> >To unsubscribe, send any mail to > > > > >> >> >"freebsd-questions-unsubscribe@freebsd.org" > > > > >> >> > > > > > >> >> >-- > > > > >> >> >No virus found in this incoming message. > > > > >> >> >Checked by AVG Free Edition. > > > > >> >> >Version: 7.1.385 / Virus Database: 268.5.1/328 - Release > > > > >> >Date: 5/1/2006 > > > > >> >> > > > > > >> >> > > > > >> >_______________________________________________ > > > > >> >freebsd-questions@freebsd.org mailing list > > > > >> >http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > > >> >To unsubscribe, send any mail to > > > > >> >"freebsd-questions-unsubscribe@freebsd.org" > > > > >> > > > > > >> >-- > > > > >> >No virus found in this incoming message. > > > > >> >Checked by AVG Free Edition. > > > > >> >Version: 7.1.385 / Virus Database: 268.5.1/328 - Release > > > > >Date: 5/1/2006 > > > > >> > > > > > >> > > > > >> > > > > > > > > > >-- > > > > >No virus found in this incoming message. > > > > >Checked by AVG Free Edition. > > > > >Version: 7.1.392 / Virus Database: 268.5.3/331 - Release Date: 5/3/2006 > > > > > > > > > > > > > > > > > From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08:46: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 D4F7D16A47B for ; Fri, 23 Jun 2006 08:46:18 +0000 (UTC) (envelope-from philippe.lang@attiksystem.ch) Received: from mail.attiksystem.ch (f29.attiksystem.ch [212.147.59.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25B8D43D58 for ; Fri, 23 Jun 2006 08:46:17 +0000 (GMT) (envelope-from philippe.lang@attiksystem.ch) Received: from poweredge.attiksystem.ch (poweredge.attiksystem.ch [10.0.0.29]) by mail.attiksystem.ch (8.12.11/8.12.11) with ESMTP id k5N8kDpW029441; Fri, 23 Jun 2006 10:46:13 +0200 (CEST) (envelope-from philippe.lang@attiksystem.ch) Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Fri, 23 Jun 2006 10:46:13 +0200 Content-Type: multipart/signed; boundary="----=_NextPart_000_001D_01C696B2.3CB444F0"; micalg=SHA1; protocol="application/x-pkcs7-signature" X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Message-ID: <6C0CF58A187DA5479245E0830AF84F421D0E59@poweredge.attiksystem.ch> X-MS-Has-Attach: yes X-MS-TNEF-Correlator: Thread-Topic: ICH5R, ICH7R or Promise PDC20378 RAID? Thread-Index: AcaWnVaqnnhXgeMcS2KP4a+aI0kgAAAAbgnw From: "Philippe Lang" To: "Ted Mittelstaedt" , "Doug Poland" X-Spam-Score: -1.44 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.49 on 10.0.0.111 Cc: freebsd-questions Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 08:46:18 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_001D_01C696B2.3CB444F0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Ted Mittelstaedt wrote: >> Hi, >> >> I'm sure there are solutions to make things work, but personnaly, I >> don't feel confortable with a RAID system that acts that way, and >> that is supposed to make the whole system more robust and >> problem-free. > > Your missing the point. > > If a disk crashes it wipes the metafile off the disk. > > If you want to simulate a disk crash, issue a raid detach command > first, then pull the disk. > > The ata raid in the ata driver isn't written to handle the > condition of > a disk being pulled that has nothing wrong with it then reinserted. > It is written to handle the condition of a disk crashing, then being > pulled, then a new one replaced. > >> I used to play with hardware SCSI RAID controllers, and was never >> able to trash the system. > > I have SCSI raid controllers too that I can do that with. But keep in > mind that these controllers firmware is written to if a disk > is pulled then > replaced, it immediately assumes that the disk is toast, and > rebuilds it > from scratch. Hi, I'm not an expert in RAID Ted, and I don't want to be. Simply, in situations where a disk crashes, and the server is not redundant anymore, I prefer having a controller that I can rely on, both eyes closed. I have just installed the 3WARE controller this morning, and did the exact same operations I did with the ICH5/7R and onboard Promise controller of my ASUS boards. It's simply not comparable at all, and for a really affordable price. The server did not crash, and is by the way rebuilding the RAID at the moment... Despite all my efforts, I was not able to trash it. A 3WARE controller is really worth the investment, really. Cheers, --------------- Philippe Lang Attik System ------=_NextPart_000_001D_01C696B2.3CB444F0 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII/zCCAocw ggHwoAMCAQICEEdYYafa1wkm0CP4DOffAiswDQYJKoZIhvcNAQEEBQAwYjELMAkGA1UEBhMCWkEx JTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQ ZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA2MDYyMjE3MzE0NloXDTA3MDYyMjE3MzE0 NlowZzENMAsGA1UEBBMETGFuZzERMA8GA1UEKhMIUGhpbGlwcGUxFjAUBgNVBAMTDVBoaWxpcHBl IExhbmcxKzApBgkqhkiG9w0BCQEWHHBoaWxpcHBlLmxhbmdAYXR0aWtzeXN0ZW0uY2gwgZ8wDQYJ KoZIhvcNAQEBBQADgY0AMIGJAoGBAOfvCPREDwfIbzsNRoyBDoSOWfI2NNWdRRMJXuj5ldF22gSQ 6MiXFUjt4HlRIwPb8x13hrv89GW/SmLjFThxf7NKZ8dPTZzp4ZlvrQBRAYhSuTQOJ8azyzruZu54 Ak7fa3pz26Q3B8kg4knZBz3O9Q4K1tK8AEdjNQpyDg/iDdzjAgMBAAGjOTA3MCcGA1UdEQQgMB6B HHBoaWxpcHBlLmxhbmdAYXR0aWtzeXN0ZW0uY2gwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQQF AAOBgQAAzz+I6MrhWjbfWSgngW/DthHvXiTR6x0cCeb4T5mBb5dgueqgLnrh/2blsbCQuLWh0URe /1l/QQ2dY2elG3PEDPv9cCl/LcwsCsE1Nj3bGM4gdVx9crYvTw5dyyUuDq1KShV3uziE+o5Lyfx4 qWRYd6/yIBDVarohdpL8J0DJczCCAy0wggKWoAMCAQICAQAwDQYJKoZIhvcNAQEEBQAwgdExCzAJ BgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEaMBgG A1UEChMRVGhhd3RlIENvbnN1bHRpbmcxKDAmBgNVBAsTH0NlcnRpZmljYXRpb24gU2VydmljZXMg RGl2aXNpb24xJDAiBgNVBAMTG1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBDQTErMCkGCSqGSIb3 DQEJARYccGVyc29uYWwtZnJlZW1haWxAdGhhd3RlLmNvbTAeFw05NjAxMDEwMDAwMDBaFw0yMDEy MzEyMzU5NTlaMIHRMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQH EwlDYXBlIFRvd24xGjAYBgNVBAoTEVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZp Y2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1h aWwgQ0ExKzApBgkqhkiG9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wgZ8wDQYJ KoZIhvcNAQEBBQADgY0AMIGJAoGBANRp19SwlGRbcelH2AxRtupykbCEXn0tDY97Et+FJXUodDpC LGMnn5V7S+9+GYcdhuqj3bnOlmQawhRuRKx85o/oTQ9xH0A4pgCjh3j2+ZSGXq3qwF5269kUo11u enwMpUtVfwYZKX+emibVars4JAhqmMex2qOYkf152+VaxBy5AgMBAAGjEzARMA8GA1UdEwEB/wQF MAMBAf8wDQYJKoZIhvcNAQEEBQADgYEAx+ySfk749ZalZ2IqpPBNEWDQb41gWGGsJrtSNVwIzzD7 qEqWih9iQiOMFw/0umScF6xHKd+dmF7SbGBxXKKs3Hnj524ARx+1DSjoAp3kmv0T9KbZfLH43F8j JgmRgHPQFBveQ6mDJfLmnC8Vyv6mq4oHdYsM3VGEa+T40c53ooEwggM/MIICqKADAgECAgENMA0G CSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJaQTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYD VQQHEwlDYXBlIFRvd24xGjAYBgNVBAoTEVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0 aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJl ZW1haWwgQ0ExKzApBgkqhkiG9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcN MDMwNzE3MDAwMDAwWhcNMTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhh d3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt YWlsIElzc3VpbmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5o wHUEcJ3f6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH 5/EfkTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8v Y3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8EBAMCAQYw KQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqGSIb3DQEBBQUA A4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQcUCCTcDz9reFhYsPZ Ohl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bGCE6u9uo05RAaWzVNd+NW IXiC3CEZNd4ksdMdRv9dX2VPMYIC+DCCAvQCAQEwdjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMc VGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZy ZWVtYWlsIElzc3VpbmcgQ0ECEEdYYafa1wkm0CP4DOffAiswCQYFKw4DAhoFAKCCAdgwGAYJKoZI hvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMDYwNjIzMDg0NjA5WjAjBgkqhkiG 9w0BCQQxFgQUy4JGRyOe0QxzRJigiwOh9vwe/aEwZwYJKoZIhvcNAQkPMVowWDAKBggqhkiG9w0D BzAOBggqhkiG9w0DAgICAIAwDQYIKoZIhvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgw BwYFKw4DAhowCgYIKoZIhvcNAgUwgYUGCSsGAQQBgjcQBDF4MHYwYjELMAkGA1UEBhMCWkExJTAj BgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJz b25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBHWGGn2tcJJtAj+Azn3wIrMIGHBgsqhkiG9w0BCRAC CzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0 ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBHWGGn2tcJ JtAj+Azn3wIrMA0GCSqGSIb3DQEBAQUABIGAc9gJyKc9j2hOO8B6zDTg4C3kd5vBbuUMpwLaPdsp zVFEITl+29THiztjKlDV85kmspujn4u5K8E/C5sRgOYAdAcZMyaSiAsCHxnf8fZgTdpKZaj168Ky qqS66WREM+Bev/cSeQAvM588V1F9fsEA7vu/4oOu1GXlAPaD9tFvsPIAAAAAAAA= ------=_NextPart_000_001D_01C696B2.3CB444F0-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08:55:24 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 44A3316A4A0 for ; Fri, 23 Jun 2006 08:55:24 +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 80FDB43D72 for ; Fri, 23 Jun 2006 08:55:18 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.137] (helo=anti-virus01-08) by smtp-out5.blueyonder.co.uk with smtp (Exim 4.52) id 1FthRd-0008SU-Hu; Fri, 23 Jun 2006 09:55:17 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out6.blueyonder.co.uk with esmtp (Exim 4.52) id 1FthRc-0005E9-OT; Fri, 23 Jun 2006 09:55:16 +0100 Message-ID: <449BAC74.7050903@dial.pipex.com> Date: Fri, 23 Jun 2006 09:55:16 +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: Jon Falconer References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: problem creating filesystem snapshot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 08:55:24 -0000 Jon Falconer wrote: >Greetings, > >I needed to dump the partitions on a running FreeBSD 6.1R system so I >could duplicate them on a test server. The server is a Dell 2850 with the >PERC 4e/Di RAID controller with 5 x 73GB disk array. So I thought I would >try using the snapshot feature. I used the mksnap_ffs to create a snapshot >of a 20GB partition. The command completed in about 15 - 20 seconds. I was >then able to run dump against the new snap file and all seemed ok. I then >tried the same thing on a 225GB partition. The mksnap_ffs command took >over 30 minutes to complete. But every access to that partition after that >just hung. I wanted to see the size of the snap file so I typed ls -l >/home/.snap (where I had told mksnap_ffs to put the snap file) and it >hung. Same thing from several logins. I figured I would have to reset the >box so I typed sync, and that hung. All the time, access to other >partitions was just fine (/, /usr, /var). > >All partitions (except /) were created with soft update enables (default >when installing.) > >The questions. Is there anything magic about the /xxx/.snap directory in >each partition? When I created the snap file for the 20GB partition, I did >not put it inside the /xxx/.snap directory, and it worked fine. Is there >some partition size restrictions? > > > You don't need to make snapshots yourself to dump the filesystems. Dump will do it for you: -L This option is to notify dump that it is dumping a live file sys- tem. To obtain a consistent dump image, dump takes a snapshot of the file system in the .snap directory in the root of the file system being dumped and then does a dump of the snapshot. The snapshot is removed when the dump is complete. This option is ignored for unmounted or read-only file systems. If the .snap directory does not exist in the root of the file system being dumped, a warning will be issued and the dump will revert to the standard behavior. This problem can be corrected by creating a .snap directory in the root of the file system to be dumped; its owner should be ``root'', its group should be ``operator'', and its mode should be ``0770''. There were problems reported with snapshots of large filesystems in earlier releases but I have no idea of the status of any fixes/changes or what constituted "large". You could try sdearching the PRs from the FreeBSD web site. FWIW a 95Gb partition under 5.4 snapshots in ~30 seconds for me and there are no lockup issues to date. A 20Gb partition I would expect to take a handful of seconds. There were also issues about multiple snapshots of the same filesystem causing problems. Did you make multiple snapshots when you were testing and did you delete them when you had finished with them? I don't believe there is anything special about .snap directory - just a convention and it's where dump will make its snapshots. --Alex PS We use snapshots on the same hardware as you - 2850 & PERC4e/Di but with RAID-1 rather than whatever you are running. I don't think any of that makes any difference though. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 08:59: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 B8E2916A494 for ; Fri, 23 Jun 2006 08:59:25 +0000 (UTC) (envelope-from andreas-ml@wideroe.net) Received: from malibu.wideroe.net (malibu.wideroe.net [193.71.196.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23B6543D48 for ; Fri, 23 Jun 2006 08:59:24 +0000 (GMT) (envelope-from andreas-ml@wideroe.net) Received: from hangloose.wideroe.net (193.80-202-150.nextgentel.com [80.202.150.193]) (authenticated bits=0) by malibu.wideroe.net (8.12.10/8.12.10) with ESMTP id k5N8xMFt033610 (version=TLSv1/SSLv3 cipher=EDH-DSS-DES-CBC3-SHA bits=168 verify=NO) for ; Fri, 23 Jun 2006 10:59:22 +0200 (CEST) (envelope-from andreas-ml@wideroe.net) Message-Id: <7.0.1.0.2.20060623105612.06592290@wideroe.net> X-Mailer: QUALCOMM Windows Eudora Version 7.0.1.0 Date: Fri, 23 Jun 2006 10:59:16 +0200 To: freebsd-questions@freebsd.org From: Andreas Wideroe Andersen Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Spam-Status: No, score=-2.2 required=7.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on malibu.wideroe.net Subject: Portupgrade install 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: Fri, 23 Jun 2006 08:59:25 -0000 I can't seem to install portupgrade on my system. I'm running 4.7 STABLE (and I can't upgrade until later in July). /usr/ports/sysutils/portupgrade #] make install clean "/usr/ports/Mk/bsd.port.mk", line 1618: warning: String comparison operator should be either == or != "/usr/ports/Mk/bsd.port.mk", line 1618: Malformed conditional (${OSVERSION} < 504105 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700012) || (${OSVERSION} >= 600000 && ${OSVERSION} < 600104)) "/usr/ports/Mk/bsd.port.mk", line 1618: Missing dependency operator "/usr/ports/Mk/bsd.port.mk", line 5651: if-less endif "/usr/ports/Mk/bsd.port.mk", line 5651: Need an operator make: fatal errors encountered -- cannot continue Any idea? Thanks, Andreas From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 09:03: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 62F6216A49A for ; Fri, 23 Jun 2006 09:03:09 +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 5428243D62 for ; Fri, 23 Jun 2006 09:03:04 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.137] (helo=anti-virus01-08) by smtp-out4.blueyonder.co.uk with smtp (Exim 4.52) id 1FthZ9-0003Hk-2A; Fri, 23 Jun 2006 10:03:03 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out5.blueyonder.co.uk with esmtp (Exim 4.52) id 1FthZ8-00057t-2d; Fri, 23 Jun 2006 10:03:02 +0100 Message-ID: <449BAE45.7030705@dial.pipex.com> Date: Fri, 23 Jun 2006 10:03: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: Alex Franks References: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> In-Reply-To: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Hot-Swapping hard drives on Dell PowerEdge 2850 running FBSD 5.5-PRE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 09:03:09 -0000 Alex Franks wrote: > Hello all, > > I'm getting ready to install 2 identical drives into the available > drive bays in my 2850. However, it would be highly preferable that > this machine NOT be shut down in order to install these drives. I know > from looking at the docs that these drive bays are hot-swappable, but > I'd like to know before I attempt this that someone else out there has > successfully performed a hot-swap or hot-install of drives on a 2850 > or comparable Dell PowerEdge running FreeBSD. RAID-1 I assume and PERC 4e/Di. Yes, did it when testing fresh machines. The controller BIOS has a setting for how much resource to allocate to the recovery of the inserted drive (0?-100%); the lower you set it the slower it will recover the disk, but the higher you set it the slower the machine will go. I think we went for 70% as the machine never gets *that* heavy disk usage. If the machine isn't live yet, then just do a basic install from CD (<30 mins) and then try the hotswap test. That way you can't lose any data even if something goes wrong. My advice with these machines is never to swap any disk with the machine off - the controller gets confused. Stick with hotswapping and it seems fine. I think you can set up an auto-spare so that if a disk fails the array is rebuilt automatically using the spare. Use sysutils/megarc for monitoring the RAID from BSD. --Alex From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 09:09: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 11B9616A4A5 for ; Fri, 23 Jun 2006 09:09:25 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out2.blueyonder.co.uk (smtp-out2.blueyonder.co.uk [195.188.213.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FF9D43D49 for ; Fri, 23 Jun 2006 09:09:22 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.138] (helo=anti-virus01-09) by smtp-out2.blueyonder.co.uk with smtp (Exim 4.52) id 1FthfE-0005c0-TQ; Fri, 23 Jun 2006 10:09:20 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out4.blueyonder.co.uk with esmtp (Exim 4.52) id 1FthfB-0004f7-AT; Fri, 23 Jun 2006 10:09:17 +0100 Message-ID: <449BAFBD.1070305@dial.pipex.com> Date: Fri, 23 Jun 2006 10:09:17 +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: Matt Ruzicka References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Tracking if disk is busy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 09:09:25 -0000 Matt Ruzicka wrote: > We've got a couple servers that appear to have particularly busy disks > and I was trying to determine if there is a way to more easily poll > this data for tracking. > > I'm not sure if this is one of those can't see the forest for the > trees issues or not, but the only means that I am familiar with to see > the percentage of time the disk is busy is to run 'systat -vmstat'. I > was hoping for something more concise that I could run periodically > and maybe even graph (realizing that watching this might well distort > the results). > > It appears that iostat on Solaris gives this information, but I can't > seem to mimic this functionality with FreeBSD. > > Are there other ways in FreeBSD to pull the percentage of time the > disk is busy? You can use plain old vmstat to see blocks being transferred. --Alex From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 09: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 8E84016A47E for ; Fri, 23 Jun 2006 09:26:08 +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 DE87543D48 for ; Fri, 23 Jun 2006 09:26:06 +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 k5N9Q5EY010644; Fri, 23 Jun 2006 12:26:05 +0300 From: Nikos Vassiliadis To: freebsd-questions@freebsd.org Date: Fri, 23 Jun 2006 12:22:07 +0300 User-Agent: KMail/1.9.1 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: <200606231222.07599.nvass@teledomenet.gr> Cc: Jon Falconer Subject: Re: problem creating filesystem snapshot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 09:26:08 -0000 On Thursday 22 June 2006 21:04, Jon Falconer wrote: > Greetings, > > I needed to dump the partitions on a running FreeBSD 6.1R system so I > could duplicate them on a test server. The server is a Dell 2850 with the > PERC 4e/Di RAID controller with 5 x 73GB disk array. So I thought I would > try using the snapshot feature. I used the mksnap_ffs to create a snapshot > of a 20GB partition. The command completed in about 15 - 20 seconds. I was > then able to run dump against the new snap file and all seemed ok. I then > tried the same thing on a 225GB partition. The mksnap_ffs command took > over 30 minutes to complete. But every access to that partition after that > just hung. I wanted to see the size of the snap file so I typed ls -l > /home/.snap (where I had told mksnap_ffs to put the snap file) and it > hung. Same thing from several logins. I figured I would have to reset the > box so I typed sync, and that hung. All the time, access to other > partitions was just fine (/, /usr, /var). > > All partitions (except /) were created with soft update enables (default > when installing.) > > The questions. Is there anything magic about the /xxx/.snap directory in > each partition? When I created the snap file for the 20GB partition, I did > not put it inside the /xxx/.snap directory, and it worked fine. No, there is no magic in .snap directories. You can create a snapshot anywhere you want. You can find all snapshots in a UFS with the snapinfo(8) utility. > Is there > some partition size restrictions? Can't answer this question, but there are a few commits after 6.1-RELEASE so you can try updating to 6.1-STABLE and see what's going on. Also, why don't you ask freebsd-fs@? From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 10:13: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 4690316A49A for ; Fri, 23 Jun 2006 10:13:52 +0000 (UTC) (envelope-from juancr@dsa.es) Received: from llca513-a.servidoresdns.net (llca513-a.servidoresdns.net [217.76.128.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5147443D7C for ; Fri, 23 Jun 2006 10:13:42 +0000 (GMT) (envelope-from juancr@dsa.es) Received: from mail.dsa.es (localhost.localdomain [127.0.0.1]) by llca513-a.servidoresdns.net (Postfix) with SMTP id 2652D81C420 for ; Fri, 23 Jun 2006 12:13:41 +0200 (CEST) Received: from 217.114.136.133 (SquirrelMail authenticated user faf352c) by llca513-a.servidoresdns.net with HTTP; Fri, 23 Jun 2006 10:13:41 -0000 (GMT) Message-ID: <4941.217.114.136.133.1151057621.squirrel@llca513-a.servidoresdns.net> Date: Fri, 23 Jun 2006 10:13:41 -0000 (GMT) From: "DSA - JCR" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.2-0.1.7.x MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal Subject: FreeBSD 6.1 amd64 and Samba 3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 10:13:52 -0000 HI all again I am installing (trying to) Samba 3 from ports nad portaudit says that there is security advice with it and does not let me to install. Then I tried Samba 2 which is in ports and also another security advice this case with an integer overflow. As I can not install from ports, I tried from packages. I downloaded and make Samba 3 package (the last one in packages ftp), but when it installs says that there is 5 packages that need to update. When I download one of them "liberr", and try to update it says that it can not update because affect to about 25 0r 30 more packages (kde between others) So, I continued whitout update the packages, and tried to launch Samba 3 in order to see if I can use it, but with swat gives me errors in lines and does not saw me nothing. I can not make it to work. Also I observ that there is no smb.conf.default in any place. I need to install Samba, what must I do? best regards Juan Coruña Desarrollo de Software Atlantico From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 11:03: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 0F1C316A4A6 for ; Fri, 23 Jun 2006 11:03:05 +0000 (UTC) (envelope-from outsidefactor@iinet.net.au) Received: from customer-domains.icp-qv1-irony8.iinet.net.au (customer-domains.icp-qv1-irony8.iinet.net.au [203.59.1.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56ECA43D48 for ; Fri, 23 Jun 2006 11:03:04 +0000 (GMT) (envelope-from outsidefactor@iinet.net.au) Received: from 124-168-19-56.dyn.iinet.net.au (HELO SAURON) ([124.168.19.56]) by customer-domains.icp-qv1-irony8.iinet.net.au with ESMTP; 23 Jun 2006 19:02:59 +0800 Message-Id: <53b0r3$amsu53@iinet-mail.icp-qv1-irony8.iinet.net.au> X-BrightmailFiltered: true X-Brightmail-Tracker: AAAAAA== X-IronPort-AV: i="4.06,168,1149436800"; d="scan'208"; a="359561379:sNHT18211828" From: "Christopher Martin" To: Date: Fri, 23 Jun 2006 21:03:03 +1000 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcaWtJlQ7wa6T5TNQZqSQXekEahkAQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2663 Subject: Cluster File 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: Fri, 23 Jun 2006 11:03:05 -0000 Is there, or are there any plans for, a cluster file system for FreeBSD? Does anyone know of an open-source one that could be ported? Would be great to have two servers dishing out MySQL, ftp, etc from a single chunk of RAID rather than having to muck about replicating between the two boxen. C Martin From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 11:36: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 71D1E16A49A; Fri, 23 Jun 2006 11:36:36 +0000 (UTC) (envelope-from rubenl@bloemgarten.demon.nl) Received: from post-25.mail.nl.demon.net (post-25.mail.nl.demon.net [194.159.73.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4A9D43D49; Fri, 23 Jun 2006 11:36:35 +0000 (GMT) (envelope-from rubenl@bloemgarten.demon.nl) Received: from axeldev.demon.nl ([83.160.42.116]:53421 helo=abubbletprpdda) by post-25.mail.nl.demon.net with esmtp (Exim 4.51) id 1Ftjxi-000C5h-Hw; Fri, 23 Jun 2006 11:36:34 +0000 From: "Ruben Bloemgarten" To: "'Sven Hazejager'" , , Date: Fri, 23 Jun 2006 13:37:14 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Thread-Index: AcaVbnGDqABZERGVStetswNs6E1LcwBSnreQ Message-Id: <20060623113635.C4A9D43D49@mx1.FreeBSD.org> Cc: Subject: RE: HELP! Filesystem EMPTY after upgrade from 4.11 to 6.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ruben@bloemgarten.demon.nl List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 11:36:36 -0000 Hi Sven, How was the disk labeled originally? Is it possible that /usr/home did not reside on a dedicated slice and when you newfs'd /usr you wiped /usr/home ? Regards, Ruben -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Sven Hazejager Sent: June 21, 2006 10:07 PM To: freebsd-questions@freebsd.org; freebsd-fs@freebsd.org Subject: HELP! Filesystem EMPTY after upgrade from 4.11 to 6.1 Hi all! I have quite a big problem here.... I've upgraded my FreeBSD 4.11 to 6.1. Basically, I did a newfs of / and /usr and reinstalled from scratch. That worked. Rebooted in 6.1 single user mode, mounted /, /usr and /usr/home. The latter I did not touch and I need to save that partition. /usr/home had all the files it needed to have. PROBLEM: mount said soft-updates were not set on /usr/home. So I did umount /usr/home, tunefs -n enable /usr/home, mount /usr/home again... EMPTY!!!! What has gone wrong? I did fsck (in read-only), no problems, rebooted the system, did tunefs -n disable, still no luck. I really need those files guys... Please help urgently. Many thanks, Sven Hazejager _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.2/370 - Release Date: 06/20/2006 -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.9.2/370 - Release Date: 06/20/2006 From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 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 1306B16A4CB for ; Fri, 23 Jun 2006 11:38:07 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E8FC43D6A for ; Fri, 23 Jun 2006 11:38:05 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id 378E47E8D2; Fri, 23 Jun 2006 07:38:04 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yBW1WTd4EtYG; Fri, 23 Jun 2006 07:38:03 -0400 (EDT) Received: from [192.168.0.3] (unknown [74.128.244.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id A6F467E8D1; Fri, 23 Jun 2006 07:38:03 -0400 (EDT) In-Reply-To: <20060623042322.GD95588@dan.emsphone.com> References: <7CEA25D4-9A1F-47BB-AE9B-79E3ADE6F939@netmusician.org> <20060623042322.GD95588@dan.emsphone.com> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <7D6333E0-BA1F-4A95-AC1A-573489758E44@netmusician.org> Content-Transfer-Encoding: 7bit From: Joe Auty Date: Fri, 23 Jun 2006 07:38:11 -0400 To: Dan Nelson X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Gpgmail-State: signed X-Mailer: Apple Mail (2.750) Cc: FreeBSD Questions Subject: Re: problems with strace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 11:38:07 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Jun 23, 2006, at 12:23 AM, Dan Nelson wrote: > In the last episode (Jun 23), Joe Auty said: >> No matter what command I run with strace, I have the same problem: >> >> # strace ls >> strace: open("/proc/...", ...): No such file or directory >> trouble opening proc file >> >> Any ideas why this is? > > Is /proc mounted? > That was easy, no is wasn't =) I take it proc is optional in FreeBSD? - ----------- Joe Auty NetMusician: web publishing software for musicians http://www.netmusician.org joe@netmusician.org -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFEm9KmCgdfeCwsL5ERAuwsAJ0dcANwxX0wP7qWruKS6zRUaVisTQCgldP1 dYrSP9u3iG+paGQKsfSIW9w= =tllO -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 11:47: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 1FAAD16A4A6 for ; Fri, 23 Jun 2006 11:47:50 +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 F40E943D82 for ; Fri, 23 Jun 2006 11:47:47 +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 k5NBljEY013761; Fri, 23 Jun 2006 14:47:45 +0300 From: Nikos Vassiliadis To: freebsd-questions@freebsd.org Date: Fri, 23 Jun 2006 14:43:47 +0300 User-Agent: KMail/1.9.1 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: <200606231443.47994.nvass@teledomenet.gr> Cc: Matt Ruzicka Subject: Re: Tracking if disk is busy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 11:47:50 -0000 On Friday 23 June 2006 01:12, Matt Ruzicka wrote: > We've got a couple servers that appear to have particularly busy disks and > I was trying to determine if there is a way to more easily poll this data > for tracking. > > I'm not sure if this is one of those can't see the forest for the trees > issues or not, but the only means that I am familiar with to see the > percentage of time the disk is busy is to run 'systat -vmstat'. I was > hoping for something more concise that I could run periodically and maybe > even graph (realizing that watching this might well distort the results). > > It appears that iostat on Solaris gives this information, but I can't seem > to mimic this functionality with FreeBSD. > > Are there other ways in FreeBSD to pull the percentage of time the disk is > busy? > gstat gives percentage load per (device|slice|partition) which is what I think you need. but it's written for interactive use, it issues commands to the terminal so you cannot have its output to file... From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 11:52: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 995F516A47C for ; Fri, 23 Jun 2006 11:52:34 +0000 (UTC) (envelope-from mulgajohn@bigpond.com) Received: from omta04ps.mx.bigpond.com (omta04ps.mx.bigpond.com [144.140.83.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6E0343D46 for ; Fri, 23 Jun 2006 11:52:33 +0000 (GMT) (envelope-from mulgajohn@bigpond.com) Received: from mathew ([58.165.8.223]) by omta04ps.mx.bigpond.com with SMTP id <20060623115230.NKIW22738.omta04ps.mx.bigpond.com@mathew> for ; Fri, 23 Jun 2006 11:52:30 +0000 Message-ID: <000601c696bb$87a33a30$df08a53a@mathew> From: "John Andrewartha" To: "'freebsd-questions@FreeBSD.ORG'" Date: Fri, 23 Jun 2006 21:52:37 +1000 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: USB X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 11:52:34 -0000 =20 Hi and thanks for your help in advance, My problems with USB devices persists. The astute reader may remember. The OS is FreeBSD 6.1-RELEASE. The problem, my USB devices and how to talk to them as serialdevices. The devices show up when I run usbdevs, and again when plugged in and = out. Drivers load and all seems to be correct. Until I try to access the = device. There are no device entry's except, usbd and ugenN. This make getting ppp to work with my usb modem a bit difficult. Loading ucom does not fix the problem nor does umodem. On the other hand the usb mouse runs perfectly, logitech, has its own = driver. I assumed and it appears incorrectly that the device entry's (/dev ) = where created dynamical, with the now absence of the MAKEDEV in /dev. = HELP please. I am obviously doing something wrong!!=20 I would appreciate replies direct getting the daily digests are = difficult at the moment. Regards and again thanks=20 John mailto://mulgajohn@bigpond.com=20 From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 11:57: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 E758416A49E for ; Fri, 23 Jun 2006 11:57:30 +0000 (UTC) (envelope-from ytresearch@hughes.net) Received: from n120.sc0.cp.net (smtpout1079.sc0.cp.net [64.97.144.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id A97E443D53 for ; Fri, 23 Jun 2006 11:57:30 +0000 (GMT) (envelope-from ytresearch@hughes.net) Received: from [192.168.1.100] (67.47.213.85) by n120.sc0.cp.net (7.2.069.1) (authenticated as eagletree@hughes.net) id 449885240007C966 for freebsd-questions@freebsd.org; Fri, 23 Jun 2006 11:57:25 +0000 Mime-Version: 1.0 (Apple Message framework v750) Content-Transfer-Encoding: 7bit Message-Id: <6C8C7DFA-4F36-4FA6-816F-744149C6C747@hughes.net> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: "freebsd-questions@FreeBSD. ORG" From: YTResearch Date: Fri, 23 Jun 2006 04:57:17 -0700 X-Mailer: Apple Mail (2.750) Subject: FreeBSD and VMWare X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 11:57:31 -0000 I noticed that someone asked questions concerning VMware on FreeBSD which was my first realization that the two even go together. I have the opportunity to advocate FreeBSD as a possible replacement to run that software as a parting shot in the next week prior to finally retiring from that organization. They are a very large windows operation but are putting in some Linux/VMware to reduce the windows server hardware platforms (I already know that this is of dubious value when they could natively migrate and just eliminate the servers, efficiency is not an option in the corporate world paradigms). Before I actually recommend they do this on ~80 servers, I would like to verify that it really can be done to move to a FreeBSD 6.1 RELEASE/ VMware environment to support W2K3 and E2K3 on a virtual machine? Has anyone done this? From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 12:27: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 C561A16A47B for ; Fri, 23 Jun 2006 12:27:16 +0000 (UTC) (envelope-from maxsec@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.232]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD81C43D6D for ; Fri, 23 Jun 2006 12:27:10 +0000 (GMT) (envelope-from maxsec@gmail.com) Received: by wr-out-0506.google.com with SMTP id 50so609863wri for ; Fri, 23 Jun 2006 05:27:10 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:subject:cc:in-reply-to:mime-version:content-type:references; b=NbbH+GOnwlEgZb2StYcjjWpWtBS0h5OV/YMAxwAUK3E6uCveqh9Le7DbplPdnDaAOgYH4jGFsA9uPbTdy30Hm3bZxrN/GBAYedM7W6MJzoezLzgBU/QfWbrTzTW1HdCyHsnJUfo3/cFDZEiyB2HdBc5zOvwRsK+maCn3La6EWfc= Received: by 10.54.61.6 with SMTP id j6mr4449229wra; Fri, 23 Jun 2006 05:27:10 -0700 (PDT) Received: by 10.54.107.12 with HTTP; Fri, 23 Jun 2006 05:27:09 -0700 (PDT) Message-ID: <72cf361e0606230527m6aa44a9bndcd3144d449042d6@mail.gmail.com> Date: Fri, 23 Jun 2006 13:27:09 +0100 From: "Martin Hepworth" Cc: freebsd-questions@freebsd.org In-Reply-To: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> MIME-Version: 1.0 References: <7.0.1.0.2.20060623083007.035c2010@wideroe.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: Re: Backup sollutions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 12:27:16 -0000 Another vote for amanda - no gui, the the command line is easy. -- Martin On 6/23/06, Andreas Wideroe Andersen wrote: > > Hi, > I'm looking for a free (ports?) backup sollutions for FreeBSD > servers. I would like to have something similare to IBM's Tivoli > where you install a client on each server and administer the backup > from another server with a web gui. > > Are there similare sollutions found for FreeBSD? > > Thanks! > Andreas > > _______________________________________________ > 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 Jun 23 12:49: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 A355816A47B for ; Fri, 23 Jun 2006 12:49:40 +0000 (UTC) (envelope-from asg@suedfactoring.com) Received: from sffwb.suedfactoring.com (pd95b40f5.dip0.t-ipconnect.de [217.91.64.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8827A43D46 for ; Fri, 23 Jun 2006 12:49:38 +0000 (GMT) (envelope-from asg@suedfactoring.com) Received: from localhost (localhost [127.0.0.1]) by sffwb.suedfactoring.com (Postfix) with ESMTP id CC83A7EA5C; Fri, 23 Jun 2006 14:49:37 +0200 (CEST) Received: from sffwb.suedfactoring.com ([127.0.0.1]) by localhost (sffwd0.suedfactoring.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 59243-06; Fri, 23 Jun 2006 14:49:37 +0200 (CEST) Received: by sffwb.suedfactoring.com (Postfix, from userid 1011) id 848AE7EA5B; Fri, 23 Jun 2006 14:49:37 +0200 (CEST) Received: from [10.4.1.186] (unknown [10.4.1.186]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by sffwb.suedfactoring.com (Postfix) with ESMTP id 662CD7E992; Fri, 23 Jun 2006 14:49:37 +0200 (CEST) From: "Axel S. Gruner" To: Andreas Wideroe Andersen In-Reply-To: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> References: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> Content-Type: text/plain Date: Fri, 23 Jun 2006 14:46:11 +0200 Message-Id: <1151066771.2990.0.camel@sn001.suedfac.com> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Copyrighted-Material: This material is copyrighted X-Virus-Scanned: amavisd-new at suedfactoring.de Cc: freebsd-questions@freebsd.org Subject: Re: Backup sollutions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 12:49:40 -0000 Am Freitag, den 23.06.2006, 08:33 +0200 schrieb Andreas Wideroe Andersen: > Hi, > I'm looking for a free (ports?) backup sollutions for FreeBSD > servers. I would like to have something similare to IBM's Tivoli > where you install a client on each server and administer the backup > from another server with a web gui. > > Are there similare sollutions found for FreeBSD? Give "bacula" a try, its in the ports. There is also a GUI for restore and a webinterface. You just need to install the bacula-client on the clients you wish to backup and configure the backup-server what to backup. Works perfect here with IBM Ultrium LTO2 Tapes. asg ######################################################################## # DISCLAIMER # # # # Der Inhalt dieser E-Mail ist vertraulich. Falls Sie nicht der # # angegebene Empfaenger sind oder falls diese Email irrtuemlich an Sie # # addressiert wurde, verstaendigen Sie bitte den Absender sofort und # # loeschen Sie die Email umgehend. Das unerlaubte Kopieren sowie die # # unbefugte Uebermittlung sind nicht gestattet. # # Die Sicherheit von Uebermittlungen per Email kann nicht garantiert # # werden. Falls Sie eine Bestaetigung wuenschen, fordern Sie bitte den # # Inhalt der Email als Hardcopy an. # # # # # # The contents of this e-mail are confidential. # # If you are not the named addressee you should not disseminate, # # distribute or copy this e-mail. Please notify the sender immediately # # if you have received this e-mail by mistake and delete this e-mail # # from your system. Finally, the recipient should check this email and # # any attachments for the presence of viruses. The company accepts no # # liability for any damage caused by any virus transmitted by this # # email. # # # # SuedFactoring GmbH, Heilbronner Strasse 86, 70191 Stuttgart # ######################################################################## From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 12: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 C2FF316A555 for ; Fri, 23 Jun 2006 12:49:44 +0000 (UTC) (envelope-from asg@suedfactoring.com) Received: from sffwb.suedfactoring.com (pd95b40f5.dip0.t-ipconnect.de [217.91.64.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 091DA43D46 for ; Fri, 23 Jun 2006 12:49:06 +0000 (GMT) (envelope-from asg@suedfactoring.com) Received: from localhost (localhost [127.0.0.1]) by sffwb.suedfactoring.com (Postfix) with ESMTP id 15D9B7EA4E; Fri, 23 Jun 2006 14:49:05 +0200 (CEST) Received: from sffwb.suedfactoring.com ([127.0.0.1]) by localhost (sffwd0.suedfactoring.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 59243-05; Fri, 23 Jun 2006 14:49:00 +0200 (CEST) Received: by sffwb.suedfactoring.com (Postfix, from userid 1011) id 1A31E7EA58; Fri, 23 Jun 2006 14:49:00 +0200 (CEST) Received: from [10.4.1.186] (unknown [10.4.1.186]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by sffwb.suedfactoring.com (Postfix) with ESMTP id C9AF27E97F; Fri, 23 Jun 2006 14:48:59 +0200 (CEST) From: "Axel S. Gruner" To: Andreas Wideroe Andersen In-Reply-To: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> References: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> Content-Type: text/plain Date: Fri, 23 Jun 2006 14:45:32 +0200 Message-Id: <1151066733.703.1.camel@sn001.suedfac.com> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Copyrighted-Material: This material is copyrighted X-Virus-Scanned: amavisd-new at suedfactoring.de Cc: freebsd-questions@freebsd.org Subject: Re: Backup sollutions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 12:49:44 -0000 Am Freitag, den 23.06.2006, 08:33 +0200 schrieb Andreas Wideroe Andersen: > Hi, > I'm looking for a free (ports?) backup sollutions for FreeBSD > servers. I would like to have something similare to IBM's Tivoli > where you install a client on each server and administer the backup > from another server with a web gui. > > Are there similare sollutions found for FreeBSD? Give "bacula" a try, its in the ports. There is also a GUI for restore and a webinterface. You just need to install the bacula-client on the clients you wish to backup and configure the backup-server what to backup. Works perfect here with IBM Ultrium LTO2 Tapes. asg ######################################################################## # DISCLAIMER # # # # Der Inhalt dieser E-Mail ist vertraulich. Falls Sie nicht der # # angegebene Empfaenger sind oder falls diese Email irrtuemlich an Sie # # addressiert wurde, verstaendigen Sie bitte den Absender sofort und # # loeschen Sie die Email umgehend. Das unerlaubte Kopieren sowie die # # unbefugte Uebermittlung sind nicht gestattet. # # Die Sicherheit von Uebermittlungen per Email kann nicht garantiert # # werden. Falls Sie eine Bestaetigung wuenschen, fordern Sie bitte den # # Inhalt der Email als Hardcopy an. # # # # # # The contents of this e-mail are confidential. # # If you are not the named addressee you should not disseminate, # # distribute or copy this e-mail. Please notify the sender immediately # # if you have received this e-mail by mistake and delete this e-mail # # from your system. Finally, the recipient should check this email and # # any attachments for the presence of viruses. The company accepts no # # liability for any damage caused by any virus transmitted by this # # email. # # # # SuedFactoring GmbH, Heilbronner Strasse 86, 70191 Stuttgart # ######################################################################## From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 12:51: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 52EC816A4A0 for ; Fri, 23 Jun 2006 12:51:03 +0000 (UTC) (envelope-from anrays@gmail.com) Received: from tor.farlep.net (tor.farlep.net [213.130.1.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6E3743D62 for ; Fri, 23 Jun 2006 12:50:53 +0000 (GMT) (envelope-from anrays@gmail.com) Received: from santinel.home.ua (nas-6-149.dialup.farlep.net [213.130.9.150]) by tor.farlep.net with ESMTP id k5NCoTBe016122; Fri, 23 Jun 2006 15:50:46 +0300 Received: from anray by santinel.home.ua with local (Exim 4.62; FreeBSD) id 1Fthkx-000DPa-4u; Fri, 23 Jun 2006 12:15:15 +0300 To: Andreas Wideroe Andersen References: <7.0.1.0.2.20060623105612.06592290@wideroe.net> From: Andrey Slusar Mail-Followup-To: Andreas Wideroe Andersen , freebsd-questions@freebsd.org Date: Fri, 23 Jun 2006 12:15:15 +0300 In-Reply-To: <7.0.1.0.2.20060623105612.06592290@wideroe.net> (Andreas Wideroe Andersen's message of "Fri, 23 Jun 2006 10:59:16 +0200") Message-ID: <86irmsw7vg.fsf@santinel.home.ua> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.5-b27 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-SMTP-Vilter-Version: 1.1.8 X-SMTP-Vilter-Virus-Backend: clamd X-SMTP-Vilter-Status: clean X-SMTP-Vilter-clamd-Virus-Status: clean Cc: freebsd-questions@freebsd.org Subject: Re: Portupgrade install 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: Fri, 23 Jun 2006 12:51:03 -0000 Fri, 23 Jun 2006 10:59:16 +0200, Andreas Wideroe Andersen wrote: > I can't seem to install portupgrade on my system. I'm running 4.7 > STABLE (and I can't upgrade until later in July). > /usr/ports/sysutils/portupgrade #] make install clean > "/usr/ports/Mk/bsd.port.mk", line 1618: warning: String comparison > operator should be either == or != > "/usr/ports/Mk/bsd.port.mk", line 1618: Malformed conditional > (${OSVERSION} < 504105 || (${OSVERSION} >= 700000 && ${OSVERSION} < > 700012) || (${OSVERSION} >= 600000 && ${OSVERSION} < 600104)) > "/usr/ports/Mk/bsd.port.mk", line 1618: Missing dependency operator > "/usr/ports/Mk/bsd.port.mk", line 5651: if-less endif > "/usr/ports/Mk/bsd.port.mk", line 5651: Need an operator > make: fatal errors encountered -- cannot continue > Any idea? Try this patch: --8<---------------cut here---------------start------------->8--- --- bsd.port.mk.orig Fri Jun 23 12:10:41 2006 +++ bsd.port.mk Fri Jun 23 12:11:30 2006 @@ -1613,11 +1613,7 @@ LDCONFIG32_DIR= libdata/ldconfig32 .if defined(USE_LDCONFIG) || defined(USE_LDCONFIG32) -.if ${OSVERSION} < 504105 || \ - (${OSVERSION} >= 700000 && ${OSVERSION} < 700012) || \ - (${OSVERSION} >= 600000 && ${OSVERSION} < 600104) RUN_DEPENDS+= ${LOCALBASE}/${LDCONFIG_DIR}:${PORTSDIR}/misc/ldconfig_compat -.endif .if defined(USE_LDCONFIG) && ${USE_LDCONFIG:L} == "yes" USE_LDCONFIG= ${PREFIX}/lib .endif --8<---------------cut here---------------end--------------->8--- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 12:52: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 7A09816A49A for ; Fri, 23 Jun 2006 12:52:46 +0000 (UTC) (envelope-from dthomas53@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 0CACA43D5F for ; Fri, 23 Jun 2006 12:52:01 +0000 (GMT) (envelope-from dthomas53@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so632912nzi for ; Fri, 23 Jun 2006 05:52: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:cc:in-reply-to:mime-version:content-type:references; b=uuBtFtVAaLIMH3YPigQitsqLI+bgjj6geyKHVEHbTpVr8RW6SZAFXXr1l6MAu2+ni8ekmihm/Lj/YsqO/Q58XS9K7c9/3qy4PCx1rhjQVULJhpBL3zeMoim8WB6fj21tQ3d6jbbXs020+xEm49G0RE0f0hc6UuzxSONdywnZ4ZQ= Received: by 10.36.222.11 with SMTP id u11mr3755297nzg; Fri, 23 Jun 2006 05:52:00 -0700 (PDT) Received: by 10.37.12.56 with HTTP; Fri, 23 Jun 2006 05:52:00 -0700 (PDT) Message-ID: Date: Fri, 23 Jun 2006 08:52:00 -0400 From: "David Stanford" To: "Martin Hepworth" In-Reply-To: <72cf361e0606230527m6aa44a9bndcd3144d449042d6@mail.gmail.com> MIME-Version: 1.0 References: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> <72cf361e0606230527m6aa44a9bndcd3144d449042d6@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: Backup sollutions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 12:52:46 -0000 An even better alternative (IMHO) is Bacula . It supports a wide range of platforms, including Windows PCs (backup client only). As for a GUI, it only comes with bimagemgr, a web interface only useful to those who backup strictly to disk or CDs. It also comes with some text-based console utilities for Windows and Gnome to help centralize management, but most of your work will still have to be done on the backup server anyway. And, of course, the documentation is terrific. -David On 6/23/06, Martin Hepworth wrote: > > Another vote for amanda - no gui, the the command line is easy. > > -- > Martin > > On 6/23/06, Andreas Wideroe Andersen wrote: > > > > Hi, > > I'm looking for a free (ports?) backup sollutions for FreeBSD > > servers. I would like to have something similare to IBM's Tivoli > > where you install a client on each server and administer the backup > > from another server with a web gui. > > > > Are there similare sollutions found for FreeBSD? > > > > Thanks! > > Andreas > > > > _______________________________________________ > > 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" > -- [root@fbsd ~]# fortune Happiness is just an illusion, filled with sadness and confusion. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 13:09: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 1C85416A47B for ; Fri, 23 Jun 2006 13:09:03 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD79243D49 for ; Fri, 23 Jun 2006 13:09:02 +0000 (GMT) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id k5ND91YM034536 for ; Fri, 23 Jun 2006 06:09:02 -0700 (PDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org Date: Fri, 23 Jun 2006 09:08:45 -0400 User-Agent: KMail/1.9.3 References: <200606222309.38096.freebsd@dfwlp.com> <09359E1D-CCE1-4609-9158-41A4EE5CA4BE@shire.net> <200606222346.10640.freebsd@dfwlp.com> In-Reply-To: <200606222346.10640.freebsd@dfwlp.com> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606230908.45655.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88, clamav-milter version 0.87 on ns1.jnielsen.net X-Virus-Status: Clean Subject: Re: from STABLE to RELENG? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 13:09:03 -0000 On Friday 23 June 2006 00:46, Jonathan Horne wrote: > On Thursday 22 June 2006 23:16, Chad Leigh -- Shire.Net LLC wrote: > > On Jun 22, 2006, at 10:09 PM, Jonathan Horne wrote: > > > generally, how risky of an operation is it to change the branch im > > > following > > > (assuming i have a server in good working order)? > > > > > > i think i would now prefer to start following RELENG on my > > > production servers > > > instead of STABLE (not that im having any issues), so that i can > > > keep up with > > > patchlevels of specific servers a little easier. > > > > That easiest if you do it at a version change. Say, for example, 6.0- > > STABLE to 6.1-RELEASE or similar. > > > well i would be attempting a 6.1-STABLE to 6.1-RELENG. i have a dev box i > think im going to give it a go on, and see what happens. if this one > doesnt go well, ill just wait until the next RELEASE increments to the > next. If you were going the other direction (from a pre-6.1 -STABLE to 6.1 or from 6.1 to today's -STABLE) it'd be a no-brainer. Even so, I'd be surprised if you had any issues going "backwards", since it is still a rather small step. JN From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 13:31: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 391CF16A47C for ; Fri, 23 Jun 2006 13:31:44 +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 5BA2B43D45 for ; Fri, 23 Jun 2006 13:31:39 +0000 (GMT) (envelope-from derek@computinginnovations.com) Received: from p17.computinginnovations.com (dhcp-10-20-30-100.computinginnovations.com [10.20.30.100]) (authenticated bits=0) by betty.computinginnovations.com (8.13.6/8.12.11) with ESMTP id k5NDVHMc045057; Fri, 23 Jun 2006 08:31:17 -0500 (CDT) Message-Id: <6.0.0.22.2.20060623082917.0259a868@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Fri, 23 Jun 2006 08:30:59 -0500 To: "Miki Klein - Wisedot Technologies Inc." , freebsd-questions@freebsd.org From: Derek Ragona In-Reply-To: <000001c6969b$90e8a1e0$7101a8c0@wisedota6635sx> References: <000001c6969b$90e8a1e0$7101a8c0@wisedota6635sx> 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: IBM 440 8CPU + RAID 4LX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 13:31:44 -0000 You need to give more details on your server hardware and on the version you are trying to install. By default SMP is turned off in the generic kernel in 6.X, which is why booting the live cd is only in single CPU mode. -Derek At 03:03 AM 6/23/2006, Miki Klein - Wisedot Technologies Inc. wrote: >Hi, > >I am trying to install freebsd on IBM server. > >But the system hung up after the boot. (There is an error saying that >there are more then 31 cpu id). > >I can turn ACPI off in this case the server will boot but without the >raid. > >I tried FreeBSD live cd and he is running well but in single CPU. > >Need Help in this Issue > >Miki > > > > > >931384.jpg> >_______________________________________________ >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 Jun 23 13:32: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 806C716A605 for ; Fri, 23 Jun 2006 13:32:00 +0000 (UTC) (envelope-from swygue@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 B1AAC43D69 for ; Fri, 23 Jun 2006 13:31:55 +0000 (GMT) (envelope-from swygue@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1071794uge for ; Fri, 23 Jun 2006 06:31:54 -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=VT381Wq3g5ssJ7AiP/WS9+gghJlo/S83zT+arjAyVWF9NJ3JR7JBNZhRMrzqCyqmGPeLrDD6yNcFh2U80BnxOYLiucQbpMKrdXuUiVL0vi9wp8ZhPR8lzFciSRpX/DNKudoLSgX19F4f0FFUx4OkonjsFaHx8phi+2ojD/h/FUo= Received: by 10.78.177.11 with SMTP id z11mr1267789hue; Fri, 23 Jun 2006 06:31:54 -0700 (PDT) Received: by 10.78.20.7 with HTTP; Fri, 23 Jun 2006 06:31:54 -0700 (PDT) Message-ID: Date: Fri, 23 Jun 2006 09:31:54 -0400 From: swygue To: "Corey Brune" In-Reply-To: <562705370606222101rf4af539y5cd2a7948174d667@mail.gmail.com> MIME-Version: 1.0 References: <562705370606221151g6efa05b3m6fcfaa6d828eb42d@mail.gmail.com> <562705370606222101rf4af539y5cd2a7948174d667@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: Learn more about ld-elf and 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: Fri, 23 Jun 2006 13:32:00 -0000 Corey, Thanks for your help, /usr/local/pgsql/lib/ permission was: 2 drwx------ 2 root wheel I changed it to pgsql:pgsql, and it work's. Where can I find more information about shared library objects ? I read ldconfig, ldd, ld manpages, but I'm looking for a broader explanation. -Rod On 6/23/06, Corey Brune wrote: > > That's interesting. Would you email me the output of these commands? > > echo $LD_LIBRARY_PATH > ls > file libpq.so.3 > > Thanks, > > Corey > > On 6/22/06, swygue wrote: > > > > Corey, > > > > Thanks for your response, I did set the LD_LIBRARY_PATH but ldd still > > can't find it. > > > > pgsql@server1=>ldd /usr/local/postgresql-7.4.2/bin/psql > > /usr/local/pgsql/bin/psql: > > libpq.so.3 => not found (0x0) > > libpam.so.1 => /usr/lib/libpam.so.1 (0x28086000) > > libz.so.2 => /usr/lib/libz.so.2 (0x28090000) > > libreadline.so.4 => /usr/lib/libreadline.so.4 (0x2809d000) > > libcrypt.so.2 => /usr/lib/libcrypt.so.2 (0x280c2000) > > libm.so.2 => /usr/lib/libm.so.2 (0x280db000) > > libutil.so.3 => /usr/lib/libutil.so.3 (0x280f7000) > > libc.so.4 => /usr/lib/libc.so.4 (0x28100000) > > libncurses.so.5 => /usr/lib/libncurses.so.5 (0x2819a000) > > > > > > -Rod > > > > > > On 6/22/06, Corey Brune < mcbrune@gmail.com> wrote: > > > > > > Have you tried setting LD_LIBRARY_PATH to include the directory where > > > libpq is? Are you getting this error after psql or something like it? If you > > > haven't, then set LD_LIBRARY_PATH, then type 'ldd '. This will tell > > > you which libs are found and which are not. > > > > > > Hope this helps. > > > Corey > > > > > > > > > On 6/22/06, swygue < swygue@gmail.com> wrote: > > > > > > > Once in a while I get some error, looking like this: > > > > > > /usr/libexec/ld-elf.so.1: Shared object "libpq.so.3" not found > > > > > > This specific error was a result of trying to connect to a > > > postgresql-7.4.2 database running on FreeBSD, 4.6.2. And yes the > > > server is in the process of being decommissioned. > > > > > > I was wondering how have others resolve problems related to ld-elf and > > > shared objects ? And where can I find more information about ld-elf > > > and FreeBSD ? > > > > > > Thanks > > > > > > -- > > > swygue neron --->> > > > _______________________________________________ > > > 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 > > > " > > > > > > > > > > > > -- > > swygue neron --->> > > > > -- swygue neron --->> From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 13:34: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 A1A0316A492 for ; Fri, 23 Jun 2006 13:34:42 +0000 (UTC) (envelope-from joseignaciolozano@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 C282C43D53 for ; Fri, 23 Jun 2006 13:34:40 +0000 (GMT) (envelope-from joseignaciolozano@gmail.com) Received: by py-out-1112.google.com with SMTP id z59so647742pyg for ; Fri, 23 Jun 2006 06:34: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=eZRIlQhp8bIXaSfFPFMNeFJjUhToxjv4ykUxxEsnEASyG+uClkOOAHBzU6DBk1nN2JHSvemTrbjISvTZPswnM8g5jrMjwl9kvzffbQZUnvCVk7LU8/qS9JnI3tPzG4sOpR7AQhmNuSFOyHTN3lTDUEMpggj8KQI0yc8O+RH6tPA= Received: by 10.35.9.15 with SMTP id m15mr2324880pyi; Fri, 23 Jun 2006 06:34:40 -0700 (PDT) Received: by 10.35.117.17 with HTTP; Fri, 23 Jun 2006 06:34:40 -0700 (PDT) Message-ID: Date: Fri, 23 Jun 2006 08:34:40 -0500 From: "Jose Ignacio Lozano Vargas" To: 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 Cc: Subject: HandBook X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 13:34:42 -0000 Hi, I'm looking for the FreeBSD 4.9 handBook. Can you tell me where can i get it?. The current online Handbook is fopr the newest versions. Thanks -- Regards, Jose Ignacio Lozano From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 13:45: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 E01B116A47C for ; Fri, 23 Jun 2006 13:45:14 +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 6470A43D4C for ; Fri, 23 Jun 2006 13:45:14 +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 k5NDjC0g029880; Fri, 23 Jun 2006 09:45:12 -0400 (EDT) Received: (from jerrymc@localhost) by clunix.cl.msu.edu (8.13.6+Sun/8.13.6/Submit) id k5NDjCf4029879; Fri, 23 Jun 2006 09:45:12 -0400 (EDT) From: Jerry McAllister Message-Id: <200606231345.k5NDjCf4029879@clunix.cl.msu.edu> To: joseignaciolozano@gmail.com (Jose Ignacio Lozano Vargas) Date: Fri, 23 Jun 2006 09:45:12 -0400 (EDT) In-Reply-To: X-Mailer: ELM [version 2.5 PL7] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: HandBook X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 13:45:15 -0000 > > Hi, I'm looking for the FreeBSD 4.9 handBook. Can you tell me where can i > get it?. The current online Handbook is fopr the newest versions. Thanks If you have an actual 4.9 up and running, it should be in /usr/share/doc/..language../books/handbook ////jerry > > -- > Regards, > > Jose Ignacio Lozano > _______________________________________________ > 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 Jun 23 14: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 29E6416A494 for ; Fri, 23 Jun 2006 14:03:25 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68C4443D48 for ; Fri, 23 Jun 2006 14:03:24 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id EEC32290C6F; Fri, 23 Jun 2006 11:03:17 -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 19577-04; Fri, 23 Jun 2006 11:03:23 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id 6A43F290C6E; Fri, 23 Jun 2006 11:03:17 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id 907ED352D2; Fri, 23 Jun 2006 11:03:28 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id 85B9733DF1; Fri, 23 Jun 2006 11:03:28 -0300 (ADT) Date: Fri, 23 Jun 2006 11:03:28 -0300 (ADT) From: "Marc G. Fournier" To: Lowell Gilbert In-Reply-To: <44psh16pfm.fsf@be-well.ilk.org> Message-ID: <20060623110321.M1114@ganymede.hub.org> References: <20060622031513.Q1114@ganymede.hub.org> <44psh16pfm.fsf@be-well.ilk.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: SSH tunneling to FreeBSD 6.x using entunnel ... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 14:03:25 -0000 This worked perfectly, thank you ... On Thu, 22 Jun 2006, Lowell Gilbert wrote: > "Marc G. Fournier" writes: > >> I have a client that has been using entunnel for the longest time to >> do an SSH tunnel into their vServer ... we've recently begun upgrading >> to FreeBSD 6.x, and entunnel is no longer working (upgraded from >> FreeBSD 4.x) ... >> >> Apparenty, bitvise.com's tunnelier has the same problem ... >> >> The way the client describes how entunnel used to work for them: >> >> "entunnel was great - i never had to think about it. it just worked, >> all the time, automatically - came up at startup as a service and just >> sat in the system tray." >> >> Without having to downgrade their OpenSSH to the same version as was >> on FreeBSD 4.x (bad option!), is there something that I can look at on >> the FreeBSD 6.x OpenSSH to fix the problem? Maybe some backwards >> compatibility mode? > > I don't know those particular Windows clients, but maybe they want > your sshd_config to enable PasswordAuthentication? > _______________________________________________ > 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" > ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 14:18: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 2F04816A494 for ; Fri, 23 Jun 2006 14:18:21 +0000 (UTC) (envelope-from matt@frii.com) Received: from mail.frii.com (phobos02.frii.net [216.17.128.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF6FE43D53 for ; Fri, 23 Jun 2006 14:18:20 +0000 (GMT) (envelope-from matt@frii.com) Received: from elara.frii.com (elara.frii.com [216.17.128.39]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.frii.com (FRII) with ESMTP id 16D88A4420 for ; Fri, 23 Jun 2006 08:18:20 -0600 (MDT) Date: Fri, 23 Jun 2006 08:18:16 -0600 (MDT) From: Matt Ruzicka X-X-Sender: mattr@elara.frii.com To: freebsd-questions@freebsd.org In-Reply-To: <200606231443.47994.nvass@teledomenet.gr> Message-ID: References: <200606231443.47994.nvass@teledomenet.gr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Re: **questions** Re: Tracking if disk is busy X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 14:18:21 -0000 Thanks for all the input, this puts us on track. Seems like considering snmp is probably our best bet based on our needs, but these other suggestions give lots of good info. Thanks. Matt Ruzicka - Senior Systems Administrator Front Range Internet, Inc. matt@frii.net - (970) 212-0728 On Fri, 23 Jun 2006, Nikos Vassiliadis wrote: > On Friday 23 June 2006 01:12, Matt Ruzicka wrote: >> We've got a couple servers that appear to have particularly busy disks and >> I was trying to determine if there is a way to more easily poll this data >> for tracking. >> >> I'm not sure if this is one of those can't see the forest for the trees >> issues or not, but the only means that I am familiar with to see the >> percentage of time the disk is busy is to run 'systat -vmstat'. I was >> hoping for something more concise that I could run periodically and maybe >> even graph (realizing that watching this might well distort the results). >> >> It appears that iostat on Solaris gives this information, but I can't seem >> to mimic this functionality with FreeBSD. >> >> Are there other ways in FreeBSD to pull the percentage of time the disk is >> busy? >> > > gstat gives percentage load per (device|slice|partition) which is what I think > you need. but it's written for interactive use, it issues commands to the > terminal so you cannot have its output to file... > _______________________________________________ > 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 Jun 23 14:25: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 046A416A47B for ; Fri, 23 Jun 2006 14:25:54 +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 A033543D46 for ; Fri, 23 Jun 2006 14:25:53 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 24259 invoked from network); 23 Jun 2006 14:25:52 -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 ; 23 Jun 2006 14:25:52 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 1041728449; Fri, 23 Jun 2006 10:25:51 -0400 (EDT) To: Joe Auty References: <7CEA25D4-9A1F-47BB-AE9B-79E3ADE6F939@netmusician.org> <20060623042322.GD95588@dan.emsphone.com> <7D6333E0-BA1F-4A95-AC1A-573489758E44@netmusician.org> From: Lowell Gilbert Date: Fri, 23 Jun 2006 10:25:51 -0400 In-Reply-To: <7D6333E0-BA1F-4A95-AC1A-573489758E44@netmusician.org> (Joe Auty's message of "Fri, 23 Jun 2006 07:38:11 -0400") Message-ID: <44d5d0eyog.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: Dan Nelson , FreeBSD Questions Subject: Re: problems with strace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 14:25:54 -0000 Joe Auty writes: > I take it proc is optional in FreeBSD? Very. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 14:25: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 610BA16A539 for ; Fri, 23 Jun 2006 14:25: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 D9A3743D46 for ; Fri, 23 Jun 2006 14:25:57 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5NEPt4B086348; Fri, 23 Jun 2006 09:25:55 -0500 (CDT) (envelope-from dan) Date: Fri, 23 Jun 2006 09:25:55 -0500 From: Dan Nelson To: Joe Auty Message-ID: <20060623142554.GE95588@dan.emsphone.com> References: <7CEA25D4-9A1F-47BB-AE9B-79E3ADE6F939@netmusician.org> <20060623042322.GD95588@dan.emsphone.com> <7D6333E0-BA1F-4A95-AC1A-573489758E44@netmusician.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7D6333E0-BA1F-4A95-AC1A-573489758E44@netmusician.org> X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: FreeBSD Questions Subject: Re: problems with strace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 14:25:58 -0000 In the last episode (Jun 23), Joe Auty said: > On Jun 23, 2006, at 12:23 AM, Dan Nelson wrote: > >In the last episode (Jun 23), Joe Auty said: > >>No matter what command I run with strace, I have the same problem: > >> > >># strace ls > >>strace: open("/proc/...", ...): No such file or directory > >>trouble opening proc file > >> > >>Any ideas why this is? > > > >Is /proc mounted? > > That was easy, no is wasn't =) > > I take it proc is optional in FreeBSD? Yes. There aren't many tools that still need it, but truss is one of them. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 14:52: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 AF8E916A492 for ; Fri, 23 Jun 2006 14:52:08 +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 9CD8643D4C for ; Fri, 23 Jun 2006 14:52:07 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 29196 invoked from network); 23 Jun 2006 14:52:07 -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 ; 23 Jun 2006 14:52:07 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id A3BB228449; Fri, 23 Jun 2006 10:52:06 -0400 (EDT) To: freebsd-questions@freebsd.org References: <1151031067.449b571b0afab@webmail.icehouse.net> From: Lowell Gilbert Date: Fri, 23 Jun 2006 10:52:06 -0400 In-Reply-To: <1151031067.449b571b0afab@webmail.icehouse.net> (excalibur@icehouse.net's message of "Thu, 22 Jun 2006 19:51:07 -0700") Message-ID: <443bdvgc15.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: Problems with both firefox and mozilla from ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 14:52:08 -0000 excalibur@icehouse.net writes: > I installed firefox and mozilla from ports on my FreeBSD 6.0 RELEASE machine at > home. I installed mozilla which was working, then I did a portupgrade to all my > installed ports (took 3 days on my friends "high" speed line, well higher than > mine which is dial-up). Gnome-related ports have been through at least two major upgrades since 6.0 was released, with special upgrade requirements each time. The instructions are in /usr/ports/UPDATING, which you should consult for updates every time you update your ports tree. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 14:56: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 212C716A494 for ; Fri, 23 Jun 2006 14:56:02 +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 C1FA943D4C for ; Fri, 23 Jun 2006 14:56:01 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 3241 invoked from network); 23 Jun 2006 14:56:01 -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 ; 23 Jun 2006 14:56:01 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 5A59628449; Fri, 23 Jun 2006 10:55:57 -0400 (EDT) To: "DSA - JCR" References: <4941.217.114.136.133.1151057621.squirrel@llca513-a.servidoresdns.net> From: Lowell Gilbert Date: Fri, 23 Jun 2006 10:55:57 -0400 In-Reply-To: <4941.217.114.136.133.1151057621.squirrel@llca513-a.servidoresdns.net> (DSA's message of "Fri, 23 Jun 2006 10:13:41 -0000 (GMT)") Message-ID: <44y7vnexaa.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: FreeBSD 6.1 amd64 and Samba 3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 14:56:02 -0000 "DSA - JCR" writes: > I am installing (trying to) Samba 3 from ports nad portaudit says that > there is security advice with it and does not let me to install. The most recent security issue affecting Samba 3 is fixed in version 3.0.22, which has been in the ports system for some time (approximately two months). From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 14:56: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 1BF9316A49A for ; Fri, 23 Jun 2006 14:56:31 +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 883D843D45 for ; Fri, 23 Jun 2006 14:56:30 +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 k5NEuLx18275; Fri, 23 Jun 2006 07:56:22 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Message-ID: <000701c696d5$3331a5d0$3c01a8c0@coolf89ea26645> From: "Ted Mittelstaedt" To: "Philippe Lang" , "Doug Poland" References: <6C0CF58A187DA5479245E0830AF84F421D0E59@poweredge.attiksystem.ch> Date: Fri, 23 Jun 2006 07:56:22 -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: freebsd-questions Subject: Re: ICH5R, ICH7R or Promise PDC20378 RAID? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 14:56:31 -0000 ----- Original Message ----- From: "Philippe Lang" To: "Ted Mittelstaedt" ; "Doug Poland" Cc: "freebsd-questions" Sent: Friday, June 23, 2006 1:46 AM Subject: RE: ICH5R, ICH7R or Promise PDC20378 RAID? > Ted Mittelstaedt wrote: > > >> Hi, > >> > >> I'm sure there are solutions to make things work, but personnaly, I > >> don't feel confortable with a RAID system that acts that way, and > >> that is supposed to make the whole system more robust and > >> problem-free. > > > > Your missing the point. > > > > If a disk crashes it wipes the metafile off the disk. > > > > If you want to simulate a disk crash, issue a raid detach command > > first, then pull the disk. > > > > The ata raid in the ata driver isn't written to handle the > > condition of > > a disk being pulled that has nothing wrong with it then reinserted. > > It is written to handle the condition of a disk crashing, then being > > pulled, then a new one replaced. > > > >> I used to play with hardware SCSI RAID controllers, and was never > >> able to trash the system. > > > > I have SCSI raid controllers too that I can do that with. But keep in > > mind that these controllers firmware is written to if a disk > > is pulled then > > replaced, it immediately assumes that the disk is toast, and > > rebuilds it > > from scratch. > > Hi, > > I'm not an expert in RAID Ted, and I don't want to be. Simply, in situations where a disk crashes, and the server is not redundant anymore, I prefer having a controller that I can rely on, both eyes closed. I have just installed the 3WARE controller this morning, and did the exact same operations I did with the ICH5/7R and onboard Promise controller of my ASUS boards. It's simply not comparable at all, and for a really affordable price. The server did not crash, and is by the way rebuilding the RAID at the moment... Despite all my efforts, I was not able to trash it. > > A 3WARE controller is really worth the investment, really. > Ah, you must of missed the thread where I recommended the 3ware controller to someone complaining that there wasn't any hardware support for FreeBSD. I happen to have a couple of the 3ware controllers myself. The 3ware controller works but so does the integrated RAID in the ata driver - if you know how to handle it, and you have the right hardware. And granted, the man page does not do a good job of documenting how to recover from a crashed disk. However, not everyone thinks $200 USD is a "really affordable price" and if all you want to do is mirroring then the integrated ata RAID is fine. Keep in mind that in a 1U server, you don't have room for more than 2 disks anyway. The 3ware controller's main strength over the integrated RAID is that it has additional features, like RAID-5, offline rebuild, etc. Ted From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 15:14: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 BCA3B16A49A; Fri, 23 Jun 2006 15:14:42 +0000 (UTC) (envelope-from jonathan@fosburgh.org) Received: from pop-tawny.atl.sa.earthlink.net (pop-tawny.atl.sa.earthlink.net [207.69.195.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id F355A43D70; Fri, 23 Jun 2006 15:14:34 +0000 (GMT) (envelope-from jonathan@fosburgh.org) Received: from user-0cet64e.cable.mindspring.com ([24.238.152.142] helo=gw.fosburgh.org) by pop-tawny.atl.sa.earthlink.net with esmtp (Exim 3.36 #10) id 1FtnMf-00022Q-00; Fri, 23 Jun 2006 11:14:33 -0400 Received: by gw.fosburgh.org (Postfix, from userid 1001) id EECF516B; Fri, 23 Jun 2006 10:15:22 -0500 (CDT) X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on gw.fosburgh.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.1.3 Received: from jef-nt.mdacc.tmc.edu (jef-nt.mdacc.tmc.edu [143.111.32.188]) by gw.fosburgh.org (Postfix) with ESMTP id 6A62643; Fri, 23 Jun 2006 10:15:21 -0500 (CDT) From: Jonathan Fosburgh To: "pete wright" Date: Fri, 23 Jun 2006 10:14:28 -0500 User-Agent: KMail/1.9.3 References: <20060622075236.GA95258@router.lane.family> <20060622212119.GA7232@router.lane.family> <57d710000606221506s7b1c3f99g3c748e19c37c59e9@mail.gmail.com> In-Reply-To: <57d710000606221506s7b1c3f99g3c748e19c37c59e9@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3113313.KZ1PmR9mdp"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200606231014.29203.jonathan@fosburgh.org> Cc: greg.lane@internode.on.net, questions@freebsd.org, savovski@gmail.com, freebsd-amd64@freebsd.org Subject: Re: Does anyone run VNC with 64-bit 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: Fri, 23 Jun 2006 15:14:42 -0000 --nextPart3113313.KZ1PmR9mdp Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Thursday 22 June 2006 17:06, pete wright wrote: > > Did you try to build/install a 32bit version of VNC? Also, if you are > running a Unix like OS why use VNC? You can achive %90 of the same > features (with less of a memory/cpu impact) by running X apps > remotely. > > -pete How do you do cross-compilation on amd64? I looked through the mailing list= =20 archives and couldn't find a method. Also, VNC, slow as it is, tends to be= =20 faster than running X apps directly, at least over high-latency networks. = NX=20 runs rings around both of them, though. =2D-=20 Jonathan Fosburgh AIX and Storage Administrator UT MD Anderson Cancer Center Houston, TX --nextPart3113313.KZ1PmR9mdp Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBEnAVVqUvQmqp7omYRAjPhAJwLjk+wgDojZ01TeucB2ISPL5CVZwCg0FXo iOMVXNF7sw5O+SnZBKWYd08= =O6XC -----END PGP SIGNATURE----- --nextPart3113313.KZ1PmR9mdp-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 15:22: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 7928916A494 for ; Fri, 23 Jun 2006 15:22:02 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from relay02.roc.ny.frontiernet.net (relay02.roc.ny.frontiernet.net [66.133.182.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E38243D46 for ; Fri, 23 Jun 2006 15:21:57 +0000 (GMT) (envelope-from drew@mykitchentable.net) X-Virus-Scanned: by amavisd-new-2.4.1 at filter13.roc.ny.frontiernet.net Received: from blacklamb.mykitchentable.net (67-137-238-101.dsl2.elk.ca.frontiernet.net [67.137.238.101]) by relay02.roc.ny.frontiernet.net (Postfix) with ESMTP id 093F8370111 for ; Fri, 23 Jun 2006 15:21:55 +0000 (UTC) Received: from [192.168.25.6] (unknown [192.168.25.6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by blacklamb.mykitchentable.net (Postfix) with ESMTP id 2D2071648B6 for ; Fri, 23 Jun 2006 08:21:54 -0700 (PDT) Message-ID: <449C0711.3080803@mykitchentable.net> Date: Fri, 23 Jun 2006 08:21:53 -0700 From: Drew Tomlinson User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Simple DNS For Private LAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 15:22:02 -0000 I'm having a hard time understanding what I need to do. I have a small home network that uses a 3Com DSL modem/router as the last hop to the Internet. Currently, the DSL modem/router to provides DNS for both my home network and the Internet. Basically I have a few static entries for machines on my home network and then the DSL modem/router queries my ISPs name servers for everything else. When I registered my domain, I used ZoneEdit as my name servers. 'whois mykitchentable.net' gives this output: domain: mykitchentable.net owner-name: Drew Tomlinson nserver: ns3.zoneedit.com 209.61.140.1 nserver: ns4.zoneedit.com 216.98.150.236 Now I'm changing ISPs and the DSL modem/router will be removed. I am going to use a FBSD 6.x box to be my router, firewall, and DNS server. I read the handbook regarding DNS but remain confused. Should I be a master for mykitchentable.net? I'm thinking not because ZoneEdit is the master, correct? So should I be a slave? And if I'm a slave, will my DNS get it's updates from ZoneEdit? Or should I become master for my zone and make ZoneEdit a backup DNS? I'm a complete newbie to DNS but know that it's important to get it right or lots of stuff gets broken. Can someone please guide me in the right direction? I don't mind reading if you send me a link. :) Thanks, Drew -- Be a Great Magician! Visit The Alchemist's Warehouse http://www.alchemistswarehouse.com From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 15:44: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 3FF4416A47B for ; Fri, 23 Jun 2006 15:44:52 +0000 (UTC) (envelope-from greenwood.andy@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38D4243D49 for ; Fri, 23 Jun 2006 15:44:51 +0000 (GMT) (envelope-from greenwood.andy@gmail.com) Received: by wx-out-0102.google.com with SMTP id h30so482933wxd for ; Fri, 23 Jun 2006 08: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=NFaVs7A4TD158CS2xiskbOUtaCMJ1zWu49agfo5Wxe6l/FQTkONVOupalAThJGVKUXvxAci90NWyCACYSORHB3z55qWCwN0k+LEw/FEQeqONDVgBRfh7YOdG1WZuwC9eRnrgIgw1j1XBc6JTHSAKplurOVtLFRdI7YDZ9liPsRY= Received: by 10.70.65.4 with SMTP id n4mr4836782wxa; Fri, 23 Jun 2006 08:44:40 -0700 (PDT) Received: by 10.70.12.3 with HTTP; Fri, 23 Jun 2006 08:44:40 -0700 (PDT) Message-ID: <3ee9ca710606230844y2f4d2326kf3cf7f7d2b4ec9d5@mail.gmail.com> Date: Fri, 23 Jun 2006 11:44:40 -0400 From: "Andy Greenwood" To: "Drew Tomlinson" In-Reply-To: <449C0711.3080803@mykitchentable.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <449C0711.3080803@mykitchentable.net> Cc: FreeBSD Questions Subject: Re: Simple DNS For Private LAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 15:44:52 -0000 If you're getting a static IP, then you can become master for your domain, but you'll still need a secondary NS, and most (if not all) registrars will require that the secondary NS be on a different IP. I prefer to have mine on a completely seperate Class A, but that's just personal. I'd leave ns3.zoneedit.com as the secondary NS. Both name servers will be master for the domain. Master just means that the name server won't try to look elsewherefor the info, IIRC, and you don't want these name servers to look elsewhere. Yes you can break a lot of stuff with wrong DNS, but it really isn't that complicated. Don't worry. As a side note, if you really are a DNS newb, here's some (hopefully funny) reading. I can take no credit for this, and I don't have the original link. http://agreenftp.no-ip.com/dns On 6/23/06, Drew Tomlinson wrote: > I'm having a hard time understanding what I need to do. I have a small > home network that uses a 3Com DSL modem/router as the last hop to the > Internet. Currently, the DSL modem/router to provides DNS for both my > home network and the Internet. Basically I have a few static entries > for machines on my home network and then the DSL modem/router queries my > ISPs name servers for everything else. > > When I registered my domain, I used ZoneEdit as my name servers. 'whois > mykitchentable.net' gives this output: > > domain: mykitchentable.net > owner-name: Drew Tomlinson > nserver: ns3.zoneedit.com 209.61.140.1 > nserver: ns4.zoneedit.com 216.98.150.236 > > Now I'm changing ISPs and the DSL modem/router will be removed. I am > going to use a FBSD 6.x box to be my router, firewall, and DNS server. > I read the handbook regarding DNS but remain confused. Should I be a > master for mykitchentable.net? I'm thinking not because ZoneEdit is the > master, correct? So should I be a slave? And if I'm a slave, will my > DNS get it's updates from ZoneEdit? Or should I become master for my > zone and make ZoneEdit a backup DNS? > > I'm a complete newbie to DNS but know that it's important to get it > right or lots of stuff gets broken. Can someone please guide me in the > right direction? I don't mind reading if you send me a link. :) > > Thanks, > > Drew > > -- > Be a Great Magician! > Visit The Alchemist's Warehouse > > http://www.alchemistswarehouse.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 Fri Jun 23 15:55: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 DF98216A47B for ; Fri, 23 Jun 2006 15:55:03 +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 0EE4A43D46 for ; Fri, 23 Jun 2006 15:55:02 +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-1) with ESMTP id k5NFsh7d029669 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 23 Jun 2006 18:54:45 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k5NFsbCB030730; Fri, 23 Jun 2006 18:54:37 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k5NFsXKm030729; Fri, 23 Jun 2006 18:54:33 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 23 Jun 2006 18:54:33 +0300 From: Giorgos Keramidas To: Drew Tomlinson Message-ID: <20060623155433.GA30666@gothmog.pc> References: <449C0711.3080803@mykitchentable.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <449C0711.3080803@mykitchentable.net> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.411, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.99, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Simple DNS For Private LAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 15:55:04 -0000 On 2006-06-23 08:21, Drew Tomlinson wrote: > I'm having a hard time understanding what I need to do. I have > a small home network that uses a 3Com DSL modem/router as the > last hop to the Internet. Currently, the DSL modem/router to > provides DNS for both my home network and the Internet. > Basically I have a few static entries for machines on my home > network and then the DSL modem/router queries my ISPs name > servers for everything else. > > When I registered my domain, I used ZoneEdit as my name > servers. 'whois mykitchentable.net' gives this output: > > domain: mykitchentable.net > owner-name: Drew Tomlinson > nserver: ns3.zoneedit.com 209.61.140.1 > nserver: ns4.zoneedit.com 216.98.150.236 Are machines from your `internal' network visible outside? If not, you can set up a locally-visible fake domain, i.e. `*.drew', and run a local caching name server. This name server can be a master for the ``drew.'' zone (``zones'' is what BIND calls parts of the Domain Name System) and, at the same time, a slave for the ``mykitchentable.net'' zone. > Now I'm changing ISPs and the DSL modem/router will be removed. > I am going to use a FBSD 6.x box to be my router, firewall, and > DNS server. I read the handbook regarding DNS but remain > confused. The Handbook needs a bit of work around that area :-/ > Should I be a master for mykitchentable.net? Not necessarily. You can leave the name-servers of zoneedit as masters. > I'm thinking not because ZoneEdit is the master, correct? Correct :-) > So should I be a slave? This would be nice. > And if I'm a slave, will my DNS get it's updates from ZoneEdit? This depends on whether ZoneEdit allows ``zone transfers'' from their master name servers to the one you will set up as a slave. > Or should I become master for my zone and make ZoneEdit a > backup DNS? I'd probably leave ZoneEdit as the master, unless your DSL has a static IP address. Even if you *do* have a static IP address, then it is still a good idea to leave ZoneEdit as the master, as long as they let you become a slave NS. > I'm a complete newbie to DNS but know that it's important to > get it right or lots of stuff gets broken. Can someone please > guide me in the right direction? I don't mind reading if you > send me a link. :) I think the next step should be to check if ZoneEdit allows you to become a slave NS for your zones. Then you need to decide if the systems you have behind the FreeBSD gateway will have publicly-visible addresses or use NAT. If you use NAT, then I can guide you through setting up a local ``master zone'' that is only visible inside your home network, and a ``slave zone'' that pulls stuff from ZoneEdit for the ``mykitchentable.net'' domain. I already have a similar setup at home, to let my internal systems (workstation, laptop) see each other with internal names and still use my ISP's name servers for everything else. If you don't use NAT, things are going to be much easier, since you only have to set up the names at ZoneEdit and pull the master zone from there. Regards, Giorgos From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 15:59: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 9B47F16A494 for ; Fri, 23 Jun 2006 15:59:25 +0000 (UTC) (envelope-from szlists@szarka.org) Received: from hustle.szarka.net (hustle.szarka.net [204.89.131.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E5D343D45 for ; Fri, 23 Jun 2006 15:59:24 +0000 (GMT) (envelope-from szlists@szarka.org) Received: from BUCKY.szarka.org (ip-65-75-16-177.ct.dsl.ntplx.com [65.75.16.177]) (authenticated bits=0) by hustle.szarka.net (8.13.6/8.13.6) with ESMTP id k5NFxL5G097535 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Fri, 23 Jun 2006 11:59:23 -0400 (EDT) (envelope-from szlists@szarka.org) Message-Id: <7.0.1.0.0.20060623115154.0583dc88@szarka.org> X-Mailer: QUALCOMM Windows Eudora Version 7.0.1.0 Date: Fri, 23 Jun 2006 11:59:39 -0400 To: freebsd-questions@freebsd.org From: Rob Szarka Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: Error: shared library "expat.5" does not exist X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 15:59:25 -0000 I'm running into a problem compiling several PHP extensions that depend on expat. They die with an error like the following: *************** ===> fontconfig-2.2.3,1 depends on shared library: expat.5 - not found ===> Verifying install for expat.5 in /usr/ports/textproc/expat2 ===> Returning to build of fontconfig-2.2.3,1 Error: shared library "expat.5" does not exist *** Error code 1 Stop in /usr/ports/x11-fonts/fontconfig. *** Error code 1 Stop in /usr/ports/x11/xorg-libraries. *** Error code 1 Stop in /usr/ports/devel/t1lib. *** Error code 1 Stop in /usr/ports/graphics/php5-gd. *** Error code 1 Stop in /usr/ports/lang/php5-extensions. ****************** I have the following in /usr/ports/local: -rw-r--r-- 1 root wheel 158440 Jun 23 11:03 /usr/local/lib/libexpat.a -rwxr-xr-x 1 root wheel 793 Jun 23 11:03 /usr/local/lib/libexpat.la lrwxr-xr-x 1 root wheel 13 Jun 23 11:03 /usr/local/lib/libexpat.so -> libexpat.so.6 -rwxr-xr-x 1 root wheel 157398 Jun 23 11:03 /usr/local/lib/libexpat.so.6 But not expat* It would seem that fontconfig is looking explicitly for expat.5 and that perhaps the name of the library has changed? LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ expat.5:${PORTSDIR}/textproc/expat2 I did follow this advice in UPGRADING, to no avail: "Users of expat2 (and its many dependencies) should do the following to properly update expat2 and all of its dependencies: portupgrade -rf textproc/expat2" Any suggestions about how to fix or work around this issue? From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 16:22: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 562D816A49A for ; Fri, 23 Jun 2006 16:22:06 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from relay02.roc.ny.frontiernet.net (relay02.roc.ny.frontiernet.net [66.133.182.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8626543D46 for ; Fri, 23 Jun 2006 16:22:05 +0000 (GMT) (envelope-from drew@mykitchentable.net) X-Virus-Scanned: by amavisd-new-2.4.1 at filter06.roc.ny.frontiernet.net Received: from blacklamb.mykitchentable.net (67-137-238-101.dsl2.elk.ca.frontiernet.net [67.137.238.101]) by relay02.roc.ny.frontiernet.net (Postfix) with ESMTP id 4B1D3370366; Fri, 23 Jun 2006 16:22:02 +0000 (UTC) Received: from [192.168.25.6] (unknown [192.168.25.6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by blacklamb.mykitchentable.net (Postfix) with ESMTP id 75AED1649A7; Fri, 23 Jun 2006 09:22:01 -0700 (PDT) Message-ID: <449C1528.4000809@mykitchentable.net> Date: Fri, 23 Jun 2006 09:22:00 -0700 From: Drew Tomlinson User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Andy Greenwood References: <449C0711.3080803@mykitchentable.net> <3ee9ca710606230844y2f4d2326kf3cf7f7d2b4ec9d5@mail.gmail.com> In-Reply-To: <3ee9ca710606230844y2f4d2326kf3cf7f7d2b4ec9d5@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Simple DNS For Private LAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 16:22:06 -0000 On 6/23/2006 8:44 AM Andy Greenwood wrote: > If you're getting a static IP, then you can become master for your > domain, but you'll still need a secondary NS, and most (if not all) Whoops, I forgot about needing a static IP. I don't have one currently and I don't know if the new IP will be static or dynamic. Probably dynamic but I will check. > registrars will require that the secondary NS be on a different IP. I > prefer to have mine on a completely seperate Class A, but that's just > personal. I'd leave ns3.zoneedit.com as the secondary NS. Both name > servers will be master for the domain. Master just means that the name > server won't try to look elsewherefor the info, IIRC, and you don't > want these name servers to look elsewhere. Yes you can break a lot of > stuff with wrong DNS, but it really isn't that complicated. Don't > worry. So can I set up a "master" on my home network and just leave ZoneEdit alone? Then machines on my home network will query my local name server and the rest of the world will continue to use ZoneEdit? > As a side note, if you really are a DNS newb, here's some (hopefully > funny) reading. I can take no credit for this, and I don't have the > original link. > http://agreenftp.no-ip.com/dns Funny! Thanks, Drew > On 6/23/06, Drew Tomlinson wrote: >> I'm having a hard time understanding what I need to do. I have a small >> home network that uses a 3Com DSL modem/router as the last hop to the >> Internet. Currently, the DSL modem/router to provides DNS for both my >> home network and the Internet. Basically I have a few static entries >> for machines on my home network and then the DSL modem/router queries my >> ISPs name servers for everything else. >> >> When I registered my domain, I used ZoneEdit as my name servers. 'whois >> mykitchentable.net' gives this output: >> >> domain: mykitchentable.net >> owner-name: Drew Tomlinson >> nserver: ns3.zoneedit.com 209.61.140.1 >> nserver: ns4.zoneedit.com 216.98.150.236 >> >> Now I'm changing ISPs and the DSL modem/router will be removed. I am >> going to use a FBSD 6.x box to be my router, firewall, and DNS server. >> I read the handbook regarding DNS but remain confused. Should I be a >> master for mykitchentable.net? I'm thinking not because ZoneEdit is the >> master, correct? So should I be a slave? And if I'm a slave, will my >> DNS get it's updates from ZoneEdit? Or should I become master for my >> zone and make ZoneEdit a backup DNS? >> >> I'm a complete newbie to DNS but know that it's important to get it >> right or lots of stuff gets broken. Can someone please guide me in the >> right direction? I don't mind reading if you send me a link. :) >> >> Thanks, >> >> Drew >> >> -- >> Be a Great Magician! >> Visit The Alchemist's Warehouse >> >> http://www.alchemistswarehouse.com From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 16:22: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 9A59816A4D1 for ; Fri, 23 Jun 2006 16:22:16 +0000 (UTC) (envelope-from dwinner-lists@att.net) Received: from mtiwmhc12.worldnet.att.net (mtiwmhc12.worldnet.att.net [204.127.131.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 414D943D48 for ; Fri, 23 Jun 2006 16:22:15 +0000 (GMT) (envelope-from dwinner-lists@att.net) Received: from [10.10.6.20] (unknown[216.113.237.29]) by worldnet.att.net (mtiwmhc12) with ESMTP id <2006062316221511200653mre>; Fri, 23 Jun 2006 16:22:15 +0000 Message-ID: <449C152E.8050908@att.net> Date: Fri, 23 Jun 2006 12:22:06 -0400 From: dw User-Agent: Thunderbird 1.5.0.4 (X11/20060621) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Display: Intel Graphics Media Accelerator 950 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dwinner-lists@att.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 16:22:16 -0000 Hello, We are about to buy new Thinkpads (T60's), and will be running FreeBSD 5.5 or 6.2 (probably 6.2) on them. The ones I've spec'd out have the the Intel Graphics Media Accelerator 950 as its video adapter -- does anybody have any input on these? Will they work? I'd hate to have 7 new thinkpads show up and find out that we can't run X because of this. There are similar T60's available that ship w/ ATI Mobility Radeon X1300 cards, but they all seem to be heavier and shorter on battery life, and the other folks here put battery life and weight as the #1 items on their wish lists before I started to spec them out, so that leans me towards the ones with the Intel graphics card. Thanks for any info, DW From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 16: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 C1FD216A494 for ; Fri, 23 Jun 2006 16:39:30 +0000 (UTC) (envelope-from perikillo@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EE5443D46 for ; Fri, 23 Jun 2006 16:39:29 +0000 (GMT) (envelope-from perikillo@gmail.com) Received: by wx-out-0102.google.com with SMTP id h30so494549wxd for ; Fri, 23 Jun 2006 09:39:29 -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=CtG9skWWlLOApt8I8qmC/ktabZdBF6jItxOyydgoWyrQ3SwzVQIxuqZCRAKRKHDm+501Tz7yzhlLcpqm11SXxUC2mtRvyTB6ioFO+8PAxMaFxrnW78Z0XwrCeeAtbUKk/szBN5iAXFkym1Bc+ACb7RbKM7Jt7y36OisoFpeyOiE= Received: by 10.70.44.11 with SMTP id r11mr4920864wxr; Fri, 23 Jun 2006 09:39:29 -0700 (PDT) Received: by 10.70.28.5 with HTTP; Fri, 23 Jun 2006 09:39:29 -0700 (PDT) Message-ID: <51d7a5160606230939ncfb08f9naaebcbf2f49dc8af@mail.gmail.com> Date: Fri, 23 Jun 2006 09:39:29 -0700 From: perikillo To: freebsd-questions@freebsd.org In-Reply-To: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> Subject: Re: Backup sollutions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 16:39:30 -0000 On 6/22/06, Andreas Wideroe Andersen wrote: > Hi, > I'm looking for a free (ports?) backup sollutions for FreeBSD > servers. I would like to have something similare to IBM's Tivoli > where you install a client on each server and administer the backup > from another server with a web gui. > > Are there similare sollutions found for FreeBSD? > > Thanks! > Andreas > > _______________________________________________ > 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" > Try bacula, i have 4 servers clients, 2 windows NT/1 Win2k3/1 Linux RedHat on tape. Greetings. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 17:02:00 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 8196716A49A; Fri, 23 Jun 2006 17:02:00 +0000 (UTC) To: FreeBSD-questions@FreeBSD.org Message-Id: <20060623170200.8196716A49A@hub.freebsd.org> Date: Fri, 23 Jun 2006 17:02:00 +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, 23 Jun 2006 17:02:00 -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 Jun 23 17:02:00 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 860BC16A4A0; Fri, 23 Jun 2006 17:02:00 +0000 (UTC) To: FreeBSD-questions@FreeBSD.org Message-Id: <20060623170200.860BC16A4A0@hub.freebsd.org> Date: Fri, 23 Jun 2006 17:02:00 +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, 23 Jun 2006 17:02:00 -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 Jun 23 17:15: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 808E216A4A0 for ; Fri, 23 Jun 2006 17:15:30 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E43B43D4C for ; Fri, 23 Jun 2006 17:15:29 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5NHFS13009830 for ; Fri, 23 Jun 2006 13:15:28 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id 863B5240A3; Fri, 23 Jun 2006 13:15:22 -0400 (EDT) Date: Fri, 23 Jun 2006 13:15:22 -0400 From: "Michael P. Soulier" To: freebsd-questions@freebsd.org Message-ID: <20060623171522.GB22150@tigger.digitaltorque.ca> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="J2SCkAp4GZ/dPZZf" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: problems building 6-stable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 17:15:30 -0000 --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, I'm trying to upgrade to the stable 6.1 release, but on a make buildworld, = I'm getting this /usr/obj/usr/src/sbin/gpt created for /usr/src/sbin/gpt =3D=3D=3D> sbin/growfs (obj) /usr/obj/usr/src/sbin/growfs created for /usr/src/sbin/growfs =3D=3D=3D> sbin/gvinum (obj) /usr/obj/usr/src/sbin/gvinum created for /usr/src/sbin/gvinum =3D=3D=3D> sbin/ifconfig (obj) /usr/obj/usr/src/sbin/ifconfig created for /usr/src/sbin/ifconfig =3D=3D=3D> sbin/init (obj) /usr/obj/usr/src/sbin/init created for /usr/src/sbin/init =3D=3D=3D> sbin/ip6fw (obj) /usr/obj/usr/src/sbin/ip6fw created for /usr/src/sbin/ip6fw =3D=3D=3D> sbin/ipf (obj) =3D=3D=3D> sbin/ipf/libipf (obj) /usr/obj/usr/src/sbin/ipf/libipf created for /usr/src/sbin/ipf/libipf =3D=3D=3D> sbin/ipf/ipf (obj) mkdir: /usr/obj/usr/src/sbin/ipf/ipf: File exists *** Error code 1 Stop in /usr/src/sbin/ipf/ipf. *** Error code 1 Stop in /usr/src/sbin/ipf. *** Error code 1 Stop in /usr/src/sbin. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. I'm using *default release=3Dcvs tag=3DRELENG_6 in my supfile. Any suggestions? Thanks, Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --J2SCkAp4GZ/dPZZf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEnCGqKGqCc1vIvggRAsxhAJ9fjP77gQU8zXSSFopNXAfC08Z2cQCfeTwC zNhjGfg3tZhvgMvMefi+aP8= =vjxT -----END PGP SIGNATURE----- --J2SCkAp4GZ/dPZZf-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 17: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 2CF4816A4A7 for ; Fri, 23 Jun 2006 17:17:00 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFA7F43DAE for ; Fri, 23 Jun 2006 17:16:40 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5NHGefv009880 for ; Fri, 23 Jun 2006 13:16:40 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id 89F79240A3; Fri, 23 Jun 2006 13:16:34 -0400 (EDT) Date: Fri, 23 Jun 2006 13:16:34 -0400 From: "Michael P. Soulier" To: freebsd-questions@freebsd.org Message-ID: <20060623171634.GC22150@tigger.digitaltorque.ca> Mail-Followup-To: freebsd-questions@freebsd.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/WwmFnJnmDyWGHa4" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: problems with portupgrade -a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 17:17:00 -0000 --/WwmFnJnmDyWGHa4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, I'm wondering what this means... [root@espresso ~]# portupgrade -a [Updating the pkgdb in /var/db/pkg ... - 82 packages fo= und (-0 +55) ....................................................... done] ** Package 'libtool' has been removed from ports tree. ** Port directory not found: devel/libtool13 ** Port marked as IGNORE: misc/ldconfig_compat: isn't needed (part of base rc.d) ** Port marked as IGNORE: emulators/linux_base-8: unsupported by upstream, no security support anymore ** Listing the failed packages (*:skipped / !:failed) ! (libtool-1.3.5_2) (port directory error) ---> Packages processed: 0 done, 81 ignored, 0 skipped and 1 failed What should I make of this? How do I migrate from something that is apparen= tly unsupported upstream? Thanks, Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --/WwmFnJnmDyWGHa4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEnCHyKGqCc1vIvggRAgShAJ0bmvvJybyOwVUUQtUWai1FQF1IwwCgnoUK XAohxXFWccM2bd3GCCl1Kgo= =zI3O -----END PGP SIGNATURE----- --/WwmFnJnmDyWGHa4-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 17:20: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 D6EA616A494 for ; Fri, 23 Jun 2006 17:20:07 +0000 (UTC) (envelope-from andreasf@uniserve.com) Received: from mx3.uniserve.ca (mx3.uniserve.ca [216.113.192.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 829D343D76 for ; Fri, 23 Jun 2006 17:20:07 +0000 (GMT) (envelope-from andreasf@uniserve.com) Received: from andreas.office.uniserve.ca ([216.113.208.217] helo=EXT2602) by mx3.uniserve.ca with smtp (Exim 4.60) (envelope-from ) id 1FtpKA-000AVZ-MP; Fri, 23 Jun 2006 10:20:06 -0700 From: "Andreas Freyvogel" To: "Andreas Wideroe Andersen" , Date: Fri, 23 Jun 2006 10:20:06 -0700 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) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 In-Reply-To: <7.0.1.0.2.20060623083007.035c2010@wideroe.net> X-Scanner: OK. Scanned. Cc: Subject: RE: Backup sollutions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 17:20:07 -0000 We use Bacula (www.bacula.org) and it works really well. Not the most simple to set up but once it is done it is pretty clean and fast. The interface, at least what we use, is command line. I think there is a gui interface but I haven't had so much success with it. -Andreas -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Andreas Wideroe Andersen Sent: Thursday, June 22, 2006 11:34 PM To: freebsd-questions@freebsd.org Subject: Backup sollutions Hi, I'm looking for a free (ports?) backup sollutions for FreeBSD servers. I would like to have something similare to IBM's Tivoli where you install a client on each server and administer the backup from another server with a web gui. Are there similare sollutions found for FreeBSD? Thanks! Andreas _______________________________________________ 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 Jun 23 17:31: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 4B1A116A494 for ; Fri, 23 Jun 2006 17:31:33 +0000 (UTC) (envelope-from anrays@gmail.com) Received: from tor.farlep.net (tor.farlep.net [213.130.1.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9354E43D45 for ; Fri, 23 Jun 2006 17:31:32 +0000 (GMT) (envelope-from anrays@gmail.com) Received: from santinel.home.ua (nas-6-149.dialup.farlep.net [213.130.9.150]) by tor.farlep.net with ESMTP id k5NHV01P004602 for ; Fri, 23 Jun 2006 20:31:21 +0300 Received: from anray by santinel.home.ua with local (Exim 4.62; FreeBSD) id 1FtpU9-0001UI-W4 for ; Fri, 23 Jun 2006 20:30:25 +0300 To: freebsd-questions@freebsd.org References: <20060623171634.GC22150@tigger.digitaltorque.ca> From: Andrey Slusar Mail-Followup-To: freebsd-questions@freebsd.org Date: Fri, 23 Jun 2006 20:30:25 +0300 In-Reply-To: <20060623171634.GC22150@tigger.digitaltorque.ca> (Michael P. Soulier's message of "Fri, 23 Jun 2006 13:16:34 -0400") Message-ID: <86lkrnpyoe.fsf@santinel.home.ua> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.5-b27 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-SMTP-Vilter-Version: 1.1.8 X-SMTP-Vilter-Virus-Backend: clamd X-SMTP-Vilter-Status: clean X-SMTP-Vilter-clamd-Virus-Status: clean Subject: Re: problems with portupgrade -a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 17:31:33 -0000 Fri, 23 Jun 2006 13:16:34 -0400, Michael P. Soulier wrote: > I'm wondering what this means... > [root@espresso ~]# portupgrade -a > [Updating the pkgdb in /var/db/pkg ... - 82 packages found > (-0 +55) ....................................................... done] > ** Package 'libtool' has been removed from ports tree. > ** Port directory not found: devel/libtool13 > ** Port marked as IGNORE: misc/ldconfig_compat: > isn't needed (part of base rc.d) > ** Port marked as IGNORE: emulators/linux_base-8: > unsupported by upstream, no security support anymore > ** Listing the failed packages (*:skipped / !:failed) > ! (libtool-1.3.5_2) (port directory error) > ---> Packages processed: 0 done, 81 ignored, 0 skipped and 1 failed > What should I make of this? How do I migrate from something that is apparently > unsupported upstream? Read the ports/UPDATING From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 17:50: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 C017016A49E for ; Fri, 23 Jun 2006 17:50:26 +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 00E5643D45 for ; Fri, 23 Jun 2006 17:50:25 +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 k5NHoNwj018638; Fri, 23 Jun 2006 10:50:24 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k5NHoMo8018637; Fri, 23 Jun 2006 10:50:22 -0700 (PDT) (envelope-from kline) Date: Fri, 23 Jun 2006 10:50:22 -0700 From: Gary Kline To: Nikolas Britton Message-ID: <20060623175021.GB18163@thought.org> References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> <20060622094604.GC89614@thought.org> <20060622211054.J3990@tripel.monochrome.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 19++ years of service to the Unix community Cc: Gary Kline , FreeBSD Mailing List Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 17:50:26 -0000 On Thu, Jun 22, 2006 at 11:18:35PM -0500, Nikolas Britton wrote: > On 6/22/06, Chris Hill wrote: > >On Thu, 22 Jun 2006, Gary Kline wrote: > > > >> ... Does xmms play streams? > > > >I'm not sure about xmms and streams, never having tried it. So I've just > >been playing with this, and it seems to work like Nikolas' description > >of cplay: download the playlist manually, then you can load it from > >within xmms. I'm listening to radioparadise.com as I type this (thanks > >for the link, Nikolas!) > > > > Your welcome, here's more: > > http://www.somafm.com/ (multiple genres) > http://www.bassdrive.com/ (Drum & Bass / Junge) /* Tops, IMO, gk */ > http://www.friskyradio.com/ (EDM etc.) > http://www.di.fm/ (multiple genres, mostly electronic) > http://www.xtcradio.com/ (DJ Mix Sets) > http://www.staticbeats.com/ (IDM) > http://www.m1live.com/ (Club/Dance) > > Also, Ishkur's Guide to Electronic Music (Flash Player Required): > http://www.di.fm/edmguide/edmguide.html > > Does anyone know of streams that sound like XRT or Q101?... two radio > stations in Chicago > *This* is exactly what I was going to ask about next: if we could all post streaming sites. Oe of my favorites is http://www.sky/fm/[many substream URL's]. Thanks for thhe Guide, Nikolas! Another thing I've been wondering about is xmms-faad2 which is mp4 or a High Effiency decoder of "aac"(?) streams that only require 24kpbs to yeild fairly high fidelity sound. Does anybody know anything about how xmms-faad2 works with good ol' xmms?? (I'm completely new to most of this--streaming sites. But then just got new speakers w/bass boombox!) So any tips will be very welcome. gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 18:13: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 C332516A49A for ; Fri, 23 Jun 2006 18:13:48 +0000 (UTC) (envelope-from arfranks@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 C1FA643D77 for ; Fri, 23 Jun 2006 18:13:38 +0000 (GMT) (envelope-from arfranks@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so846988nzp for ; Fri, 23 Jun 2006 11:13: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NrACNZBbBl0KXztmhNPPus0XV4mr50FrDtqpBfIQqwaDfMCsvj27sakTRNfFgXnBMTU3pndpscsrJnL5ppthNuC3W1nNI5l2R9VJaM9/CHEmPsufwGIvc8Jt7uhCvld2ODv2GdPipSq+nlhJUYgrhuQc6YOhHy8D/81bRo2wJ34= Received: by 10.65.52.16 with SMTP id e16mr242710qbk; Fri, 23 Jun 2006 11:13:37 -0700 (PDT) Received: by 10.64.49.9 with HTTP; Fri, 23 Jun 2006 11:13:37 -0700 (PDT) Message-ID: <2f488c030606231113i2b9b4bdcsa1b4192be54b9011@mail.gmail.com> Date: Fri, 23 Jun 2006 11:13:37 -0700 From: "Alex Franks" To: "Alex Zbyslaw" In-Reply-To: <449BAE45.7030705@dial.pipex.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> <449BAE45.7030705@dial.pipex.com> Cc: freebsd-questions@freebsd.org Subject: Re: Hot-Swapping hard drives on Dell PowerEdge 2850 running FBSD 5.5-PRE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 18:13:48 -0000 On 6/23/06, Alex Zbyslaw wrote: > Alex Franks wrote: > > > Hello all, > > > > I'm getting ready to install 2 identical drives into the available > > drive bays in my 2850. However, it would be highly preferable that > > this machine NOT be shut down in order to install these drives. I know > > from looking at the docs that these drive bays are hot-swappable, but > > I'd like to know before I attempt this that someone else out there has > > successfully performed a hot-swap or hot-install of drives on a 2850 > > or comparable Dell PowerEdge running FreeBSD. > > RAID-1 I assume and PERC 4e/Di. Yes, did it when testing fresh > machines. The controller BIOS has a setting for how much resource to > allocate to the recovery of the inserted drive (0?-100%); the lower you > set it the slower it will recover the disk, but the higher you set it > the slower the machine will go. I think we went for 70% as the machine > never gets *that* heavy disk usage. > > If the machine isn't live yet, then just do a basic install from CD (<30 > mins) and then try the hotswap test. That way you can't lose any data > even if something goes wrong. > > My advice with these machines is never to swap any disk with the machine > off - the controller gets confused. Stick with hotswapping and it seems > fine. I think you can set up an auto-spare so that if a disk fails the > array is rebuilt automatically using the spare. > > Use sysutils/megarc for monitoring the RAID from BSD. > > --Alex > > > Thanks for the input, The drives hot-plugged just fine. The machine was live when I plugged the disks and still is right now. I'm trying to avoid another trip to the colo today to (safely) reboot by finding out if/where the drives are loaded at the hardware level and how I can go about mounting them to logical partitions. At this point, I'm not as concerned about getting the 2 drives into RAID1 since they're going to be used for backup purposes and will not be used in a high volume capacity (for now), and since this would almost certainly require a reboot. I *know* rebooting is preferable, but I'm experimenting here, and uptime is pretty important since the server is the main mysql box for a handful of websites. The controller is a Perc 4e/Di as assumed, and I'm still a little unsure as to whether the 2 drives that shipped with the machine are currently set up in a RAID array. The current filesystem is mounted on /dev/amrd0s1[a-f] and I would expect to find the new drives named similarly after using some useful utility that I'm unaware of. Any thoughts? Thanks again. Alex From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 18:20: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 EDDC916A494 for ; Fri, 23 Jun 2006 18:20:50 +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 2997543D46 for ; Fri, 23 Jun 2006 18:20:49 +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-1) with ESMTP id k5NIKUfm010290 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 23 Jun 2006 21:20:33 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.7/8.13.7) with ESMTP id k5NIKOoL001566 for ; Fri, 23 Jun 2006 21:20:25 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.7/8.13.7/Submit) id k5NIKOwj001565 for freebsd-questions@freebsd.org; Fri, 23 Jun 2006 21:20:24 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Fri, 23 Jun 2006 21:20:24 +0300 From: Giorgos Keramidas To: freebsd-questions@freebsd.org Message-ID: <20060623182024.GA1524@gothmog.pc> References: <20060623171522.GB22150@tigger.digitaltorque.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060623171522.GB22150@tigger.digitaltorque.ca> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.422, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.98, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Subject: Re: problems building 6-stable X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 18:20:51 -0000 On 2006-06-23 13:15, "Michael P. Soulier" wrote: > Hello, > > I'm trying to upgrade to the stable 6.1 release, but on a make buildworld, I'm > getting this > > /usr/obj/usr/src/sbin/gpt created for /usr/src/sbin/gpt > ===> sbin/growfs (obj) > /usr/obj/usr/src/sbin/growfs created for /usr/src/sbin/growfs > ===> sbin/gvinum (obj) > /usr/obj/usr/src/sbin/gvinum created for /usr/src/sbin/gvinum > ===> sbin/ifconfig (obj) > /usr/obj/usr/src/sbin/ifconfig created for /usr/src/sbin/ifconfig > ===> sbin/init (obj) > /usr/obj/usr/src/sbin/init created for /usr/src/sbin/init > ===> sbin/ip6fw (obj) > /usr/obj/usr/src/sbin/ip6fw created for /usr/src/sbin/ip6fw > ===> sbin/ipf (obj) > ===> sbin/ipf/libipf (obj) > /usr/obj/usr/src/sbin/ipf/libipf created for /usr/src/sbin/ipf/libipf > ===> sbin/ipf/ipf (obj) > mkdir: /usr/obj/usr/src/sbin/ipf/ipf: File exists > *** Error code 1 > > Stop in /usr/src/sbin/ipf/ipf. > *** Error code 1 Remove your `/usr/obj' tree, and then run: # cd /usr/src/sbin/ipf # make cleandir # make cleandir Restart the build and then, AFAIK, it should work as expected. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 18:22: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 B403C16A494 for ; Fri, 23 Jun 2006 18:22:12 +0000 (UTC) (envelope-from tarc@tarc.po.cs.msu.su) Received: from tarc.po.cs.msu.su (tarc.po.cs.msu.su [158.250.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id F367E43D60 for ; Fri, 23 Jun 2006 18:22:11 +0000 (GMT) (envelope-from tarc@tarc.po.cs.msu.su) Received: from tarc.po.cs.msu.su (localhost [127.0.0.1]) by tarc.po.cs.msu.su (8.13.4/8.13.4) with ESMTP id k5NIMRk3006148 for ; Fri, 23 Jun 2006 22:22:27 +0400 (MSD) (envelope-from tarc@tarc.po.cs.msu.su) Received: (from tarc@localhost) by tarc.po.cs.msu.su (8.13.4/8.13.4/Submit) id k5NIMRl8006147 for questions@freebsd.org; Fri, 23 Jun 2006 22:22:27 +0400 (MSD) (envelope-from tarc) Resent-From: Tarc Resent-Date: Fri, 23 Jun 2006 22:22:27 +0400 Resent-Message-ID: <20060623182227.GB6084@tarc.po.cs.msu.su> Resent-To: questions@freebsd.org Date: Fri, 23 Jun 2006 22:21:20 +0400 From: Tarc To: questions@freebsd.org, freebsd-amd64@freebsd.org Message-ID: <20060623182120.GA32801@tarc.po.cs.msu.su> References: <20060622075236.GA95258@router.lane.family> <200606221129.19239.syjef@mdanderson.org> <20060622212119.GA7232@router.lane.family> <57d710000606221506s7b1c3f99g3c748e19c37c59e9@mail.gmail.com> <20060622230005.GA8445@router.lane.family> <57d710000606221615s4138166bma64b9bf0e686d2d5@mail.gmail.com> <20060622234730.GA8950@router.lane.family> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20060622234730.GA8950@router.lane.family> User-Agent: mutt-ng/devel-r581 (FreeBSD) Cc: Subject: Re: Does anyone run VNC with 64-bit 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: Fri, 23 Jun 2006 18:22:12 -0000 > > screen? > > /usr/port/sysutils/screen > > My users need up to 20 instances of a graphical analysis package > which has a text-based control window that spawns two graphical > windows. They run a window manager with 24 virtual desktops, > each running an instance of this program. As much as I love > screen (I use it constantly for sysadmin-type work and I have > mutt running constantly on one of my "screen"s), it doesn't quite > fulfill our needs for this task. > What about xorg-dmx? It seems. it's provide what you need :) Does it test someone? -- Best regards, Arseny Nasokin From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 18:30: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 42F9A16A47C for ; Fri, 23 Jun 2006 18:30:53 +0000 (UTC) (envelope-from coolzone@io.dk) Received: from dansknet.dk (smtp1.dansknet.dk [85.233.229.242]) by mx1.FreeBSD.org (Postfix) with SMTP id 4851443D45 for ; Fri, 23 Jun 2006 18:30:52 +0000 (GMT) (envelope-from coolzone@io.dk) Received: (qmail 8169 invoked from network); 23 Jun 2006 19:25:20 -0000 Received: from 85233231013.switch.dansknet.dk (HELO ?85.233.231.13?) (85.233.231.13) by dansknet.dk with SMTP; 23 Jun 2006 19:25:20 -0000 Message-ID: <449C32F3.3090908@io.dk> Date: Fri, 23 Jun 2006 20:29:07 +0200 From: Rico User-Agent: Thunderbird 1.5.0.2 (X11/20060531) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <449B28F8.8060309@io.dk> <20060623022225.GA3164@cactus.homeunix.org> In-Reply-To: <20060623022225.GA3164@cactus.homeunix.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Upload a binary of Open Office 2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 18:30:53 -0000 Thanks Zeng Nan! Didn't know that. Zeng Nan wrote: > On Fri, Jun 23, 2006 at 01:34:16AM +0200, Rico wrote: >> Hi, >> >> Would someone, with access, mind compiling Open Office 2 for FreeBSD 6 >> stable, and uploading it to the FreeBSD server? >> >> Best and kind regards, >> Rico >> >> _______________________________________________ >> 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 download it directly from openoffice's website: > http://www.openoffice.org/index.html > From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 18:46: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 5A12F16A4A6 for ; Fri, 23 Jun 2006 18:46:56 +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 E34F543D49 for ; Fri, 23 Jun 2006 18:46:55 +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.6+UW06.06/8.13.6+UW06.03) with ESMTP id k5NIkrAH018418 for ; Fri, 23 Jun 2006 11:46:53 -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.6+UW06.06/8.13.6+UW06.03) with ESMTP id k5NIkqWq012160 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 23 Jun 2006 11:46:53 -0700 Message-ID: <449C371C.9090204@u.washington.edu> Date: Fri, 23 Jun 2006 11:46:52 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> <20060622094604.GC89614@thought.org> <20060622211054.J3990@tripel.monochrome.org> <20060623175021.GB18163@thought.org> In-Reply-To: <20060623175021.GB18163@thought.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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, __USER_AGENT 0' Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 18:46:56 -0000 Gary Kline wrote: > On Thu, Jun 22, 2006 at 11:18:35PM -0500, Nikolas Britton wrote: > >> On 6/22/06, Chris Hill wrote: >> >>> On Thu, 22 Jun 2006, Gary Kline wrote: >>> >>> >>>> ... Does xmms play streams? >>>> >>> I'm not sure about xmms and streams, never having tried it. So I've just >>> been playing with this, and it seems to work like Nikolas' description >>> of cplay: download the playlist manually, then you can load it from >>> within xmms. I'm listening to radioparadise.com as I type this (thanks >>> for the link, Nikolas!) >>> >>> >> Your welcome, here's more: >> >> http://www.somafm.com/ (multiple genres) >> http://www.bassdrive.com/ (Drum & Bass / Junge) /* Tops, IMO, gk */ >> http://www.friskyradio.com/ (EDM etc.) >> http://www.di.fm/ (multiple genres, mostly electronic) >> http://www.xtcradio.com/ (DJ Mix Sets) >> http://www.staticbeats.com/ (IDM) >> http://www.m1live.com/ (Club/Dance) >> >> Also, Ishkur's Guide to Electronic Music (Flash Player Required): >> http://www.di.fm/edmguide/edmguide.html >> >> Does anyone know of streams that sound like XRT or Q101?... two radio >> stations in Chicago >> >> > > *This* is exactly what I was going to ask about next: > if we could all post streaming sites. Oe of my favorites is > http://www.sky/fm/[many substream URL's]. > > Thanks for thhe Guide, Nikolas! > > Another thing I've been wondering about is xmms-faad2 > which is mp4 or a High Effiency decoder of "aac"(?) > streams that only require 24kpbs to yeild fairly high > fidelity sound. Does anybody know anything about how > xmms-faad2 works with good ol' xmms?? (I'm completely > new to most of this--streaming sites. But then just got > new speakers w/bass boombox!) So any tips will be very > welcome. > > gary The faad2 item should just be a plugin for xmms. It's kind of convoluted how they compile stuff with the faad2 lib, but basically-in Linux at least-it downloads the complete faad2 source, compiles it first, then compiles the plugin from a different branch from the main source in the source tree. I was doing a bit of reading too (trying to see if I can just change the source a bit to get ID3/iTunes tags to be read in xmms), and it turns out that iTunes uses MP4 format with AAC encoding, as opposed to AAC which uses MP2 encoding as a base. Doesn't really matter all that much I suppose, but I was just looking through the source trying to figure stuff out and the original author's nomenclature is just a bit confusing. -Garrett From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 19:13: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 4757616A49E for ; Fri, 23 Jun 2006 19:13:51 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [216.9.132.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8866043D45 for ; Fri, 23 Jun 2006 19:13:50 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id D5F1F7E8D2 for ; Fri, 23 Jun 2006 15:13:49 -0400 (EDT) X-Virus-Scanned: by amavisd-new at netmusician.org Received: from netmusician.org ([127.0.0.1]) by localhost (jauty.suso.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wvPXVCnvPMKV for ; Fri, 23 Jun 2006 15:13:49 -0400 (EDT) Received: from [156.56.12.213] (loony.uits.indiana.edu [156.56.12.213]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id 5B7407E8D1 for ; Fri, 23 Jun 2006 15:13:49 -0400 (EDT) Mime-Version: 1.0 (Apple Message framework v750) In-Reply-To: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> References: <9842C36E-C450-4282-9019-BA2DD3476684@netmusician.org> Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Apple-Mail-119-984134368" Message-Id: Content-Transfer-Encoding: 7bit From: Joe Auty Date: Fri, 23 Jun 2006 15:13:46 -0400 To: FreeBSD Questions X-Pgp-Agent: GPGMail 1.1.2 (Tiger) X-Mailer: Apple Mail (2.750) Subject: Re: Python port 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: Fri, 23 Jun 2006 19:13:51 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --Apple-Mail-119-984134368 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed This problem has been resolved, thanks to my new friend Alex Zbyslaw! The problem was that my /usr/local/lib/python2.4 was set with perms 754 rather than 755. I didn't realize that doing a port uninstall and reinstall doesn't necessarily correct permission problems on parent directories. I hope this is useful to somebody else =) On May 22, 2006, at 12:02 AM, Joe Auty wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hello, > > Starting up Mailman on one machine I'm on produces the following > error message (see below). For some reason, this is not a problem > with the same version on another FreeBSD machine I'm on, both > installed from ports. I have 'mail/mailman' => 'MAIL_GID=mailman' > in my pkgtools.conf on both machines, and a mailman user/group... > > According to the Mailman list, this is actually a Python build > problem, which is why I'm posting this there (can't explain the > fact that I'm not reproducing it on the same machine, although I > think I may have accidently messed up some of the permissions in / > usr on the machine this is no longer working on)... The list > suggests that the configure arguments reference the Python > executables, not the lib directory. I'm not sure if this applies to > my problem, but here is the thread: > > http://www.mail-archive.com/mailman-users@python.org/msg28164.html > > > Any ideas? > > >> Could not find platform independent libraries >> Could not find platform independent libraries >> Could not find platform dependent libraries >> Consider setting $PYTHONHOME to [:] >> 'import site' failed; use -v for traceback >> Could not find platform independent libraries >> Could not find platform dependent libraries >> Consider setting $PYTHONHOME to [:] >> 'import site' failed; use -v for traceback >> Could not find platform independent libraries >> Could not find platform dependent libraries >> Consider setting $PYTHONHOME to [:] >> 'import site' failed; use -v for traceback >> Traceback (most recent call last): >> Traceback (most recent call last): >> File "/usr/local/mailman/bin/qrunner", line 76, in ? >> import getopt >> ImportError: No module named getopt >> >> (snip... all sorts of similar errors) > > > > > > > > > - ----------- > Joe Auty > NetMusician: web publishing software for musicians > http://www.netmusician.org > joe@netmusician.org > > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.3 (Darwin) > > iD8DBQFEcTfyCgdfeCwsL5ERAiUSAJ9HVru6UkqytTBCBgt/BZESQ2cEwQCcDnIK > hqoZq3z42bhokFJ0r/5PvJA= > =s/2K > -----END PGP SIGNATURE----- > _______________________________________________ > 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" --Apple-Mail-119-984134368 content-type: application/pgp-signature; x-mac-type=70674453; name=PGP.sig content-description: This is a digitally signed message part content-disposition: inline; filename=PGP.sig content-transfer-encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (Darwin) iD8DBQFEnD1qCgdfeCwsL5ERAsKUAJ9CeNdwtBU45rtvaMqjSEqmfaljyACeMhsv 1IWyn0fhCbTclvE1pFtMMdk= =5vfF -----END PGP SIGNATURE----- --Apple-Mail-119-984134368-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 19:17: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 891D616A4A6 for ; Fri, 23 Jun 2006 19:17:19 +0000 (UTC) (envelope-from whaynes53@verizon.net) Received: from vms040pub.verizon.net (vms040pub.verizon.net [206.46.252.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B9343D6A for ; Fri, 23 Jun 2006 19:17:14 +0000 (GMT) (envelope-from whaynes53@verizon.net) Received: from homefd908b2fef ([71.240.17.85]) by vms040.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J1B003OXUOCRKO8@vms040.mailsrvcs.net> for freebsd-questions@FreeBSD.org; Fri, 23 Jun 2006 14:12:15 -0500 (CDT) Date: Fri, 23 Jun 2006 15:12:13 -0400 From: "Walt Haynes" To: Message-id: <005c01c696f8$f10acaf0$2e01a8c0@homefd908b2fef> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-Mailer: Microsoft Outlook, Build 10.0.2616 Importance: Normal X-Priority: 3 (Normal) X-MSMail-priority: Normal Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Installing FreeBSD 4.9 on a Windows/XP Professional 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: Fri, 23 Jun 2006 19:17:19 -0000 Good afternoon. I have a Compaq SR1810NX with a 100GB hard drive split into four equal partitions of 23GB. Two are initialized (one with Windows/XP (C) and the other with a quick format (G)); the file systems are NTFS. The other two partitions (D and E) are uninitialized. I have FreeBSD 4.9 on three CD'S that I'd like to install into one of the uninitialized partitions. Can you tell me what I need to do for preinstallation and what do I need to know to direct my installation to one of the uninitialized partitions? I'm going to give the entire 23GB to FreeBSD. Thank you in advance for your assistance. I'm very anxious to learn UNIX system administration and all of the related tasks (shell programming, security administration, etc.). Walt Haynes From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 19: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 56DCA16A4A6 for ; Fri, 23 Jun 2006 19:32:41 +0000 (UTC) (envelope-from nalists@scls.lib.wi.us) Received: from mail.scls.lib.wi.us (mail.scls.lib.wi.us [198.150.40.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDC9443D49 for ; Fri, 23 Jun 2006 19:32:37 +0000 (GMT) (envelope-from nalists@scls.lib.wi.us) Received: from [172.26.2.238] ([172.26.2.238]) by mail.scls.lib.wi.us (8.13.1/8.13.1) with ESMTP id k5NJWarv025759; Fri, 23 Jun 2006 14:32:36 -0500 (CDT) (envelope-from nalists@scls.lib.wi.us) Message-ID: <449C41D4.4070205@scls.lib.wi.us> Date: Fri, 23 Jun 2006 14:32:36 -0500 From: Greg Barniskis User-Agent: Thunderbird 1.5.0.2 (Windows/20060308) MIME-Version: 1.0 To: Walt Haynes References: <005c01c696f8$f10acaf0$2e01a8c0@homefd908b2fef> In-Reply-To: <005c01c696f8$f10acaf0$2e01a8c0@homefd908b2fef> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Installing FreeBSD 4.9 on a Windows/XP Professional 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: Fri, 23 Jun 2006 19:32:41 -0000 Walt Haynes wrote: > Good afternoon. I have a Compaq SR1810NX with a 100GB hard drive > split into four equal partitions of 23GB. Two are initialized (one with > Windows/XP (C) and the other with a quick format (G)); the file systems > are NTFS. The other two partitions (D and E) are uninitialized. I have > FreeBSD 4.9 on three CD'S that I'd like to install into one of the > uninitialized partitions. Can you tell me what I need to do for > preinstallation and what do I need to know to direct my installation to > one of the uninitialized partitions? I'm going to give the entire 23GB > to FreeBSD. Thank you in advance for your assistance. I'm very anxious > to learn UNIX system administration and all of the related tasks (shell > programming, security administration, etc.). Version 4.9 is basically obsolete and may not support newer hardware. I don't know your hardware, so can't specifically address that. But even if it's older, you really should download and install version 6.1 from the Web site, or buy a new CD set from a reseller, if you intend to learn the state of the art and keep moving forward. Since the disk space you want to use for FreeBSD is not initialized, you should have little trouble distinguishing it from your Windows disk space during the installation. Telling the installer which disk space to use is pretty straightforward. Even so, you should back up your Windows installation before proceeding with a FreeBSD install, unless you are very confident. For complete install instructions, read the very fine manual: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ Specifically, the method of selecting disk space is described here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-steps.html Welcome, and good luck! -- Greg Barniskis, Computer Systems Integrator South Central Library System (SCLS) Library Interchange Network (LINK) , (608) 266-6348 From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 19:34: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 2EF6416A4A6 for ; Fri, 23 Jun 2006 19:34:39 +0000 (UTC) (envelope-from anrays@gmail.com) Received: from tor.farlep.net (tor.farlep.net [213.130.1.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76DDD43D46 for ; Fri, 23 Jun 2006 19:34:38 +0000 (GMT) (envelope-from anrays@gmail.com) Received: from santinel.home.ua (nas-6-149.dialup.farlep.net [213.130.9.150]) by tor.farlep.net with ESMTP id k5NJYR5d012884; Fri, 23 Jun 2006 22:34:32 +0300 Received: from anray by santinel.home.ua with local (Exim 4.62; FreeBSD) id 1FtrPc-00047T-MO; Fri, 23 Jun 2006 22:33:52 +0300 To: "Walt Haynes" References: <005c01c696f8$f10acaf0$2e01a8c0@homefd908b2fef> From: Andrey Slusar Mail-Followup-To: "Walt Haynes" , Date: Fri, 23 Jun 2006 22:33:52 +0300 In-Reply-To: <005c01c696f8$f10acaf0$2e01a8c0@homefd908b2fef> (Walt Haynes's message of "Fri, 23 Jun 2006 15:12:13 -0400") Message-ID: <86d5czpsyn.fsf@santinel.home.ua> User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.5-b27 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-SMTP-Vilter-Version: 1.1.8 X-SMTP-Vilter-Virus-Backend: clamd X-SMTP-Vilter-Status: clean X-SMTP-Vilter-clamd-Virus-Status: clean Cc: freebsd-questions@FreeBSD.org Subject: Re: Installing FreeBSD 4.9 on a Windows/XP Professional 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: Fri, 23 Jun 2006 19:34:39 -0000 Fri, 23 Jun 2006 15:12:13 -0400, Walt Haynes wrote: > Good afternoon. I have a Compaq SR1810NX with a 100GB hard > drive split into four equal partitions of 23GB. Two are initialized > (one with Windows/XP (C) and the other with a quick format (G)); the > file systems are NTFS. The other two partitions (D and E) are > uninitialized. I have FreeBSD 4.9 on three CD'S that I'd like to > install into one of the uninitialized partitions. FreeBSD ports officialy is unsupported for 4.x and 4.9 is not latest 4.x release. When you installed new system, now RELENG_6_1 is recommended. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 19: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 0751916A4A6 for ; Fri, 23 Jun 2006 19:40:35 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2695843D6E for ; Fri, 23 Jun 2006 19:40:31 +0000 (GMT) (envelope-from joao.barros@gmail.com) Received: by wx-out-0102.google.com with SMTP id h30so532242wxd for ; Fri, 23 Jun 2006 12:40:30 -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=JdRAFGQX+eOm9BXUxTMlOLrqVZ7O2pVoSyUUJ8wexW7xAXUYW/fdp3/AsDmbSwzbJFOfCgqwOTyH21m0OJGbmYzCN85TM2ASusbDELKZBzvfsKWT+CZ6yFMRdHfigE5E9Qh7prcfPiGflJh3KBcHmnnjj1FbvzbAs6iYi8ysqf4= Received: by 10.70.14.3 with SMTP id 3mr4779056wxn; Fri, 23 Jun 2006 12:40:30 -0700 (PDT) Received: by 10.70.108.17 with HTTP; Fri, 23 Jun 2006 12:40:30 -0700 (PDT) Message-ID: <70e8236f0606231240t77e1b510xd5ecd98c093af559@mail.gmail.com> Date: Fri, 23 Jun 2006 20:40:30 +0100 From: "Joao Barros" To: "Alex Franks" In-Reply-To: <2f488c030606231113i2b9b4bdcsa1b4192be54b9011@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: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> <449BAE45.7030705@dial.pipex.com> <2f488c030606231113i2b9b4bdcsa1b4192be54b9011@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Hot-Swapping hard drives on Dell PowerEdge 2850 running FBSD 5.5-PRE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 19:40:35 -0000 On 6/23/06, Alex Franks wrote: > The controller is a Perc 4e/Di as assumed, and I'm still a little > unsure as to whether the 2 drives that shipped with the machine are > currently set up in a RAID array. The current filesystem is mounted on > /dev/amrd0s1[a-f] and I would expect to find the new drives named > similarly after using some useful utility that I'm unaware of. Any > thoughts? > > Thanks again. > Alex Try amrstat from ports which will show you something like this: Logical volume 0 optimal (101.60 GB, RAID5) Physical drive 0:0 online Physical drive 0:1 online Physical drive 1:0 online Physical drive 1:2 online Physical drive 1:4 hotspare -- Joao Barros From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 19:41:28 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 562DB16A47E for ; Fri, 23 Jun 2006 19:41:28 +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 0183143D6E for ; Fri, 23 Jun 2006 19:41:10 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from [172.16.2.1] (charm.daemonsecurity.com [172.16.2.1]) by strange.daemonsecurity.com (Postfix) with ESMTP id 373C82E02B for ; Fri, 23 Jun 2006 21:41:09 +0200 (CEST) Message-ID: <449C43CD.5060608@locolomo.org> Date: Fri, 23 Jun 2006 21:41:01 +0200 From: =?UTF-8?B?RXJpayBOw7hyZ2FhcmQ=?= Organization: Locolomo.ORG User-Agent: Thunderbird 1.5.0.2 (X11/20060423) MIME-Version: 1.0 To: FreeBSD Questions Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms010905080903020807090407" Cc: Subject: Error trying to portdowngrade sane-backends X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 19:41:28 -0000 This is a cryptographically signed message in MIME format. --------------ms010905080903020807090407 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi: I had my scanner working with a previous version of sane-backends (1.16), then I upgraded, system to 6.1 and sane-backends to 1.17 and it has not been working since: I get I/O errors or connection stalls, it seems to be a usb problem. To rule out that this is not just my laptop getting old I have tried downgrading with portdowngrade, but I got this error: ===> Found saved configuration for sane-backends-1.0.16 ===> Extracting for sane-backends-1.0.16 => MD5 Checksum OK for sane-backends-1.0.16.tar.gz. => No SHA256 checksum recorded for sane-backends-1.0.16.tar.gz. ===> Patching for sane-backends-1.0.16 ===> Applying FreeBSD patches for sane-backends-1.0.16 ===> sane-backends-1.0.16 depends on executable: gmake - found ===> sane-backends-1.0.16 depends on shared library: jpeg.9 - found ===> sane-backends-1.0.16 depends on shared library: usb-0.1.8 - found ===> sane-backends-1.0.16 depends on shared library: intl - found ===> Configuring for sane-backends-1.0.16 ===> Building for sane-backends-1.0.16 gmake: Makefile: No such file or directory gmake: *** No rule to make target `Makefile'. Stop. *** Error code 2 Stop in /usr/ports/graphics/sane-backends. *** Error code 1 Any hints on what is wrong? Thanks, 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 --------------ms010905080903020807090407 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 MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTA2MDYyMzE5NDEw MlowIwYJKoZIhvcNAQkEMRYEFPK04d8uusXf1zYEQXei8p6ymFA/MFIGCSqGSIb3DQEJDzFF MEMwCgYIKoZIhvcNAwcwDgYIKoZIhvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIH MA0GCCqGSIb3DQMCAgEoMIG4BgkrBgEEAYI3EAQxgaowgacwgZkxCzAJBgNVBAYTAkVTMRgw FgYDVQQKEw9EYWVtb24gU2VjdXJpdHkxHjAcBgNVBAsTFUNlcnRpZmljYXRlIEF1dGhvcml0 eTEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MSQwIgYJKoZIhvcNAQkBFhVjYUBk YWVtb25zZWN1cml0eS5jb20xCjAIBgNVBAUTATACCQCNA1Uf/OBPDDCBugYLKoZIhvcNAQkQ AgsxgaqggacwgZkxCzAJBgNVBAYTAkVTMRgwFgYDVQQKEw9EYWVtb24gU2VjdXJpdHkxHjAc BgNVBAsTFUNlcnRpZmljYXRlIEF1dGhvcml0eTEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0 aG9yaXR5MSQwIgYJKoZIhvcNAQkBFhVjYUBkYWVtb25zZWN1cml0eS5jb20xCjAIBgNVBAUT ATACCQCNA1Uf/OBPDDANBgkqhkiG9w0BAQEFAASCAQBrp2Ck+2iWM0RBzbIi5ryISHtBIMz1 qKLh5cXZwJIhQCQlgY8MH2wUj7p76ZqqSq+F9/pxsqbtkH1S+RP9HxD9kXMjC+qqJw9P5Rl8 ZT5rxJ+bjqYahOEKLjJsUDXyKxbTb4z/ab61T4ZfH9mL+pPYo0PxNzAHqBC3dd4g8QSf0JdE MI6Py6beEMEMXm5E536izDMbrUZcRYMGTbsXe5DkiDN9TpnszW4eIezJ8WGmcwHOFjrwmWz3 ofXWloLeSB+zrYecca9FZcywc16V94nUGjj6uK8JIbiGKnQ1rQlo5O/fSmCNHpaV6Uy22nmN 2UceiR21A4GLlIe3DaIzazvsAAAAAAAA --------------ms010905080903020807090407-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 20:37:28 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 DA27B16A492 for ; Fri, 23 Jun 2006 20:37:28 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 855A743D46 for ; Fri, 23 Jun 2006 20:37:28 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from 209-6-203-170.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.203.170]) by smtp01.lnh.mail.rcn.net with ESMTP; 23 Jun 2006 16:39:15 -0400 X-IronPort-AV: i="4.06,170,1149480000"; d="scan'208"; a="227404916:sNHT22982612" From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17564.20633.108189.618063@jerusalem.litteratus.org> Date: Fri, 23 Jun 2006 16:35:37 -0400 To: questions@freebsd.org X-Mailer: VM 7.17 under 21.5 (beta27) "fiddleheads" XEmacs Lucid Cc: Subject: "find" misbehaving?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 20:37:28 -0000 Can anyone explain what's happening here? huff@jerusalem>> find /usr/local/lib/perl5/site_perl/5.8.8/ -name Net_SNMP_util,pm huff@jerusalem>> dir /usr/local/lib/perl5/site_perl/5.8.8/Net_* -r--r--r-- 1 root wheel 64421 Jun 22 23:29 /usr/local/lib/perl5/site_perl/5.8 .8/Net_SNMP_util.pm huff@jerusalem>> Robert Huff From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 20:40: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 91A2016A47C for ; Fri, 23 Jun 2006 20:40:31 +0000 (UTC) (envelope-from reitz@eecs.cwru.edu) Received: from beta.eecs.cwru.edu (beta.EECS.CWRU.Edu [129.22.150.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FE5F43D48 for ; Fri, 23 Jun 2006 20:40:31 +0000 (GMT) (envelope-from reitz@eecs.cwru.edu) Received: from brak ([::ffff:129.22.151.63]) (TLS: TLSv1/SSLv3,168bits,DES-CBC3-SHA) by beta.eecs.cwru.edu with esmtp; Fri, 23 Jun 2006 16:40:30 -0400 id 000AC12B.449C51BE.00003005 Date: Fri, 23 Jun 2006 16:40:23 -0400 (EDT) From: Andy Reitz X-X-Sender: reitz@brak To: Robert Huff In-Reply-To: <17564.20633.108189.618063@jerusalem.litteratus.org> Message-ID: References: <17564.20633.108189.618063@jerusalem.litteratus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: "find" misbehaving?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 20:40:31 -0000 On Fri, 23 Jun 2006, Robert Huff wrote: > > Can anyone explain what's happening here? > > huff@jerusalem>> find /usr/local/lib/perl5/site_perl/5.8.8/ -name Net_SNMP_util,pm Looks like a typo - you have a comma (',') in the target for find. -Andy. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 20:42:28 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 BF7AA16A49E for ; Fri, 23 Jun 2006 20:42:28 +0000 (UTC) (envelope-from micahjon@ywave.com) Received: from relay0.av-mx.com (relay0.av-mx.com [137.118.16.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C3F043D55 for ; Fri, 23 Jun 2006 20:42:23 +0000 (GMT) (envelope-from micahjon@ywave.com) X-Virus-Scan-Time: 0 Received: from [137.118.16.60] (HELO mx2.av-mx.com) by relay0.av-mx.com (CommuniGate Pro SMTP 4.2.10) with SMTP id 307358807 for questions@freebsd.org; Fri, 23 Jun 2006 16:42:22 -0400 Received: (qmail 19458 invoked from network); 23 Jun 2006 20:42:22 -0000 Received: from dsl20226.ywave.com (HELO ?192.168.1.65?) (micahjon@ywave.com@216.227.107.226) by 0 with SMTP; 23 Jun 2006 20:42:22 -0000 X-CLIENT-IP: 216.227.107.226 X-CLIENT-HOST: dsl20226.ywave.com Message-ID: <449C522C.8080804@ywave.com> Date: Fri, 23 Jun 2006 13:42:20 -0700 From: Micah User-Agent: Thunderbird 1.5.0.4 (X11/20060611) MIME-Version: 1.0 To: Robert Huff References: <17564.20633.108189.618063@jerusalem.litteratus.org> In-Reply-To: <17564.20633.108189.618063@jerusalem.litteratus.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: "find" misbehaving?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 20:42:28 -0000 Robert Huff wrote: > Can anyone explain what's happening here? > > huff@jerusalem>> find /usr/local/lib/perl5/site_perl/5.8.8/ -name Net_SNMP_util,pm > huff@jerusalem>> dir /usr/local/lib/perl5/site_perl/5.8.8/Net_* -r--r--r-- 1 root wheel 64421 Jun 22 23:29 /usr/local/lib/perl5/site_perl/5.8 > .8/Net_SNMP_util.pm > huff@jerusalem>> > > > Robert Huff Could it be there's a comma in the find command but the filename has a period? - Micah From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 20:51: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 0326E16A492 for ; Fri, 23 Jun 2006 20:51:15 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AAE843D46 for ; Fri, 23 Jun 2006 20:51:14 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (mx1.hub.org [200.46.208.251]) by hub.org (Postfix) with ESMTP id AF378290C6E for ; Fri, 23 Jun 2006 17:51:10 -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 10204-06 for ; Fri, 23 Jun 2006 17:51:13 -0300 (ADT) Received: from ganymede.hub.org (blk-7-151-244.eastlink.ca [71.7.151.244]) by hub.org (Postfix) with ESMTP id CE999290C6D for ; Fri, 23 Jun 2006 17:51:09 -0300 (ADT) Received: by ganymede.hub.org (Postfix, from userid 1000) id 901F347F89; Fri, 23 Jun 2006 17:51:13 -0300 (ADT) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id 8E6C43464E for ; Fri, 23 Jun 2006 17:51:13 -0300 (ADT) Date: Fri, 23 Jun 2006 17:51:13 -0300 (ADT) From: "Marc G. Fournier" To: freebsd-questions@freeBSD.org Message-ID: <20060623175019.X1114@ganymede.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: HP Dealer in Panama, Central America ... anyone? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 20:51:15 -0000 Figured I'd ask here ... HP themselves don't appear to have an office, but maybe someone in the area knows whom I could talk to? Thx ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 20:58: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 140DD16A4A7 for ; Fri, 23 Jun 2006 20:58:50 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D54B43D7B for ; Fri, 23 Jun 2006 20:58:40 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from 209-6-203-170.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.203.170]) by smtp01.lnh.mail.rcn.net with ESMTP; 23 Jun 2006 17:00:28 -0400 X-IronPort-AV: i="4.06,170,1149480000"; d="scan'208"; a="227417698:sNHT57260580" From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17564.21905.162300.468486@jerusalem.litteratus.org> Date: Fri, 23 Jun 2006 16:56:49 -0400 To: questions@freebsd.org In-Reply-To: <449C522C.8080804@ywave.com> References: <17564.20633.108189.618063@jerusalem.litteratus.org> <449C522C.8080804@ywave.com> X-Mailer: VM 7.17 under 21.5 (beta27) "fiddleheads" XEmacs Lucid Cc: Subject: Re: "find" misbehaving?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 20:58:50 -0000 Micah writes: > Could it be there's a comma in the find command but the filename > has a period? Problem exists between chair and keyboard, >:-( Sorry about that, folks. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 21:26: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 858C316A492 for ; Fri, 23 Jun 2006 21:26:14 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from relay02.roc.ny.frontiernet.net (relay02.roc.ny.frontiernet.net [66.133.182.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 046AB43D48 for ; Fri, 23 Jun 2006 21:26:13 +0000 (GMT) (envelope-from drew@mykitchentable.net) X-Virus-Scanned: by amavisd-new-2.4.1 at filter10.roc.ny.frontiernet.net Received: from blacklamb.mykitchentable.net (67-137-238-101.dsl2.elk.ca.frontiernet.net [67.137.238.101]) by relay02.roc.ny.frontiernet.net (Postfix) with ESMTP id 6F5523700DF; Fri, 23 Jun 2006 21:26:03 +0000 (UTC) Received: from [192.168.25.6] (unknown [192.168.25.6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by blacklamb.mykitchentable.net (Postfix) with ESMTP id 9B1BE1648B6; Fri, 23 Jun 2006 14:26:02 -0700 (PDT) Message-ID: <449C5C69.1030702@mykitchentable.net> Date: Fri, 23 Jun 2006 14:26:01 -0700 From: Drew Tomlinson User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Giorgos Keramidas References: <449C0711.3080803@mykitchentable.net> <20060623155433.GA30666@gothmog.pc> In-Reply-To: <20060623155433.GA30666@gothmog.pc> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Simple DNS For Private LAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 21:26:14 -0000 On 6/23/2006 8:54 AM Giorgos Keramidas wrote: > On 2006-06-23 08:21, Drew Tomlinson wrote: > >> I'm having a hard time understanding what I need to do. I have >> a small home network that uses a 3Com DSL modem/router as the >> last hop to the Internet. Currently, the DSL modem/router to >> provides DNS for both my home network and the Internet. >> Basically I have a few static entries for machines on my home >> network and then the DSL modem/router queries my ISPs name >> servers for everything else. >> >> When I registered my domain, I used ZoneEdit as my name >> servers. 'whois mykitchentable.net' gives this output: >> >> domain: mykitchentable.net >> owner-name: Drew Tomlinson >> nserver: ns3.zoneedit.com 209.61.140.1 >> nserver: ns4.zoneedit.com 216.98.150.236 >> > > Are machines from your `internal' network visible outside? If > not, you can set up a locally-visible fake domain, i.e. `*.drew', > and run a local caching name server. This name server can be a > master for the ``drew.'' zone (``zones'' is what BIND calls parts > of the Domain Name System) and, at the same time, a slave for the > ``mykitchentable.net'' zone. > > >> Now I'm changing ISPs and the DSL modem/router will be removed. >> I am going to use a FBSD 6.x box to be my router, firewall, and >> DNS server. I read the handbook regarding DNS but remain >> confused. >> > > The Handbook needs a bit of work around that area :-/ > > >> Should I be a master for mykitchentable.net? >> > > Not necessarily. You can leave the name-servers of zoneedit as > masters. > > >> I'm thinking not because ZoneEdit is the master, correct? >> > > Correct :-) > > >> So should I be a slave? >> > > This would be nice. > > >> And if I'm a slave, will my DNS get it's updates from ZoneEdit? >> > > This depends on whether ZoneEdit allows ``zone transfers'' from > their master name servers to the one you will set up as a slave. > > >> Or should I become master for my zone and make ZoneEdit a >> backup DNS? >> > > I'd probably leave ZoneEdit as the master, unless your DSL has a > static IP address. Even if you *do* have a static IP address, > then it is still a good idea to leave ZoneEdit as the master, as > long as they let you become a slave NS. > > >> I'm a complete newbie to DNS but know that it's important to >> get it right or lots of stuff gets broken. Can someone please >> guide me in the right direction? I don't mind reading if you >> send me a link. :) >> > > I think the next step should be to check if ZoneEdit allows you > to become a slave NS for your zones. > > Then you need to decide if the systems you have behind the > FreeBSD gateway will have publicly-visible addresses or use NAT. > > If you use NAT, then I can guide you through setting up a local > ``master zone'' that is only visible inside your home network, > and a ``slave zone'' that pulls stuff from ZoneEdit for the > ``mykitchentable.net'' domain. I already have a similar setup at > home, to let my internal systems (workstation, laptop) see each > other with internal names and still use my ISP's name servers for > everything else. > > If you don't use NAT, things are going to be much easier, since > you only have to set up the names at ZoneEdit and pull the master > zone from there. > Thank you for your reply. I use NAT for my servers that are visible from the outside so I set ZoneEdit to return the same address for all servers at mykitchentable.net which is currently 67.137.238.101. Thus www.mykitchentable.net, drew.mykitchentable.net, mykitchentable.net, and whatever else.all return 67.137.238.101. Based up this, it seems that I should leave ZoneEdit alone and set up a local "master zone" visible only to my private LAN as you describe above. Being a slave and pulling from ZoneEdit wouldn't have any benefit as the public address won't equal the private address. So assuming I understand correctly, yes, please guide me in setting up a local master zone. Thank you very much!!! Drew -- Be a Great Magician! Visit The Alchemist's Warehouse http://www.alchemistswarehouse.com From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 22: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 4E2F616A4A6 for ; Fri, 23 Jun 2006 22:09:27 +0000 (UTC) (envelope-from bhouse2@unifiednetworkservices.ca) Received: from tomts43-srv.bellnexxia.net (tomts43.bellnexxia.net [209.226.175.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA87743D49 for ; Fri, 23 Jun 2006 22:09:26 +0000 (GMT) (envelope-from bhouse2@unifiednetworkservices.ca) Received: from mail.unifiednetworkservices.ca ([69.159.59.141]) by tomts43-srv.bellnexxia.net (InterMail vM.5.01.06.13 201-253-122-130-113-20050324) with ESMTP id <20060623220925.NDTA1543.tomts43-srv.bellnexxia.net@mail.unifiednetworkservices.ca> for ; Fri, 23 Jun 2006 18:09:25 -0400 Received: (qmail 68270 invoked by uid 1009); 23 Jun 2006 17:20:53 -0000 Received: from toronto-hse-ppp4316931.sympatico.ca (HELO NOTEBOOK) (bhouse2@unifiednetworkservices.ca@69.159.59.141) by mail.unifiednetworkservices.ca with SMTP; 23 Jun 2006 17:20:53 -0000 From: "Ben House" To: Date: Fri, 23 Jun 2006 18:07:45 -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.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Importance: Normal Subject: USB External harddrive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 22:09:27 -0000 Greetings, I have an issue with trying to hookup a USB hard drive to an IBM Netfinity 3000 server. The direct access (da) device does not appear in the /dev directory. It appears that the Western Digital drive is being recognized. I am using a Generic kernel, 6.0 Release. dmesg: umass0: Western Digital External HDD, rev 2.00/6.02, addr 2 uhid0: Western Digital External HDD, rev 2.00/6.02, addr 2, iclass 8/6 umass0: at uhub0 port 1 (addr 2) disconnected umass0: detached uhid0: at uhub0 port 1 (addr 2) disconnected uhid0: detached umass0: Western Digital External HDD, rev 2.00/6.02, addr 2 uhid0: Western Digital External HDD, rev 2.00/6.02, addr 2, iclass 8/6 Thanks in advance for any suggestions. Ben House From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 22:12: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 3898216A47B for ; Fri, 23 Jun 2006 22:12:30 +0000 (UTC) (envelope-from hugo.ngd@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 BB4CF43D45 for ; Fri, 23 Jun 2006 22:12:29 +0000 (GMT) (envelope-from hugo.ngd@gmail.com) Received: by nz-out-0102.google.com with SMTP id m22so887421nzf for ; Fri, 23 Jun 2006 15:12:29 -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=FQSbAbif4wWTNc6no06myWWqjUxCVBIcXP4HpGufhq8g0CFeF1XuouZTiFON+uY/ZS1NiylYyR5z1ETK2VoCb1+49xG23EucmLqyYKT/pH1CA3YkfRrNjf3XneKjCmo4ZKqPzJItF6gxyB9bIQX1q3u61QjoM/FvFn/KEaANSPU= Received: by 10.36.135.5 with SMTP id i5mr4424200nzd; Fri, 23 Jun 2006 15:12:28 -0700 (PDT) Received: by 10.36.139.8 with HTTP; Fri, 23 Jun 2006 15:12:28 -0700 (PDT) Message-ID: <7de6ba830606231512x43e9c17dk219d39cab86a2b54@mail.gmail.com> Date: Fri, 23 Jun 2006 22:12:28 +0000 From: "NgD Vulto" 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: Mouse Restart X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 22:12:30 -0000 Hello, I have a usb (bus?) mouse and sometimes when I start my freebsd it doesn't work, I used to reboot before and just after rebooting it was working pretty well...but now I found out that when it happens all i have to do is to unplug it and plug it again and it is detected. I use linux also, and I have never experienced it there, so...I just would like to know if there is a command line to restart the mouse device, I am sure it would detect. like usbmouse restart restarting usb device... You know what I mean? xorgcfg didn't help, it is more like freebsd doesn't feel the mouse is there, it doesn't work at shell also, when it wants not to work. But after rebooting once/or just unplug/plug it again it works, kinda crazy ain't that? I repeat, there's nothing wrong with my hardware, it works pretty well at other platforms, I just need the command line to do what the system do when I plug it back to detect it. Thanks. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 22:13: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 3B0CD16A5A4 for ; Fri, 23 Jun 2006 22:13:15 +0000 (UTC) (envelope-from godfreylists@compudoc.za.org) Received: from fawkes.compudoc.za.net (smtp.compudoc.co.za [209.203.2.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7480043D45 for ; Fri, 23 Jun 2006 22:13:14 +0000 (GMT) (envelope-from godfreylists@compudoc.za.org) Received: from office.compudoc.co.za ([209.203.2.68] helo=goddies-pc.compudoc.co.za) by fawkes.compudoc.za.net with esmtp (Exim 4.50 (FreeBSD)) id 1Fttto-000BxJ-7x for freebsd-questions@freebsd.org; Sat, 24 Jun 2006 00:13:12 +0200 Message-Id: <7.0.1.0.0.20060624000904.01e765d8@compudoc.za.org> Message-Id: <7.0.1.0.0.20060623122229.01b2a970@compudoc.za.org> X-Mailer: QUALCOMM Windows Eudora Version 7.0.1.0 Date: Sat, 24 Jun 2006 00:09:11 +0200 To: freebsd-questions@freebsd.org From: Godfrey Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: Freebsd 6.1 Samba 3 as a PDC not using ldap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 22:13:15 -0000 Hello I am looking for help with running SAMBA 3 as a PDC on Freebsd 6.1 I can get samba to run as a basic server no problem. but I would like it get samba to run as a pdc but not using ldap, I would be most grateful if I could see a working smb.conf file running as a pdc that would perhaps steer me in the correct direction. The examples that come with samba 3 have not been ported to freebsd and my visits to google have yielded lots of info but nothing that actually helps me. The problem comes for me to add machines get them to 'register' as part of the domain etc Thank you in advance for any help you may be able to offer Kind Regards Godfrey ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Compu-Doc On-Line - http://www.compudoc.co.za Striving To Serve You Better ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Godfrey J. Hamshire Compu-Doc On-Line 10 Perth Place Umbilo Durban 4001 Phone 08614659009 Fax 031 4651998 Cell 083 773 8776 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Katsumoto: A perfect blossom. You could spend your whole life searching for one, and it would not be a wasted life. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 22:15: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 532F616A49A for ; Fri, 23 Jun 2006 22:15:49 +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 BE03243D49 for ; Fri, 23 Jun 2006 22:15:48 +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; Fri, 23 Jun 2006 18:15:47 -0400 id 00056413.449C6813.00016F52 Received: from Internal Mail-Server (206.210.89.202) by mx01 (envelope-from wmoran@collaborativefusion.com) with AES256-SHA encrypted SMTP; 23 Jun 2006 18:06:57 -0400 Date: Fri, 23 Jun 2006 18:15:47 -0400 From: Bill Moran To: YTResearch Message-Id: <20060623181547.592ac6dc.wmoran@collaborativefusion.com> In-Reply-To: <6C8C7DFA-4F36-4FA6-816F-744149C6C747@hughes.net> References: <6C8C7DFA-4F36-4FA6-816F-744149C6C747@hughes.net> Organization: Collaborative Fusion X-Mailer: Sylpheed version 2.2.6 (GTK+ 2.8.19; 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 and VMWare X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 22:15:49 -0000 In response to YTResearch : > I noticed that someone asked questions concerning VMware on FreeBSD > which was my first realization that the two even go together. I have > the opportunity to advocate FreeBSD as a possible replacement to run > that software as a parting shot in the next week prior to finally > retiring from that organization. They are a very large windows > operation but are putting in some Linux/VMware to reduce the windows > server hardware platforms (I already know that this is of dubious > value when they could natively migrate and just eliminate the > servers, efficiency is not an option in the corporate world paradigms). > > Before I actually recommend they do this on ~80 servers, I would like > to verify that it really can be done to move to a FreeBSD 6.1 RELEASE/ > VMware environment to support W2K3 and E2K3 on a virtual machine? Has > anyone done this? FreeBSD 6 runs fine _inside_ vmware -- as a virtual machine. I used it daily with almost no trouble (and the small amount of trouble is likely to be unrelated to vmware). I have never gotten vmware to run as a program under FreeBSD, i.e. using FreeBSD as the host for other vmware machines. I have tried several times. Technically, VMWare doesn't support it. -- Bill Moran Collaborative Fusion Inc. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 22:25: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 205DF16A49A for ; Fri, 23 Jun 2006 22:25:55 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 832F743D70 for ; Fri, 23 Jun 2006 22:25:49 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wr-out-0506.google.com with SMTP id 71so646683wri for ; Fri, 23 Jun 2006 15:25:48 -0700 (PDT) Received: by 10.54.80.13 with SMTP id d13mr5023489wrb; Fri, 23 Jun 2006 15:25:48 -0700 (PDT) Received: from ?192.168.0.4? ( [216.45.217.148]) by mx.gmail.com with ESMTP id 27sm3987664wrl.2006.06.23.15.25.48; Fri, 23 Jun 2006 15:25:48 -0700 (PDT) Date: Fri, 23 Jun 2006 18:25:52 -0400 From: Gerard Seibert To: freebsd-questions@freebsd.org Organization: Seibercom In-Reply-To: <4941.217.114.136.133.1151057621.squirrel@llca513-a.servidoresdns.net> References: <4941.217.114.136.133.1151057621.squirrel@llca513-a.servidoresdns.net> 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: <20060623182409.A56E.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] Subject: Re: FreeBSD 6.1 amd64 and Samba 3 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, 23 Jun 2006 22:25:55 -0000 DSA - JCR wrote: > HI all again > > I am installing (trying to) Samba 3 from ports nad portaudit says that > there is security advice with it and does not let me to install. > > Then I tried Samba 2 which is in ports and also another security advice > this case with an integer overflow. > > As I can not install from ports, I tried from packages. > > I downloaded and make Samba 3 package (the last one in packages ftp), but > when it installs says that there is 5 packages that need to update. When I > download one of them "liberr", and try to update it says that it can not > update because affect to about 25 0r 30 more packages (kde between others) > > So, I continued whitout update the packages, and tried to launch Samba 3 > in order to see if I can use it, but with swat gives me errors in lines > and does not saw me nothing. I can not make it to work. > > Also I observ that there is no smb.conf.default in any place. > > I need to install Samba, what must I do? > > best regards > > Juan Coruña > Desarrollo de Software Atlantico > When was the last time you updated your ports tree? The version Samba3 in ports has no problems, and has been there for quite some time. Update your ports and try again. I would recommend that you remove the version of Samba that you installed manually first however. HTH -- Gerard Seibert gerard@seibercom.net From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 22:50: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 5BC5416A492 for ; Fri, 23 Jun 2006 22:50:07 +0000 (UTC) (envelope-from kurt@pinboard.com) Received: from mouse.pinboard.com (mouse.pinboard.com [219.163.47.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 851B743D46 for ; Fri, 23 Jun 2006 22:50:05 +0000 (GMT) (envelope-from kurt@pinboard.com) Received: from ant.pbdhome.pinboard.com (194-158-250-78.static.adslpremium.ch [194.158.250.78]) by mouse.pinboard.com (8.13.3/8.13.3/20060620-01/KK) with ESMTP id k5NMo2N5092410 for ; Sat, 24 Jun 2006 07:50:03 +0900 (JST) envelope-from: kurt@pinboard.com (kurt@pinboard.com) client: 194.158.250.78:44764 194-158-250-78.static.adslpremium.ch OK recipients: 1 ultimo: 200606232250 X-FromHost: ant.pbdhome.pinboard.com Received: from ant.pbdhome.pinboard.com (localhost.pbdhome.pinboard.com [127.0.0.1]) by ant.pbdhome.pinboard.com (8.13.3/8.13.3/20051223-01/KK) with ESMTP id k5NMLOcr086043 for ; Sat, 24 Jun 2006 00:21:24 +0200 (CEST) envelope-from: kurt@ant.pbdhome.pinboard.com (kurt@ant.pbdhome.pinboard.com) client: 127.0.0.1:60408 localhost.pbdhome.pinboard.com OK recipients: 1 ultimo: 200606232221 Received: (from kurt@localhost) by ant.pbdhome.pinboard.com (8.13.3/8.13.3/Submit) id k5NMLOCN086042 for freebsd-questions@freebsd.org; Sat, 24 Jun 2006 00:21:24 +0200 (CEST) (envelope-from kurt) Date: Sat, 24 Jun 2006 00:21:24 +0200 From: pbdlists@pinboard.com To: freebsd-questions@freebsd.org Message-ID: <20060623222124.GB85026@pinboard.com> Mail-Followup-To: pbdlists@pinboard.com, freebsd-questions@freebsd.org References: <53b0r3$amsu53@iinet-mail.icp-qv1-irony8.iinet.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <53b0r3$amsu53@iinet-mail.icp-qv1-irony8.iinet.net.au> User-Agent: Mutt/1.4.2.1i X-Virus-Scanned: ClamAV 0.88.2/1562/Fri Jun 23 16:50:07 2006 on mouse.pinboard.com X-Virus-Scanned: ClamAV 0.88.2/1562/Fri Jun 23 09:50:07 2006 on ant.pbdhome.pinboard.com X-Virus-Status: Clean Subject: Re: Cluster File 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: Fri, 23 Jun 2006 22:50:07 -0000 Hi Christopher! GFS (Global File System) is for Red Hat Linux, but GPL, if you have the programming muscle to port it. http://www.redhat.com/software/rha/gfs/ But does MySQL support accessing one file storage from two separate servers? Even with GFS, applications must play along and do _proper_ filelocking without hanging on to exclusive locks unnecessarily. Also, if you really do need to go with a cluster file system, you probably easily have the pennies necessary for buying Red Hat and GFS subscriptions and do it that way, considering that proper shareable SAN storage is not (yet) available for a butterbread. The el-cheapo variant of SAN storage would be iSCSI. As for ftp; replication or NFS probably are the cheapest solutions. Cheers, Kurt On Fri, Jun 23, 2006 at 09:03:03PM +1000, Christopher Martin wrote: > Is there, or are there any plans for, a cluster file system for FreeBSD? > Does anyone know of an open-source one that could be ported? > > Would be great to have two servers dishing out MySQL, ftp, etc from a single > chunk of RAID rather than having to muck about replicating between the two > boxen. > > C Martin > _______________________________________________ > 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 Jun 23 23:20: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 0A93B16A47C for ; Fri, 23 Jun 2006 23:20:08 +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 343A743D48 for ; Fri, 23 Jun 2006 23:20: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 k5NNK6vv020289; Fri, 23 Jun 2006 16:20:07 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k5NNK62s020280; Fri, 23 Jun 2006 16:20:06 -0700 (PDT) (envelope-from kline) Date: Fri, 23 Jun 2006 16:20:01 -0700 From: Gary Kline To: Garrett Cooper Message-ID: <20060623232001.GA20134@thought.org> References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> <20060622094604.GC89614@thought.org> <20060622211054.J3990@tripel.monochrome.org> <20060623175021.GB18163@thought.org> <449C371C.9090204@u.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <449C371C.9090204@u.washington.edu> User-Agent: Mutt/1.4.2.1i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 19++ years of service to the Unix community Cc: freebsd-questions@freebsd.org Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 23:20:09 -0000 On Fri, Jun 23, 2006 at 11:46:52AM -0700, Garrett Cooper wrote: > Gary Kline wrote: > > > > Another thing I've been wondering about is xmms-faad2 > > which is mp4 or a High Effiency decoder of "aac"(?) > > streams that only require 24kpbs to yeild fairly high > > fidelity sound. Does anybody know anything about how > > xmms-faad2 works with good ol' xmms?? (I'm completely > > new to most of this--streaming sites. But then just got > > new speakers w/bass boombox!) So any tips will be very > > welcome. > > > > gary > The faad2 item should just be a plugin for xmms. It's kind of > convoluted how they compile stuff with the faad2 lib, but basically-in > Linux at least-it downloads the complete faad2 source, compiles it > first, then compiles the plugin from a different branch from the main > source in the source tree. I don't quite understand. Many weeks ago sky.fm had an AAC stream for its "Mostly Classical" stream and I tried xxmms-faad to play the sky.fm AAC dtream. ZIP. After a fewhours I kicked the cat and hit the wall and gave up. I've looked around for other HE encoding with AAC, no-joy. ... > I was doing a bit of reading too (trying to see if I can just change > the source a bit to get ID3/iTunes tags to be read in xmms), and it > turns out that iTunes uses MP4 format with AAC encoding, as opposed to > AAC which uses MP2 encoding as a base. I know virtually Zero about this other than the theory; unfortunately, here theory is useless. I poked around at web sites and FAQ's:: nothing gave me any *practical*] advise. xmms is beyond Neat, but exactly how does xmms-faad2 PLUGIN??? I grep's the /work/* xmms code for pluggin, nothing. <&c ** 2> [[ Interesting tidbit about Apple, BTW.] > Doesn't really matter all that much I suppose, but I was just > looking through the source trying to figure stuff out and the original > author's nomenclature is just a bit confusing. > -Garrett Good to know I'm not the only one. I realize we/FBSD have a rather small bunch, but there are some brilliant people on-list. Maybe some thoughtful person can clue me in.... gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Fri Jun 23 23:23: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 9C68816A494 for ; Fri, 23 Jun 2006 23:23:08 +0000 (UTC) (envelope-from arfranks@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 2426D43D45 for ; Fri, 23 Jun 2006 23:23:08 +0000 (GMT) (envelope-from arfranks@gmail.com) Received: by nz-out-0102.google.com with SMTP id 4so885125nzn for ; Fri, 23 Jun 2006 16:23: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Qoc/4sHnGjstykzI4d/fkOd2QyXerArryikfBjK+I4OZvpUNGmJnT76bQ0qP4mrhVsAEBD/jtKnYP8o2RfIGifDDjvUgb+AmT0szqHjQt1Sv2QFVYMOkdAybfJFUJH6X94NHwKcGAzYZVWPIlxqHDBYMMqeHvH8t7zEwkLA7FZI= Received: by 10.65.204.8 with SMTP id g8mr4602977qbq; Fri, 23 Jun 2006 16:23:07 -0700 (PDT) Received: by 10.64.49.9 with HTTP; Fri, 23 Jun 2006 16:23:07 -0700 (PDT) Message-ID: <2f488c030606231623x662d93afl8ff4875989d143c8@mail.gmail.com> Date: Fri, 23 Jun 2006 16:23:07 -0700 From: "Alex Franks" To: "Joao Barros" In-Reply-To: <70e8236f0606231240t77e1b510xd5ecd98c093af559@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: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> <449BAE45.7030705@dial.pipex.com> <2f488c030606231113i2b9b4bdcsa1b4192be54b9011@mail.gmail.com> <70e8236f0606231240t77e1b510xd5ecd98c093af559@mail.gmail.com> Cc: freebsd-questions@freebsd.org, Alex Zbyslaw Subject: Re: Hot-Swapping hard drives on Dell PowerEdge 2850 running FBSD 5.5-PRE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 23 Jun 2006 23:23:08 -0000 On 6/23/06, Joao Barros wrote: > On 6/23/06, Alex Franks wrote: > > The controller is a Perc 4e/Di as assumed, and I'm still a little > > unsure as to whether the 2 drives that shipped with the machine are > > currently set up in a RAID array. The current filesystem is mounted on > > /dev/amrd0s1[a-f] and I would expect to find the new drives named > > similarly after using some useful utility that I'm unaware of. Any > > thoughts? > > > > Thanks again. > > Alex > > Try amrstat from ports which will show you something like this: > > Logical volume 0 optimal (101.60 GB, RAID5) > Physical drive 0:0 online > Physical drive 0:1 online > Physical drive 1:0 online > Physical drive 1:2 online > Physical drive 1:4 hotspare > > > -- > Joao Barros > Sadly, amrstat-20060414 doesn't build on FBSD 6.0 or earlier (or so says the error msg I get when trying to build it). I've got megarc installed but have no idea how to use it and no man page was included with the port. Anyone more familiar with this utility? Alex From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 00:12: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 1302316A4D0 for ; Sat, 24 Jun 2006 00:12:41 +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 0BA6143D6D for ; Sat, 24 Jun 2006 00:12:33 +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.6+UW06.06/8.13.6+UW06.03) with ESMTP id k5O0CW67025610 for ; Fri, 23 Jun 2006 17:12:32 -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.6+UW06.06/8.13.6+UW06.03) with ESMTP id k5O0CWOV015012 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 23 Jun 2006 17:12:32 -0700 Message-ID: <449C836F.2000903@u.washington.edu> Date: Fri, 23 Jun 2006 17:12:31 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> <20060622094604.GC89614@thought.org> <20060622211054.J3990@tripel.monochrome.org> <20060623175021.GB18163@thought.org> <449C371C.9090204@u.washington.edu> <20060623232001.GA20134@thought.org> In-Reply-To: <20060623232001.GA20134@thought.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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 generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 00:12:41 -0000 Gary Kline wrote: > On Fri, Jun 23, 2006 at 11:46:52AM -0700, Garrett Cooper wrote: > >> Gary Kline wrote: >> >>> Another thing I've been wondering about is xmms-faad2 >>> which is mp4 or a High Effiency decoder of "aac"(?) >>> streams that only require 24kpbs to yeild fairly high >>> fidelity sound. Does anybody know anything about how >>> xmms-faad2 works with good ol' xmms?? (I'm completely >>> new to most of this--streaming sites. But then just got >>> new speakers w/bass boombox!) So any tips will be very >>> welcome. >>> >>> gary >>> >> The faad2 item should just be a plugin for xmms. It's kind of >> convoluted how they compile stuff with the faad2 lib, but basically-in >> Linux at least-it downloads the complete faad2 source, compiles it >> first, then compiles the plugin from a different branch from the main >> source in the source tree. >> > > I don't quite understand. Many weeks ago sky.fm had an > AAC stream for its "Mostly Classical" stream and I tried > xxmms-faad to play the sky.fm AAC dtream. ZIP. After a > fewhours I kicked the cat and hit the wall and gave up. > I've looked around for other HE encoding with AAC, no-joy. > ... > > Hmmm... I've never really tried FAAD2 stuff with FreeBSD though... I sort of limit my FreeBSD use to daemons and such and use my Linux box for all my desktop playing around :). faad2 by itself only decodes the file into PCM I believe... it doesn't output to any specific sound devices (ie /dev/dsp, etc). Sad thing too is that I think that the faad2 project was abandoned last year, maybe... (at least it seems that way since there hasn't been any active development on the project since either April or June of last year IIRC, based on their last CVS snapshot >_>...). >> I was doing a bit of reading too (trying to see if I can just change >> the source a bit to get ID3/iTunes tags to be read in xmms), and it >> turns out that iTunes uses MP4 format with AAC encoding, as opposed to >> AAC which uses MP2 encoding as a base. >> > > I know virtually Zero about this other than the theory; > unfortunately, here theory is useless. I poked around at > web sites and FAQ's:: nothing gave me any *practical*] > advise. xmms is beyond Neat, but exactly how does xmms-faad2 > PLUGIN??? I grep's the /work/* xmms code for pluggin, nothing. > <&c ** 2> [[ Interesting tidbit about Apple, BTW.] > Here; this is what I meant when I said what I said earlier ;): #faad2 source: shiina:~/Documents/faad_revision gcooper$ ls -l faad2/plugins/xmms/src/ total 56 -rwxr-xr-x 1 gcooper gcooper 423 Jun 20 22:12 Makefile.am -rwxr-xr-x 1 gcooper gcooper 2714 Jun 20 22:12 aac_utils.c -rwxr-xr-x 1 gcooper gcooper 13332 Jun 20 22:12 libmp4.c -rwxr-xr-x 1 gcooper gcooper 2567 Jun 20 22:12 mp4_utils.c drwxrwxrwx 4 gcooper gcooper 136 Jun 20 22:12 old shiina:~/Documents/faad_revision gcooper$ #xmms source: shiina:~/Documents/faad_revision gcooper$ ls -l xmms-1.2.10/Input/ total 72 -rwxr-xr-x 1 gcooper gcooper 15259 Jun 20 22:14 Makefile -rwxr-xr-x 1 gcooper gcooper 82 Jun 20 22:14 Makefile.am -rwxr-xr-x 1 gcooper gcooper 15508 Jun 20 22:14 Makefile.in drwxrwxrwx 27 gcooper gcooper 918 Jun 20 22:14 cdaudio drwxrwxrwx 11 gcooper gcooper 374 Jun 20 22:14 mikmod drwxrwxrwx 91 gcooper gcooper 3094 Jun 20 22:14 mpg123 drwxrwxrwx 11 gcooper gcooper 374 Jun 20 22:14 tonegen drwxrwxrwx 15 gcooper gcooper 510 Jun 20 22:14 vorbis drwxrwxrwx 12 gcooper gcooper 408 Jun 20 22:14 wav shiina:~/Documents/faad_revision gcooper$ So what I think happens is that it downloads the faad2 source, untars it, then compiles with preexisting headers for xmms on the system, and installs the compiled version of the plugin on the system (wherever the plugins go.. not sure again since I use Linux for this stuff by default). As for the Apple work, it is interesting because I've been playing around with iTunes a bit and it appears that I *could* reverse engineer a lot of the fields (there's no way I'm paying Apple for licensing fees :P), and then either code some stuff or set someone else up with the information for them to code. I need another file made by a proprietary encoder just to make things more constant and ensure that Apple isn't just doing their own thing as opposed to following some sort of set standard. > >> Doesn't really matter all that much I suppose, but I was just >> looking through the source trying to figure stuff out and the original >> author's nomenclature is just a bit confusing. >> -Garrett >> > > Good to know I'm not the only one. I realize we/FBSD have a > rather small bunch, but there are some brilliant people on-list. > Maybe some thoughtful person can clue me in.... > > gary > -Garrett From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 00:21: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 016EF16A492 for ; Sat, 24 Jun 2006 00:21:53 +0000 (UTC) (envelope-from hugo.ngd@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 733F743D46 for ; Sat, 24 Jun 2006 00:21:52 +0000 (GMT) (envelope-from hugo.ngd@gmail.com) Received: by nz-out-0102.google.com with SMTP id 12so911703nzp for ; Fri, 23 Jun 2006 17:21: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:in-reply-to:mime-version:content-type:references; b=nPF8EHyAvQFjEri85Sii20rCZhpOfWtRBiJQ8jDWUQxcHtHCOw2PAhFrtkFHQ2UIzdsL06a7Wds3i0ZKMgrhCvp2NA+gTvhj8TJSYMLygoHrszGg7ydKTU3h7rtrDrj5hyqo2LYsgvshxbTcnWT4Yz/T2jr4SROPD6nJuBtqK6Y= Received: by 10.36.224.2 with SMTP id w2mr462718nzg; Fri, 23 Jun 2006 17:21:51 -0700 (PDT) Received: by 10.36.139.8 with HTTP; Fri, 23 Jun 2006 17:21:51 -0700 (PDT) Message-ID: <7de6ba830606231721i710f7baaq993814128850b7e1@mail.gmail.com> Date: Sat, 24 Jun 2006 00:21:51 +0000 From: "NgD Vulto" To: freebsd-questions@freebsd.org In-Reply-To: <4499BCFC.2050103@cruzinternet.com> MIME-Version: 1.0 References: <20060621185231.B288F16A4D1@hub.freebsd.org> <4499BCFC.2050103@cruzinternet.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: Re: Google Earth... Anyone? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 00:21:53 -0000 2006/6/21, Jeff Molofee : > > does anyone know how to resolve the following error in googleearth > (astro/google-earth) > > ===> Vulnerability check disabled, database not found > ===> Extracting for google-earth-4 > => MD5 Checksum OK for GoogleEarthLinux.bin. > => SHA256 Checksum OK for GoogleEarthLinux.bin. > ===> Patching for google-earth-4 > ===> google-earth-4 depends on executable: unmakeself - found > ===> Configuring for google-earth-4 > ===> Building for google-earth-4 > ===> Installing for google-earth-4 > ===> google-earth-4 depends on executable: update-mime-database - found > ===> google-earth-4 depends on file: > /compat/linux/usr/X11R6/lib/libGL.so.1 - found > ===> google-earth-4 depends on file: /compat/linux/etc/fedora-release - > found > ===> Generating temporary packing list > ===> Checking if astro/google-earth already installed > /bin/mkdir -p /usr/local/share/google-earth > install -o root -g wheel -m 444 > /usr/ports/astro/google-earth/work/google-earth-4/googleearth- > mimetypes.xml > /usr/local/share/mime/application/ > install: > /usr/ports/astro/google-earth/work/google-earth-4/googleearth- > mimetypes.xml: > No such file or directory > *** Error code 71 > > > The mimetypes.xml file doesn't seem to exist for me. > > _______________________________________________ > 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" > Hello, I solved it doing the following commands: touch /usr/ports/astro/google-earth/work/google-earth-4/googleearth.desktop and touch /usr/ports/astro/google-earth/work/google-earth-4/googleearth- mimetypes.xml Don't worry, the software will work normal. Yours, Hugo Pessoa/NgD Vulto. -- [Freebsd User Group] Fug-Br/BsD-Ce proud active member. There will be a day machines will reign, and only the ones able to understand them will survive. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 00: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 1DD6416A47E for ; Sat, 24 Jun 2006 00:36:32 +0000 (UTC) (envelope-from dennisolvany@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 9E94443D46 for ; Sat, 24 Jun 2006 00:36:31 +0000 (GMT) (envelope-from dennisolvany@gmail.com) Received: by wr-out-0506.google.com with SMTP id i21so350089wra for ; Fri, 23 Jun 2006 17:36:30 -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=bCm3M0krfV7OAXLxL/1Vs/P1IYeH33z/aw6eAYspgOLD+/W0hOSnJtFIj2b2pkKyQx1J+EBSBXBKrZ9Mkyh64oKsQTDTbkjk6dT/cBdEa11//gMJektqhUvXxt8fk/wFWtCDQCeiBJ5F9qOBEdy/6pRV0wNOY/ZSntJLBYho6iQ= Received: by 10.54.156.13 with SMTP id d13mr5111951wre; Fri, 23 Jun 2006 17:36:30 -0700 (PDT) Received: from ?195.16.87.34? ( [195.16.87.34]) by mx.gmail.com with ESMTP id 8sm2619539wra.2006.06.23.17.36.28; Fri, 23 Jun 2006 17:36:30 -0700 (PDT) Message-ID: <449C890A.1080701@gmail.com> Date: Fri, 23 Jun 2006 19:36:26 -0500 From: Dennis Olvany User-Agent: Thunderbird 1.5 (X11/20060211) MIME-Version: 1.0 To: Joe Auty References: <157DAABD-8A51-4642-994F-90C79C75CD80@netmusician.org> <449B6BC3.5080704@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: MySQL RC script failing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 00:36:32 -0000 > 060622 23:54:39 [ERROR] Can't find messagefile > '/usr/local/share/mysql/english/errmsg.sys' http://bugs.mysql.com/bug.php?id=1455 This is typical for mixing files from different MySQL releases. Your errmsg.sys is most probably dtalled file from older release. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 00:57: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 E4AC216A49A for ; Sat, 24 Jun 2006 00:57:10 +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 3B7A643D46 for ; Sat, 24 Jun 2006 00:57:10 +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 k5O0v92T073619; Fri, 23 Jun 2006 17:57:09 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.4/8.13.1/Submit) id k5O0v8Hs073596; Fri, 23 Jun 2006 17:57:08 -0700 (PDT) (envelope-from kline) Date: Fri, 23 Jun 2006 17:57:07 -0700 From: Gary Kline To: Garrett Cooper Message-ID: <20060624005707.GA85190@thought.org> References: <20060621221720.GA55540@thought.org> <20060621190527.J16398@tripel.monochrome.org> <20060622094604.GC89614@thought.org> <20060622211054.J3990@tripel.monochrome.org> <20060623175021.GB18163@thought.org> <449C371C.9090204@u.washington.edu> <20060623232001.GA20134@thought.org> <449C836F.2000903@u.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <449C836F.2000903@u.washington.edu> User-Agent: Mutt/1.4.2.1i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing 19++ years of service to the Unix community Cc: freebsd-questions@freebsd.org Subject: Re: Any generic (non-wm-specific) audio players? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 00:57:11 -0000 On Fri, Jun 23, 2006 at 05:12:31PM -0700, Garrett Cooper wrote: > Gary Kline wrote: > >On Fri, Jun 23, 2006 at 11:46:52AM -0700, Garrett Cooper wrote: > > [[ ... ]] > > > Hmmm... I've never really tried FAAD2 stuff with FreeBSD though... I > sort of limit my FreeBSD use to daemons and such and use my Linux box > for all my desktop playing around :). This is what I've finaaly decided is the most rational use of my time and resources. Can't beat FBSD for sheer stability, but it's not the opyimal "Desktop". xmms for my mp3's. Or cplay. Ubuntu for ease-of-use. > > faad2 by itself only decodes the file into PCM I believe... it doesn't > output to any specific sound devices (ie /dev/dsp, etc). > > Sad thing too is that I think that the faad2 project was abandoned last > year, maybe... (at least it seems that way since there hasn't been any > active development on the project since either April or June of last > year IIRC, based on their last CVS snapshot >_>...). So... that explains paart of it. I didn't check the CVS logs.... > > > > I know virtually Zero about this other than the theory; > > unfortunately, here theory is useless. I poked around at > > web sites and FAQ's:: nothing gave me any *practical*] > > advise. xmms is beyond Neat, but exactly how does xmms-faad2 > > PLUGIN??? I grep's the /work/* xmms code for pluggin, nothing. > > <&c ** 2> [[ Interesting tidbit about Apple, BTW.] > > > Here; this is what I meant when I said what I said earlier ;): > > #faad2 source: > shiina:~/Documents/faad_revision gcooper$ ls -l faad2/plugins/xmms/src/ > total 56 > -rwxr-xr-x 1 gcooper gcooper 423 Jun 20 22:12 Makefile.am > -rwxr-xr-x 1 gcooper gcooper 2714 Jun 20 22:12 aac_utils.c > -rwxr-xr-x 1 gcooper gcooper 13332 Jun 20 22:12 libmp4.c > -rwxr-xr-x 1 gcooper gcooper 2567 Jun 20 22:12 mp4_utils.c > drwxrwxrwx 4 gcooper gcooper 136 Jun 20 22:12 old > shiina:~/Documents/faad_revision gcooper$ > > #xmms source: > shiina:~/Documents/faad_revision gcooper$ ls -l xmms-1.2.10/Input/ > total 72 > -rwxr-xr-x 1 gcooper gcooper 15259 Jun 20 22:14 Makefile > -rwxr-xr-x 1 gcooper gcooper 82 Jun 20 22:14 Makefile.am > -rwxr-xr-x 1 gcooper gcooper 15508 Jun 20 22:14 Makefile.in > drwxrwxrwx 27 gcooper gcooper 918 Jun 20 22:14 cdaudio > drwxrwxrwx 11 gcooper gcooper 374 Jun 20 22:14 mikmod > drwxrwxrwx 91 gcooper gcooper 3094 Jun 20 22:14 mpg123 > drwxrwxrwx 11 gcooper gcooper 374 Jun 20 22:14 tonegen > drwxrwxrwx 15 gcooper gcooper 510 Jun 20 22:14 vorbis > drwxrwxrwx 12 gcooper gcooper 408 Jun 20 22:14 wav > shiina:~/Documents/faad_revision gcooper$ > > So what I think happens is that it downloads the faad2 source, untars > it, then compiles with preexisting headers for xmms on the system, and > installs the compiled version of the plugin on the system (wherever the > plugins go.. not sure again since I use Linux for this stuff by default). > > As for the Apple work, it is interesting because I've been playing > around with iTunes a bit and it appears that I *could* reverse engineer > a lot of the fields (there's no way I'm paying Apple for licensing fees > :P), and then either code some stuff or set someone else up with the > information for them to code. I need another file made by a proprietary > encoder just to make things more constant and ensure that Apple isn't > just doing their own thing as opposed to following some sort of set > standard. > > Well, if you ever feeling like r-engineering, the Linux folks seem like a good bet. ... . gary -- Gary Kline kline@thought.org www.thought.org Public service Unix From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 01:07: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 72F1316A47E for ; Sat, 24 Jun 2006 01:07:25 +0000 (UTC) (envelope-from hugo.ngd@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5BFB43D48 for ; Sat, 24 Jun 2006 01:07:24 +0000 (GMT) (envelope-from hugo.ngd@gmail.com) Received: by nz-out-0102.google.com with SMTP id 34so983872nzf for ; Fri, 23 Jun 2006 18:07:23 -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=lnhIvII1wIhUgfkv3J05q1W5HHNzdWMDZIVjr3rE9GiO4X58id0RtVJ7UQIcQpmnU9124mLPB5Dd1Dh0NNDGD+3vVKVES8MAxBA4hr71dX2Jrl6R0hJTY/1rYbN+6LVLEVHEGouv40vYYWTxBHDUMrnE7f/d7AsfkW9ZRbc2FLo= Received: by 10.37.22.68 with SMTP id z68mr4613227nzi; Fri, 23 Jun 2006 18:07:23 -0700 (PDT) Received: by 10.36.139.8 with HTTP; Fri, 23 Jun 2006 18:07:23 -0700 (PDT) Message-ID: <7de6ba830606231807y6300dd7eo2041b936a7505030@mail.gmail.com> Date: Sat, 24 Jun 2006 01:07:23 +0000 From: "NgD Vulto" To: freebsd-questions@freebsd.org In-Reply-To: <20060620075034.19198.qmail@web55203.mail.re4.yahoo.com> MIME-Version: 1.0 References: <20060620075034.19198.qmail@web55203.mail.re4.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 Subject: Re: conver Linux shared libraries foo.so to FreeBSD shared libraries X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 01:07:25 -0000 2006/6/20, Simeon Nifos : > > Does anybody know how to convert a shared object > compiled in Linux foo-linux.so to a shared object > compiled for FreeBSD freebsd-foo.so? I mean > a freebsd-foo.so to which I can link with objects > compiled by a native FreeBSD compiler. Or > equivalently how to create a FreeBSD foo.so from > a linux foo.so which would be identical to that > which would be compiled from source in FreeBSD? > > Thanks in advance! > Simeon. > > > --------------------------------- > Want to be your own boss? Learn how on Yahoo! Small Business. > _______________________________________________ > 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 are probably just needing to read about the linux-base, you can run linux softwares there, you don't need to convert anything. cd /usr/ports/emulators/linux_base-fc4 Don't forget to add at your fstab: linproc /compat/linux/proc linprocfs rw 0 0 Anytime you need to run a linux software use to linux-base. Hugo Pessoa/NgD Vulto. -- [Freebsd User Group] Fug-Br/BsD-Ce proud active member. There will be a day machines will reign, and only the ones able to understand them will survive. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 01:11: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 756B416A4A0 for ; Sat, 24 Jun 2006 01:11:24 +0000 (UTC) (envelope-from hugo.ngd@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 C998043D45 for ; Sat, 24 Jun 2006 01:11:23 +0000 (GMT) (envelope-from hugo.ngd@gmail.com) Received: by nz-out-0102.google.com with SMTP id 18so730585nzp for ; Fri, 23 Jun 2006 18: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:in-reply-to:mime-version:content-type:references; b=j6JvjlEAf7/lQASgBkGWiJFfBVw2i1KxiYVzhW1tP3uxbC/agFXGSeveSMdjubilkj0ExlMfRuWsC4jJb/angy07GmVvg6x3y2bvER8RWA/4x346NvxatxA6ulilpFs6+wnFPGAqBD5xa8jGz5b6LGGJI+n+GxzGCBA7CWsRxPc= Received: by 10.37.21.4 with SMTP id y4mr4606334nzi; Fri, 23 Jun 2006 18:11:22 -0700 (PDT) Received: by 10.36.139.8 with HTTP; Fri, 23 Jun 2006 18:11:22 -0700 (PDT) Message-ID: <7de6ba830606231811ha9a1ed6u7a7742b5462cf434@mail.gmail.com> Date: Sat, 24 Jun 2006 01:11:22 +0000 From: "NgD Vulto" To: freebsd-questions@freebsd.org In-Reply-To: <20060620143532.77072.qmail@web60025.mail.yahoo.com> MIME-Version: 1.0 References: <20060620143532.77072.qmail@web60025.mail.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 Subject: Re: cannot upgrade linux-xorg-libs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 01:11:24 -0000 2006/6/20, Peter : > > I'm having trouble upgrading my 5.4-STABLE box. /usr/ports/UPDATING > says: > > ------------------------------------- > 20060616: > AFFECTS users of emulation/linux_base-* > AUTHOR: netchild@FreeBSD.org > > We now use Fedora Core 4 as the linux base port, and the > corresponding > xorg libs for the linux X11 libs port. > > To upgrade you have to run > portupgrade -f -o emulators/linux_base-fc4 linux_base\* > portupgrade -f -o x11/linux-xorg-libs linux-XFree86-libs > ------------------------------------- > > The first command works but the second does not: > > => xorg-x11-deprecated-libs-6.8.2-31.i386.rpm doesn't seem to exist in > /usr/ports/distfiles/rpm/i386/fedora/4. > => Attempting to fetch from cvsup11.us.freebsd.org. > fetch: > cvsup11.us.freebsd.orgxorg-x11-deprecated-libs-6.8.2-31.i386.rpm: No > such file or directory > => Attempting to fetch from > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/rpm/i386/fedora/4/. > fetch: > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/rpm/i386/fedora/4/xorg-x11-deprecated-libs-6.8.2-31.i386.rpm > : > File unavailable (e.g., file not found, no access) > => Couldn't fetch it - please try to retrieve this > => port manually into /usr/ports/distfiles/rpm/i386/fedora/4 and try > again. > *** Error code 1 > > Stop in /usr/ports/x11/linux-xorg-libs. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade78929.0 make > ** Fix the problem and try again. > ** Listing the failed packages (*:skipped / !:failed) > ! x11/linux-xorg-libs (linux-XFree86-libs-4.3.99.902_7) (fetch > error) > ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed > > > This file (xorg-x11-deprecated-libs-6.8.2-31.i386.rpm) cannot be found > manually. Any ideas? > > $ pkg_info | grep linux_base > linux_base-fc-4_1 Base set of packages needed in Linux mode (for > i386/amd64) > > __________________________________________________ > 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" > Just upgrade your source list, portsnap fetch ; portsnap upgrade Yours, Hugo Pessoa/NgD Vulto. -- [Freebsd User Group] Fug-Br/BsD-Ce proud active member. There will be a day machines will reign, and only the ones able to understand them will survive. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 01:34: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 2900E16A492 for ; Sat, 24 Jun 2006 01:34:39 +0000 (UTC) (envelope-from nikolas.britton@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 44B7E43D70 for ; Sat, 24 Jun 2006 01:34:31 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id 18so732737nzp for ; Fri, 23 Jun 2006 18:34: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=rTqqTt+H8owkbi5qvctqF//VGOIP+Ib9H3sjwqBBV7UNSNMhb/wKa1rakkpj4ZUKGgMIO3Y2A82PL8XhZHybzLklhSgeHttTMGV9QhzzM6QtWLzYzBsSvAfL68S/kP7O3C/DMGJXaYKxl3QJXUbWblSSRxk3Q+R26jblrHjU1OE= Received: by 10.37.13.65 with SMTP id q65mr4655160nzi; Fri, 23 Jun 2006 18:34:31 -0700 (PDT) Received: by 10.36.12.11 with HTTP; Fri, 23 Jun 2006 18:34:31 -0700 (PDT) Message-ID: Date: Fri, 23 Jun 2006 18:34:31 -0700 From: "Nikolas Britton" To: "FreeBSD Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: help with 'tar|rsh tar' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 01:34:39 -0000 I need to backup the /data directory on hostA to /data on hostB, about 1TB of data on a gigabit link. Right now I'm using scp but the handshake latency and ssh overhead is killing me. I've looked at many examples of tar|rsh tar and I can't figure it out, most of the examples on the net look like this: # tar cf - . | rsh hostname dd of=tape-device obs=20b # tar -cf -...|rsh ...tar xf -... I almost got it to work but I got this error: 'rshd: Login incorrect.'. rsh is enabled on hostB and If I just do 'rsh hostB' it works... this is my first time using rsh BTW. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 01:44: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 4BBFF16A4A0 for ; Sat, 24 Jun 2006 01:44:32 +0000 (UTC) (envelope-from hernan.silberman@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C78043D4C for ; Sat, 24 Jun 2006 01:44:31 +0000 (GMT) (envelope-from hernan.silberman@gmail.com) Received: by wx-out-0102.google.com with SMTP id h30so594009wxd for ; Fri, 23 Jun 2006 18:44:30 -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=DKwBrG0en4VF7a2tD3olj3AsinEA6nBkw5JrTV1FhPTEjfGbWaVails1QeeDYRcINg6eCVcgcANf5zPis/ExEQHnxRUhKeEjZyv63J9voHNSSRHmW962k3IDtF/tShrTf58tRkVRVidkSFeaP4YW3Myz4zeK3N6Z4mKUveiaYNY= Received: by 10.70.109.5 with SMTP id h5mr5633922wxc; Fri, 23 Jun 2006 18:44:30 -0700 (PDT) Received: by 10.70.54.3 with HTTP; Fri, 23 Jun 2006 18:44:30 -0700 (PDT) Message-ID: <9b9d376a0606231844y76cf2c0cq6fec1324d8bfdd05@mail.gmail.com> Date: Fri, 23 Jun 2006 18:44:30 -0700 From: hernan 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: [freebsd-questions] how to stop "raise on click" window behavior? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 01:44:32 -0000 I'm running FreeBSD 6-0 RELEASE with the latest gnome port running metacity. I want to change metacity so it doesn't raise a window to the foreground when I click on it. None of the default settings seem to do this and so far my searching on Google hasn't resulted in any magic settings. I've carefully checked the metacity values in gconf-editor but none of them seem to control this. Any pointers on how to do this (without switching window managers :-) are greatly appreciated. thanks! Hernan From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 01:45: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 5A44016A47B for ; Sat, 24 Jun 2006 01:45:00 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id D214B43D45 for ; Sat, 24 Jun 2006 01:44:59 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5O1iwB6007434 for ; Fri, 23 Jun 2006 21:44:58 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id 1C2ED240A3; Fri, 23 Jun 2006 21:44:53 -0400 (EDT) Date: Fri, 23 Jun 2006 21:44:52 -0400 From: "Michael P. Soulier" To: freebsd-questions@freebsd.org Message-ID: <20060624014452.GT11625@tigger.digitaltorque.ca> Mail-Followup-To: freebsd-questions@freebsd.org References: <20060620233551.GG11625@tigger.digitaltorque.ca> <20060621011340.GI11625@tigger.digitaltorque.ca> <20060621173253.GD7596@tigger.digitaltorque.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TiGNc3ldf20CNpkJ" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 01:45:00 -0000 --TiGNc3ldf20CNpkJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 21/06/06 Nikolas Britton said: > The consensus seems to be that FreeBSD/amd64 is a tad slower then > FreeBSD/i386 because it has to deal with 32 extra bits. The primary > reason to use FreeBSD/amd64 seems to be if you need greater then 4GB > of RAM. >=20 > This should give you the speed boost your looking for: > CPUTYPE?=3Dpentium2 > CFLAGS+=3D -mtune=3Dnocona > COPTFLAGS+=3D -mtune=3Dnocona >=20 > Put that in /etc/make.conf and recompile ports/kern/world. Cool, thanks. Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --TiGNc3ldf20CNpkJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEnJkUKGqCc1vIvggRArwiAKCqHTxDobEJyg2TcSMv4KMZ947eZwCeNYEx m0LFloDsCD9NblFVMSBOHiE= =Qqcl -----END PGP SIGNATURE----- --TiGNc3ldf20CNpkJ-- From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 01:46: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 8BF4E16A49E for ; Sat, 24 Jun 2006 01:46:38 +0000 (UTC) (envelope-from msoulier@digitaltorque.ca) Received: from mail.storm.ca (mail.storm.ca [209.87.239.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DCE643D45 for ; Sat, 24 Jun 2006 01:46:37 +0000 (GMT) (envelope-from msoulier@digitaltorque.ca) Received: from tigger.digitaltorque.ca (hs-216-106-102-70.storm.ca [216.106.102.70]) by mail.storm.ca (8.13.6+Sun/8.13.6) with ESMTP id k5O1kbjE007472 for ; Fri, 23 Jun 2006 21:46:37 -0400 (EDT) Received: by tigger.digitaltorque.ca (Postfix, from userid 500) id 104DB240A3; Fri, 23 Jun 2006 21:46:32 -0400 (EDT) Date: Fri, 23 Jun 2006 21:46:31 -0400 From: "Michael P. Soulier" To: freebsd-questions@freebsd.org Message-ID: <20060624014631.GU11625@tigger.digitaltorque.ca> Mail-Followup-To: freebsd-questions@freebsd.org References: <20060620233233.GF11625@tigger.digitaltorque.ca> <20060621202027.GI49892@server.idefix.loc> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QU0xYvH/CPhunj+E" Content-Disposition: inline In-Reply-To: <20060621202027.GI49892@server.idefix.loc> User-Agent: Mutt/1.4.2.1i Subject: Re: ppp not starting 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: Sat, 24 Jun 2006 01:46:38 -0000 --QU0xYvH/CPhunj+E Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 21/06/06 Matthias Fechner said: > > # Enable PPPoE > > ppp_enable=3D"YES" > > ppp_mode=3D"ddial" > > ppp_nat=3D"YES" > > ppp_profile=3D"storm" > >=20 > > Is this not correct? Should this not cause ppp to be started, using the > > "storm" profile, at boot? > >=20 > > I had to do it manually via > >=20 > > ppp -ddial storm >=20 > I remember that on FreeBSD 6.x the script ppp-user has changed to ppp, > maybe updated without using mergemaster? Well, I'm using 5.4. Mike --=20 Michael P. Soulier "Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in the opposite direction." --Albert Einstein --QU0xYvH/CPhunj+E Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFEnJl3KGqCc1vIvggRAgeRAKCs+kWOsso/Q1DwRiShU3pzf6QSnwCgtBku LPtsSpf3F3sLWsTsxEgRsSs= =p2Dl -----END PGP SIGNATURE----- --QU0xYvH/CPhunj+E-- From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 02: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 33F6016A47B for ; Sat, 24 Jun 2006 02:10:41 +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 B143943D49 for ; Sat, 24 Jun 2006 02:10:40 +0000 (GMT) (envelope-from hackmiester@hackmiester.com) Received: (qmail 7405 invoked from network); 24 Jun 2006 02:10:39 -0000 Received: from unknown (70.146.206.162) by smtpout06-04.prod.mesa1.secureserver.net (64.202.165.227) with ESMTP; 24 Jun 2006 02:10:39 -0000 In-Reply-To: <7de6ba830606231512x43e9c17dk219d39cab86a2b54@mail.gmail.com> References: <7de6ba830606231512x43e9c17dk219d39cab86a2b54@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <4F273628-2760-4E78-8C7E-65771F342B2A@hackmiester.com> Content-Transfer-Encoding: 7bit From: Hunter Fuller Date: Fri, 23 Jun 2006 21:11:45 +0000 To: "NgD Vulto" X-Mailer: Apple Mail (2.746.2) Cc: freebsd-questions@freebsd.org Subject: Re: Mouse Restart X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 02:10:41 -0000 On 23 Jun 2006, at 10:12 PM, NgD Vulto wrote: > Hello, I have a usb (bus?) mouse and sometimes when I start my > freebsd it > doesn't work, I used to reboot before and just after rebooting it was > working pretty well...but now I found out that when it happens all > i have to > do is to unplug it and plug it again and it is detected. > > I use linux also, and I have never experienced it there, so...I > just would > like to know if there is a command line to restart the mouse > device, I am > sure it would detect. > > like usbmouse restart > > restarting usb device... > > You know what I mean? Yeah, I do. But I think the issue might be in your bios. See, some BIOSes have an option that makes your USB mouse or keyboard appear as a PS/2 device to the operating system so it can be used in older operating systems without USB support. So, FBSD is seeing your mouse as a PS/2 device, and it's not configured for it to work like that., until you unplug and replug it. Then it gets handled by FBSD as an USB device and therefore works. So... open your bios config (reboot and it should say something like "hit F1 to enter setup", if it doesn't, try tapping F1, F12, Delete, Tab on startup). Look for something called "Legacy Emulation". Mine's called "Legacy Keyboard Emulation", but it handles the mouse too. You need to switch that off. > > xorgcfg didn't help, it is more like freebsd doesn't feel the mouse is > there, it doesn't work at shell also, when it wants not to work. > > But after rebooting once/or just unplug/plug it again it works, > kinda crazy > ain't that? > > I repeat, there's nothing wrong with my hardware, it works pretty > well at > other platforms, I just need the command line to do what the system > do when > I plug it back to detect it. > > Thanks. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions- > unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 02:31: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 45E6316A47B for ; Sat, 24 Jun 2006 02:31:43 +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 F016C43D45 for ; Sat, 24 Jun 2006 02:31:42 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5O2VeUI001509; Fri, 23 Jun 2006 21:31:40 -0500 (CDT) (envelope-from dan) Date: Fri, 23 Jun 2006 21:31:40 -0500 From: Dan Nelson To: Nikolas Britton Message-ID: <20060624023139.GA83209@dan.emsphone.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: FreeBSD Mailing List Subject: Re: help with 'tar|rsh tar' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 02:31:43 -0000 In the last episode (Jun 23), Nikolas Britton said: > I need to backup the /data directory on hostA to /data on hostB, > about 1TB of data on a gigabit link. Right now I'm using scp but the > handshake latency and ssh overhead is killing me. > > I've looked at many examples of tar|rsh tar and I can't figure it out, > most of the examples on the net look like this: > # tar cf - . | rsh hostname dd of=tape-device obs=20b > # tar -cf -...|rsh ...tar xf -... Two quick options even more lightweight than rsh are netcat (base system) and ttcp (in ports). Usage examples: host2$ ttcp -r | tar xvf - host1$ tar cf - . | ttcp -t host2 host2$ nc -l 1234 | tar xvf - host1$ tar cf - . | nc host2 1234 -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 02:59: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 0914216A4A6 for ; Sat, 24 Jun 2006 02:59:42 +0000 (UTC) (envelope-from dennyboy@cableone.net) Received: from S3.cableone.net (s3.cableone.net [24.116.0.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id A89C643D45 for ; Sat, 24 Jun 2006 02:59:41 +0000 (GMT) (envelope-from dennyboy@cableone.net) Received: from badboybox.cableone.net (unverified [69.92.6.58]) by S3.cableone.net (CableOne SMTP Service S3) with ESMTP id 63993363 for ; Fri, 23 Jun 2006 19:59:40 -0700 Date: Fri, 23 Jun 2006 21:59:34 -0500 (CDT) From: Denny White To: FreeBSD Questions In-Reply-To: <20060623070711.04c5bf94@loki.starkstrom.lan> Message-ID: References: <1150853032.16507.1.camel@localhost> <0578D634449883E0B7478DE4@Paul-Schmehls-Computer.local> <20060623070711.04c5bf94@loki.starkstrom.lan> X-GPG-PUBLIC_KEY: http//wwwkeys.nl.pgp.net X-GPG-FINGERPRINT: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-NotAscii: charset=us-ascii; X-IP-stats: Incoming Last 1, First 36, in=25, out=0, spam=0 X-External-IP: 69.92.6.58 X-Abuse-Info: Send abuse complaints to abuse@cableone.net Subject: Re: FreeBSD 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: Sat, 24 Jun 2006 02:59:42 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 > On Tue, 20 Jun 2006 22:51:46 -0500 (CDT) > Denny White wrote: > >> Okay, might be off base here, so someone correct me if >> I'm wrong. Don't you also have to remove the following >> >> #ifdef SMP >> #ifndef COMPILING_LINT >> #error DEVICE_POLLING is not compatible with SMP >> #endif >> #endif >> >> from /usr/src/sys/kern/kern_poll.c ? >> >> You'll get an error part of the way through building >> the kernel otherwise, right? Like I said, that's the >> way I remember it. Just trying to save someone some >> unnecessary work. > Today Joerg Pernfuss wrote: > Obviously only if you have enabled device polling in your custom kernel > and know what you're doing. Defaulting to refuse to build polling on > SMP has its reason. While it is generally not a problem, the kernel / > userland ratio and statistics code might get messed up if I recall > an old posting from Luigi correctly. > > Joerg > -- > | /"\ ASCII ribbon | GnuPG Key ID | e86d b753 3deb e749 6c3a | > | \ / campaign against | 0xbbcaad24 | 5706 1f7d 6cfd bbca ad24 | > | X HTML in email | .the next sentence is true. | > | / \ and news | .the previous sentence was a lie. | > Yup, you're right. And I do have device polling enabled in the kernel. My bad. Open one mouth, extricate one foot. :-) Time for either a jolt or some sleep. GnuPG key : 0x1644E79A | http://wwwkeys.nl.pgp.net Fingerprint: D0A9 AD44 1F10 E09E 0E67 EC25 CB44 F2E5 1644 E79A -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (OpenBSD) iD8DBQFEnKqcy0Ty5RZE55oRAmcVAJ0RSZG8WtTCavx34HuRGXh0R/hPWACeJCyg 7ntC/WIi/T8bKBAkNPrgUWs= =1wiI -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 03:54: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 A529C16A47B for ; Sat, 24 Jun 2006 03:54:08 +0000 (UTC) (envelope-from nikolas.britton@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 3466043D46 for ; Sat, 24 Jun 2006 03:54:08 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id n1so902685nzf for ; Fri, 23 Jun 2006 20:54: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ulcVjmNk3xtRdW0VXm/fGZgfKop8lGsLztB0JeqmBW20yfp3/bKu8MLTth23deEsuVMAdFBGhI51lu+65qJcagm9pJun+1H8+xThutC38jxZk8PGkkNqG6zKn7WSmWQQict8XEONypkESYivrVnhZ+wIoD8+w/qs1+JbUPnhiGk= Received: by 10.36.221.9 with SMTP id t9mr4744576nzg; Fri, 23 Jun 2006 20:54:07 -0700 (PDT) Received: by 10.36.12.11 with HTTP; Fri, 23 Jun 2006 20:54:07 -0700 (PDT) Message-ID: Date: Fri, 23 Jun 2006 20:54:07 -0700 From: "Nikolas Britton" To: "Dan Nelson" In-Reply-To: <20060624023139.GA83209@dan.emsphone.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060624023139.GA83209@dan.emsphone.com> Cc: FreeBSD Mailing List Subject: Re: help with 'tar|rsh tar' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 03:54:08 -0000 On 6/23/06, Dan Nelson wrote: > In the last episode (Jun 23), Nikolas Britton said: > > I need to backup the /data directory on hostA to /data on hostB, > > about 1TB of data on a gigabit link. Right now I'm using scp but the > > handshake latency and ssh overhead is killing me. > > > > I've looked at many examples of tar|rsh tar and I can't figure it out, > > most of the examples on the net look like this: > > # tar cf - . | rsh hostname dd of=tape-device obs=20b > > # tar -cf -...|rsh ...tar xf -... > > Two quick options even more lightweight than rsh are netcat (base > system) and ttcp (in ports). Usage examples: > > host2$ ttcp -r | tar xvf - > host1$ tar cf - . | ttcp -t host2 > > host2$ nc -l 1234 | tar xvf - > host1$ tar cf - . | nc host2 1234 > Thanks!, but I got rsh going. I first had to edit /etc/hosts.equiv, after that I figured it out: tar cf - . | rsh 192.168.1.242 'cd /data; tar xpvf -' I was thinking tar -f as in file.tar but it's not, you have to cd into the source directory you want to copy... anyways... I'm getting around 30MB/s now... it should be in the 50-60MB/s range... Good enough for now though. Thanks again... -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 04:20: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 B7B2816A4A0 for ; Sat, 24 Jun 2006 04:20:34 +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 3F41243D48 for ; Sat, 24 Jun 2006 04:20:34 +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 977AC13C7C9; Fri, 23 Jun 2006 23:24:34 -0500 (CDT) Received: by bravo.pjkh.com (Postfix, from userid 1000) id 79F1113C7C0; Fri, 23 Jun 2006 23:24:34 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by bravo.pjkh.com (Postfix) with ESMTP id 76BEE13C404; Fri, 23 Jun 2006 23:24:34 -0500 (CDT) Date: Fri, 23 Jun 2006 23:24:34 -0500 (CDT) From: Philip Hallstrom To: Andy Greenwood In-Reply-To: <3ee9ca710606230844y2f4d2326kf3cf7f7d2b4ec9d5@mail.gmail.com> Message-ID: <20060623232332.P31682@bravo.pjkh.com> References: <449C0711.3080803@mykitchentable.net> <3ee9ca710606230844y2f4d2326kf3cf7f7d2b4ec9d5@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV using ClamSMTP Cc: Drew Tomlinson , FreeBSD Questions Subject: Re: Simple DNS For Private LAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 04:20:34 -0000 > If you're getting a static IP, then you can become master for your > domain, but you'll still need a secondary NS, and most (if not all) > registrars will require that the secondary NS be on a different IP. I Don't know about the others, but dotster doesn't care. My domain is one box, 5 IP's. bind listens on two of them. sure it's not the most robust solution, but it works just fine. -philip From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 04:25: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 B089D16A49E for ; Sat, 24 Jun 2006 04:25:31 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from smtp03.bis.na.blackberry.com (smtp03.bis.na.blackberry.com [216.9.248.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0069443D4C for ; Sat, 24 Jun 2006 04:25:30 +0000 (GMT) (envelope-from drew@mykitchentable.net) Received: from bda018-cell00.bisx.prod.on.blackberry (localhost.localdomain [127.0.0.1]) by bda018.bis.na.blackberry.com (8.13.4 TEAMON/8.13.4) with ESMTP id k5O4PQwI022469; Sat, 24 Jun 2006 04:25:26 GMT Message-ID: <823451557-1151123123-cardhu_blackberry.rim.net-595881207-@bwe044-cell00.bisx.prod.on.blackberry> References: <449C0711.3080803@mykitchentable.net><3ee9ca710606230844y2f4d2326kf3cf7f7d2b4ec9d5@mail.gmail.com> <20060623232332.P31682@bravo.pjkh.com> In-Reply-To: <20060623232332.P31682@bravo.pjkh.com> Sensitivity: Normal Importance: Normal To: "Philip Hallstrom" , "Andy Greenwood" From: "Drew Tomlinson" Date: Sat, 24 Jun 2006 04:25:18 +0000 GMT Content-type: text/plain MIME-Version: 1.0 Cc: FreeBSD Questions Subject: Re: Simple DNS For Private LAN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: drew@mykitchentable.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 04:25:31 -0000 What's dotster? Sorry for the top post but that seems all my Blackberry will allow Thanks, Drew -----Original Message----- From: Philip Hallstrom Date: Fri, 23 Jun 2006 23:24:34 To:Andy Greenwood Cc:Drew Tomlinson , FreeBSD Questions Subject: Re: Simple DNS For Private LAN > If you're getting a static IP, then you can become master for your > domain, but you'll still need a secondary NS, and most (if not all) > registrars will require that the secondary NS be on a different IP. I Don't know about the others, but dotster doesn't care. My domain is one box, 5 IP's. bind listens on two of them. sure it's not the most robust solution, but it works just fine. -philip From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 04: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 3440F16A4B3 for ; Sat, 24 Jun 2006 04:59:57 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC92F43D53 for ; Sat, 24 Jun 2006 04:59:56 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by wx-out-0102.google.com with SMTP id h30so616471wxd for ; Fri, 23 Jun 2006 21:59: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=Q8mY4Vde2+n13NYi2gbMRddfcIFdsyeO/EWvdGO+RNFkvvbpgYiJzYT05MEhIKmAGnXMPrc7TNAPSkUauSPMushZXCvSbeyCASOxzf2s0ZHW586Mph5YrNi8+BpuJEImY25+g2y/biakR4G7hBXl+xHv+e5cgPIwouSpkpDSmvU= Received: by 10.70.21.9 with SMTP id 9mr5358637wxu; Fri, 23 Jun 2006 21:59:56 -0700 (PDT) Received: by 10.70.83.15 with HTTP; Fri, 23 Jun 2006 21:59:55 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 08:59:55 +0400 From: "Andrew Pantyukhin" To: Godfrey In-Reply-To: <7.0.1.0.0.20060624000904.01e765d8@compudoc.za.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <7.0.1.0.0.20060624000904.01e765d8@compudoc.za.org> Cc: freebsd-questions@freebsd.org Subject: Re: Freebsd 6.1 Samba 3 as a PDC not using ldap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 04:59:57 -0000 On 6/24/06, Godfrey wrote: > Hello > > I am looking for help with running SAMBA 3 as a PDC on Freebsd 6.1 Samba 3 can not run as a PDC, only Samba 4 can do that, but it hasn't been released yet. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 05:03: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 30B3116A494 for ; Sat, 24 Jun 2006 05:03:30 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id B161143D49 for ; Sat, 24 Jun 2006 05:03:29 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by wx-out-0102.google.com with SMTP id h30so616671wxd for ; Fri, 23 Jun 2006 22:03:29 -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=XmIsxtZI36Hq/EqoeMNh3c10Yv54TX2028h5mN0RzPubSf+jnh6Cd8o50h2DKztLtgO46jPqOgQJIe0S40KtJD3+HO+UMRXfyyw9PsaeSP3cJIvTq1e+FO1mtddZewrdCbXi2FS1rtwdczSYjrcYhKZtcy1k7u31xQ20XhRFcyQ= Received: by 10.70.116.11 with SMTP id o11mr5814289wxc; Fri, 23 Jun 2006 22:03:29 -0700 (PDT) Received: by 10.70.83.15 with HTTP; Fri, 23 Jun 2006 22:03:29 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 09:03:29 +0400 From: "Andrew Pantyukhin" To: "Ben House" 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: Cc: freebsd-questions@freebsd.org Subject: Re: USB External harddrive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 05:03:30 -0000 On 6/24/06, Ben House wrote: > Greetings, > > I have an issue with trying to hookup a USB hard drive to an IBM Netfinity > 3000 server. The direct access (da) device does not appear in the /dev > directory. It appears that the Western Digital drive is being recognized. > I am using a Generic kernel, 6.0 Release. > > dmesg: > umass0: Western Digital External HDD, rev 2.00/6.02, addr 2 > uhid0: Western Digital External HDD, rev 2.00/6.02, addr 2, iclass 8/6 > umass0: at uhub0 port 1 (addr 2) disconnected > umass0: detached > uhid0: at uhub0 port 1 (addr 2) disconnected > uhid0: detached > umass0: Western Digital External HDD, rev 2.00/6.02, addr 2 > uhid0: Western Digital External HDD, rev 2.00/6.02, addr 2, iclass 8/6 Just to be sure... Are you using a generic kernel and if not, do you have all the scsi tapestry compiled in? From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 05:21: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 422CB16A494 for ; Sat, 24 Jun 2006 05:21:57 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id B61E143D48 for ; Sat, 24 Jun 2006 05:21:56 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id q3so996252nzb for ; Fri, 23 Jun 2006 22:21: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:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=im6CtAm9kwELydzzVsq5/qKvC3GNMmATnTp7GTznD9NNi+uk++5HIMg+OyJsdD0O3D1ugMgYsEkhxsNIQM9YRGmW+z5I7q4UunxhvgISVlRZTjyO44CIfgFC4gFGheI1BFqMmPgDqwadZnuoUGS3375LBfSfQHeaY0Rf/eFiZcg= Received: by 10.36.227.49 with SMTP id z49mr4828425nzg; Fri, 23 Jun 2006 22:21:53 -0700 (PDT) Received: by 10.36.12.11 with HTTP; Fri, 23 Jun 2006 22:21:53 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 00:21:53 -0500 From: "Nikolas Britton" To: freebsd-questions@freebsd.org In-Reply-To: <20060624014452.GT11625@tigger.digitaltorque.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620233551.GG11625@tigger.digitaltorque.ca> <20060621011340.GI11625@tigger.digitaltorque.ca> <20060621173253.GD7596@tigger.digitaltorque.ca> <20060624014452.GT11625@tigger.digitaltorque.ca> Subject: Re: migrating to 64-bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 05:21:57 -0000 On 6/23/06, Michael P. Soulier wrote: > On 21/06/06 Nikolas Britton said: > > > The consensus seems to be that FreeBSD/amd64 is a tad slower then > > FreeBSD/i386 because it has to deal with 32 extra bits. The primary > > reason to use FreeBSD/amd64 seems to be if you need greater then 4GB > > of RAM. > > > > This should give you the speed boost your looking for: > > CPUTYPE?=pentium2 > > CFLAGS+= -mtune=nocona > > COPTFLAGS+= -mtune=nocona > > > > Put that in /etc/make.conf and recompile ports/kern/world. > > Cool, thanks. > > Mike > Yea it looks weird but I've benchmarked it: -march=pentium2 + -mtune=pentium3 -march=pentium2 + -mtune=pentium4 -march=pentium2 + -mtune=prescott -march=pentium2 + -mtune=nocona All are equal to or better then -march={your_real_cpu} alone, which is weird because -march=cputype implies -mtune=cputype. My gcc settings also produce safer (less buggy) code at compile time and safely optimizes code that would otherwise ignore the CPUTYPE option in make.conf... YMMV. -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 05:30: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 5B25C16A49A for ; Sat, 24 Jun 2006 05:30:30 +0000 (UTC) (envelope-from bidjan@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 8AD0343D53 for ; Sat, 24 Jun 2006 05:30:29 +0000 (GMT) (envelope-from bidjan@gmail.com) Received: by py-out-1112.google.com with SMTP id d80so1096988pyd for ; Fri, 23 Jun 2006 22:30:29 -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=ElxzrkuGsokcDdUPAM8gGvzNn1BbLUZwBx19iWtRDex0Z/tYv9rHrBjcUXTFJEUeNmh5f6WWXTuCiO9qoRE/PU9dlvJ7ym2mRDbp1gtStHSH0wWWiBtQ5+hExnrbB6x/j5AbhtUbv7/EOOpiitwIdqg01vig6tly6gaZ9RHnv6s= Received: by 10.35.37.18 with SMTP id p18mr3152043pyj; Fri, 23 Jun 2006 22:30:27 -0700 (PDT) Received: by 10.35.21.9 with HTTP; Fri, 23 Jun 2006 22:30:27 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 01:30:27 -0400 From: "Pablo Mora" To: freebsd-questions@freebsd.org In-Reply-To: <20060621160516.GA7596@tigger.digitaltorque.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620233233.GF11625@tigger.digitaltorque.ca> <20060621160516.GA7596@tigger.digitaltorque.ca> Subject: Re: ppp not starting 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: Sat, 24 Jun 2006 05:30:30 -0000 On 6/21/06, Michael P. Soulier wrote: > On 20/06/06 Michael P. Soulier said: > > > Hey people, > > > > I had a power failure today (there goes my uptime) that lasted longer than my > > UPS, and when the box came back up, my PPPoE connection did not. > > > > # Enable PPPoE > > ppp_enable="YES" > > ppp_mode="ddial" > > ppp_nat="YES" > > ppp_profile="storm" > > > > Is this not correct? Should this not cause ppp to be started, using the > > "storm" profile, at boot? > > > > I had to do it manually via > > > > ppp -ddial storm > > This seems to be started by the ppp-user rc script, but it didn't seem to > happen. > > Any ideas? > try with: ppp_enable="YES" ppp_mode="ddial" #ppp_nat="YES" ppp_profile="storm" and reboot. > Mike > > -- > Michael P. Soulier > "Any intelligent fool can make things bigger and more complex... It > takes a touch of genius - and a lot of courage to move in the opposite > direction." --Albert Einstein > > > -- Linux is for people who hate Micro$oft. BSD is for people who love Unix ... From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 06:11: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 2A19316A4A6 for ; Sat, 24 Jun 2006 06:11:49 +0000 (UTC) (envelope-from bsd@bathnetworks.com) Received: from lmail.bathnetworks.co.uk (mail.bathnetworks.com [84.92.24.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C6B643D49 for ; Sat, 24 Jun 2006 06:11:47 +0000 (GMT) (envelope-from bsd@bathnetworks.com) Received: (qmail 12390 invoked by uid 510); 24 Jun 2006 07:19:51 +0100 Received: from 127.0.0.1 by lmail.bathnetworks.co.uk (envelope-from , uid 508) with qmail-scanner-1.24-st-qms (clamdscan: 0.88/1261. spamassassin: 3.0.2. perlscan: 1.24-st-qms. Clear:RC:0(127.0.0.1):SA:0(-4.7/5.0):. Processed in 2.138216 secs); 24 Jun 2006 06:19:51 -0000 X-Spam-Status: No, hits=-4.7 required=5.0 X-Antivirus-MYDOMAIN-Mail-From: bsd@bathnetworks.com via lmail.bathnetworks.co.uk X-Antivirus-MYDOMAIN: 1.24-st-qms (Clear:RC:0(127.0.0.1):SA:0(-4.7/5.0):. Processed in 2.138216 secs Process 12381) Received: from localhost (HELO 192.168.0.50) (bsd@bathnetworks.com@127.0.0.1) by lmail.bathnetworks.co.uk with SMTP; 24 Jun 2006 07:19:48 +0100 Received: from 192.168.0.104 (SquirrelMail authenticated user bsd@bathnetworks.com) by 192.168.0.50 with HTTP; Sat, 24 Jun 2006 07:19:48 +0100 (BST) Message-ID: <63529.192.168.0.104.1151129988.squirrel@192.168.0.50> In-Reply-To: <7.0.1.0.0.20060623122229.01b2a970@compudoc.za.org> References: <7.0.1.0.0.20060623122229.01b2a970@compudoc.za.org> Date: Sat, 24 Jun 2006 07:19:48 +0100 (BST) From: bsd@bathnetworks.com To: "Godfrey" 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: Freebsd 6.1 Samba 3 as a PDC not using ldap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 06:11:49 -0000 > Hello > > I am looking for help with running SAMBA 3 as a PDC on Freebsd 6.1 > > I can get samba to run as a basic server no problem. > > but I would like it get samba to run as a pdc but not using ldap, > > I would be most grateful if I could see a working smb.conf file > running as a pdc that would perhaps steer me in the correct direction. > > The examples that come with samba 3 have not been ported to freebsd > and my visits to google have yielded lots of info but nothing that > actually helps me. > > The problem comes for me to add machines get them to 'register' as > part of the domain etc > > Thank you in advance for any help you may be able to offer > > > Kind Regards > > Godfrey > Godfrey, There are some very good examples on the samba site itself and they are also in the smaba docs on your machine. This guide is for Centos, but I found it quite useful: http://www.hughesjr.com/content/view/24/30/Guides Rob From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 09: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 6863816A492 for ; Sat, 24 Jun 2006 09:19:08 +0000 (UTC) (envelope-from wodfer@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD2F243D58 for ; Sat, 24 Jun 2006 09:19:07 +0000 (GMT) (envelope-from wodfer@gmail.com) Received: by py-out-1112.google.com with SMTP id c30so953937pyc for ; Sat, 24 Jun 2006 02:19: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=VmkuUgyqoIPO/h20BubpdkDzLRVMJjpLukUm/UrfWpBd4iMEQxLHJlG0jcLLA2uo1BalyCNpjIKspAB96Qvp8YSLuXLnP9UVRtvZKXYkaRL8/C5Vj983eyg6CxgJKwhkSXA+GtByhmoa8eqXGvbuoJ6zYcJuhsMValBFVuT0AK8= Received: by 10.35.78.13 with SMTP id f13mr3335742pyl; Sat, 24 Jun 2006 02:19:07 -0700 (PDT) Received: by 10.35.90.3 with HTTP; Sat, 24 Jun 2006 02:19:07 -0700 (PDT) Message-ID: <23ed14b80606240219w354b53cs8e8d3b95cd6db394@mail.gmail.com> Date: Sat, 24 Jun 2006 11:19:07 +0200 From: "=?ISO-8859-1?Q?Andreas_Wider=F8e_Andersen?=" 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: Help with installing php4 and upgrading mysql323 for Apache 1.36 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 09:19:08 -0000 Hi, I'm having trouble figuring out what and how to install and upgrade some programs/modules. This was very simple when I last did it, but I haven't been around doing this since version 4.7 was new and now some things have changed. Server is now 4.11 STABLE (or will be on monday). I have the latest Apache-mod_ssl installed and I need to have the latest "mod_php4" for Apache aswell as upgrading mysql to the latest of the 323 version. (Perhaps I'll go for mysql 4.1, but I need to verify this with some software running on my system first.) What port/modul should I install to get php4 working under apache? I used to install mod_php4, but from my /usr/ports tree this seems deprecated to me. It's also important that I can make the php4 module work together with mysql 323. Any help very much appreciated! Thanks a lot. Best regards, Andreas From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 09:48: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 C30C216A494 for ; Sat, 24 Jun 2006 09:48:55 +0000 (UTC) (envelope-from bsd@bathnetworks.com) Received: from lmail.bathnetworks.co.uk (mail.bathnetworks.com [84.92.24.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30C9243D45 for ; Sat, 24 Jun 2006 09:48:53 +0000 (GMT) (envelope-from bsd@bathnetworks.com) Received: (qmail 14129 invoked by uid 510); 24 Jun 2006 10:56:58 +0100 Received: from 127.0.0.1 by lmail.bathnetworks.co.uk (envelope-from , uid 508) with qmail-scanner-1.24-st-qms (clamdscan: 0.88/1261. spamassassin: 3.0.2. perlscan: 1.24-st-qms. Clear:RC:0(127.0.0.1):SA:0(-4.7/5.0):. Processed in 1.215645 secs); 24 Jun 2006 09:56:58 -0000 X-Spam-Status: No, hits=-4.7 required=5.0 X-Antivirus-MYDOMAIN-Mail-From: bsd@bathnetworks.com via lmail.bathnetworks.co.uk X-Antivirus-MYDOMAIN: 1.24-st-qms (Clear:RC:0(127.0.0.1):SA:0(-4.7/5.0):. Processed in 1.215645 secs Process 14120) Received: from localhost (HELO 192.168.0.50) (bsd@bathnetworks.com@127.0.0.1) by lmail.bathnetworks.co.uk with SMTP; 24 Jun 2006 10:56:57 +0100 Received: from 192.168.0.104 (SquirrelMail authenticated user bsd@bathnetworks.com) by 192.168.0.50 with HTTP; Sat, 24 Jun 2006 10:56:57 +0100 (BST) Message-ID: <63803.192.168.0.104.1151143017.squirrel@192.168.0.50> In-Reply-To: <23ed14b80606240219w354b53cs8e8d3b95cd6db394@mail.gmail.com> References: <23ed14b80606240219w354b53cs8e8d3b95cd6db394@mail.gmail.com> Date: Sat, 24 Jun 2006 10:56:57 +0100 (BST) From: bsd@bathnetworks.com To: Andreas =?iso-8859-1?Q?Wider=F8e_Andersen?= 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: Help with installing php4 and upgrading mysql323 for Apache 1.36 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 09:48:55 -0000 > Hi, > I'm having trouble figuring out what and how to install and upgrade some > programs/modules. This was very simple when I last did it, but I haven't > been around doing this since version 4.7 was new and now some things have > changed. Server is now 4.11 STABLE (or will be on monday). > > I have the latest Apache-mod_ssl installed and I need to have the latest > "mod_php4" for Apache aswell as upgrading mysql to the latest of the 323 > version. (Perhaps I'll go for mysql 4.1, but I need to verify this with > some > software running on my system first.) > > What port/modul should I install to get php4 working under apache? I used > to > install mod_php4, but from my /usr/ports tree this seems deprecated to me. > It's also important that I can make the php4 module work together with > mysql > 323. > > Any help very much appreciated! > > Thanks a lot. > > Best regards, > Andreas Andreas, As 6.x is out, 4.11 etc will soon be no longer supported. You should consider updating to 5.x at least if possible. I'm running 6.1 with no problems. mod_php has been deprecated as you found out. Use the php4 port instead which has the functionality of the mod_php4 port. Rob From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 10:12: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 EA45716A492 for ; Sat, 24 Jun 2006 10:12:09 +0000 (UTC) (envelope-from wodfer@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 DDF0C43D55 for ; Sat, 24 Jun 2006 10:12:06 +0000 (GMT) (envelope-from wodfer@gmail.com) Received: by py-out-1112.google.com with SMTP id b29so905338pya for ; Sat, 24 Jun 2006 03:12: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:in-reply-to:mime-version:content-type:references; b=lEio0k96g+N/c54uLYXWPcYYlQJGd7SJTg+Ztapre40svGZVYvrHGhTxEWSgcPhwSqzXx6f0Zw42YGvLC0P4LaasMv3x6S+9BTovhb6J0SajDBvE4X1SCjLH4HqukHkQHEpgmp/eX/r9Zgewrv6eh9xq00aatKn9gUMGzzLLZN8= Received: by 10.35.34.18 with SMTP id m18mr3354748pyj; Sat, 24 Jun 2006 03:12:06 -0700 (PDT) Received: by 10.35.90.3 with HTTP; Sat, 24 Jun 2006 03:12:06 -0700 (PDT) Message-ID: <23ed14b80606240312pcbd6761nf5095d921a99d23f@mail.gmail.com> Date: Sat, 24 Jun 2006 12:12:06 +0200 From: "=?ISO-8859-1?Q?Andreas_Wider=F8e_Andersen?=" To: freebsd-questions@freebsd.org In-Reply-To: <63803.192.168.0.104.1151143017.squirrel@192.168.0.50> MIME-Version: 1.0 References: <23ed14b80606240219w354b53cs8e8d3b95cd6db394@mail.gmail.com> <63803.192.168.0.104.1151143017.squirrel@192.168.0.50> 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: Help with installing php4 and upgrading mysql323 for Apache 1.36 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 10:12:10 -0000 On 6/24/06, bsd@bathnetworks.com wrote: > As 6.x is out, 4.11 etc will soon be no longer supported. You should > consider updating to 5.x at least if possible. I'm running 6.1 with no > problems. > > mod_php has been deprecated as you found out. Use the php4 port instead > which has the functionality of the mod_php4 port. > > Rob Thanks Rob, The server will be erased and installed with the latest version for FreeBSD in a few months, but untill then I feel I need to stick to 4.X since there are too much on the machine built under this branch. The server that will replace this one will have the latest 6.X version for sure. I'll try with the php4 port, but I think there are a lot of build options there. What is the minimal I need in order to get php4 working together with Apache 1.36 and Mysql? /Andreas From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 10:29: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 AA50D16A4C2 for ; Sat, 24 Jun 2006 10:29:39 +0000 (UTC) (envelope-from bhouse2@unifiednetworkservices.ca) Received: from tomts16-srv.bellnexxia.net (tomts16.bellnexxia.net [209.226.175.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBE6C43D48 for ; Sat, 24 Jun 2006 10:29:38 +0000 (GMT) (envelope-from bhouse2@unifiednetworkservices.ca) Received: from mail.unifiednetworkservices.ca ([69.159.59.141]) by tomts16-srv.bellnexxia.net (InterMail vM.5.01.06.13 201-253-122-130-113-20050324) with ESMTP id <20060624102937.HDWP27612.tomts16-srv.bellnexxia.net@mail.unifiednetworkservices.ca> for ; Sat, 24 Jun 2006 06:29:37 -0400 Received: (qmail 71465 invoked by uid 1009); 24 Jun 2006 05:41:11 -0000 Received: from toronto-hse-ppp4316931.sympatico.ca (HELO NOTEBOOK) (bhouse2@unifiednetworkservices.ca@69.159.59.141) by mail.unifiednetworkservices.ca with SMTP; 24 Jun 2006 05:41:11 -0000 From: "Ben House" To: Date: Sat, 24 Jun 2006 06:27:57 -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.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 In-Reply-To: Importance: Normal Subject: RE: USB External harddrive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 10:29:39 -0000 Yes, I am using a GENERIC kernel with the related scsi modules. Ben House -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Andrew Pantyukhin Sent: Saturday, June 24, 2006 1:03 AM To: Ben House Cc: freebsd-questions@freebsd.org Subject: Re: USB External harddrive On 6/24/06, Ben House wrote: > Greetings, > > I have an issue with trying to hookup a USB hard drive to an IBM Netfinity > 3000 server. The direct access (da) device does not appear in the /dev > directory. It appears that the Western Digital drive is being recognized. > I am using a Generic kernel, 6.0 Release. > > dmesg: > umass0: Western Digital External HDD, rev 2.00/6.02, addr 2 > uhid0: Western Digital External HDD, rev 2.00/6.02, addr 2, iclass 8/6 > umass0: at uhub0 port 1 (addr 2) disconnected > umass0: detached > uhid0: at uhub0 port 1 (addr 2) disconnected > uhid0: detached > umass0: Western Digital External HDD, rev 2.00/6.02, addr 2 > uhid0: Western Digital External HDD, rev 2.00/6.02, addr 2, iclass 8/6 Just to be sure... Are you using a generic kernel and if not, do you have all the scsi tapestry compiled in? _______________________________________________ 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 Jun 24 10:49: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 8B34316A4A6 for ; Sat, 24 Jun 2006 10:49:24 +0000 (UTC) (envelope-from gurdiga@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1B1743D55 for ; Sat, 24 Jun 2006 10:49:21 +0000 (GMT) (envelope-from gurdiga@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so233436uge for ; Sat, 24 Jun 2006 03: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:mime-version:content-type:content-transfer-encoding:content-disposition; b=E5fJ3PxmiD4PsKe12obThBSQrTE6lIox0DJjRwJwlmfujT+jypGL6PwkmdjhhhOryysgIGRXyW9EfgqZR7l+P/LJ5MuQyWc5AmVljY40lpFf3CG9tdlg5f39DZEmPSrJjLSnAzK5SFaAosR1U2Dd4ZrWiP6EWx0weyf2cKb+6ec= Received: by 10.78.160.2 with SMTP id i2mr1548255hue; Sat, 24 Jun 2006 03:49:20 -0700 (PDT) Received: by 10.78.12.10 with HTTP; Sat, 24 Jun 2006 03:49:20 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 13:49:20 +0300 From: "Vlad GURDIGA" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: burncd: ioctl(CDRIOCNEXTWRITEABLEADDR): Input/output 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: Sat, 24 Jun 2006 10:49:24 -0000 Hello, I get this error when I try to write (under root) a CD-RW or CD-R as is found in handbook: besa# burncd data FC-5-i386-disc1.iso fixate burncd: ioctl(CDRIOCNEXTWRITEABLEADDR): Input/output error Here are my (SMP) system details: besa# uname -a FreeBSD besa.org 6.1-STABLE FreeBSD 6.1-STABLE #24: Thu Jun 22 21:36:23 EEST 2006 root@besa.org:/usr/src/sys/i386/compile/besa i386 besa# dmesg | grep acd acd0: DVDR at ata1-master UDMA66 acd0: FAILURE - READ_TRACK_INFO ILLEGAL REQUEST asc=0x24 ascq=0x00 acd0: FAILURE - READ_TRACK_INFO ILLEGAL REQUEST asc=0x24 ascq=0x00 Is there any way to make it work? From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 11: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 2395616A492 for ; Sat, 24 Jun 2006 11:23:31 +0000 (UTC) (envelope-from mulgajohn@bigpond.com) Received: from omta02sl.mx.bigpond.com (omta02sl.mx.bigpond.com [144.140.93.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0AAF43D46 for ; Sat, 24 Jun 2006 11:23:29 +0000 (GMT) (envelope-from mulgajohn@bigpond.com) Received: from mathew ([60.230.38.97]) by omta02sl.mx.bigpond.com with SMTP id <20060624112326.OYEO20633.omta02sl.mx.bigpond.com@mathew> for ; Sat, 24 Jun 2006 11:23:26 +0000 Message-ID: <001801c69780$9cd63590$6126e63c@mathew> From: "John Andrewartha" To: "'freebsd-questions@FreeBSD.ORG'" Date: Sat, 24 Jun 2006 21:23:24 +1000 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Modifieng source X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 11:23:31 -0000 Hi and once again thanks, I have nearly solved the usb modem problem. Checking around I find OpenBSD have a fix, I need to enter a little more = usb_quirks.c ... To date I have added the entry { USB_VENDOR_CMOTECH, USB_PRODUCT_CMOTECH_CM5100P, ANY, {UQ_ASSUME_CM_OVER_DATA}}, which is the same as OpenBSD use and recomend. When I do a make it breakes with the following errors initialization element in constant ( near initialization for usb_quirks [33] quirks Obviously I am doing some thing wrong. What. Help Please. My programming days are so fare behind me that there are relics = undergoing fosilisation. Cheers John PS Solve this and we may have a solution to thos 3G cards that Telstra = sell. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 11:54: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 0A25016A49E for ; Sat, 24 Jun 2006 11:54:45 +0000 (UTC) (envelope-from lveax.m@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 874D843D5C for ; Sat, 24 Jun 2006 11:54:38 +0000 (GMT) (envelope-from lveax.m@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so247962uge for ; Sat, 24 Jun 2006 04:54: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:mime-version:content-type:content-transfer-encoding:content-disposition; b=Oiq8j5YQEYc3tjcpHWwPb4wrOer6nB4NshMWNPBOEZKz7yPvGQGyiLMYHxbQjQYP+YpirnWfR8/4oDokz+uPQsNig6JJ5gwp5aFvF6nZeB+eemtFwL0QzIw8ZJG1fYZjJYPRjaCKtrlZq7QVhAOvK7wtgTlUkQuwcNRjMV+9FLg= Received: by 10.78.122.11 with SMTP id u11mr1560120huc; Sat, 24 Jun 2006 04:54:37 -0700 (PDT) Received: by 10.78.120.1 with HTTP; Sat, 24 Jun 2006 04:54:37 -0700 (PDT) Message-ID: <576dcbc20606240454w41c832ao7e61ce54fad2f51d@mail.gmail.com> Date: Sat, 24 Jun 2006 19:54:37 +0800 From: lveax 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: i can't type chinese words in opera since i upgraded it to 9.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: Sat, 24 Jun 2006 11:54:45 -0000 i use fcitx... can anyone help me? $ uname -srm FreeBSD 6.0-STABLE i386 From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 12:01: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 52A6C16A508 for ; Sat, 24 Jun 2006 12:01:12 +0000 (UTC) (envelope-from imran@darkstar.thelakecity.com.pk) Received: from darkstar.thelakecity.com.pk (darkstar.thelakecity.com.pk [202.59.74.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F09243D46 for ; Sat, 24 Jun 2006 12:00:49 +0000 (GMT) (envelope-from imran@darkstar.thelakecity.com.pk) Received: from darkstar.thelakecity.com.pk (localhost [127.0.0.1]) by darkstar.thelakecity.com.pk (8.13.3/8.13.3) with ESMTP id k5OBwA6Z072067 for ; Sat, 24 Jun 2006 16:58:10 +0500 (PKT) (envelope-from imran@darkstar.thelakecity.com.pk) Received: (from root@localhost) by darkstar.thelakecity.com.pk (8.13.3/8.13.3/Submit) id k5OBw6RN072066 for freebsd-questions@freebsd.org; Sat, 24 Jun 2006 16:58:06 +0500 (PKT) (envelope-from imran) Date: Sat, 24 Jun 2006 16:58:06 +0500 (PKT) From: Imran Imtiaz Message-Id: <200606241158.k5OBw6RN072066@darkstar.thelakecity.com.pk> To: freebsd-questions@freebsd.org Subject: squid response X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 12:01:12 -0000 I wanna ask does squid queue the requests if there are to many already to serve cause I've slow internet connection and sometimes where there is to much load the I can't see the requests coming from my computer being served by hit I've seen this from access.log of squid. Is there a way to improve this thing we can have threading in this case or something else to server ? regards imran From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 12: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 14CEA16A494 for ; Sat, 24 Jun 2006 12:15:39 +0000 (UTC) (envelope-from simon@bollo.16hz.net) Received: from bollo.16hz.net (bollo.16hz.net [82.71.120.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7456743D45 for ; Sat, 24 Jun 2006 12:15:37 +0000 (GMT) (envelope-from simon@bollo.16hz.net) Received: from bollo.16hz.net (simon@localhost.16hz.net [127.0.0.1]) by bollo.16hz.net (8.13.4/8.13.4) with ESMTP id k5OCFZdh032712; Sat, 24 Jun 2006 13:15:35 +0100 (BST) Received: (from simon@localhost) by bollo.16hz.net (8.13.4/8.13.4/Submit) id k5OCFYRN026518; Sat, 24 Jun 2006 13:15:34 +0100 (BST) Date: Sat, 24 Jun 2006 13:15:34 +0100 From: Simon Morgan To: freebsd-questions@freebsd.org, mplayer-users@mplayerhq.hu Message-ID: <20060624121534.GA16828@bollo.16hz.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 Cc: Subject: Stuttery Video Playback X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: simon@16hz.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 12:15:39 -0000 Help me, Obi-Wan Kenobi. You're my only hope! Ok, so I'm having real trouble playing videos under either FreeBSD or OpenBSD. Playback on OpenBSD is really choppy/stuttery, FreeBSD is a lot better but still enough to be annoying. I only have access to a FreeBSD installation right now so I'll stick with that. It's worth mentioning that the machine in question is more than up to the task of playing video: CPU: AMD Athlon(TM) XP 2000+ (1658.54-MHz 686-class CPU) real memory = 1073725440 (1023 MB) avail memory = 1041784832 (993 MB) This is backed up by the fact that I don't get this problem under Linux. The closest I can come to a test case is running: dd if=/dev/urandom of=blah while a video is playing. Under FreeBSD this causes the video to freeze for a second and the dropped frame counter to increase by a varying number of frames. Linux, however, just keeps ticking along nicely. I've tried swapping the video card between an ATI 9200 and NVIDIA GeForce 4 and swapping the sound card between a VIA VT8235 and a CMedia CMI8738 but neither helped. I'm pretty sure that nobody that reads this will be able to reproduce this problem but at least it means I have a way of easily testing things if somebody is kind enough to help me try and resolve this problem. Thanks for your time. -- One man's theology is another man's belly laugh. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 12:19: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 8F20216A4A7 for ; Sat, 24 Jun 2006 12:19:55 +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 DFDA943D5A for ; Sat, 24 Jun 2006 12:19:54 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 3697D5EEF; Sat, 24 Jun 2006 08:19:54 -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 xYMRdkHuo3Bj; Sat, 24 Jun 2006 08:19:52 -0400 (EDT) Received: from [192.168.1.251] (pool-68-160-201-170.ny325.east.verizon.net [68.160.201.170]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 00F755D47; Sat, 24 Jun 2006 08:19:51 -0400 (EDT) Message-ID: <449D2DE4.6090908@mac.com> Date: Sat, 24 Jun 2006 08:19:48 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Imran Imtiaz References: <200606241158.k5OBw6RN072066@darkstar.thelakecity.com.pk> In-Reply-To: <200606241158.k5OBw6RN072066@darkstar.thelakecity.com.pk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: squid response X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 12:19:55 -0000 Imran Imtiaz wrote: > I wanna ask does squid queue the requests if there are to many already to > serve cause I've slow internet connection and sometimes where there is to > much load the I can't see the requests coming from my computer being served > by hit I've seen this from access.log of squid. Is there a way to improve > this thing we can have threading in this case or something else to server ? Squid will serve many requests in parallel, but it is using select() rather than explicit multithreading. If you've provided enough RAM and disk space to Squid, it ought to improve the performance you get over a slow link by a decent amount (20-50% is not uncommon), but you have to tune it appropriately to get the best results... It's also not uncommon for sites which use a lot of dynamic advertising to prevent downloading in parallel from working as it should, and you'll see the page hang download some ad image... -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 12:27: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 59DD316A49E for ; Sat, 24 Jun 2006 12:27:13 +0000 (UTC) (envelope-from iqgrande@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id B61D743D48 for ; Sat, 24 Jun 2006 12:27:11 +0000 (GMT) (envelope-from iqgrande@gmail.com) Received: by wr-out-0506.google.com with SMTP id i21so385947wra for ; Sat, 24 Jun 2006 05:27:11 -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=pJx+VBgJrHWid3KMCHAXWrDGpBz3uy6Dbpl2NICYxIX6PLegfTEGqBoMuC4COBSSPsKr0+H2N2DnACeK8nTS+2N2ppFPSjOGucD5WXZ1E6U4Us0JjRCJ4i6ZD1o9w7/GaKwBArHbChcsLzOVZkciMcJxP7iwXREXEF7kG3nf8NE= Received: by 10.54.104.18 with SMTP id b18mr5513068wrc; Sat, 24 Jun 2006 05:27:11 -0700 (PDT) Received: from ?192.168.0.5? ( [67.191.189.255]) by mx.gmail.com with ESMTP id 35sm998125wra.2006.06.24.05.27.09; Sat, 24 Jun 2006 05:27:10 -0700 (PDT) In-Reply-To: <20060624121534.GA16828@bollo.16hz.net> References: <20060624121534.GA16828@bollo.16hz.net> Mime-Version: 1.0 (Apple Message framework v750) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Anthony Agelastos Date: Sat, 24 Jun 2006 08:27:07 -0400 To: simon@16hz.net X-Mailer: Apple Mail (2.750) Cc: mplayer-users@mplayerhq.hu, freebsd-questions@freebsd.org Subject: Re: Stuttery Video Playback X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 12:27:13 -0000 I assume it is a DVD that is causing you grief. When you built MPlayer (I assumed that based on whom you sent this email), what make arguments did you pass? Since you built it, have you portupgraded? What I am trying to get at is I don't think your MPlayer installation is optimized. As an example, in my /ust/local/etc/pkgtools.conf file, I have the following MAKE_ARGS for mplayer: 'multimedia/mplayer' => [ 'WITH_OPTIMIZED_CFLAGS=yes', 'WITHOUT_RUNTIME_CPUDETECTION=yes', 'WITH_KERN_HZ=512', 'WITH_DVD_DEVICE=/dev/acd0', 'WITH_CDROM_DEVICE=/dev/acd1', 'WITH_CDPARANOIA=yes', 'WITH_LIBCACA=yes', 'WITH_MAD=yes', 'WITH_THEORA=yes', 'WITH_AALIB=yes', 'WITH_THEORA=yes', 'WITH_TREMOR=yes', 'WITH_SDL=yes', 'WITHOUT_ESOUND=yes', 'WITH_VORBIS=yes', 'WITH_REALPLAYER=yes', 'WITH_XANIM=yes', 'WITH_LIVEMEDIA=yes', 'WITH_MATROSKA=yes', 'WITH_XVID=yes', 'WITH_LZO=yes', 'WITH_XMMS=yes', 'WITH_DTS=yes', ], Those top three make args are what allows my PIII 450 MHz machine to play a DVD just fine. With those in their proper place in pkgtools.conf (near the bottom in the MAKE_ARGS section), you can portinstall or portupgrade mplayer and it will always be built with those flags. I hope this helps. On Jun 24, 2006, at 8:15 AM, Simon Morgan wrote: > Help me, Obi-Wan Kenobi. You're my only hope! > > Ok, so I'm having real trouble playing videos under either FreeBSD > or OpenBSD. > Playback on OpenBSD is really choppy/stuttery, FreeBSD is a lot > better but still > enough to be annoying. I only have access to a FreeBSD installation > right now so > I'll stick with that. > > It's worth mentioning that the machine in question is more than up > to the task > of playing video: > > CPU: AMD Athlon(TM) XP 2000+ (1658.54-MHz 686-class CPU) > real memory = 1073725440 (1023 MB) > avail memory = 1041784832 (993 MB) > > This is backed up by the fact that I don't get this problem under > Linux. > > The closest I can come to a test case is running: > > dd if=/dev/urandom of=blah > > while a video is playing. Under FreeBSD this causes the video to > freeze for a > second and the dropped frame counter to increase by a varying > number of frames. > Linux, however, just keeps ticking along nicely. > > I've tried swapping the video card between an ATI 9200 and NVIDIA > GeForce 4 and > swapping the sound card between a VIA VT8235 and a CMedia CMI8738 > but neither > helped. > > I'm pretty sure that nobody that reads this will be able to > reproduce this > problem but at least it means I have a way of easily testing things > if somebody > is kind enough to help me try and resolve this problem. > > Thanks for your time. > > -- > One man's theology is another man's belly laugh. > _______________________________________________ > 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 Jun 24 13:34: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 5601C16A492 for ; Sat, 24 Jun 2006 13:34:55 +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 CA7FA43D5C for ; Sat, 24 Jun 2006 13:34:53 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 29650 invoked from network); 24 Jun 2006 23:34:52 +1000 Received: from 210-84-59-117.dyn.iinet.net.au (HELO localhost) (210.84.59.117) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 24 Jun 2006 23:34:52 +1000 Date: Sat, 24 Jun 2006 23:34:47 +1000 From: Norberto Meijome To: freebsd-questions@freebsd.org Message-ID: <20060624233447.3ac5d7b0@localhost> X-Mailer: Sylpheed-Claws 2.3.1 (GTK+ 2.8.19; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Glib1 vs Glib2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 13:34:55 -0000 hi all, I am having some problems when installing ports that use GLIB 1.x , and I *also* have glib 2.x installed. I have, of course, packages that need 2.x. when building the pkgs that need glib 1.x (pretty much any package) i get: [....] checking for glib-config... /usr/local/bin/glib12-config checking for GLIB - version >= 1.2.0... *** 'glib-config --version' returned 1.2.10, but GLIB (2.10.3) *** was found! If glib-config was correct, then it is best *** to remove the old version of GLIB. You may also be able to fix the error *** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing *** /etc/ld.so.conf. Make sure you have run ldconfig if that is *** required on your system. *** If glib-config was wrong, set the environment variable GLIB_CONFIG *** to point to the correct copy of glib-config, and remove the file config.cache *** before re-running configure no configure: error: glib test failed [...] The way i read this is that the build process gets an answer from glib-config (glib 1.x), but then it detects version 2. via the pkg system and bails out. I haven't been able to figure out how to use the GLIB_CONFIG variable properly,as the glib-config file it's finding *IS* the correct one ( glib-config does not exist in 2.x). Is the only alternative to uninstall glib2. while i'm building pkgs that need glib1 ? thanks in advance, Beto From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 13:36:16 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 191EE16A4A9 for ; Sat, 24 Jun 2006 13:36:16 +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 91C8043D64 for ; Sat, 24 Jun 2006 13:36:03 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from [172.16.2.1] (charm.daemonsecurity.com [172.16.2.1]) by strange.daemonsecurity.com (Postfix) with ESMTP id ECE522E02F for ; Sat, 24 Jun 2006 15:36:01 +0200 (CEST) Message-ID: <449D3FB8.6030008@locolomo.org> Date: Sat, 24 Jun 2006 15:35:52 +0200 From: =?UTF-8?B?RXJpayBOw7hyZ2FhcmQ=?= Organization: Locolomo.ORG User-Agent: Thunderbird 1.5.0.2 (X11/20060423) MIME-Version: 1.0 To: FreeBSD Questions Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms030906050605030407070200" Cc: Subject: Support for Atheros 5414 chipset X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 13:36:16 -0000 This is a cryptographically signed message in MIME format. --------------ms030906050605030407070200 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi: I was looking at a 3Com WNIC (3CRDAG675B) and it turns out it's based on an Atheros 5414 chipset. According to the ath manpage, only cards based on 5212 chipset family is supported. Anyone knows if the driver also supports the newer chipset but manpage is outdated? or if another driver is available? I found a previous post on the hardware list archive from February but no one had responded. Thanks, 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 --------------ms030906050605030407070200 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 MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTA2MDYyNDEzMzU1 MlowIwYJKoZIhvcNAQkEMRYEFLkFNXrF9B5fVBOnBzwsozGtbo1mMFIGCSqGSIb3DQEJDzFF MEMwCgYIKoZIhvcNAwcwDgYIKoZIhvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIH MA0GCCqGSIb3DQMCAgEoMIG4BgkrBgEEAYI3EAQxgaowgacwgZkxCzAJBgNVBAYTAkVTMRgw FgYDVQQKEw9EYWVtb24gU2VjdXJpdHkxHjAcBgNVBAsTFUNlcnRpZmljYXRlIEF1dGhvcml0 eTEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MSQwIgYJKoZIhvcNAQkBFhVjYUBk YWVtb25zZWN1cml0eS5jb20xCjAIBgNVBAUTATACCQCNA1Uf/OBPDDCBugYLKoZIhvcNAQkQ AgsxgaqggacwgZkxCzAJBgNVBAYTAkVTMRgwFgYDVQQKEw9EYWVtb24gU2VjdXJpdHkxHjAc BgNVBAsTFUNlcnRpZmljYXRlIEF1dGhvcml0eTEeMBwGA1UEAxMVQ2VydGlmaWNhdGUgQXV0 aG9yaXR5MSQwIgYJKoZIhvcNAQkBFhVjYUBkYWVtb25zZWN1cml0eS5jb20xCjAIBgNVBAUT ATACCQCNA1Uf/OBPDDANBgkqhkiG9w0BAQEFAASCAQBWdFb4/8dNsneEITV7gbHgbBmHzdtM +c2nlS6+Htlg/UjvXvazLHFLHsff9MU+r+4DPZwPkPJqmQ1i/jX7Wu6pCXgfqi5Hbyk3qWkP XAUdFOA/fO/+yG+m+vcJDmIEFKuYH9z8ys8C5eZAPh/JG27Z73KkwSVntWPn7Gviad4E7X/s CNenmO1eTCsXjpZFVPbsjKhv0sCuStbOgPibeak636U7HuGO4C/XgXllQbh/l2F4NNHu4PNW L53f33JptT2w4Ybr02UARoTS9i2/Xv3ZhF7suXcXZPlD2QJvVf88AR+w7gvqWnyxKqljDL1m SZsPVBWmcBWu4H/3thLT+gyMAAAAAAAA --------------ms030906050605030407070200-- From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 14:34:21 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 F0D0616A4A7 for ; Sat, 24 Jun 2006 14:34:21 +0000 (UTC) (envelope-from sms.gateway@saude.gov.br) Received: from DTR2007.saude.gov.br (trtymx.saude.gov.br [200.214.130.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B6F843D49 for ; Sat, 24 Jun 2006 14:34:20 +0000 (GMT) (envelope-from sms.gateway@saude.gov.br) Received: from localhost (unknown [127.0.0.1]) by DTR2007.saude.gov.br (Symantec Mail Security) with ESMTP id 930D03B822D for ; Sat, 24 Jun 2006 11:11:31 -0300 (BRT) From: sms.gateway@saude.gov.br To: questions@freebsd.org Date: Sat, 24 Jun 2006 11:31:10 -0300 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Message-Id: <20060624141131.72D3E444015@DTR2007.saude.gov.br> X-Brightmail-Tracker: AAAAAA== Cc: Subject: =?utf-8?q?E-Mail_bloqueado_por_seguran=C3=A7a?= X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 14:34:22 -0000 SMSGateway A Política de Proteção contra Vírus e Spam´s do Ministério da Saúde bloqueou e substituiu este e-mail. Foram detectadas as seguintes violações: Connection From: 200.214.130.50 From: questions@freebsd.org To: osvaldo.veiga@saude.gov.br Date: Sat, 24 Jun 2006 11:31:10 -0300 Subject: massas! --- Scan information follows --- Virus Name: W32.Netsky.AD@mm File Attachment: carros!.zip Attachment Status: deleted --- File name Block information follows --- File Attachment: carros!.zip Matching file name: Message is considered to be a mass-mailer. The message was dropped. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 15:04: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 B42DB16A4A0 for ; Sat, 24 Jun 2006 15:04:02 +0000 (UTC) (envelope-from atom.powers@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 6C96F43D48 for ; Sat, 24 Jun 2006 15:04:01 +0000 (GMT) (envelope-from atom.powers@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so296312uge for ; Sat, 24 Jun 2006 08:04: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=ppT4D7tAt2GbeyV2TI+oMyMn4JjrAoysAiwf0wjtmFYqZavSbtYepdw192iNghZBnMqvEN0A20iciPjkXUNihxapndX8C759gc8BbT/SjuXISn5awdP8Y6Vc2P3OSrLs0hyye12h0nasmwTwqxHSFAWkX6RRBDGTgdyro5NSlVE= Received: by 10.78.97.7 with SMTP id u7mr1590394hub; Sat, 24 Jun 2006 08:04:00 -0700 (PDT) Received: by 10.78.37.1 with HTTP; Sat, 24 Jun 2006 08:04:00 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 08:04:00 -0700 From: "Atom Powers" To: "Andrew Pantyukhin" 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: <7.0.1.0.0.20060624000904.01e765d8@compudoc.za.org> Cc: Godfrey , freebsd-questions@freebsd.org Subject: Re: Freebsd 6.1 Samba 3 as a PDC not using ldap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 15:04:02 -0000 On 6/23/06, Andrew Pantyukhin wrote: > On 6/24/06, Godfrey wrote: > > Hello > > > > I am looking for help with running SAMBA 3 as a PDC on Freebsd 6.1 > > Samba 3 can not run as a PDC, only Samba 4 can do that, > but it hasn't been released yet. Incorrect. Samba 3 is perfectly suitable as a NT4 style PDC. Unless you meant that it can not run as an Active Directory domain controller, which would be correct; but even WinXP Pro is happy as a domain member of an NT4 style domain. The only things you don't get are enhanced user, machine policy configurations; but even that isn't too hard to fake with the WinXP Resource Kit. -- -- Perfection is just a word I use occasionally with mustard. --Atom Powers-- From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 15:11: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 5BB0A16A507 for ; Sat, 24 Jun 2006 15:11:27 +0000 (UTC) (envelope-from archwndas@yahoo.com) Received: from web55210.mail.re4.yahoo.com (web55210.mail.re4.yahoo.com [206.190.58.174]) by mx1.FreeBSD.org (Postfix) with SMTP id 2DD7843D5A for ; Sat, 24 Jun 2006 15:11:25 +0000 (GMT) (envelope-from archwndas@yahoo.com) Received: (qmail 23407 invoked by uid 60001); 24 Jun 2006 15:11:24 -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=Yqr+CBOiyKztdtsVP22oKyEMv+YMM3EFoBn/Q3tpYwoA5sUJegSAgPk9ks/N2JInduymucRm2nqFx8cOvcHn2GfZjgCWdWUMHKY8Q9Ikw8ak2Z1FtBNv1XNjwUC3/kj2Nc6Cw6W5hoQV9Up0b2eKpcQogzncJSih3jdOyoP45/4= ; Message-ID: <20060624151124.23405.qmail@web55210.mail.re4.yahoo.com> Received: from [87.203.250.209] by web55210.mail.re4.yahoo.com via HTTP; Sat, 24 Jun 2006 08:11:24 PDT Date: Sat, 24 Jun 2006 08:11:24 -0700 (PDT) From: Simeon Nifos To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: howto convert Linux shared libraries foo.so to FreeBSD shared libraries X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 15:11:27 -0000 Does anybody know how to convert a shared object compiled in Linux foo-linux.so to a shared object compiled for FreeBSD freebsd-foo.so? I mean a freebsd-foo.so to which I can link with objects compiled by a native FreeBSD compiler. Or equivalently how to create a FreeBSD foo.so from a linux foo.so which would be identical to that which would be compiled from source in FreeBSD? I do not need to run a Linux binary. What I need to do is to link my object (.o) files compiled natively in FreeBSD with a foo.so which is a linux library. Thanks in advance! Simeon. __________________________________________________ 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 Jun 24 15:32: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 3D4FC16A49A for ; Sat, 24 Jun 2006 15:32:06 +0000 (UTC) (envelope-from saifi@twincling.org) Received: from coolhost77.com (coolhost77.com [203.194.209.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7172543D5A for ; Sat, 24 Jun 2006 15:32:05 +0000 (GMT) (envelope-from saifi@twincling.org) Received: (qmail 28912 invoked by uid 514); 24 Jun 2006 15:32:02 -0000 Message-ID: <20060624153202.32718.qmail@coolhost77.com> From: "=?iso-8859-1?Q?Saifi?=" To: "freebsd-questions" Date: Sat, 24 Jun 2006 21:02:02 +0530 MIME-Version: 1.0 X-Mailer: WebMail 2.5 X-Originating-IP: 59.93.68.23 X-Originating-Email: saifi@twincling.org Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Subject: ISL 3890 PRISM GT driver support on FreeBSD 6.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?iso-8859-1?Q?Saifi?= List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 15:32:06 -0000 Hi: Is there support for ISL 3890 PRISM GT chipset in FreeBSD ? If no, where can I download the driver for the same ? Either sources or binary is fine. Thanks in advance. thanks Saifi. TWINCLING Society http://www.twincling.org/ From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 15:50: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 0CB9616A4C2 for ; Sat, 24 Jun 2006 15:50:19 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4B4243D46 for ; Sat, 24 Jun 2006 15:50:18 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wr-out-0506.google.com with SMTP id 50so810284wri for ; Sat, 24 Jun 2006 08:50:17 -0700 (PDT) Received: by 10.54.116.7 with SMTP id o7mr4283493wrc; Sat, 24 Jun 2006 08:49:02 -0700 (PDT) Received: from scorpio ( [216.45.217.148]) by mx.gmail.com with ESMTP id 29sm2446834wrl.2006.06.24.08.50.13; Sat, 24 Jun 2006 08:50:16 -0700 (PDT) Date: Sat, 24 Jun 2006 11:50:08 -0400 (EDT) From: "Gerard E. Seibert" To: FreeBSD-Questions Message-ID: <20060624114654.G1031@seibercom.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Error Message with Procmail X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Gerard E. Seibert" List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 15:50:19 -0000 I just installed 'procmail' onto my FSBD 6.1 stable system. The following error message keeps appearing on screen at what appears random intervals. This one appeared as I booted up the system. Jun 24 11:41:14 seibercom procmail[749]: default rcfile is not an absolute path for uid "1002" I am not sure what it means or how to correct it. Everything appears to be working correctly. -- Gerard Seibert gerard@seibercom.net From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 16:00: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 4FFFE16A50C for ; Sat, 24 Jun 2006 16:00:54 +0000 (UTC) (envelope-from nikolas.britton@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 6487643D5A for ; Sat, 24 Jun 2006 16:00:43 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so858128nzi for ; Sat, 24 Jun 2006 09:00: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=dwkNX2HDawRmA1JpAjGhf5Bxt8iyY+3BgbCKPtPACIZMrO41X0dmo8t5ZOVZcEaozMBvMFjIiaGYFii9KLuk1CphFhZojYd+g613CnWV3XCtR50pVbMVkJmbct0RFDrMS2I0PxpHIuqdTjLt3HjyhLxh4WDY+9tVBav97gVwAs0= Received: by 10.36.224.2 with SMTP id w2mr1306456nzg; Sat, 24 Jun 2006 09:00:42 -0700 (PDT) Received: by 10.36.12.11 with HTTP; Sat, 24 Jun 2006 09:00:42 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 09:00:42 -0700 From: "Nikolas Britton" To: "Dan Nelson" 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: <20060624023139.GA83209@dan.emsphone.com> Cc: FreeBSD Mailing List Subject: Re: help with 'tar|rsh tar' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 16:00:54 -0000 On 6/23/06, Nikolas Britton wrote: > On 6/23/06, Dan Nelson wrote: > > In the last episode (Jun 23), Nikolas Britton said: > > > I need to backup the /data directory on hostA to /data on hostB, > > > about 1TB of data on a gigabit link. Right now I'm using scp but the > > > handshake latency and ssh overhead is killing me. > > > > > > I've looked at many examples of tar|rsh tar and I can't figure it out, > > > most of the examples on the net look like this: > > > # tar cf - . | rsh hostname dd of=tape-device obs=20b > > > # tar -cf -...|rsh ...tar xf -... > > > > Two quick options even more lightweight than rsh are netcat (base > > system) and ttcp (in ports). Usage examples: > > > > host2$ ttcp -r | tar xvf - > > host1$ tar cf - . | ttcp -t host2 > > > > host2$ nc -l 1234 | tar xvf - > > host1$ tar cf - . | nc host2 1234 > > > > Thanks!, but I got rsh going. I first had to edit /etc/hosts.equiv, > after that I figured it out: > > tar cf - . | rsh 192.168.1.242 'cd /data; tar xpvf -' > > I was thinking tar -f as in file.tar but it's not, you have to cd into > the source directory you want to copy... anyways... I'm getting around > 30MB/s now... it should be in the 50-60MB/s range... Good enough for > now though. Thanks again... > hostA = P4 3GHz Prescott, Intel 82547EI GigE, FreeBSD 6.1/i386. hostB = Athlon64 3000, Marvell Yukon Lite GigE, FreeBSD 6.1/amd64. Anyone know why load is so high on hostA, is it because I used tar -v? top shows: hostA: ------ last pid: 21138; load averages: 1.62, 1.34, 1.27 up 25+04:06:44 10:35:54 65 processes: 2 running, 63 sleeping CPU states: 0.0% user, 1.5% nice, 26.2% system, 61.4% interrupt, 10.9% idle Mem: 189M Active, 573M Inact, 178M Wired, 51M Cache, 111M Buf, 1652K Free Swap: 6144M Total, 1012K Used, 6143M Free PID USERNAME THR PRI NICE SIZE RES STATE TIME WCPU COMMAND 18698 nbritton 1 130 20 1292K 832K RUN 171:46 28.12% rsh 18696 nbritton 1 -4 -20 1588K 1068K getblk 48:25 6.88% bsdtar hostB: ------ last pid: 9169; load averages: 0.66, 0.65, 0.60 up 0+15:57:38 15:44:02 32 processes: 1 running, 31 sleeping CPU states: 2.6% user, 0.0% nice, 12.4% system, 36.1% interrupt, 48.9% idle Mem: 26M Active, 126M Inact, 51M Wired, 13M Cache, 34M Buf, 644K Free Swap: 483M Total, 480K Used, 482M Free, 8K In PID USERNAME THR PRI NICE SIZE RES STATE TIME WCPU COMMAND 7445 nbritton 1 4 -15 8112K 3288K sbwait 133:50 9.57% bsdtar -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 16:17: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 61F7216A49E for ; Sat, 24 Jun 2006 16:17:56 +0000 (UTC) (envelope-from joao.barros@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 42F0B43D5F for ; Sat, 24 Jun 2006 16:17:53 +0000 (GMT) (envelope-from joao.barros@gmail.com) Received: by py-out-1112.google.com with SMTP id 39so986514pyu for ; Sat, 24 Jun 2006 09:17:43 -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=YgIdjJNTptmv3mqaE6ZYBPwjRqg9BtYm8s8gSf7Xjs//bUT1BzoxY6QK+OEzb5DS5/dF/zK1n5KKEuh48xrwxmmTaNT7G8/vM8mmBxYk+nGMwJnUGng0uP26tabNFCKDQwW+Pf2TeejbZvkSrcTBmc3TxLN9nhuV8cjPCUBOh0s= Received: by 10.35.20.14 with SMTP id x14mr3673731pyi; Sat, 24 Jun 2006 09:17:43 -0700 (PDT) Received: by 10.35.117.14 with HTTP; Sat, 24 Jun 2006 09:17:43 -0700 (PDT) Message-ID: <70e8236f0606240917m2d872902sce15c7cbacbdbc36@mail.gmail.com> Date: Sat, 24 Jun 2006 17:17:43 +0100 From: "Joao Barros" To: "Alex Franks" In-Reply-To: <2f488c030606231623x662d93afl8ff4875989d143c8@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: <2f488c030606221106q4183de17gbff80d696f704505@mail.gmail.com> <449BAE45.7030705@dial.pipex.com> <2f488c030606231113i2b9b4bdcsa1b4192be54b9011@mail.gmail.com> <70e8236f0606231240t77e1b510xd5ecd98c093af559@mail.gmail.com> <2f488c030606231623x662d93afl8ff4875989d143c8@mail.gmail.com> Cc: freebsd-questions@freebsd.org, Alex Zbyslaw Subject: Re: Hot-Swapping hard drives on Dell PowerEdge 2850 running FBSD 5.5-PRE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 16:17:56 -0000 On 6/24/06, Alex Franks wrote: > On 6/23/06, Joao Barros wrote: > > On 6/23/06, Alex Franks wrote: > > > The controller is a Perc 4e/Di as assumed, and I'm still a little > > > unsure as to whether the 2 drives that shipped with the machine are > > > currently set up in a RAID array. The current filesystem is mounted on > > > /dev/amrd0s1[a-f] and I would expect to find the new drives named > > > similarly after using some useful utility that I'm unaware of. Any > > > thoughts? > > > > > > Thanks again. > > > Alex > > > > Try amrstat from ports which will show you something like this: > > > > Logical volume 0 optimal (101.60 GB, RAID5) > > Physical drive 0:0 online > > Physical drive 0:1 online > > Physical drive 1:0 online > > Physical drive 1:2 online > > Physical drive 1:4 hotspare > > > > > > -- > > Joao Barros > > > > Sadly, amrstat-20060414 doesn't build on FBSD 6.0 or earlier (or so > says the error msg I get when trying to build it). I've got megarc > installed but have no idea how to use it and no man page was included > with the port. > > Anyone more familiar with this utility? > > Alex > For what you need to know this should be enough: #megarc -dispCfg -a0 ********************************************************************** MEGARC MegaRAID Configuration Utility(FreeBSD)-1.04(03-02-2005) By LSI Logic Corp.,USA ********************************************************************** [Note: For SATA-2, 4 and 6 channel controllers, please specify Ch=0 Id=0..15 for specifying physical drive(Ch=channel, Id=Target)] Type ? as command line arg for help Finding Devices On Each MegaRAID Adapter... Scanning Ha 0, Chnl 1 Target 15 ********************************************************************** Existing Logical Drive Information By LSI Logic Corp.,USA ********************************************************************** [Note: For SATA-2, 4 and 6 channel controllers, please specify Ch=0 Id=0..15 for specifying physical drive(Ch=channel, Id=Target)] Logical Drive : 0( Adapter: 0 ): Status: OPTIMAL --------------------------------------------------- SpanDepth :01 RaidLevel: 5 RdAhead : Adaptive Cache: DirectIo StripSz :064KB Stripes : 4 WrPolicy: WriteThru Logical Drive 0 : SpanLevel_0 Disks Chnl Target StartBlock Blocks Physical Target Status ---- ------ ---------- ------ ---------------------- 0 01 0x00000000 0x043bc000 ONLINE 0 00 0x00000000 0x043bc000 ONLINE 1 00 0x00000000 0x043bc000 ONLINE 1 02 0x00000000 0x043bc000 ONLINE HotSpare Disk at Channel No. 1 and ID No. 4 Contrary to what megarc says, it's -h not -? for help. Hope this helps. -- Joao Barros From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 16:21: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 CDBF816A49E for ; Sat, 24 Jun 2006 16:21:25 +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 1888B43D49 for ; Sat, 24 Jun 2006 16:21:25 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5OGLOUg044692; Sat, 24 Jun 2006 11:21:24 -0500 (CDT) (envelope-from dan) Date: Sat, 24 Jun 2006 11:21:24 -0500 From: Dan Nelson To: Simeon Nifos Message-ID: <20060624162124.GB83209@dan.emsphone.com> References: <20060624151124.23405.qmail@web55210.mail.re4.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20060624151124.23405.qmail@web55210.mail.re4.yahoo.com> X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: freebsd-questions@freebsd.org Subject: Re: howto convert Linux shared libraries foo.so to FreeBSD shared libraries X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 16:21:25 -0000 In the last episode (Jun 24), Simeon Nifos said: > Does anybody know how to convert a shared object compiled in Linux > foo-linux.so to a shared object compiled for FreeBSD freebsd-foo.so? > I mean a freebsd-foo.so to which I can link with objects compiled by > a native FreeBSD compiler. Or equivalently how to create a FreeBSD > foo.so from a linux foo.so which would be identical to that which > would be compiled from source in FreeBSD? I don't think either of these are possible because internal library structures (the size of off_t, or the field sizes and ordering of struct stat or FILE, for example) are different. Any converter would have to decompile the code into C (impossible in practice) and recompile it at a FreeBSD binary. > I do not need to run a Linux binary. What I need to do is to link my > object (.o) files compiled natively in FreeBSD with a foo.so which is > a linux library. Take a look at the www/linuxpluginwrapper port, which creates wrapper libraries that convert Linux function calls to FreeBSD ones. You then use libmap.conf to substitute these libraries for any ones called by the Linux shared library. Depending on what your library's API looks like, and what external functions it calls, you might be able to get it to work. The correct solution would be to ask your vendor for either a FreeBSD shared library, or the source :) -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 16:24: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 3684A16A4A0 for ; Sat, 24 Jun 2006 16:24:17 +0000 (UTC) (envelope-from nikolas.britton@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32C8143D73 for ; Sat, 24 Jun 2006 16:24:08 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id 13so1020440nzn for ; Sat, 24 Jun 2006 09:24: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:content-transfer-encoding:content-disposition; b=XW/vPrSY5yB6hlo3veCNg35HGMRR2L1fBsE1pe4Y23hRfuUWJWF5z2tkvHwvwy8+vwSENiV+0AUdGgIjoMwFeZN4G/YaImOHrnNr9hr1EOy2Q5yBoAy10u2H1Dhao3Wt9rRElKdmLZU45HhzH5RwiarCBlpcWgOrJjJiYHX+fjI= Received: by 10.37.14.27 with SMTP id r27mr5450860nzi; Sat, 24 Jun 2006 09:24:07 -0700 (PDT) Received: by 10.36.12.11 with HTTP; Sat, 24 Jun 2006 09:24:07 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 09:24:07 -0700 From: "Nikolas Britton" To: "FreeBSD Mailing List" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: bug in systat: ifstat? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 16:24:17 -0000 Look at the Totals column (gmail may wrap it): /0 /1 /2 /3 /4 /5 /6 /7 /8 /9 /10 Load Average |||| Interface Traffic Peak Total lo0 in 0.000 KB/s 0.000 KB/s 9.446 KB out 0.000 KB/s 0.000 KB/s 9.446 KB sk0 in 29.485 MB/s 34.525 MB/s 9681495918456.000 b out 753.799 KB/s 889.657 KB/s 29.710 GB -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 16:27: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 B167516A492 for ; Sat, 24 Jun 2006 16:27:32 +0000 (UTC) (envelope-from rob_27_preston@yahoo.co.uk) Received: from web25010.mail.ukl.yahoo.com (web25010.mail.ukl.yahoo.com [217.12.10.46]) by mx1.FreeBSD.org (Postfix) with SMTP id 5590643D69 for ; Sat, 24 Jun 2006 16:27:27 +0000 (GMT) (envelope-from rob_27_preston@yahoo.co.uk) Received: (qmail 87234 invoked by uid 60001); 24 Jun 2006 16:27:26 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.co.uk; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=SjE8AdS1nIpJ29IQQEvyzY0/qnpyB16lxF7vID7EM0rv3+5/71uhIXiLg+8Xdn7YgMwmOOYKwMeGVbgUyAphUUkgooQc3GGNCJxYhcPBkJozOq3EHtJVZE8E1/YPzlDERYTyQ49mMuXIq7eEz32MJ3I0XVRpzGMem24IG5xVCSI= ; Message-ID: <20060624162726.87232.qmail@web25010.mail.ukl.yahoo.com> Received: from [83.67.67.52] by web25010.mail.ukl.yahoo.com via HTTP; Sat, 24 Jun 2006 17:27:26 BST Date: Sat, 24 Jun 2006 17:27:26 +0100 (BST) From: Robert Davison 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: Stale Dependencies ?????? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 16:27:32 -0000 I've recently had a few problems with KDE 3.5.1, so recently upgraded to 3.5.3 via the ports. I have a port upgrade script which is producing the following output when executed. Stale dependency: gconf2-2.14.0_2 --> openldap-client-2.2.30 -- manually run 'pkgdb -F' to fix, or specify -O to force. now upgrading the required ports Stale dependency: gconf2-2.14.0_2 --> openldap-client-2.2.30 -- manually run 'pkgdb -F' to fix, or specify -O to force. Could someone please explain what is happening here. If I run pkgdb -F I get the following output (pressing enter to accept the default) luey# pkgdb -F ---> Checking the package registry database Stale origin: 'devel/gnu-libtool': perhaps moved or obsoleted. -> The port 'devel/gnu-libtool' was removed on 2006-06-05 because: "Has expired: devel/libtool15 is now stock and should be used instead" -> Hint: gnu-libtool-1.5.20 is required by the following package(s): kdevelop-3.3.1_1 -> Hint: checking for overwritten files... -> No files installed by gnu-libtool-1.5.20 have been overwritten by other packages. Deinstall gnu-libtool-1.5.20 ? [no] Stale dependency: gconf2-2.14.0_2 -> openldap-client-2.2.30 (net/openldap22-client): openldap-client-2.3.24 (score:76%) ? ([y]es/[n]o/[a]ll) [no] New dependency? (? to help): Skip this? ([y]es/[n]o/[a]ll) [yes] Skipped. Stale dependency: kde-3.5.3 -> libexif-0.6.13 (graphics/libexif): libxslt-1.1.17 (score:17%) ? ([y]es/[n]o/[a]ll) [no] New dependency? (? to help): Skip this? ([y]es/[n]o/[a]ll) [yes] Skipped. Stale dependency: kde-3.5.3 -> poppler-0.5.3 (graphics/poppler): popt-1.7_1 (score:18%) ? ([y]es/[n]o/[a]ll) [no] New dependency? (? to help): Skip this? ([y]es/[n]o/[a]ll) [yes] Skipped. Stale dependency: kde-3.5.3 -> poppler-qt-0.5.3 (graphics/poppler-qt): popt-1.7_1 (score:18%) ? ([y]es/[n]o/[a]ll) [no] New dependency? (? to help): Skip this? ([y]es/[n]o/[a]ll) [yes] Skipped. Stale dependency: kdeartwork-3.5.1_1 -> openldap-client-2.2.30 (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] Stale dependency: kdesdk-3.5.1_1 -> openldap-client-2.2.30 (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] Stale dependency: kdeutils-3.5.1_1 -> openldap-client-2.2.30 (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] Stale dependency: kdevelop-3.3.1_1 -> openldap-client-2.2.30 (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] Stale dependency: libgsf-1.14.1 -> openldap-client-2.2.30 (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] Stale dependency: samba-libsmbclient-3.0.22 -> openldap-client-2.2.30 (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] Stale dependency: wv2-0.2.2_3 -> openldap-client-2.2.30 (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] --------------------------------- All new Yahoo! Mail "The new Interface is stunning in its simplicity and ease of use." - PC Magazine From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 16:27: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 0DDDA16A4AB for ; Sat, 24 Jun 2006 16:27:49 +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 8375543D5C for ; Sat, 24 Jun 2006 16:27:48 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.13.1/8.13.4) id k5OGRmYJ056787; Sat, 24 Jun 2006 11:27:48 -0500 (CDT) (envelope-from dan) Date: Sat, 24 Jun 2006 11:27:47 -0500 From: Dan Nelson To: Nikolas Britton Message-ID: <20060624162747.GC83209@dan.emsphone.com> References: <20060624023139.GA83209@dan.emsphone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-OS: FreeBSD 5.5-PRERELEASE X-message-flag: Outlook Error User-Agent: Mutt/1.5.11 Cc: FreeBSD Mailing List Subject: Re: help with 'tar|rsh tar' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 16:27:49 -0000 In the last episode (Jun 24), Nikolas Britton said: > On 6/23/06, Nikolas Britton wrote: > > Thanks!, but I got rsh going. I first had to edit /etc/hosts.equiv, > > after that I figured it out: > > > > tar cf - . | rsh 192.168.1.242 'cd /data; tar xpvf -' > > > > I was thinking tar -f as in file.tar but it's not, you have to cd > > into the source directory you want to copy... anyways... I'm > > getting around 30MB/s now... it should be in the 50-60MB/s range... > > Good enough for now though. Thanks again... > > > > hostA = P4 3GHz Prescott, Intel 82547EI GigE, FreeBSD 6.1/i386. > hostB = Athlon64 3000, Marvell Yukon Lite GigE, FreeBSD 6.1/amd64. > > Anyone know why load is so high on hostA, is it because I used tar -v? > top shows: > > CPU states: 0.0% user, 1.5% nice, 26.2% system, 61.4% interrupt, 10.9% idle That 61% interrupt looks bad, but I don't have any ideas. > PID USERNAME THR PRI NICE SIZE RES STATE TIME WCPU COMMAND > 18698 nbritton 1 130 20 1292K 832K RUN 171:46 28.12% rsh > 18696 nbritton 1 -4 -20 1588K 1068K getblk 48:25 6.88% bsdtar Try raising the blocksize in tar. The default is 10K. This bumps it to 64K: tar cbf 128 - . | ... -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 16:41: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 6E00B16A494 for ; Sat, 24 Jun 2006 16:41:57 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26F7A43D64 for ; Sat, 24 Jun 2006 16:41:56 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wr-out-0506.google.com with SMTP id i21so402545wra for ; Sat, 24 Jun 2006 09:41:55 -0700 (PDT) Received: by 10.54.61.16 with SMTP id j16mr5674403wra; Sat, 24 Jun 2006 09:41:55 -0700 (PDT) Received: from scorpio ( [216.45.217.148]) by mx.gmail.com with ESMTP id g2sm2301544wra.2006.06.24.09.41.55; Sat, 24 Jun 2006 09:41:55 -0700 (PDT) From: Gerard Seibert Organization: Seibercom.net To: freebsd-questions@freebsd.org Date: Sat, 24 Jun 2006 12:41:39 -0400 User-Agent: KMail/1.9.3 References: <20060624162726.87232.qmail@web25010.mail.ukl.yahoo.com> In-Reply-To: <20060624162726.87232.qmail@web25010.mail.ukl.yahoo.com> 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="nextPart3469136.sH84ePMFX3"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200606241241.52143.gerard@seibercom.net> Subject: Re: Stale Dependencies ?????? 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, 24 Jun 2006 16:41:57 -0000 --nextPart3469136.sH84ePMFX3 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 24 June 2006 12:27, Robert Davison wrote: > I've recently had a few problems with KDE 3.5.1, so recently upgraded to > 3.5.3 via the ports. I have a port upgrade script which is producing the > following output when executed. > > Stale dependency: gconf2-2.14.0_2 --> openldap-client-2.2.30 -- manually > run 'pkgdb -F' to fix, or specify -O to force. now upgrading the required > ports > Stale dependency: gconf2-2.14.0_2 --> openldap-client-2.2.30 -- manually > run 'pkgdb -F' to fix, or specify -O to force. > > Could someone please explain what is happening here. If I run pkgdb -F I > get the following output (pressing enter to accept the default) > > luey# pkgdb -F > ---> Checking the package registry database > Stale origin: 'devel/gnu-libtool': perhaps moved or obsoleted. > -> The port 'devel/gnu-libtool' was removed on 2006-06-05 because: > "Has expired: devel/libtool15 is now stock and should be used > instead" -> Hint: gnu-libtool-1.5.20 is required by the following > package(s): kdevelop-3.3.1_1 > -> Hint: checking for overwritten files... > -> No files installed by gnu-libtool-1.5.20 have been overwritten by oth= er > packages. Deinstall gnu-libtool-1.5.20 ? [no] You should be able to answer "YES" to this question. > Stale dependency: gconf2-2.14.0_2 -> openldap-client-2.2.30 > (net/openldap22-client): openldap-client-2.3.24 (score:76%) ? > ([y]es/[n]o/[a]ll) [no] > New dependency? (? to help): > Skip this? ([y]es/[n]o/[a]ll) [yes] > Skipped. > Stale dependency: kde-3.5.3 -> libexif-0.6.13 (graphics/libexif): > libxslt-1.1.17 (score:17%) ? ([y]es/[n]o/[a]ll) [no] > New dependency? (? to help): > Skip this? ([y]es/[n]o/[a]ll) [yes] > Skipped. > Stale dependency: kde-3.5.3 -> poppler-0.5.3 (graphics/poppler): > popt-1.7_1 (score:18%) ? ([y]es/[n]o/[a]ll) [no] > New dependency? (? to help): > Skip this? ([y]es/[n]o/[a]ll) [yes] > Skipped. > Stale dependency: kde-3.5.3 -> poppler-qt-0.5.3 (graphics/poppler-qt): > popt-1.7_1 (score:18%) ? ([y]es/[n]o/[a]ll) [no] > New dependency? (? to help): > Skip this? ([y]es/[n]o/[a]ll) [yes] > Skipped. > Stale dependency: kdeartwork-3.5.1_1 -> openldap-client-2.2.30 > (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] > > Stale dependency: kdesdk-3.5.1_1 -> openldap-client-2.2.30 > (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] Stale > dependency: kdeutils-3.5.1_1 -> openldap-client-2.2.30 > (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] > Stale dependency: kdevelop-3.3.1_1 -> openldap-client-2.2.30 > (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] > Stale dependency: libgsf-1.14.1 -> openldap-client-2.2.30 > (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] > > Stale dependency: samba-libsmbclient-3.0.22 -> openldap-client-2.2.30 > (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] > Stale dependency: wv2-0.2.2_3 -> openldap-client-2.2.30 > (net/openldap22-client): Skip this? ([y]es/[n]o/[a]ll) [yes] Try running: pkgdb --autofix That should take care of the easily fixed dependency problems. =2D-=20 Gerard Seibert gerard@seibercom.net Encyclopedia for sale by father. Son knows everything. --nextPart3469136.sH84ePMFX3 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQBEnWtPcpQHD6lZJm0RAlvzAJ9o5p+UiZ2ptuS8dae6wBG7xlkhKACeO+Cn jlytuyFAAA3aa9oAd7VSJbA= =rSph -----END PGP SIGNATURE----- --nextPart3469136.sH84ePMFX3-- From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 17:11: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 1447516A494 for ; Sat, 24 Jun 2006 17:11:04 +0000 (UTC) (envelope-from vayu@sklinks.com) Received: from smtp108.sbc.mail.mud.yahoo.com (smtp108.sbc.mail.mud.yahoo.com [68.142.198.207]) by mx1.FreeBSD.org (Postfix) with SMTP id 744B243D46 for ; Sat, 24 Jun 2006 17:11:03 +0000 (GMT) (envelope-from vayu@sklinks.com) Received: (qmail 69966 invoked from network); 24 Jun 2006 17:11:02 -0000 Received: from unknown (HELO ?10.0.0.69?) (varuna@sbcglobal.net@69.106.249.173 with plain) by smtp108.sbc.mail.mud.yahoo.com with SMTP; 24 Jun 2006 17:11:02 -0000 In-Reply-To: <200606241241.52143.gerard@seibercom.net> References: <20060624162726.87232.qmail@web25010.mail.ukl.yahoo.com> <200606241241.52143.gerard@seibercom.net> Mime-Version: 1.0 (Apple Message framework v749) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <673647A0-8589-421A-85A7-88D07625F825@sklinks.com> Content-Transfer-Encoding: 7bit From: vayu Date: Sat, 24 Jun 2006 10:11:01 -0700 To: gerard@seibercom.net X-Mailer: Apple Mail (2.749) Cc: freebsd-questions@freebsd.org Subject: Re: Stale Dependencies ?????? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 17:11:04 -0000 On Jun 24, 2006, at 9:41 AM, Gerard Seibert wrote: > On Saturday 24 June 2006 12:27, Robert Davison wrote: >> I've recently had a few problems with KDE 3.5.1, so recently >> upgraded to >> 3.5.3 via the ports. I have a port upgrade script which is >> producing the >> following output when executed. >> >> Stale dependency: gconf2-2.14.0_2 --> openldap-client-2.2.30 -- >> manually >> run 'pkgdb -F' to fix, or specify -O to force. now upgrading the >> required >> ports >> Stale dependency: gconf2-2.14.0_2 --> openldap-client-2.2.30 -- >> manually >> run 'pkgdb -F' to fix, or specify -O to force. >> >> Could someone please explain what is happening here. If I run >> pkgdb -F I >> get the following output (pressing enter to accept the default) >> I've had the hardest time understanding what pkgdb asks. This is the only article I've found which makes some sense to me: http://www.onlamp.com/pub/a/bsd/2001/11/29/Big_Scary_Daemons.html?page=1 From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 17:15: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 9499C16A4A0 for ; Sat, 24 Jun 2006 17:15:42 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.233]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB2B43D6E for ; Sat, 24 Jun 2006 17:15:42 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wr-out-0506.google.com with SMTP id 50so818105wri for ; Sat, 24 Jun 2006 10:15:41 -0700 (PDT) Received: by 10.54.110.12 with SMTP id i12mr4491085wrc; Sat, 24 Jun 2006 10:15:41 -0700 (PDT) Received: from scorpio ( [216.45.217.148]) by mx.gmail.com with ESMTP id g9sm5094620wra.2006.06.24.10.15.40; Sat, 24 Jun 2006 10:15:40 -0700 (PDT) From: Gerard Seibert Organization: Seibercom.net To: freebsd-questions@freebsd.org Date: Sat, 24 Jun 2006 13:15:36 -0400 User-Agent: KMail/1.9.3 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: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606241315.38195.gerard@seibercom.net> Subject: Initial FSBD Installation 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, 24 Jun 2006 17:15:42 -0000 This is probably a dumb question, but I never let that stop me before. If I were to to download the 6.1-RELEASE-i386-bootonly.iso from ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/ would that installation include the Sendmail fix as well as the one regarding "emulators/linux_base-*", etc. or would IO have to deal with that issue after installing FSBD. 20060616: AFFECTS users of emulation/linux_base-* AUTHOR: netchild@FreeBSD.org We now use Fedora Core 4 as the linux base port, and the corresponding xorg libs for the linux X11 libs port. To upgrade you have to run portupgrade -f -o emulators/linux_base-fc4 linux_base\* portupgrade -f -o x11/linux-xorg-libs linux-XFree86-libs Would running the stock /usr/src/share/examples/cvsup/stable-supfile be the best way to update the system after installing the OS or should I use the standard-supfile instead. I am going to be installing this on a friends computer who has never run FSBD before, and I want to be certain that I get it right. -- Gerard Seibert gerard@seibercom.net The difficult we do today; the impossible takes a little longer. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 17:43: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 4FBD916A494 for ; Sat, 24 Jun 2006 17:43:24 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96B5043D68 for ; Sat, 24 Jun 2006 17:43:20 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by wx-out-0102.google.com with SMTP id h30so665368wxd for ; Sat, 24 Jun 2006 10:43: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=FmnEy3RT4WOlTK9UYnbmXhS+7GtJ+f7iqZem695vr//0h/WYdJL626D0GyyIsmEfndjKEITsTxBACfKNJjreo67MXiOrZMZkQGB0iqqwPaZdHYbf4wMkT1jFJ5u9cgaGxlRM/oW1IUharTGcl9vZJfdkiPNaBueY/+c/GHt+gbk= Received: by 10.70.124.5 with SMTP id w5mr6391133wxc; Sat, 24 Jun 2006 10:43:19 -0700 (PDT) Received: by 10.70.83.15 with HTTP; Sat, 24 Jun 2006 10:43:17 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 21:43:17 +0400 From: "Andrew Pantyukhin" 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: <7.0.1.0.0.20060624000904.01e765d8@compudoc.za.org> Cc: Godfrey , freebsd-questions@freebsd.org Subject: Re: Freebsd 6.1 Samba 3 as a PDC not using ldap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 17:43:24 -0000 On 6/24/06, Atom Powers wrote: > On 6/23/06, Andrew Pantyukhin wrote: > > On 6/24/06, Godfrey wrote: > > > Hello > > > > > > I am looking for help with running SAMBA 3 as a PDC on Freebsd 6.1 > > > > Samba 3 can not run as a PDC, only Samba 4 can do that, > > but it hasn't been released yet. > > Incorrect. > Samba 3 is perfectly suitable as a NT4 style PDC. > Unless you meant that it can not run as an Active Directory domain > controller, which would be correct; but even WinXP Pro is happy as a > domain member of an NT4 style domain. The only things you don't get > are enhanced user, machine policy configurations; but even that isn't > too hard to fake with the WinXP Resource Kit. Sorry. You're right of course. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 17:45: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 81B2716A49E for ; Sat, 24 Jun 2006 17:45:04 +0000 (UTC) (envelope-from eric@mikestammer.com) 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 ABFBB43D77 for ; Sat, 24 Jun 2006 17:44:57 +0000 (GMT) (envelope-from eric@mikestammer.com) Received: (qmail 31383 invoked from network); 24 Jun 2006 17:44:57 -0000 Received: from unknown (HELO gondolin.mikestammer.com) (mikestammer@sbcglobal.net@68.251.71.132 with login) by smtp109.sbc.mail.mud.yahoo.com with SMTP; 24 Jun 2006 17:44:56 -0000 Received: from localhost (localhost [127.0.0.1]) by gondolin.mikestammer.com (Postfix) with ESMTP id 03B7B25A for ; Sat, 24 Jun 2006 12:44: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 YXKIMeC84iJF for ; Sat, 24 Jun 2006 12:44:53 -0500 (CDT) Received: from [192.168.0.20] (unknown [192.168.0.20]) by gondolin.mikestammer.com (Postfix) with ESMTP id 5A8EFAA for ; Sat, 24 Jun 2006 12:44:53 -0500 (CDT) Message-ID: <449D79E3.2000900@mikestammer.com> Date: Sat, 24 Jun 2006 12:44:03 -0500 From: Eric User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <200606241315.38195.gerard@seibercom.net> In-Reply-To: <200606241315.38195.gerard@seibercom.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Initial FSBD 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: Sat, 24 Jun 2006 17:45:04 -0000 Gerard Seibert wrote: > This is probably a dumb question, but I never let that stop me before. > > If I were to to download the 6.1-RELEASE-i386-bootonly.iso from > ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/ would that > installation include the Sendmail fix as well as the one > regarding "emulators/linux_base-*", etc. or would IO have to deal with that > issue after installing FSBD. > > 20060616: > AFFECTS users of emulation/linux_base-* > AUTHOR: netchild@FreeBSD.org > > We now use Fedora Core 4 as the linux base port, and the corresponding > xorg libs for the linux X11 libs port. > > To upgrade you have to run > portupgrade -f -o emulators/linux_base-fc4 linux_base\* > portupgrade -f -o x11/linux-xorg-libs linux-XFree86-libs > > > Would running the stock /usr/src/share/examples/cvsup/stable-supfile be the > best way to update the system after installing the OS or should I use the > standard-supfile instead. > > I am going to be installing this on a friends computer who has never run FSBD > before, and I want to be certain that I get it right. > > for the base security updates, assuming you use the GENERIC kernel, you can use freebsd-update. it works very well. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 17: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 6799916A586 for ; Sat, 24 Jun 2006 17:48:33 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1EBD43D45 for ; Sat, 24 Jun 2006 17:48:28 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by wx-out-0102.google.com with SMTP id h30so665763wxd for ; Sat, 24 Jun 2006 10:48: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=aRMsP19kikzn+pDPHH/O26EN+A1n8BvsaJkFGRQlrKpatqfyU2L+BUBAtgq9TMgh3PVc3jweu45WW6ZEiaxB8C4A2xp10+tU3g/unZKEcSG1r9fpRdCrpSG3v2GskDIsv14PiIp652h0Rehzvs8nnsUE64Hp7biwi8xTuraNblM= Received: by 10.70.109.5 with SMTP id h5mr6392772wxc; Sat, 24 Jun 2006 10:48:28 -0700 (PDT) Received: by 10.70.83.15 with HTTP; Sat, 24 Jun 2006 10:48:28 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 21:48:28 +0400 From: "Andrew Pantyukhin" To: dwinner-lists@att.net In-Reply-To: <449C152E.8050908@att.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <449C152E.8050908@att.net> Cc: freebsd-questions@freebsd.org Subject: Re: Display: Intel Graphics Media Accelerator 950 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 17:48:33 -0000 On 6/23/06, dw wrote: > Hello, > > We are about to buy new Thinkpads (T60's), and will be running FreeBSD > 5.5 or 6.2 (probably 6.2) on them. > > The ones I've spec'd out have the the Intel Graphics Media Accelerator > 950 as its video adapter -- does anybody have any input on these? Will > they work? I'd hate to have 7 new thinkpads show up and find out that we > can't run X because of this. > > There are similar T60's available that ship w/ ATI Mobility Radeon X1300 > cards, but they all seem to be heavier and shorter on battery life, and > the other folks here put battery life and weight as the #1 items on > their wish lists before I started to spec them out, so that leans me > towards the ones with the Intel graphics card. This is what Google says: http://www.thinkwiki.org/wiki/Intel_Graphics_Media_Accelerator_950 Looks like xorg does it all for you. OTOH I remember my friend moaning about problems with newer intel graphics and Solaris 10. I hope that's not relevant. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 18:12: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 1B1F116A494 for ; Sat, 24 Jun 2006 18:12:21 +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 18DBE43D46 for ; Sat, 24 Jun 2006 18:12:19 +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 1FuCcC-000FGb-VO; Sat, 24 Jun 2006 22:12:17 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1FuCdF-000EDF-C5; Sat, 24 Jun 2006 22:13:21 +0400 To: gerard@seibercom.net References: <200606241315.38195.gerard@seibercom.net> From: Boris Samorodov Date: Sat, 24 Jun 2006 22:13:21 +0400 In-Reply-To: <200606241315.38195.gerard@seibercom.net> (Gerard Seibert's message of "Sat, 24 Jun 2006 13:15:36 -0400") Message-ID: <68980430@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: Initial FSBD 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: Sat, 24 Jun 2006 18:12:21 -0000 On Sat, 24 Jun 2006 13:15:36 -0400 Gerard Seibert wrote: > This is probably a dumb question, but I never let that stop me before. > If I were to to download the 6.1-RELEASE-i386-bootonly.iso from > ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/6.1/ would that > installation include the Sendmail fix as well as the one > regarding "emulators/linux_base-*", etc. or would IO have to deal with that > issue after installing FSBD. I never used bootonly CD but I'd say from it's name that it may be useful only to boot the system and, say, repare something if a system can't boot itself. All RELEASE CDs are made when a RELEASE occures. They never got re-rolled. You may consider installing the system from full RELEASE CD > 20060616: > AFFECTS users of emulation/linux_base-* > AUTHOR: netchild@FreeBSD.org > We now use Fedora Core 4 as the linux base port, and the corresponding > xorg libs for the linux X11 libs port. > To upgrade you have to run > portupgrade -f -o emulators/linux_base-fc4 linux_base\* > portupgrade -f -o x11/linux-xorg-libs linux-XFree86-libs This change is not related to FreeBSD base system. It's a ports one. You should upgrade (cvsup or like) ports to get the current ports tree (use ports-supfile). > Would running the stock /usr/src/share/examples/cvsup/stable-supfile be the > best way to update the system after installing the OS or should I use the > standard-supfile instead. This file is useful to track FreeBSD-STABLE version. But you should understand how to define the tag option. I'd recommend you using RELENG_6_1. It's a RELEASE + SECURITY patches branch. When you have some more skills to determine if you need a STABLE branch, you'll use RELENG_6 tag. > I am going to be installing this on a friends computer who has never run FSBD > before, and I want to be certain that I get it right. If it's a new installation and you want to use -release base system and security patches (so called -security branch). The process I may recommend for this: - fetch RELEASE-6 CD; - install the system (minimal); - boot from the hard disk; - use sysinstall to get the sources and ports; - install cvsup from packages; - use cvsup-stable with RELENG_6_1 tag to update the sources; - build and install world and kernel + use mergemaster; - reboot; - use cvsup-ports to update the ports tree; - compile and install needed ports. Some notes: o consider reading the Handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html It's not a short one but helps a lot. o there are _many_ other ways to do almost everything (i.e. install ports from pre-build packages but not compile it yourself and much more); o read /usr/src/UPDATING and /usr/ports/UPDATING; o do not install default linux_base port by hand but install the needed port (i.e. acrobat reader), in most cases the port itself should choose other ports it depends on; o try not to do everything blindly as for the docs but try to understand what are you doing, try to imagine the result before acting and after the work is done, compare what you get to that you expected and then consider redoing what you've done if don't achieve the goal; o you will need much spare time and much to learn, we will give you advices, reference to TFM and our knowledge... Hope, that may help you. WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 18:33: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 3624016A492 for ; Sat, 24 Jun 2006 18:33:20 +0000 (UTC) (envelope-from nikolas.britton@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 89ECB43D5D for ; Sat, 24 Jun 2006 18:33:19 +0000 (GMT) (envelope-from nikolas.britton@gmail.com) Received: by nz-out-0102.google.com with SMTP id o1so1049547nzf for ; Sat, 24 Jun 2006 11:33: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:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Rr99yYo2bjeAWSYawU+wITuVVfH25bYhXtrTgkJEplfnDwEACt41nXpnhD21+clLYfvw4sMHMaIMdRQKgzxyNT0YaHF+CSevOkY1ptA5yIiBYWI22jnYlxXmPuogfO0LA+X1TjBoDspGA+/YvxHZZxOhyYAS0UyaOSKyCpE0D8I= Received: by 10.36.141.20 with SMTP id o20mr5574269nzd; Sat, 24 Jun 2006 11:33:18 -0700 (PDT) Received: by 10.36.12.11 with HTTP; Sat, 24 Jun 2006 11:33:18 -0700 (PDT) Message-ID: Date: Sat, 24 Jun 2006 11:33:18 -0700 From: "Nikolas Britton" To: "Dan Nelson" In-Reply-To: <20060624162747.GC83209@dan.emsphone.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060624023139.GA83209@dan.emsphone.com> <20060624162747.GC83209@dan.emsphone.com> Cc: FreeBSD Mailing List Subject: Re: help with 'tar|rsh tar' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 18:33:20 -0000 On 6/24/06, Dan Nelson wrote: > In the last episode (Jun 24), Nikolas Britton said: > > On 6/23/06, Nikolas Britton wrote: > > > Thanks!, but I got rsh going. I first had to edit /etc/hosts.equiv, > > > after that I figured it out: > > > > > > tar cf - . | rsh 192.168.1.242 'cd /data; tar xpvf -' > > > > > > I was thinking tar -f as in file.tar but it's not, you have to cd > > > into the source directory you want to copy... anyways... I'm > > > getting around 30MB/s now... it should be in the 50-60MB/s range... > > > Good enough for now though. Thanks again... > > > > > > > hostA = P4 3GHz Prescott, Intel 82547EI GigE, FreeBSD 6.1/i386. > > hostB = Athlon64 3000, Marvell Yukon Lite GigE, FreeBSD 6.1/amd64. > > > > Anyone know why load is so high on hostA, is it because I used tar -v? > > top shows: > > > > CPU states: 0.0% user, 1.5% nice, 26.2% system, 61.4% interrupt, 10.9% idle > > That 61% interrupt looks bad, but I don't have any ideas. > > > PID USERNAME THR PRI NICE SIZE RES STATE TIME WCPU COMMAND > > 18698 nbritton 1 130 20 1292K 832K RUN 171:46 28.12% rsh > > 18696 nbritton 1 -4 -20 1588K 1068K getblk 48:25 6.88% bsdtar > > Try raising the blocksize in tar. The default is 10K. This bumps it > to 64K: > > tar cbf 128 - . | ... > Using: tar cbf 256 - . | rsh ... tar xpbf 64 - Looks like that fixed the problems on hostA because hostB is now the problem. The GigE and RAID controller on hostB both sit on the same 33MHz/32-bit PCI bus (Asus A8R-MVP)... and that doesn't help... but those numbers should be closer to 50MB/s (((33x32)/10)/2 = 52.8MB/s). hostA: Load 0.62 0.58 0.58 42.4%Sys 18.3%Intr 4.9%User 0.0%Nice 34.3%Idl Disks ad0 da0 KB/t 0.00 124 tps 0 257 MB/s 0.00 31.20 % busy 0 30 hostB: Load 0.59 0.80 0.80 17.4%Sys 54.4%Intr 0.8%User 0.0%Nice 27.4%Idl Disks ad0 da0 KB/t 0.00 122 tps 0 255 MB/s 0.00 30.43 % busy 0 92 <<<--- Thanks again! -- BSD Podcasts @: http://bsdtalk.blogspot.com/ http://freebsdforall.blogspot.com/ From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 18:42: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 4201716A4A9 for ; Sat, 24 Jun 2006 18:42:45 +0000 (UTC) (envelope-from horn@horn.net.ru) Received: from horn.net.ru (horn.net.ru [82.146.41.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89A9343D48 for ; Sat, 24 Jun 2006 18:42:44 +0000 (GMT) (envelope-from horn@horn.net.ru) Received: from horn.net.ru (horn.net.ru [82.146.41.48]) by horn.net.ru (8.13.7/8.13.1) with ESMTP id k5OIggFE088893 for ; Sat, 24 Jun 2006 22:42:42 +0400 (MSD) (envelope-from horn@horn.net.ru) From: "horn" To: freebsd-questions@FreeBSD.org Date: Sat, 24 Jun 2006 22:42:42 +0400 Message-Id: <20060624184112.M74768@horn.net.ru> In-Reply-To: <20060617193751.M60592@horn.net.ru> References: <20060617193751.M60592@horn.net.ru> X-Mailer: OpenWebMail 2.52 20060502 X-OriginatingIP: 82.146.42.86 (horn) MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (horn.net.ru [82.146.41.48]); Sat, 24 Jun 2006 22:42:42 +0400 (MSD) Cc: Subject: BTX halted X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 18:42:45 -0000 I install FreeBSD 5.3 from floppy-diskets. After a choice of loading(default, safe_mode,etc) there is a error: int=0000000e err=00000000 efl=00010083 eip=000095ca eax=c101ffb8 ebx=c101ffb0 ecx=ffff8c10 edx=ffffff02 esi=ffffffef edi=00001952 ebp=c1021d60 esp=c101ffa0 cs=0008 ds=0010 es=0010 fs=0010 gs=0010 ss=0010 cs:eip=ac e8 46 00 00 00 fe c9-74 0c b0 2d 80 f9 08 74 02 b0 20 aa eb ea fe ca-74 0e b0 0a aa b1 07 b0 ss:esp=10 00 00 00 68 97 00 00-db 91 00 00 00 18 00 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff BTX halted On it all stops. What to do? From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 19:21: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 6F23616A5D4 for ; Sat, 24 Jun 2006 19:21:25 +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 8C7F243D68 for ; Sat, 24 Jun 2006 19:21:23 +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 1FuDh3-000FOK-SF; Sat, 24 Jun 2006 23:21:21 +0400 Received: from bsam by srv.sem.ipt.ru with local (Exim 4.62 (FreeBSD)) (envelope-from ) id 1FuDi6-000EG8-43; Sat, 24 Jun 2006 23:22:26 +0400 To: "horn" References: <20060617193751.M60592@horn.net.ru> <20060624184112.M74768@horn.net.ru> From: Boris Samorodov Date: Sat, 24 Jun 2006 23:22:26 +0400 In-Reply-To: <20060624184112.M74768@horn.net.ru> (horn@horn.net.ru's message of "Sat, 24 Jun 2006 22:42:42 +0400") Message-ID: <49306285@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: BTX halted X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 19:21:25 -0000 On Sat, 24 Jun 2006 22:42:42 +0400 horn wrote: > I install FreeBSD 5.3 from floppy-diskets. After a choice of loading(default, > safe_mode,etc) there is a error: > int=0000000e err=00000000 efl=00010083 eip=000095ca > eax=c101ffb8 ebx=c101ffb0 ecx=ffff8c10 edx=ffffff02 > esi=ffffffef edi=00001952 ebp=c1021d60 esp=c101ffa0 > cs=0008 ds=0010 es=0010 fs=0010 gs=0010 ss=0010 > cs:eip=ac e8 46 00 00 00 fe c9-74 0c b0 2d 80 f9 08 74 > 02 b0 20 aa eb ea fe ca-74 0e b0 0a aa b1 07 b0 > ss:esp=10 00 00 00 68 97 00 00-db 91 00 00 00 18 00 00 > ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff > BTX halted > On it all stops. What to do? Try to use FreeBSD-5.5 or FreeBSD-6.1 (better). WBR -- Boris B. Samorodov, Research Engineer InPharmTech Co, http://www.ipt.ru Telephone & Internet Service Provider From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 19:53: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 3E14716A494 for ; Sat, 24 Jun 2006 19:53:18 +0000 (UTC) (envelope-from bc3910@pcisys.net) Received: from marsha.pcisys.net (marsha.pcisys.net [216.229.32.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id EECA743D49 for ; Sat, 24 Jun 2006 19:53:17 +0000 (GMT) (envelope-from bc3910@pcisys.net) Received: from [192.168.0.51] (dsl-206-53-31-39.cos.pcisys.net [206.53.31.39]) (authenticated bits=0) by marsha.pcisys.net (8.13.3/8.13.3) with ESMTP id k5OJrGAG001598 for ; Sat, 24 Jun 2006 13:53:17 -0600 (MDT) Message-ID: <449D982B.4090707@pcisys.net> Date: Sat, 24 Jun 2006 13:53:15 -0600 From: Bryan User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Serial Communication X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 19:53:18 -0000 I have an old TCL/TK Script That I wrote several years ago that sends data out of a serial port into a Radio Shack Pro-64 scanner. The program basically programs the scanner with frequencies to listen to. I cant figure out how to make it work in FreeBSD. The port must be configured as follows COM1: 2400, 8, N, 1 The actual snippet of code that writes out to the port looks like this: cat dload.txt > /dev/prd64 where /dev/pro64 was a device (com port configured as above)I had created (somehow) for the linux box I had at the time. The handbook reading did not provide enough detail for me to get the port configured and working. The port does not need anything to be recognized coming in since the operation is outbound only. Software or scanner cannot read the port anyway. Can anyone give me a primer or some help to get going? Thank You. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 20: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 2DCFE16A494 for ; Sat, 24 Jun 2006 20:08:04 +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 A478243D5E for ; Sat, 24 Jun 2006 20:08:03 +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 k5OK7wx28853; Sat, 24 Jun 2006 13:07:58 -0700 (PDT) (envelope-from tedm@toybox.placo.com) Message-ID: <000801c697c9$e4bd9c10$3c01a8c0@coolf89ea26645> From: "Ted Mittelstaedt" To: "Bryan" , References: <449D982B.4090707@pcisys.net> Date: Sat, 24 Jun 2006 13:08:00 -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: Serial Communication X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 20:08:04 -0000 stty speed 2400 -hup cs8 -parenb -clocal -f /dev/ttyd0 cat dload.txt > /dev/ttyd0 also the scanner must assert DTR when it's turned on. Ted ----- Original Message ----- From: "Bryan" To: Sent: Saturday, June 24, 2006 12:53 PM Subject: Serial Communication > I have an old TCL/TK Script That I wrote several years ago that sends > data out of a serial port into a Radio Shack Pro-64 scanner. The program > basically programs the scanner with frequencies to listen to. > > I cant figure out how to make it work in FreeBSD. The port must be > configured as follows > > COM1: 2400, 8, N, 1 > > The actual snippet of code that writes out to the port looks like this: > > cat dload.txt > /dev/prd64 > > where /dev/pro64 was a device (com port configured as above)I had > created (somehow) for the linux box I had at the time. > > The handbook reading did not provide enough detail for me to get the > port configured and working. The port does not need anything to be > recognized coming in since the operation is outbound only. Software or > scanner cannot read the port anyway. > > Can anyone give me a primer or some help to get going? > > 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 Sat Jun 24 20:17: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 CA69F16A47E for ; Sat, 24 Jun 2006 20:17:27 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E53043D49 for ; Sat, 24 Jun 2006 20:17:24 +0000 (GMT) (envelope-from gerard@seibercom.net) Received: by wr-out-0506.google.com with SMTP id 50so832856wri for ; Sat, 24 Jun 2006 13:17:24 -0700 (PDT) Received: by 10.54.132.11 with SMTP id f11mr4242207wrd; Sat, 24 Jun 2006 13:17:24 -0700 (PDT) Received: from scorpio ( [216.45.217.148]) by mx.gmail.com with ESMTP id 39sm2472985wrl.2006.06.24.13.17.23; Sat, 24 Jun 2006 13:17:24 -0700 (PDT) From: Gerard Seibert Organization: Seibercom.net To: vayu Date: Sat, 24 Jun 2006 16:17:19 -0400 User-Agent: KMail/1.9.3 References: <20060624162726.87232.qmail@web25010.mail.ukl.yahoo.com> <200606241241.52143.gerard@seibercom.net> <673647A0-8589-421A-85A7-88D07625F825@sklinks.com> In-Reply-To: <673647A0-8589-421A-85A7-88D07625F825@sklinks.com> 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: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606241617.21130.gerard@seibercom.net> Cc: freebsd-questions@freebsd.org Subject: Re: Stale Dependencies ?????? 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, 24 Jun 2006 20:17:27 -0000 On Saturday 24 June 2006 13:11, vayu wrote: > On Jun 24, 2006, at 9:41 AM, Gerard Seibert wrote: //snip// > I've had the hardest time understanding what pkgdb asks. This is the > only article I've found which makes some sense to me: > > http://www.onlamp.com/pub/a/bsd/2001/11/29/Big_Scary_Daemons.html?page=1 I once had a problem on FSBD 5.4 that was so bad that I finally used portmanager to clean it up. portmanager -u -f -y -l That corrected everything. However, it did take a couple of days to rebuild the entire system. Ciao! -- Gerard Seibert gerard@seibercom.net Reporter, n.: A writer who guesses his way to the truth and dispels it with a tempest of words. Ambrose Bierce, "The Devil's Dictionary" From owner-freebsd-questions@FreeBSD.ORG Sat Jun 24 20: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 7137F16A492 for ; Sat, 24 Jun 2006 20:25:25 +0000 (UTC) (envelope-from bc3910@pcisys.net) Received: from marsha.pcisys.net (marsha.pcisys.net [216.229.32.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 122CB43D58 for ; Sat, 24 Jun 2006 20:25:24 +0000 (GMT) (envelope-from bc3910@pcisys.net) Received: from [192.168.0.51] (dsl-206-53-31-39.cos.pcisys.net [206.53.31.39]) (authenticated bits=0) by marsha.pcisys.net (8.13.3/8.13.3) with ESMTP id k5OKPNeX011228; Sat, 24 Jun 2006 14:25:24 -0600 (MDT) Message-ID: <449D9FB2.8010900@pcisys.net> Date: Sat, 24 Jun 2006 14:25:22 -0600 From: Bryan User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Ted Mittelstaedt References: <449D982B.4090707@pcisys.net> <000801c697c9$e4bd9c10$3c01a8c0@coolf89ea26645> In-Reply-To: <000801c697c9$e4bd9c10$3c01a8c0@coolf89ea26645> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Serial Communication X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 24 Jun 2006 20:25:25 -0000 Ted Mittelstaedt wrote: > stty speed 2400 -hup cs8 -parenb -clocal -f /dev/ttyd0 > cat dload.txt > /dev/ttyd0 > > also the scanner must assert DTR when it's turned on. > > Ted > > ----- Original Message ----- > From: "Bryan" > To: > Sent: Saturday, June 24, 2006 12:53 PM > Subject: Serial Communication > > >> I have an old TCL/TK Script That I wrote several years ago that sends >> data out of a serial port into a Radio Shack Pro-64 scanner. The program >> basically programs the scanner with frequencies to listen to. >> >> I cant figure out how to make it work in FreeBSD. The port must be >> configured as follows >> >> COM1: 2400, 8, N, 1 >> >> The actual snippet of code that writes out to the port looks like this: >> >> cat dload.txt > /dev/prd64 >> >> where /dev/pro64 was a device (com port configured as above)I had >> created (somehow) for the linux box I had at the time. >> >> The handbook reading did not provide enough detail for me to get the >> port configured and working. The port does not need anything to be >> recognized coming in since the operation is outbound only. Software or >> scanner cannot read the port anyway. >> >> Can anyone give me a primer or some help to get going? >> >> 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" > > Ted, Thanks. I got this error though. #stty speed 2400 -hup cs8 -parenb -clocal -f /dev/ttyd0 38400 stty: illegal operation -- -f Also, will the system remember this setting on reboot? If not, how can I make it remember? Bryan